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

53125 строки
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. }
  2023. //species
  2024. function getSpeciesInfo(speciesList) {
  2025. let result = new Set();
  2026. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2027. result.add(entry)
  2028. });
  2029. return Array.from(result);
  2030. };
  2031. function getSpeciesInfoHelper(species) {
  2032. if (!speciesData[species]) {
  2033. console.warn(species + " doesn't exist");
  2034. return [];
  2035. }
  2036. if (speciesData[species].parents) {
  2037. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2038. } else {
  2039. return [species];
  2040. }
  2041. }
  2042. characterMakers.push(() => makeCharacter(
  2043. {
  2044. name: "Fen",
  2045. species: ["crux"],
  2046. description: {
  2047. title: "Bio",
  2048. text: "Very furry. Sheds on everything."
  2049. },
  2050. tags: [
  2051. "anthro",
  2052. "goo"
  2053. ]
  2054. },
  2055. {
  2056. front: {
  2057. height: math.unit(12, "feet"),
  2058. weight: math.unit(2400, "lb"),
  2059. name: "Front",
  2060. image: {
  2061. source: "./media/characters/fen/front.svg",
  2062. extra: 1804/1562,
  2063. bottom: 205/2009
  2064. },
  2065. extraAttributes: {
  2066. pawSize: {
  2067. name: "Paw Size",
  2068. power: 2,
  2069. type: "area",
  2070. base: math.unit(0.35, "m^2")
  2071. }
  2072. }
  2073. },
  2074. diving: {
  2075. height: math.unit(4.9, "meters"),
  2076. weight: math.unit(2400, "lb"),
  2077. name: "Diving",
  2078. image: {
  2079. source: "./media/characters/fen/diving.svg"
  2080. }
  2081. },
  2082. goo: {
  2083. height: math.unit(12, "feet"),
  2084. weight: math.unit(3600, "lb"),
  2085. volume: math.unit(1000, "liters"),
  2086. preyCapacity: math.unit(6, "people"),
  2087. name: "Goo",
  2088. image: {
  2089. source: "./media/characters/fen/goo.svg",
  2090. extra: 1307/1071,
  2091. bottom: 134/1441
  2092. }
  2093. },
  2094. maw: {
  2095. height: math.unit(5.03, "feet"),
  2096. name: "Maw",
  2097. image: {
  2098. source: "./media/characters/fen/maw.svg"
  2099. }
  2100. },
  2101. gooCeiling: {
  2102. height: math.unit(6.6, "feet"),
  2103. weight: math.unit(3000, "lb"),
  2104. volume: math.unit(1000, "liters"),
  2105. preyCapacity: math.unit(6, "people"),
  2106. name: "Goo (Ceiling)",
  2107. image: {
  2108. source: "./media/characters/fen/goo-ceiling.svg"
  2109. }
  2110. },
  2111. paw: {
  2112. height: math.unit(3.77, "feet"),
  2113. name: "Paw",
  2114. image: {
  2115. source: "./media/characters/fen/paw.svg"
  2116. },
  2117. extraAttributes: {
  2118. "toeSize": {
  2119. name: "Toe Size",
  2120. power: 2,
  2121. type: "area",
  2122. base: math.unit(0.02875, "m^2")
  2123. },
  2124. "pawSize": {
  2125. name: "Paw Size",
  2126. power: 2,
  2127. type: "area",
  2128. base: math.unit(0.378, "m^2")
  2129. },
  2130. }
  2131. },
  2132. tail: {
  2133. height: math.unit(12.1, "feet"),
  2134. name: "Tail",
  2135. image: {
  2136. source: "./media/characters/fen/tail.svg"
  2137. }
  2138. },
  2139. tailFull: {
  2140. height: math.unit(12.1, "feet"),
  2141. name: "Full Tail",
  2142. image: {
  2143. source: "./media/characters/fen/tail-full.svg"
  2144. }
  2145. },
  2146. back: {
  2147. height: math.unit(12, "feet"),
  2148. weight: math.unit(2400, "lb"),
  2149. name: "Back",
  2150. image: {
  2151. source: "./media/characters/fen/back.svg",
  2152. },
  2153. info: {
  2154. description: {
  2155. mode: "append",
  2156. text: "\n\nHe is not currently looking at you."
  2157. }
  2158. }
  2159. },
  2160. full: {
  2161. height: math.unit(1.85, "meter"),
  2162. weight: math.unit(3200, "lb"),
  2163. name: "Full",
  2164. image: {
  2165. source: "./media/characters/fen/full.svg",
  2166. extra: 1133/859,
  2167. bottom: 145/1278
  2168. },
  2169. info: {
  2170. description: {
  2171. mode: "append",
  2172. text: "\n\nMunch."
  2173. }
  2174. }
  2175. },
  2176. gooLounging: {
  2177. height: math.unit(4.53, "feet"),
  2178. weight: math.unit(3000, "lb"),
  2179. preyCapacity: math.unit(6, "people"),
  2180. name: "Goo (Lounging)",
  2181. image: {
  2182. source: "./media/characters/fen/goo-lounging.svg",
  2183. bottom: 116 / 613
  2184. }
  2185. },
  2186. lounging: {
  2187. height: math.unit(10.52, "feet"),
  2188. weight: math.unit(2400, "lb"),
  2189. name: "Lounging",
  2190. image: {
  2191. source: "./media/characters/fen/lounging.svg"
  2192. }
  2193. },
  2194. },
  2195. [
  2196. {
  2197. name: "Small",
  2198. height: math.unit(2.2428, "meter")
  2199. },
  2200. {
  2201. name: "Normal",
  2202. height: math.unit(12, "feet"),
  2203. default: true,
  2204. },
  2205. {
  2206. name: "Big",
  2207. height: math.unit(20, "feet")
  2208. },
  2209. {
  2210. name: "Minimacro",
  2211. height: math.unit(40, "feet"),
  2212. info: {
  2213. description: {
  2214. mode: "append",
  2215. text: "\n\nTOO DAMN BIG"
  2216. }
  2217. }
  2218. },
  2219. {
  2220. name: "Macro",
  2221. height: math.unit(100, "feet"),
  2222. info: {
  2223. description: {
  2224. mode: "append",
  2225. text: "\n\nTOO DAMN BIG"
  2226. }
  2227. }
  2228. },
  2229. {
  2230. name: "Megamacro",
  2231. height: math.unit(2, "miles")
  2232. },
  2233. {
  2234. name: "Gigamacro",
  2235. height: math.unit(10, "earths")
  2236. },
  2237. ]
  2238. ))
  2239. characterMakers.push(() => makeCharacter(
  2240. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2241. {
  2242. front: {
  2243. height: math.unit(183, "cm"),
  2244. weight: math.unit(80, "kg"),
  2245. name: "Front",
  2246. image: {
  2247. source: "./media/characters/sofia-fluttertail/front.svg",
  2248. bottom: 0.01,
  2249. extra: 2154 / 2081
  2250. }
  2251. },
  2252. frontAlt: {
  2253. height: math.unit(183, "cm"),
  2254. weight: math.unit(80, "kg"),
  2255. name: "Front (alt)",
  2256. image: {
  2257. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2258. }
  2259. },
  2260. back: {
  2261. height: math.unit(183, "cm"),
  2262. weight: math.unit(80, "kg"),
  2263. name: "Back",
  2264. image: {
  2265. source: "./media/characters/sofia-fluttertail/back.svg"
  2266. }
  2267. },
  2268. kneeling: {
  2269. height: math.unit(125, "cm"),
  2270. weight: math.unit(80, "kg"),
  2271. name: "Kneeling",
  2272. image: {
  2273. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2274. extra: 1033 / 977,
  2275. bottom: 23.7 / 1057
  2276. }
  2277. },
  2278. maw: {
  2279. height: math.unit(183 / 5, "cm"),
  2280. name: "Maw",
  2281. image: {
  2282. source: "./media/characters/sofia-fluttertail/maw.svg"
  2283. }
  2284. },
  2285. mawcloseup: {
  2286. height: math.unit(183 / 5 * 0.41, "cm"),
  2287. name: "Maw (Closeup)",
  2288. image: {
  2289. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2290. }
  2291. },
  2292. paws: {
  2293. height: math.unit(1.17, "feet"),
  2294. name: "Paws",
  2295. image: {
  2296. source: "./media/characters/sofia-fluttertail/paws.svg",
  2297. extra: 851 / 851,
  2298. bottom: 17 / 868
  2299. }
  2300. },
  2301. },
  2302. [
  2303. {
  2304. name: "Normal",
  2305. height: math.unit(1.83, "meter")
  2306. },
  2307. {
  2308. name: "Size Thief",
  2309. height: math.unit(18, "feet")
  2310. },
  2311. {
  2312. name: "50 Foot Collie",
  2313. height: math.unit(50, "feet")
  2314. },
  2315. {
  2316. name: "Macro",
  2317. height: math.unit(96, "feet"),
  2318. default: true
  2319. },
  2320. {
  2321. name: "Megamerger",
  2322. height: math.unit(650, "feet")
  2323. },
  2324. ]
  2325. ))
  2326. characterMakers.push(() => makeCharacter(
  2327. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2328. {
  2329. front: {
  2330. height: math.unit(7, "feet"),
  2331. weight: math.unit(100, "kg"),
  2332. name: "Front",
  2333. image: {
  2334. source: "./media/characters/march/front.svg",
  2335. extra: 1992/1851,
  2336. bottom: 39/2031
  2337. }
  2338. },
  2339. foot: {
  2340. height: math.unit(0.9, "feet"),
  2341. name: "Foot",
  2342. image: {
  2343. source: "./media/characters/march/foot.svg"
  2344. }
  2345. },
  2346. },
  2347. [
  2348. {
  2349. name: "Normal",
  2350. height: math.unit(7.9, "feet")
  2351. },
  2352. {
  2353. name: "Macro",
  2354. height: math.unit(220, "meters")
  2355. },
  2356. {
  2357. name: "Megamacro",
  2358. height: math.unit(2.98, "km"),
  2359. default: true
  2360. },
  2361. {
  2362. name: "Gigamacro",
  2363. height: math.unit(15963, "km")
  2364. },
  2365. {
  2366. name: "Teramacro",
  2367. height: math.unit(2980000000, "km")
  2368. },
  2369. {
  2370. name: "Examacro",
  2371. height: math.unit(250, "parsecs")
  2372. },
  2373. ]
  2374. ))
  2375. characterMakers.push(() => makeCharacter(
  2376. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2377. {
  2378. front: {
  2379. height: math.unit(6, "feet"),
  2380. weight: math.unit(60, "kg"),
  2381. name: "Front",
  2382. image: {
  2383. source: "./media/characters/noir/front.svg",
  2384. extra: 1,
  2385. bottom: 0.032
  2386. }
  2387. },
  2388. },
  2389. [
  2390. {
  2391. name: "Normal",
  2392. height: math.unit(6.6, "feet")
  2393. },
  2394. {
  2395. name: "Macro",
  2396. height: math.unit(500, "feet")
  2397. },
  2398. {
  2399. name: "Megamacro",
  2400. height: math.unit(2.5, "km"),
  2401. default: true
  2402. },
  2403. {
  2404. name: "Gigamacro",
  2405. height: math.unit(22500, "km")
  2406. },
  2407. {
  2408. name: "Teramacro",
  2409. height: math.unit(2500000000, "km")
  2410. },
  2411. {
  2412. name: "Examacro",
  2413. height: math.unit(200, "parsecs")
  2414. },
  2415. ]
  2416. ))
  2417. characterMakers.push(() => makeCharacter(
  2418. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2419. {
  2420. front: {
  2421. height: math.unit(7, "feet"),
  2422. weight: math.unit(100, "kg"),
  2423. name: "Front",
  2424. image: {
  2425. source: "./media/characters/okuri/front.svg",
  2426. extra: 739/665,
  2427. bottom: 39/778
  2428. }
  2429. },
  2430. back: {
  2431. height: math.unit(7, "feet"),
  2432. weight: math.unit(100, "kg"),
  2433. name: "Back",
  2434. image: {
  2435. source: "./media/characters/okuri/back.svg",
  2436. extra: 734/653,
  2437. bottom: 13/747
  2438. }
  2439. },
  2440. sitting: {
  2441. height: math.unit(2.95, "feet"),
  2442. weight: math.unit(100, "kg"),
  2443. name: "Sitting",
  2444. image: {
  2445. source: "./media/characters/okuri/sitting.svg",
  2446. extra: 370/318,
  2447. bottom: 99/469
  2448. }
  2449. },
  2450. },
  2451. [
  2452. {
  2453. name: "Smallest",
  2454. height: math.unit(5 + 2/12, "feet")
  2455. },
  2456. {
  2457. name: "Smaller",
  2458. height: math.unit(300, "feet")
  2459. },
  2460. {
  2461. name: "Small",
  2462. height: math.unit(1000, "feet")
  2463. },
  2464. {
  2465. name: "Macro",
  2466. height: math.unit(1, "mile")
  2467. },
  2468. {
  2469. name: "Mega Macro (Small)",
  2470. height: math.unit(20, "km")
  2471. },
  2472. {
  2473. name: "Mega Macro (Large)",
  2474. height: math.unit(600, "km")
  2475. },
  2476. {
  2477. name: "Giga Macro",
  2478. height: math.unit(10000, "km")
  2479. },
  2480. {
  2481. name: "Normal",
  2482. height: math.unit(577560, "km"),
  2483. default: true
  2484. },
  2485. {
  2486. name: "Large",
  2487. height: math.unit(4, "galaxies")
  2488. },
  2489. {
  2490. name: "Largest",
  2491. height: math.unit(15, "multiverses")
  2492. },
  2493. ]
  2494. ))
  2495. characterMakers.push(() => makeCharacter(
  2496. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2497. {
  2498. front: {
  2499. height: math.unit(7, "feet"),
  2500. weight: math.unit(100, "kg"),
  2501. name: "Front",
  2502. image: {
  2503. source: "./media/characters/manny/front.svg",
  2504. extra: 1,
  2505. bottom: 0.06
  2506. }
  2507. },
  2508. back: {
  2509. height: math.unit(7, "feet"),
  2510. weight: math.unit(100, "kg"),
  2511. name: "Back",
  2512. image: {
  2513. source: "./media/characters/manny/back.svg",
  2514. extra: 1,
  2515. bottom: 0.014
  2516. }
  2517. },
  2518. },
  2519. [
  2520. {
  2521. name: "Normal",
  2522. height: math.unit(7, "feet"),
  2523. },
  2524. {
  2525. name: "Macro",
  2526. height: math.unit(78, "feet"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Macro+",
  2531. height: math.unit(300, "meters")
  2532. },
  2533. {
  2534. name: "Macro++",
  2535. height: math.unit(2400, "meters")
  2536. },
  2537. {
  2538. name: "Megamacro",
  2539. height: math.unit(5167, "meters")
  2540. },
  2541. {
  2542. name: "Gigamacro",
  2543. height: math.unit(41769, "miles")
  2544. },
  2545. ]
  2546. ))
  2547. characterMakers.push(() => makeCharacter(
  2548. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2549. {
  2550. front: {
  2551. height: math.unit(7, "feet"),
  2552. weight: math.unit(100, "kg"),
  2553. name: "Front",
  2554. image: {
  2555. source: "./media/characters/adake/front-1.svg"
  2556. }
  2557. },
  2558. frontAlt: {
  2559. height: math.unit(7, "feet"),
  2560. weight: math.unit(100, "kg"),
  2561. name: "Front (Alt)",
  2562. image: {
  2563. source: "./media/characters/adake/front-2.svg",
  2564. extra: 1,
  2565. bottom: 0.01
  2566. }
  2567. },
  2568. back: {
  2569. height: math.unit(7, "feet"),
  2570. weight: math.unit(100, "kg"),
  2571. name: "Back",
  2572. image: {
  2573. source: "./media/characters/adake/back.svg",
  2574. }
  2575. },
  2576. kneel: {
  2577. height: math.unit(5.385, "feet"),
  2578. weight: math.unit(100, "kg"),
  2579. name: "Kneeling",
  2580. image: {
  2581. source: "./media/characters/adake/kneel.svg",
  2582. bottom: 0.052
  2583. }
  2584. },
  2585. },
  2586. [
  2587. {
  2588. name: "Normal",
  2589. height: math.unit(7, "feet"),
  2590. },
  2591. {
  2592. name: "Macro",
  2593. height: math.unit(78, "feet"),
  2594. default: true
  2595. },
  2596. {
  2597. name: "Macro+",
  2598. height: math.unit(300, "meters")
  2599. },
  2600. {
  2601. name: "Macro++",
  2602. height: math.unit(2400, "meters")
  2603. },
  2604. {
  2605. name: "Megamacro",
  2606. height: math.unit(5167, "meters")
  2607. },
  2608. {
  2609. name: "Gigamacro",
  2610. height: math.unit(41769, "miles")
  2611. },
  2612. ]
  2613. ))
  2614. characterMakers.push(() => makeCharacter(
  2615. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2616. {
  2617. front: {
  2618. height: math.unit(1.65, "meters"),
  2619. weight: math.unit(50, "kg"),
  2620. name: "Front",
  2621. image: {
  2622. source: "./media/characters/elijah/front.svg",
  2623. extra: 858 / 830,
  2624. bottom: 95.5 / 953.8559
  2625. }
  2626. },
  2627. back: {
  2628. height: math.unit(1.65, "meters"),
  2629. weight: math.unit(50, "kg"),
  2630. name: "Back",
  2631. image: {
  2632. source: "./media/characters/elijah/back.svg",
  2633. extra: 895 / 850,
  2634. bottom: 5.3 / 897.956
  2635. }
  2636. },
  2637. frontNsfw: {
  2638. height: math.unit(1.65, "meters"),
  2639. weight: math.unit(50, "kg"),
  2640. name: "Front (NSFW)",
  2641. image: {
  2642. source: "./media/characters/elijah/front-nsfw.svg",
  2643. extra: 858 / 830,
  2644. bottom: 95.5 / 953.8559
  2645. }
  2646. },
  2647. backNsfw: {
  2648. height: math.unit(1.65, "meters"),
  2649. weight: math.unit(50, "kg"),
  2650. name: "Back (NSFW)",
  2651. image: {
  2652. source: "./media/characters/elijah/back-nsfw.svg",
  2653. extra: 895 / 850,
  2654. bottom: 5.3 / 897.956
  2655. }
  2656. },
  2657. dick: {
  2658. height: math.unit(1, "feet"),
  2659. name: "Dick",
  2660. image: {
  2661. source: "./media/characters/elijah/dick.svg"
  2662. }
  2663. },
  2664. beakOpen: {
  2665. height: math.unit(1.25, "feet"),
  2666. name: "Beak (Open)",
  2667. image: {
  2668. source: "./media/characters/elijah/beak-open.svg"
  2669. }
  2670. },
  2671. beakShut: {
  2672. height: math.unit(1.25, "feet"),
  2673. name: "Beak (Shut)",
  2674. image: {
  2675. source: "./media/characters/elijah/beak-shut.svg"
  2676. }
  2677. },
  2678. footFlexing: {
  2679. height: math.unit(1.61, "feet"),
  2680. name: "Foot (Flexing)",
  2681. image: {
  2682. source: "./media/characters/elijah/foot-flexing.svg"
  2683. }
  2684. },
  2685. footStepping: {
  2686. height: math.unit(1.44, "feet"),
  2687. name: "Foot (Stepping)",
  2688. image: {
  2689. source: "./media/characters/elijah/foot-stepping.svg"
  2690. }
  2691. },
  2692. plantigradeLeg: {
  2693. height: math.unit(2.34, "feet"),
  2694. name: "Plantigrade Leg",
  2695. image: {
  2696. source: "./media/characters/elijah/plantigrade-leg.svg"
  2697. }
  2698. },
  2699. plantigradeFootLeft: {
  2700. height: math.unit(0.9, "feet"),
  2701. name: "Plantigrade Foot (Left)",
  2702. image: {
  2703. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2704. }
  2705. },
  2706. plantigradeFootRight: {
  2707. height: math.unit(0.9, "feet"),
  2708. name: "Plantigrade Foot (Right)",
  2709. image: {
  2710. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2711. }
  2712. },
  2713. },
  2714. [
  2715. {
  2716. name: "Normal",
  2717. height: math.unit(1.65, "meters")
  2718. },
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(55, "meters"),
  2722. default: true
  2723. },
  2724. {
  2725. name: "Macro+",
  2726. height: math.unit(105, "meters")
  2727. },
  2728. ]
  2729. ))
  2730. characterMakers.push(() => makeCharacter(
  2731. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2732. {
  2733. front: {
  2734. height: math.unit(7 + 2/12, "feet"),
  2735. weight: math.unit(320, "kg"),
  2736. name: "Front",
  2737. image: {
  2738. source: "./media/characters/rai/front.svg",
  2739. extra: 1802/1696,
  2740. bottom: 68/1870
  2741. }
  2742. },
  2743. frontDressed: {
  2744. height: math.unit(7 + 2/12, "feet"),
  2745. weight: math.unit(320, "kg"),
  2746. name: "Front (Dressed)",
  2747. image: {
  2748. source: "./media/characters/rai/front-dressed.svg",
  2749. extra: 1802/1696,
  2750. bottom: 68/1870
  2751. }
  2752. },
  2753. side: {
  2754. height: math.unit(7 + 2/12, "feet"),
  2755. weight: math.unit(320, "kg"),
  2756. name: "Side",
  2757. image: {
  2758. source: "./media/characters/rai/side.svg",
  2759. extra: 1789/1710,
  2760. bottom: 115/1904
  2761. }
  2762. },
  2763. back: {
  2764. height: math.unit(7 + 2/12, "feet"),
  2765. weight: math.unit(320, "kg"),
  2766. name: "Back",
  2767. image: {
  2768. source: "./media/characters/rai/back.svg",
  2769. extra: 1770/1707,
  2770. bottom: 28/1798
  2771. }
  2772. },
  2773. feral: {
  2774. height: math.unit(9.5, "feet"),
  2775. weight: math.unit(640, "kg"),
  2776. name: "Feral",
  2777. image: {
  2778. source: "./media/characters/rai/feral.svg",
  2779. extra: 945/553,
  2780. bottom: 176/1121
  2781. }
  2782. },
  2783. dragon: {
  2784. height: math.unit(23, "feet"),
  2785. weight: math.unit(50000, "lb"),
  2786. name: "Dragon",
  2787. image: {
  2788. source: "./media/characters/rai/dragon.svg",
  2789. extra: 2498 / 2030,
  2790. bottom: 85.2 / 2584
  2791. }
  2792. },
  2793. maw: {
  2794. height: math.unit(1.69, "feet"),
  2795. name: "Maw",
  2796. image: {
  2797. source: "./media/characters/rai/maw.svg"
  2798. }
  2799. },
  2800. },
  2801. [
  2802. {
  2803. name: "Normal",
  2804. height: math.unit(7 + 2/12, "feet")
  2805. },
  2806. {
  2807. name: "Big",
  2808. height: math.unit(11, "feet")
  2809. },
  2810. {
  2811. name: "Macro",
  2812. height: math.unit(302, "feet"),
  2813. default: true
  2814. },
  2815. ]
  2816. ))
  2817. characterMakers.push(() => makeCharacter(
  2818. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2819. {
  2820. frontDressed: {
  2821. height: math.unit(216, "feet"),
  2822. weight: math.unit(7000000, "lb"),
  2823. name: "Front (Dressed)",
  2824. image: {
  2825. source: "./media/characters/jazzy/front-dressed.svg",
  2826. extra: 2738 / 2651,
  2827. bottom: 41.8 / 2786
  2828. }
  2829. },
  2830. backDressed: {
  2831. height: math.unit(216, "feet"),
  2832. weight: math.unit(7000000, "lb"),
  2833. name: "Back (Dressed)",
  2834. image: {
  2835. source: "./media/characters/jazzy/back-dressed.svg",
  2836. extra: 2775 / 2673,
  2837. bottom: 36.8 / 2817
  2838. }
  2839. },
  2840. front: {
  2841. height: math.unit(216, "feet"),
  2842. weight: math.unit(7000000, "lb"),
  2843. name: "Front",
  2844. image: {
  2845. source: "./media/characters/jazzy/front.svg",
  2846. extra: 2738 / 2651,
  2847. bottom: 41.8 / 2786
  2848. }
  2849. },
  2850. back: {
  2851. height: math.unit(216, "feet"),
  2852. weight: math.unit(7000000, "lb"),
  2853. name: "Back",
  2854. image: {
  2855. source: "./media/characters/jazzy/back.svg",
  2856. extra: 2775 / 2673,
  2857. bottom: 36.8 / 2817
  2858. }
  2859. },
  2860. maw: {
  2861. height: math.unit(20, "feet"),
  2862. name: "Maw",
  2863. image: {
  2864. source: "./media/characters/jazzy/maw.svg"
  2865. }
  2866. },
  2867. paws: {
  2868. height: math.unit(27.5, "feet"),
  2869. name: "Paws",
  2870. image: {
  2871. source: "./media/characters/jazzy/paws.svg"
  2872. }
  2873. },
  2874. eye: {
  2875. height: math.unit(4.4, "feet"),
  2876. name: "Eye",
  2877. image: {
  2878. source: "./media/characters/jazzy/eye.svg"
  2879. }
  2880. },
  2881. droneOffense: {
  2882. height: math.unit(9.5, "inches"),
  2883. name: "Drone (Offense)",
  2884. image: {
  2885. source: "./media/characters/jazzy/drone-offense.svg"
  2886. }
  2887. },
  2888. droneRecon: {
  2889. height: math.unit(9.5, "inches"),
  2890. name: "Drone (Recon)",
  2891. image: {
  2892. source: "./media/characters/jazzy/drone-recon.svg"
  2893. }
  2894. },
  2895. droneDefense: {
  2896. height: math.unit(9.5, "inches"),
  2897. name: "Drone (Defense)",
  2898. image: {
  2899. source: "./media/characters/jazzy/drone-defense.svg"
  2900. }
  2901. },
  2902. },
  2903. [
  2904. {
  2905. name: "Macro",
  2906. height: math.unit(216, "feet"),
  2907. default: true
  2908. },
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(9 + 6/12, "feet"),
  2916. weight: math.unit(700, "lb"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/flamm/front.svg",
  2920. extra: 1751/1632,
  2921. bottom: 46/1797
  2922. }
  2923. },
  2924. buff: {
  2925. height: math.unit(9 + 6/12, "feet"),
  2926. weight: math.unit(950, "lb"),
  2927. name: "Buff",
  2928. image: {
  2929. source: "./media/characters/flamm/buff.svg",
  2930. extra: 3018/2874,
  2931. bottom: 221/3239
  2932. }
  2933. },
  2934. },
  2935. [
  2936. {
  2937. name: "Normal",
  2938. height: math.unit(9.5, "feet")
  2939. },
  2940. {
  2941. name: "Macro",
  2942. height: math.unit(200, "feet"),
  2943. default: true
  2944. },
  2945. ]
  2946. ))
  2947. characterMakers.push(() => makeCharacter(
  2948. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2949. {
  2950. front: {
  2951. height: math.unit(5 + 3/12, "feet"),
  2952. weight: math.unit(60, "kg"),
  2953. name: "Front",
  2954. image: {
  2955. source: "./media/characters/zephiro/front.svg",
  2956. extra: 2309 / 2162,
  2957. bottom: 0.069
  2958. }
  2959. },
  2960. side: {
  2961. height: math.unit(5 + 3/12, "feet"),
  2962. weight: math.unit(60, "kg"),
  2963. name: "Side",
  2964. image: {
  2965. source: "./media/characters/zephiro/side.svg",
  2966. extra: 2403 / 2279,
  2967. bottom: 0.015
  2968. }
  2969. },
  2970. back: {
  2971. height: math.unit(5 + 3/12, "feet"),
  2972. weight: math.unit(60, "kg"),
  2973. name: "Back",
  2974. image: {
  2975. source: "./media/characters/zephiro/back.svg",
  2976. extra: 2373 / 2244,
  2977. bottom: 0.013
  2978. }
  2979. },
  2980. hand: {
  2981. height: math.unit(0.68, "feet"),
  2982. name: "Hand",
  2983. image: {
  2984. source: "./media/characters/zephiro/hand.svg"
  2985. }
  2986. },
  2987. paw: {
  2988. height: math.unit(1, "feet"),
  2989. name: "Paw",
  2990. image: {
  2991. source: "./media/characters/zephiro/paw.svg"
  2992. }
  2993. },
  2994. beans: {
  2995. height: math.unit(0.93, "feet"),
  2996. name: "Beans",
  2997. image: {
  2998. source: "./media/characters/zephiro/beans.svg"
  2999. }
  3000. },
  3001. },
  3002. [
  3003. {
  3004. name: "Micro",
  3005. height: math.unit(3, "inches")
  3006. },
  3007. {
  3008. name: "Normal",
  3009. height: math.unit(5 + 3 / 12, "feet"),
  3010. default: true
  3011. },
  3012. {
  3013. name: "Macro",
  3014. height: math.unit(118, "feet")
  3015. },
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3020. {
  3021. front: {
  3022. height: math.unit(5, "feet"),
  3023. weight: math.unit(90, "kg"),
  3024. name: "Front",
  3025. image: {
  3026. source: "./media/characters/fory/front.svg",
  3027. extra: 2862 / 2674,
  3028. bottom: 180 / 3043.8
  3029. }
  3030. },
  3031. back: {
  3032. height: math.unit(5, "feet"),
  3033. weight: math.unit(90, "kg"),
  3034. name: "Back",
  3035. image: {
  3036. source: "./media/characters/fory/back.svg",
  3037. extra: 2962 / 2791,
  3038. bottom: 106 / 3071.8
  3039. }
  3040. },
  3041. foot: {
  3042. height: math.unit(2.14, "feet"),
  3043. name: "Foot",
  3044. image: {
  3045. source: "./media/characters/fory/foot.svg"
  3046. }
  3047. },
  3048. },
  3049. [
  3050. {
  3051. name: "Normal",
  3052. height: math.unit(5, "feet")
  3053. },
  3054. {
  3055. name: "Macro",
  3056. height: math.unit(50, "feet"),
  3057. default: true
  3058. },
  3059. {
  3060. name: "Megamacro",
  3061. height: math.unit(10, "miles")
  3062. },
  3063. {
  3064. name: "Gigamacro",
  3065. height: math.unit(5, "earths")
  3066. },
  3067. ]
  3068. ))
  3069. characterMakers.push(() => makeCharacter(
  3070. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3071. {
  3072. front: {
  3073. height: math.unit(7, "feet"),
  3074. weight: math.unit(90, "kg"),
  3075. name: "Front",
  3076. image: {
  3077. source: "./media/characters/kurrikage/front.svg",
  3078. extra: 1845/1733,
  3079. bottom: 119/1964
  3080. }
  3081. },
  3082. back: {
  3083. height: math.unit(7, "feet"),
  3084. weight: math.unit(90, "kg"),
  3085. name: "Back",
  3086. image: {
  3087. source: "./media/characters/kurrikage/back.svg",
  3088. extra: 1790/1677,
  3089. bottom: 61/1851
  3090. }
  3091. },
  3092. dressed: {
  3093. height: math.unit(7, "feet"),
  3094. weight: math.unit(90, "kg"),
  3095. name: "Dressed",
  3096. image: {
  3097. source: "./media/characters/kurrikage/dressed.svg",
  3098. extra: 1845/1733,
  3099. bottom: 119/1964
  3100. }
  3101. },
  3102. foot: {
  3103. height: math.unit(1.5, "feet"),
  3104. name: "Foot",
  3105. image: {
  3106. source: "./media/characters/kurrikage/foot.svg"
  3107. }
  3108. },
  3109. staff: {
  3110. height: math.unit(6.7, "feet"),
  3111. name: "Staff",
  3112. image: {
  3113. source: "./media/characters/kurrikage/staff.svg"
  3114. }
  3115. },
  3116. peek: {
  3117. height: math.unit(1.05, "feet"),
  3118. name: "Peeking",
  3119. image: {
  3120. source: "./media/characters/kurrikage/peek.svg",
  3121. bottom: 0.08
  3122. }
  3123. },
  3124. },
  3125. [
  3126. {
  3127. name: "Normal",
  3128. height: math.unit(12, "feet"),
  3129. default: true
  3130. },
  3131. {
  3132. name: "Big",
  3133. height: math.unit(20, "feet")
  3134. },
  3135. {
  3136. name: "Macro",
  3137. height: math.unit(500, "feet")
  3138. },
  3139. {
  3140. name: "Megamacro",
  3141. height: math.unit(20, "miles")
  3142. },
  3143. ]
  3144. ))
  3145. characterMakers.push(() => makeCharacter(
  3146. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3147. {
  3148. front: {
  3149. height: math.unit(6, "feet"),
  3150. weight: math.unit(75, "kg"),
  3151. name: "Front",
  3152. image: {
  3153. source: "./media/characters/shingo/front.svg",
  3154. extra: 1900/1825,
  3155. bottom: 82/1982
  3156. }
  3157. },
  3158. side: {
  3159. height: math.unit(6, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Side",
  3162. image: {
  3163. source: "./media/characters/shingo/side.svg",
  3164. extra: 1930/1865,
  3165. bottom: 16/1946
  3166. }
  3167. },
  3168. back: {
  3169. height: math.unit(6, "feet"),
  3170. weight: math.unit(75, "kg"),
  3171. name: "Back",
  3172. image: {
  3173. source: "./media/characters/shingo/back.svg",
  3174. extra: 1922/1852,
  3175. bottom: 16/1938
  3176. }
  3177. },
  3178. frontDressed: {
  3179. height: math.unit(6, "feet"),
  3180. weight: math.unit(150, "lb"),
  3181. name: "Front-dressed",
  3182. image: {
  3183. source: "./media/characters/shingo/front-dressed.svg",
  3184. extra: 1900/1825,
  3185. bottom: 82/1982
  3186. }
  3187. },
  3188. paw: {
  3189. height: math.unit(1.29, "feet"),
  3190. name: "Paw",
  3191. image: {
  3192. source: "./media/characters/shingo/paw.svg"
  3193. }
  3194. },
  3195. hand: {
  3196. height: math.unit(1.07, "feet"),
  3197. name: "Hand",
  3198. image: {
  3199. source: "./media/characters/shingo/hand.svg"
  3200. }
  3201. },
  3202. frontAlt: {
  3203. height: math.unit(6, "feet"),
  3204. weight: math.unit(75, "kg"),
  3205. name: "Front (Alt)",
  3206. image: {
  3207. source: "./media/characters/shingo/front-alt.svg",
  3208. extra: 3511 / 3338,
  3209. bottom: 0.005
  3210. }
  3211. },
  3212. frontAlt2: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Front (Alt 2)",
  3216. image: {
  3217. source: "./media/characters/shingo/front-alt-2.svg",
  3218. extra: 706/681,
  3219. bottom: 11/717
  3220. }
  3221. },
  3222. pawAlt: {
  3223. height: math.unit(1, "feet"),
  3224. name: "Paw (Alt)",
  3225. image: {
  3226. source: "./media/characters/shingo/paw-alt.svg"
  3227. }
  3228. },
  3229. },
  3230. [
  3231. {
  3232. name: "Micro",
  3233. height: math.unit(4, "inches")
  3234. },
  3235. {
  3236. name: "Normal",
  3237. height: math.unit(6, "feet"),
  3238. default: true
  3239. },
  3240. {
  3241. name: "Macro",
  3242. height: math.unit(108, "feet")
  3243. },
  3244. {
  3245. name: "Macro+",
  3246. height: math.unit(1500, "feet")
  3247. },
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3252. {
  3253. side: {
  3254. height: math.unit(6, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Side",
  3257. image: {
  3258. source: "./media/characters/aigey/side.svg"
  3259. }
  3260. },
  3261. },
  3262. [
  3263. {
  3264. name: "Macro",
  3265. height: math.unit(200, "feet"),
  3266. default: true
  3267. },
  3268. {
  3269. name: "Megamacro",
  3270. height: math.unit(100, "miles")
  3271. },
  3272. ]
  3273. )
  3274. )
  3275. characterMakers.push(() => makeCharacter(
  3276. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3277. {
  3278. front: {
  3279. height: math.unit(5 + 5 / 12, "feet"),
  3280. weight: math.unit(75, "kg"),
  3281. name: "Front",
  3282. image: {
  3283. source: "./media/characters/natasha/front.svg",
  3284. extra: 859 / 824,
  3285. bottom: 23 / 879.6
  3286. }
  3287. },
  3288. frontNsfw: {
  3289. height: math.unit(5 + 5 / 12, "feet"),
  3290. weight: math.unit(75, "kg"),
  3291. name: "Front (NSFW)",
  3292. image: {
  3293. source: "./media/characters/natasha/front-nsfw.svg",
  3294. extra: 859 / 824,
  3295. bottom: 23 / 879.6
  3296. }
  3297. },
  3298. frontErect: {
  3299. height: math.unit(5 + 5 / 12, "feet"),
  3300. weight: math.unit(75, "kg"),
  3301. name: "Front (Erect)",
  3302. image: {
  3303. source: "./media/characters/natasha/front-erect.svg",
  3304. extra: 859 / 824,
  3305. bottom: 23 / 879.6
  3306. }
  3307. },
  3308. back: {
  3309. height: math.unit(5 + 5 / 12, "feet"),
  3310. weight: math.unit(75, "kg"),
  3311. name: "Back",
  3312. image: {
  3313. source: "./media/characters/natasha/back.svg",
  3314. extra: 887.9 / 852.6,
  3315. bottom: 9.7 / 896.4
  3316. }
  3317. },
  3318. backAlt: {
  3319. height: math.unit(5 + 5 / 12, "feet"),
  3320. weight: math.unit(75, "kg"),
  3321. name: "Back (Alt)",
  3322. image: {
  3323. source: "./media/characters/natasha/back-alt.svg",
  3324. extra: 1236.7 / 1192,
  3325. bottom: 22.3 / 1258.2
  3326. }
  3327. },
  3328. dick: {
  3329. height: math.unit(1.772, "feet"),
  3330. name: "Dick",
  3331. image: {
  3332. source: "./media/characters/natasha/dick.svg"
  3333. }
  3334. },
  3335. paw: {
  3336. height: math.unit(0.250, "meters"),
  3337. name: "Paw",
  3338. image: {
  3339. source: "./media/characters/natasha/paw.svg"
  3340. },
  3341. extraAttributes: {
  3342. "toeSize": {
  3343. name: "Toe Size",
  3344. power: 2,
  3345. type: "area",
  3346. base: math.unit(0.0024, "m^2")
  3347. },
  3348. "padSize": {
  3349. name: "Pad Size",
  3350. power: 2,
  3351. type: "area",
  3352. base: math.unit(0.00889, "m^2")
  3353. },
  3354. "pawSize": {
  3355. name: "Paw Size",
  3356. power: 2,
  3357. type: "area",
  3358. base: math.unit(0.023667, "m^2")
  3359. },
  3360. }
  3361. },
  3362. },
  3363. [
  3364. {
  3365. name: "Shortstack",
  3366. height: math.unit(3, "feet"),
  3367. default: true
  3368. },
  3369. {
  3370. name: "Normal",
  3371. height: math.unit(5 + 5 / 12, "feet")
  3372. },
  3373. {
  3374. name: "Large",
  3375. height: math.unit(12, "feet")
  3376. },
  3377. {
  3378. name: "Macro",
  3379. height: math.unit(100, "feet")
  3380. },
  3381. {
  3382. name: "Macro+",
  3383. height: math.unit(260, "feet")
  3384. },
  3385. {
  3386. name: "Macro++",
  3387. height: math.unit(1, "mile")
  3388. },
  3389. ]
  3390. ))
  3391. characterMakers.push(() => makeCharacter(
  3392. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3393. {
  3394. front: {
  3395. height: math.unit(6, "feet"),
  3396. weight: math.unit(75, "kg"),
  3397. name: "Front",
  3398. image: {
  3399. source: "./media/characters/malik/front.svg",
  3400. extra: 1750/1561,
  3401. bottom: 80/1830
  3402. },
  3403. extraAttributes: {
  3404. "toeSize": {
  3405. name: "Toe Size",
  3406. power: 2,
  3407. type: "area",
  3408. base: math.unit(0.0159, "m^2")
  3409. },
  3410. "pawSize": {
  3411. name: "Paw Size",
  3412. power: 2,
  3413. type: "area",
  3414. base: math.unit(0.09834, "m^2")
  3415. },
  3416. }
  3417. },
  3418. side: {
  3419. height: math.unit(6, "feet"),
  3420. weight: math.unit(75, "kg"),
  3421. name: "Side",
  3422. image: {
  3423. source: "./media/characters/malik/side.svg",
  3424. extra: 1802/1685,
  3425. bottom: 42/1844
  3426. },
  3427. extraAttributes: {
  3428. "toeSize": {
  3429. name: "Toe Size",
  3430. power: 2,
  3431. type: "area",
  3432. base: math.unit(0.0159, "m^2")
  3433. },
  3434. "pawSize": {
  3435. name: "Paw Size",
  3436. power: 2,
  3437. type: "area",
  3438. base: math.unit(0.09834, "m^2")
  3439. },
  3440. }
  3441. },
  3442. back: {
  3443. height: math.unit(6, "feet"),
  3444. weight: math.unit(75, "kg"),
  3445. name: "Back",
  3446. image: {
  3447. source: "./media/characters/malik/back.svg",
  3448. extra: 1803/1607,
  3449. bottom: 33/1836
  3450. },
  3451. extraAttributes: {
  3452. "toeSize": {
  3453. name: "Toe Size",
  3454. power: 2,
  3455. type: "area",
  3456. base: math.unit(0.0159, "m^2")
  3457. },
  3458. "pawSize": {
  3459. name: "Paw Size",
  3460. power: 2,
  3461. type: "area",
  3462. base: math.unit(0.09834, "m^2")
  3463. },
  3464. }
  3465. },
  3466. },
  3467. [
  3468. {
  3469. name: "Macro",
  3470. height: math.unit(156, "feet"),
  3471. default: true
  3472. },
  3473. {
  3474. name: "Macro+",
  3475. height: math.unit(1188, "feet")
  3476. },
  3477. ]
  3478. ))
  3479. characterMakers.push(() => makeCharacter(
  3480. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3481. {
  3482. front: {
  3483. height: math.unit(6, "feet"),
  3484. weight: math.unit(75, "kg"),
  3485. name: "Front",
  3486. image: {
  3487. source: "./media/characters/sefer/front.svg",
  3488. extra: 848 / 659,
  3489. bottom: 28.3 / 876.442
  3490. }
  3491. },
  3492. back: {
  3493. height: math.unit(6, "feet"),
  3494. weight: math.unit(75, "kg"),
  3495. name: "Back",
  3496. image: {
  3497. source: "./media/characters/sefer/back.svg",
  3498. extra: 864 / 695,
  3499. bottom: 10 / 871
  3500. }
  3501. },
  3502. frontDressed: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(75, "kg"),
  3505. name: "Front (Dressed)",
  3506. image: {
  3507. source: "./media/characters/sefer/front-dressed.svg",
  3508. extra: 839 / 653,
  3509. bottom: 37.6 / 878
  3510. }
  3511. },
  3512. },
  3513. [
  3514. {
  3515. name: "Normal",
  3516. height: math.unit(6, "feet"),
  3517. default: true
  3518. },
  3519. ]
  3520. ))
  3521. characterMakers.push(() => makeCharacter(
  3522. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3523. {
  3524. body: {
  3525. height: math.unit(2.2428, "meter"),
  3526. weight: math.unit(124.738, "kg"),
  3527. name: "Body",
  3528. image: {
  3529. extra: 1225 / 1050,
  3530. source: "./media/characters/north/front.svg"
  3531. }
  3532. }
  3533. },
  3534. [
  3535. {
  3536. name: "Micro",
  3537. height: math.unit(4, "inches")
  3538. },
  3539. {
  3540. name: "Macro",
  3541. height: math.unit(63, "meters")
  3542. },
  3543. {
  3544. name: "Megamacro",
  3545. height: math.unit(101, "miles"),
  3546. default: true
  3547. }
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3552. {
  3553. angled: {
  3554. height: math.unit(4, "meter"),
  3555. weight: math.unit(150, "kg"),
  3556. name: "Angled",
  3557. image: {
  3558. source: "./media/characters/talan/angled-sfw.svg",
  3559. bottom: 29 / 3734
  3560. }
  3561. },
  3562. angledNsfw: {
  3563. height: math.unit(4, "meter"),
  3564. weight: math.unit(150, "kg"),
  3565. name: "Angled (NSFW)",
  3566. image: {
  3567. source: "./media/characters/talan/angled-nsfw.svg",
  3568. bottom: 29 / 3734
  3569. }
  3570. },
  3571. frontNsfw: {
  3572. height: math.unit(4, "meter"),
  3573. weight: math.unit(150, "kg"),
  3574. name: "Front (NSFW)",
  3575. image: {
  3576. source: "./media/characters/talan/front-nsfw.svg",
  3577. bottom: 29 / 3734
  3578. }
  3579. },
  3580. sideNsfw: {
  3581. height: math.unit(4, "meter"),
  3582. weight: math.unit(150, "kg"),
  3583. name: "Side (NSFW)",
  3584. image: {
  3585. source: "./media/characters/talan/side-nsfw.svg",
  3586. bottom: 29 / 3734
  3587. }
  3588. },
  3589. back: {
  3590. height: math.unit(4, "meter"),
  3591. weight: math.unit(150, "kg"),
  3592. name: "Back",
  3593. image: {
  3594. source: "./media/characters/talan/back.svg"
  3595. }
  3596. },
  3597. dickBottom: {
  3598. height: math.unit(0.621, "meter"),
  3599. name: "Dick (Bottom)",
  3600. image: {
  3601. source: "./media/characters/talan/dick-bottom.svg"
  3602. }
  3603. },
  3604. dickTop: {
  3605. height: math.unit(0.621, "meter"),
  3606. name: "Dick (Top)",
  3607. image: {
  3608. source: "./media/characters/talan/dick-top.svg"
  3609. }
  3610. },
  3611. dickSide: {
  3612. height: math.unit(0.305, "meter"),
  3613. name: "Dick (Side)",
  3614. image: {
  3615. source: "./media/characters/talan/dick-side.svg"
  3616. }
  3617. },
  3618. dickFront: {
  3619. height: math.unit(0.305, "meter"),
  3620. name: "Dick (Front)",
  3621. image: {
  3622. source: "./media/characters/talan/dick-front.svg"
  3623. }
  3624. },
  3625. },
  3626. [
  3627. {
  3628. name: "Normal",
  3629. height: math.unit(4, "meters")
  3630. },
  3631. {
  3632. name: "Macro",
  3633. height: math.unit(100, "meters")
  3634. },
  3635. {
  3636. name: "Megamacro",
  3637. height: math.unit(2, "miles"),
  3638. default: true
  3639. },
  3640. {
  3641. name: "Gigamacro",
  3642. height: math.unit(5000, "miles")
  3643. },
  3644. {
  3645. name: "Teramacro",
  3646. height: math.unit(100, "parsecs")
  3647. }
  3648. ]
  3649. ))
  3650. characterMakers.push(() => makeCharacter(
  3651. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3652. {
  3653. front: {
  3654. height: math.unit(2, "meter"),
  3655. weight: math.unit(90, "kg"),
  3656. name: "Front",
  3657. image: {
  3658. source: "./media/characters/gael'rathus/front.svg"
  3659. }
  3660. },
  3661. frontAlt: {
  3662. height: math.unit(2, "meter"),
  3663. weight: math.unit(90, "kg"),
  3664. name: "Front (alt)",
  3665. image: {
  3666. source: "./media/characters/gael'rathus/front-alt.svg"
  3667. }
  3668. },
  3669. frontAlt2: {
  3670. height: math.unit(2, "meter"),
  3671. weight: math.unit(90, "kg"),
  3672. name: "Front (alt 2)",
  3673. image: {
  3674. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3675. }
  3676. }
  3677. },
  3678. [
  3679. {
  3680. name: "Normal",
  3681. height: math.unit(9, "feet"),
  3682. default: true
  3683. },
  3684. {
  3685. name: "Large",
  3686. height: math.unit(25, "feet")
  3687. },
  3688. {
  3689. name: "Macro",
  3690. height: math.unit(0.25, "miles")
  3691. },
  3692. {
  3693. name: "Megamacro",
  3694. height: math.unit(10, "miles")
  3695. }
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3700. {
  3701. side: {
  3702. height: math.unit(2, "meter"),
  3703. weight: math.unit(140, "kg"),
  3704. name: "Side",
  3705. image: {
  3706. source: "./media/characters/sosha/side.svg",
  3707. extra: 1170/1006,
  3708. bottom: 94/1264
  3709. }
  3710. },
  3711. maw: {
  3712. height: math.unit(2.87, "feet"),
  3713. name: "Maw",
  3714. image: {
  3715. source: "./media/characters/sosha/maw.svg",
  3716. extra: 966/865,
  3717. bottom: 0/966
  3718. }
  3719. },
  3720. cooch: {
  3721. height: math.unit(5.6, "feet"),
  3722. name: "Cooch",
  3723. image: {
  3724. source: "./media/characters/sosha/cooch.svg"
  3725. }
  3726. },
  3727. },
  3728. [
  3729. {
  3730. name: "Normal",
  3731. height: math.unit(12, "feet"),
  3732. default: true
  3733. }
  3734. ]
  3735. ))
  3736. characterMakers.push(() => makeCharacter(
  3737. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3738. {
  3739. side: {
  3740. height: math.unit(5 + 5 / 12, "feet"),
  3741. weight: math.unit(170, "kg"),
  3742. name: "Side",
  3743. image: {
  3744. source: "./media/characters/runnola/side.svg",
  3745. extra: 741 / 448,
  3746. bottom: 0.05
  3747. }
  3748. },
  3749. },
  3750. [
  3751. {
  3752. name: "Small",
  3753. height: math.unit(3, "feet")
  3754. },
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(5 + 5 / 12, "feet"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Big",
  3762. height: math.unit(10, "feet")
  3763. },
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3768. {
  3769. front: {
  3770. height: math.unit(2, "meter"),
  3771. weight: math.unit(50, "kg"),
  3772. name: "Front",
  3773. image: {
  3774. source: "./media/characters/kurribird/front.svg",
  3775. bottom: 0.015
  3776. }
  3777. },
  3778. frontAlt: {
  3779. height: math.unit(1.5, "meter"),
  3780. weight: math.unit(50, "kg"),
  3781. name: "Front (Alt)",
  3782. image: {
  3783. source: "./media/characters/kurribird/front-alt.svg",
  3784. extra: 1.45
  3785. }
  3786. },
  3787. },
  3788. [
  3789. {
  3790. name: "Normal",
  3791. height: math.unit(7, "feet")
  3792. },
  3793. {
  3794. name: "Big",
  3795. height: math.unit(12, "feet"),
  3796. default: true
  3797. },
  3798. {
  3799. name: "Macro",
  3800. height: math.unit(1500, "feet")
  3801. },
  3802. {
  3803. name: "Megamacro",
  3804. height: math.unit(2, "miles")
  3805. }
  3806. ]
  3807. ))
  3808. characterMakers.push(() => makeCharacter(
  3809. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3810. {
  3811. front: {
  3812. height: math.unit(2, "meter"),
  3813. weight: math.unit(80, "kg"),
  3814. name: "Front",
  3815. image: {
  3816. source: "./media/characters/elbial/front.svg",
  3817. extra: 1643 / 1556,
  3818. bottom: 60.2 / 1696
  3819. }
  3820. },
  3821. side: {
  3822. height: math.unit(2, "meter"),
  3823. weight: math.unit(80, "kg"),
  3824. name: "Side",
  3825. image: {
  3826. source: "./media/characters/elbial/side.svg",
  3827. extra: 1601/1528,
  3828. bottom: 97/1698
  3829. }
  3830. },
  3831. back: {
  3832. height: math.unit(2, "meter"),
  3833. weight: math.unit(80, "kg"),
  3834. name: "Back",
  3835. image: {
  3836. source: "./media/characters/elbial/back.svg",
  3837. extra: 1653/1569,
  3838. bottom: 20/1673
  3839. }
  3840. },
  3841. frontDressed: {
  3842. height: math.unit(2, "meter"),
  3843. weight: math.unit(80, "kg"),
  3844. name: "Front (Dressed)",
  3845. image: {
  3846. source: "./media/characters/elbial/front-dressed.svg",
  3847. extra: 1638/1569,
  3848. bottom: 70/1708
  3849. }
  3850. },
  3851. genitals: {
  3852. height: math.unit(2 / 3.367, "meter"),
  3853. name: "Genitals",
  3854. image: {
  3855. source: "./media/characters/elbial/genitals.svg"
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Large",
  3862. height: math.unit(100, "feet")
  3863. },
  3864. {
  3865. name: "Macro",
  3866. height: math.unit(500, "feet"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Megamacro",
  3871. height: math.unit(10, "miles")
  3872. },
  3873. {
  3874. name: "Gigamacro",
  3875. height: math.unit(25000, "miles")
  3876. },
  3877. {
  3878. name: "Full-Size",
  3879. height: math.unit(8000000, "gigaparsecs")
  3880. }
  3881. ]
  3882. ))
  3883. characterMakers.push(() => makeCharacter(
  3884. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3885. {
  3886. front: {
  3887. height: math.unit(2, "meter"),
  3888. weight: math.unit(60, "kg"),
  3889. name: "Front",
  3890. image: {
  3891. source: "./media/characters/noah/front.svg"
  3892. }
  3893. },
  3894. talons: {
  3895. height: math.unit(0.315, "meter"),
  3896. name: "Talons",
  3897. image: {
  3898. source: "./media/characters/noah/talons.svg"
  3899. }
  3900. }
  3901. },
  3902. [
  3903. {
  3904. name: "Large",
  3905. height: math.unit(50, "feet")
  3906. },
  3907. {
  3908. name: "Macro",
  3909. height: math.unit(750, "feet"),
  3910. default: true
  3911. },
  3912. {
  3913. name: "Megamacro",
  3914. height: math.unit(50, "miles")
  3915. },
  3916. {
  3917. name: "Gigamacro",
  3918. height: math.unit(100000, "miles")
  3919. },
  3920. {
  3921. name: "Full-Size",
  3922. height: math.unit(3000000000, "miles")
  3923. }
  3924. ]
  3925. ))
  3926. characterMakers.push(() => makeCharacter(
  3927. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3928. {
  3929. front: {
  3930. height: math.unit(2, "meter"),
  3931. weight: math.unit(80, "kg"),
  3932. name: "Front",
  3933. image: {
  3934. source: "./media/characters/natalya/front.svg"
  3935. }
  3936. },
  3937. back: {
  3938. height: math.unit(2, "meter"),
  3939. weight: math.unit(80, "kg"),
  3940. name: "Back",
  3941. image: {
  3942. source: "./media/characters/natalya/back.svg"
  3943. }
  3944. }
  3945. },
  3946. [
  3947. {
  3948. name: "Normal",
  3949. height: math.unit(150, "feet"),
  3950. default: true
  3951. },
  3952. {
  3953. name: "Megamacro",
  3954. height: math.unit(5, "miles")
  3955. },
  3956. {
  3957. name: "Full-Size",
  3958. height: math.unit(600, "kiloparsecs")
  3959. }
  3960. ]
  3961. ))
  3962. characterMakers.push(() => makeCharacter(
  3963. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3964. {
  3965. front: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(50, "kg"),
  3968. name: "Front",
  3969. image: {
  3970. source: "./media/characters/erestrebah/front.svg",
  3971. extra: 1262/1162,
  3972. bottom: 96/1358
  3973. }
  3974. },
  3975. back: {
  3976. height: math.unit(2, "meter"),
  3977. weight: math.unit(50, "kg"),
  3978. name: "Back",
  3979. image: {
  3980. source: "./media/characters/erestrebah/back.svg",
  3981. extra: 1257/1139,
  3982. bottom: 13/1270
  3983. }
  3984. },
  3985. wing: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(50, "kg"),
  3988. name: "Wing",
  3989. image: {
  3990. source: "./media/characters/erestrebah/wing.svg",
  3991. extra: 1262/1162,
  3992. bottom: 96/1358
  3993. }
  3994. },
  3995. mouth: {
  3996. height: math.unit(0.39, "feet"),
  3997. name: "Mouth",
  3998. image: {
  3999. source: "./media/characters/erestrebah/mouth.svg"
  4000. }
  4001. }
  4002. },
  4003. [
  4004. {
  4005. name: "Normal",
  4006. height: math.unit(10, "feet")
  4007. },
  4008. {
  4009. name: "Large",
  4010. height: math.unit(50, "feet"),
  4011. default: true
  4012. },
  4013. {
  4014. name: "Macro",
  4015. height: math.unit(300, "feet")
  4016. },
  4017. {
  4018. name: "Macro+",
  4019. height: math.unit(750, "feet")
  4020. },
  4021. {
  4022. name: "Megamacro",
  4023. height: math.unit(3, "miles")
  4024. }
  4025. ]
  4026. ))
  4027. characterMakers.push(() => makeCharacter(
  4028. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4029. {
  4030. front: {
  4031. height: math.unit(2, "meter"),
  4032. weight: math.unit(80, "kg"),
  4033. name: "Front",
  4034. image: {
  4035. source: "./media/characters/jennifer/front.svg",
  4036. bottom: 0.11,
  4037. extra: 1.16
  4038. }
  4039. },
  4040. frontAlt: {
  4041. height: math.unit(2, "meter"),
  4042. weight: math.unit(80, "kg"),
  4043. name: "Front (Alt)",
  4044. image: {
  4045. source: "./media/characters/jennifer/front-alt.svg"
  4046. }
  4047. }
  4048. },
  4049. [
  4050. {
  4051. name: "Canon Height",
  4052. height: math.unit(120, "feet"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Macro+",
  4057. height: math.unit(300, "feet")
  4058. },
  4059. {
  4060. name: "Megamacro",
  4061. height: math.unit(20000, "feet")
  4062. }
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4067. {
  4068. front: {
  4069. height: math.unit(2, "meter"),
  4070. weight: math.unit(50, "kg"),
  4071. name: "Front",
  4072. image: {
  4073. source: "./media/characters/kalista/front.svg",
  4074. extra: 1314/1145,
  4075. bottom: 101/1415
  4076. }
  4077. },
  4078. back: {
  4079. height: math.unit(2, "meter"),
  4080. weight: math.unit(50, "kg"),
  4081. name: "Back",
  4082. image: {
  4083. source: "./media/characters/kalista/back.svg",
  4084. extra: 1366 / 1156,
  4085. bottom: 33.9 / 1362.78
  4086. }
  4087. }
  4088. },
  4089. [
  4090. {
  4091. name: "Uncomfortably Small",
  4092. height: math.unit(10, "feet")
  4093. },
  4094. {
  4095. name: "Small",
  4096. height: math.unit(30, "feet")
  4097. },
  4098. {
  4099. name: "Macro",
  4100. height: math.unit(100, "feet"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Macro+",
  4105. height: math.unit(2000, "feet")
  4106. },
  4107. {
  4108. name: "True Form",
  4109. height: math.unit(8924, "miles")
  4110. }
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4115. {
  4116. front: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(120, "kg"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/ggv/front.svg"
  4122. }
  4123. },
  4124. side: {
  4125. height: math.unit(2, "meter"),
  4126. weight: math.unit(120, "kg"),
  4127. name: "Side",
  4128. image: {
  4129. source: "./media/characters/ggv/side.svg"
  4130. }
  4131. }
  4132. },
  4133. [
  4134. {
  4135. name: "Extremely Puny",
  4136. height: math.unit(9 + 5 / 12, "feet")
  4137. },
  4138. {
  4139. name: "Horribly Small",
  4140. height: math.unit(47.7, "miles"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Reasonably Sized",
  4145. height: math.unit(25000, "parsecs")
  4146. },
  4147. {
  4148. name: "Slightly Uncompressed",
  4149. height: math.unit(7.77e31, "parsecs")
  4150. },
  4151. {
  4152. name: "Omniversal",
  4153. height: math.unit(1e300, "meters")
  4154. },
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4159. {
  4160. front: {
  4161. height: math.unit(2, "meter"),
  4162. weight: math.unit(75, "lb"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/napalm/front.svg"
  4166. }
  4167. },
  4168. back: {
  4169. height: math.unit(2, "meter"),
  4170. weight: math.unit(75, "lb"),
  4171. name: "Back",
  4172. image: {
  4173. source: "./media/characters/napalm/back.svg"
  4174. }
  4175. }
  4176. },
  4177. [
  4178. {
  4179. name: "Standard",
  4180. height: math.unit(55, "feet"),
  4181. default: true
  4182. }
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4187. {
  4188. front: {
  4189. height: math.unit(7 + 5 / 6, "feet"),
  4190. weight: math.unit(325, "lb"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/asana/front.svg",
  4194. extra: 1133 / 1060,
  4195. bottom: 15.2 / 1148.6
  4196. }
  4197. },
  4198. back: {
  4199. height: math.unit(7 + 5 / 6, "feet"),
  4200. weight: math.unit(325, "lb"),
  4201. name: "Back",
  4202. image: {
  4203. source: "./media/characters/asana/back.svg",
  4204. extra: 1114 / 1043,
  4205. bottom: 5 / 1120
  4206. }
  4207. },
  4208. dressedDark: {
  4209. height: math.unit(7 + 5 / 6, "feet"),
  4210. weight: math.unit(325, "lb"),
  4211. name: "Dressed (Dark)",
  4212. image: {
  4213. source: "./media/characters/asana/dressed-dark.svg",
  4214. extra: 1133 / 1060,
  4215. bottom: 15.2 / 1148.6
  4216. }
  4217. },
  4218. dressedLight: {
  4219. height: math.unit(7 + 5 / 6, "feet"),
  4220. weight: math.unit(325, "lb"),
  4221. name: "Dressed (Light)",
  4222. image: {
  4223. source: "./media/characters/asana/dressed-light.svg",
  4224. extra: 1133 / 1060,
  4225. bottom: 15.2 / 1148.6
  4226. }
  4227. },
  4228. },
  4229. [
  4230. {
  4231. name: "Standard",
  4232. height: math.unit(7 + 5 / 6, "feet"),
  4233. default: true
  4234. },
  4235. {
  4236. name: "Large",
  4237. height: math.unit(10, "meters")
  4238. },
  4239. {
  4240. name: "Macro",
  4241. height: math.unit(2500, "meters")
  4242. },
  4243. {
  4244. name: "Megamacro",
  4245. height: math.unit(5e6, "meters")
  4246. },
  4247. {
  4248. name: "Examacro",
  4249. height: math.unit(5e12, "lightyears")
  4250. },
  4251. {
  4252. name: "Max Size",
  4253. height: math.unit(1e31, "lightyears")
  4254. }
  4255. ]
  4256. ))
  4257. characterMakers.push(() => makeCharacter(
  4258. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4259. {
  4260. front: {
  4261. height: math.unit(2, "meter"),
  4262. weight: math.unit(60, "kg"),
  4263. name: "Front",
  4264. image: {
  4265. source: "./media/characters/ebony/front.svg",
  4266. bottom: 0.03,
  4267. extra: 1045 / 810 + 0.03
  4268. }
  4269. },
  4270. side: {
  4271. height: math.unit(2, "meter"),
  4272. weight: math.unit(60, "kg"),
  4273. name: "Side",
  4274. image: {
  4275. source: "./media/characters/ebony/side.svg",
  4276. bottom: 0.03,
  4277. extra: 1045 / 810 + 0.03
  4278. }
  4279. },
  4280. back: {
  4281. height: math.unit(2, "meter"),
  4282. weight: math.unit(60, "kg"),
  4283. name: "Back",
  4284. image: {
  4285. source: "./media/characters/ebony/back.svg",
  4286. bottom: 0.01,
  4287. extra: 1045 / 810 + 0.01
  4288. }
  4289. },
  4290. },
  4291. [
  4292. // TODO check why I did this lol
  4293. {
  4294. name: "Standard",
  4295. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4296. default: true
  4297. },
  4298. {
  4299. name: "Macro",
  4300. height: math.unit(200, "feet")
  4301. },
  4302. {
  4303. name: "Gigamacro",
  4304. height: math.unit(13000, "km")
  4305. }
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4310. {
  4311. front: {
  4312. height: math.unit(6, "feet"),
  4313. weight: math.unit(175, "lb"),
  4314. name: "Front",
  4315. image: {
  4316. source: "./media/characters/mountain/front.svg",
  4317. extra: 972 / 955,
  4318. bottom: 64 / 1036.6
  4319. }
  4320. },
  4321. back: {
  4322. height: math.unit(6, "feet"),
  4323. weight: math.unit(175, "lb"),
  4324. name: "Back",
  4325. image: {
  4326. source: "./media/characters/mountain/back.svg",
  4327. extra: 970 / 950,
  4328. bottom: 28.25 / 999
  4329. }
  4330. },
  4331. },
  4332. [
  4333. {
  4334. name: "Large",
  4335. height: math.unit(20, "meters")
  4336. },
  4337. {
  4338. name: "Macro",
  4339. height: math.unit(300, "meters")
  4340. },
  4341. {
  4342. name: "Gigamacro",
  4343. height: math.unit(10000, "km"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Examacro",
  4348. height: math.unit(10e9, "lightyears")
  4349. }
  4350. ]
  4351. ))
  4352. characterMakers.push(() => makeCharacter(
  4353. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4354. {
  4355. front: {
  4356. height: math.unit(8, "feet"),
  4357. weight: math.unit(500, "lb"),
  4358. name: "Front",
  4359. image: {
  4360. source: "./media/characters/rick/front.svg"
  4361. }
  4362. }
  4363. },
  4364. [
  4365. {
  4366. name: "Normal",
  4367. height: math.unit(8, "feet"),
  4368. default: true
  4369. },
  4370. {
  4371. name: "Macro",
  4372. height: math.unit(5, "km")
  4373. }
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4378. {
  4379. front: {
  4380. height: math.unit(8, "feet"),
  4381. weight: math.unit(120, "lb"),
  4382. name: "Front",
  4383. image: {
  4384. source: "./media/characters/ona/front.svg"
  4385. }
  4386. },
  4387. frontAlt: {
  4388. height: math.unit(8, "feet"),
  4389. weight: math.unit(120, "lb"),
  4390. name: "Front (Alt)",
  4391. image: {
  4392. source: "./media/characters/ona/front-alt.svg"
  4393. }
  4394. },
  4395. back: {
  4396. height: math.unit(8, "feet"),
  4397. weight: math.unit(120, "lb"),
  4398. name: "Back",
  4399. image: {
  4400. source: "./media/characters/ona/back.svg"
  4401. }
  4402. },
  4403. foot: {
  4404. height: math.unit(1.1, "feet"),
  4405. name: "Foot",
  4406. image: {
  4407. source: "./media/characters/ona/foot.svg"
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Megamacro",
  4414. height: math.unit(70, "km"),
  4415. default: true
  4416. },
  4417. {
  4418. name: "Gigamacro",
  4419. height: math.unit(681818, "miles")
  4420. },
  4421. {
  4422. name: "Examacro",
  4423. height: math.unit(3800000, "lightyears")
  4424. },
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4429. {
  4430. front: {
  4431. height: math.unit(12, "feet"),
  4432. weight: math.unit(3000, "lb"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/mech/front.svg",
  4436. extra: 2900 / 2770,
  4437. bottom: 110 / 3010
  4438. }
  4439. },
  4440. back: {
  4441. height: math.unit(12, "feet"),
  4442. weight: math.unit(3000, "lb"),
  4443. name: "Back",
  4444. image: {
  4445. source: "./media/characters/mech/back.svg",
  4446. extra: 3011 / 2890,
  4447. bottom: 94 / 3105
  4448. }
  4449. },
  4450. maw: {
  4451. height: math.unit(3.07, "feet"),
  4452. name: "Maw",
  4453. image: {
  4454. source: "./media/characters/mech/maw.svg"
  4455. }
  4456. },
  4457. head: {
  4458. height: math.unit(3.07, "feet"),
  4459. name: "Head",
  4460. image: {
  4461. source: "./media/characters/mech/head.svg"
  4462. }
  4463. },
  4464. dick: {
  4465. height: math.unit(1.43, "feet"),
  4466. name: "Dick",
  4467. image: {
  4468. source: "./media/characters/mech/dick.svg"
  4469. }
  4470. },
  4471. },
  4472. [
  4473. {
  4474. name: "Normal",
  4475. height: math.unit(12, "feet")
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(300, "feet"),
  4480. default: true
  4481. },
  4482. {
  4483. name: "Macro+",
  4484. height: math.unit(1500, "feet")
  4485. },
  4486. ]
  4487. ))
  4488. characterMakers.push(() => makeCharacter(
  4489. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4490. {
  4491. front: {
  4492. height: math.unit(1.3, "meter"),
  4493. weight: math.unit(30, "kg"),
  4494. name: "Front",
  4495. image: {
  4496. source: "./media/characters/gregory/front.svg",
  4497. }
  4498. }
  4499. },
  4500. [
  4501. {
  4502. name: "Normal",
  4503. height: math.unit(1.3, "meter"),
  4504. default: true
  4505. },
  4506. {
  4507. name: "Macro",
  4508. height: math.unit(20, "meter")
  4509. }
  4510. ]
  4511. ))
  4512. characterMakers.push(() => makeCharacter(
  4513. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4514. {
  4515. front: {
  4516. height: math.unit(2.8, "meter"),
  4517. weight: math.unit(200, "kg"),
  4518. name: "Front",
  4519. image: {
  4520. source: "./media/characters/elory/front.svg",
  4521. }
  4522. }
  4523. },
  4524. [
  4525. {
  4526. name: "Normal",
  4527. height: math.unit(2.8, "meter"),
  4528. default: true
  4529. },
  4530. {
  4531. name: "Macro",
  4532. height: math.unit(38, "meter")
  4533. }
  4534. ]
  4535. ))
  4536. characterMakers.push(() => makeCharacter(
  4537. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4538. {
  4539. front: {
  4540. height: math.unit(470, "feet"),
  4541. weight: math.unit(924, "tons"),
  4542. name: "Front",
  4543. image: {
  4544. source: "./media/characters/angelpatamon/front.svg",
  4545. }
  4546. }
  4547. },
  4548. [
  4549. {
  4550. name: "Normal",
  4551. height: math.unit(470, "feet"),
  4552. default: true
  4553. },
  4554. {
  4555. name: "Deity Size I",
  4556. height: math.unit(28651.2, "km")
  4557. },
  4558. {
  4559. name: "Deity Size II",
  4560. height: math.unit(171907.2, "km")
  4561. }
  4562. ]
  4563. ))
  4564. characterMakers.push(() => makeCharacter(
  4565. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4566. {
  4567. side: {
  4568. height: math.unit(7.2, "meter"),
  4569. weight: math.unit(8.2, "tons"),
  4570. name: "Side",
  4571. image: {
  4572. source: "./media/characters/cryae/side.svg",
  4573. extra: 3500 / 1500
  4574. }
  4575. }
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(7.2, "meter"),
  4581. default: true
  4582. }
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(175, "lb"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/xera/front.svg",
  4594. extra: 2377 / 1972,
  4595. bottom: 75.5 / 2452
  4596. }
  4597. },
  4598. side: {
  4599. height: math.unit(6, "feet"),
  4600. weight: math.unit(175, "lb"),
  4601. name: "Side",
  4602. image: {
  4603. source: "./media/characters/xera/side.svg",
  4604. extra: 2345 / 2019,
  4605. bottom: 39.7 / 2384
  4606. }
  4607. },
  4608. back: {
  4609. height: math.unit(6, "feet"),
  4610. weight: math.unit(175, "lb"),
  4611. name: "Back",
  4612. image: {
  4613. source: "./media/characters/xera/back.svg",
  4614. extra: 2095 / 1984,
  4615. bottom: 67 / 2166
  4616. }
  4617. },
  4618. },
  4619. [
  4620. {
  4621. name: "Small",
  4622. height: math.unit(10, "feet")
  4623. },
  4624. {
  4625. name: "Macro",
  4626. height: math.unit(500, "meters"),
  4627. default: true
  4628. },
  4629. {
  4630. name: "Macro+",
  4631. height: math.unit(10, "km")
  4632. },
  4633. {
  4634. name: "Gigamacro",
  4635. height: math.unit(25000, "km")
  4636. },
  4637. {
  4638. name: "Teramacro",
  4639. height: math.unit(3e6, "km")
  4640. }
  4641. ]
  4642. ))
  4643. characterMakers.push(() => makeCharacter(
  4644. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4645. {
  4646. front: {
  4647. height: math.unit(6, "feet"),
  4648. weight: math.unit(175, "lb"),
  4649. name: "Front",
  4650. image: {
  4651. source: "./media/characters/nebula/front.svg",
  4652. extra: 2566 / 2362,
  4653. bottom: 81 / 2644
  4654. }
  4655. }
  4656. },
  4657. [
  4658. {
  4659. name: "Small",
  4660. height: math.unit(4.5, "meters")
  4661. },
  4662. {
  4663. name: "Macro",
  4664. height: math.unit(1500, "meters"),
  4665. default: true
  4666. },
  4667. {
  4668. name: "Megamacro",
  4669. height: math.unit(150, "km")
  4670. },
  4671. {
  4672. name: "Gigamacro",
  4673. height: math.unit(27000, "km")
  4674. }
  4675. ]
  4676. ))
  4677. characterMakers.push(() => makeCharacter(
  4678. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4679. {
  4680. front: {
  4681. height: math.unit(6, "feet"),
  4682. weight: math.unit(225, "lb"),
  4683. name: "Front",
  4684. image: {
  4685. source: "./media/characters/abysgar/front.svg",
  4686. extra: 1739/1614,
  4687. bottom: 71/1810
  4688. }
  4689. },
  4690. frontNsfw: {
  4691. height: math.unit(6, "feet"),
  4692. weight: math.unit(225, "lb"),
  4693. name: "Front (NSFW)",
  4694. image: {
  4695. source: "./media/characters/abysgar/front-nsfw.svg",
  4696. extra: 1739/1614,
  4697. bottom: 71/1810
  4698. }
  4699. },
  4700. back: {
  4701. height: math.unit(4.6, "feet"),
  4702. weight: math.unit(225, "lb"),
  4703. name: "Back",
  4704. image: {
  4705. source: "./media/characters/abysgar/back.svg",
  4706. extra: 1384/1327,
  4707. bottom: 0/1384
  4708. }
  4709. },
  4710. head: {
  4711. height: math.unit(1.25, "feet"),
  4712. name: "Head",
  4713. image: {
  4714. source: "./media/characters/abysgar/head.svg",
  4715. extra: 669/569,
  4716. bottom: 0/669
  4717. }
  4718. },
  4719. },
  4720. [
  4721. {
  4722. name: "Small",
  4723. height: math.unit(4.5, "meters")
  4724. },
  4725. {
  4726. name: "Macro",
  4727. height: math.unit(1250, "meters"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Megamacro",
  4732. height: math.unit(125, "km")
  4733. },
  4734. {
  4735. name: "Gigamacro",
  4736. height: math.unit(26000, "km")
  4737. }
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(6, "feet"),
  4745. weight: math.unit(180, "lb"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/yakuz/front.svg"
  4749. }
  4750. }
  4751. },
  4752. [
  4753. {
  4754. name: "Small",
  4755. height: math.unit(5, "meters")
  4756. },
  4757. {
  4758. name: "Macro",
  4759. height: math.unit(1500, "meters"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Megamacro",
  4764. height: math.unit(200, "km")
  4765. },
  4766. {
  4767. name: "Gigamacro",
  4768. height: math.unit(100000, "km")
  4769. }
  4770. ]
  4771. ))
  4772. characterMakers.push(() => makeCharacter(
  4773. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4774. {
  4775. front: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(175, "lb"),
  4778. name: "Front",
  4779. image: {
  4780. source: "./media/characters/mirova/front.svg",
  4781. extra: 3334 / 3071,
  4782. bottom: 42 / 3375.6
  4783. }
  4784. }
  4785. },
  4786. [
  4787. {
  4788. name: "Small",
  4789. height: math.unit(5, "meters")
  4790. },
  4791. {
  4792. name: "Macro",
  4793. height: math.unit(900, "meters"),
  4794. default: true
  4795. },
  4796. {
  4797. name: "Megamacro",
  4798. height: math.unit(135, "km")
  4799. },
  4800. {
  4801. name: "Gigamacro",
  4802. height: math.unit(20000, "km")
  4803. }
  4804. ]
  4805. ))
  4806. characterMakers.push(() => makeCharacter(
  4807. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4808. {
  4809. side: {
  4810. height: math.unit(28.35, "feet"),
  4811. weight: math.unit(99.75, "tons"),
  4812. name: "Side",
  4813. image: {
  4814. source: "./media/characters/asana-mech/side.svg",
  4815. extra: 923 / 699,
  4816. bottom: 50 / 975
  4817. }
  4818. },
  4819. chaingun: {
  4820. height: math.unit(7, "feet"),
  4821. weight: math.unit(2400, "lb"),
  4822. name: "Chaingun",
  4823. image: {
  4824. source: "./media/characters/asana-mech/chaingun.svg"
  4825. }
  4826. },
  4827. laser: {
  4828. height: math.unit(7.12, "feet"),
  4829. weight: math.unit(2000, "lb"),
  4830. name: "Laser",
  4831. image: {
  4832. source: "./media/characters/asana-mech/laser.svg"
  4833. }
  4834. },
  4835. },
  4836. [
  4837. {
  4838. name: "Normal",
  4839. height: math.unit(28.35, "feet"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Macro",
  4844. height: math.unit(2500, "feet")
  4845. },
  4846. {
  4847. name: "Megamacro",
  4848. height: math.unit(25, "miles")
  4849. },
  4850. {
  4851. name: "Examacro",
  4852. height: math.unit(6e8, "lightyears")
  4853. },
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(5, "meters"),
  4861. weight: math.unit(1000, "kg"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/asche/front.svg",
  4865. extra: 1258 / 1190,
  4866. bottom: 47 / 1305
  4867. }
  4868. },
  4869. frontUnderwear: {
  4870. height: math.unit(5, "meters"),
  4871. weight: math.unit(1000, "kg"),
  4872. name: "Front (Underwear)",
  4873. image: {
  4874. source: "./media/characters/asche/front-underwear.svg",
  4875. extra: 1258 / 1190,
  4876. bottom: 47 / 1305
  4877. }
  4878. },
  4879. frontDressed: {
  4880. height: math.unit(5, "meters"),
  4881. weight: math.unit(1000, "kg"),
  4882. name: "Front (Dressed)",
  4883. image: {
  4884. source: "./media/characters/asche/front-dressed.svg",
  4885. extra: 1258 / 1190,
  4886. bottom: 47 / 1305
  4887. }
  4888. },
  4889. frontArmor: {
  4890. height: math.unit(5, "meters"),
  4891. weight: math.unit(1000, "kg"),
  4892. name: "Front (Armored)",
  4893. image: {
  4894. source: "./media/characters/asche/front-armored.svg",
  4895. extra: 1374 / 1308,
  4896. bottom: 23 / 1397
  4897. }
  4898. },
  4899. mp724: {
  4900. height: math.unit(0.96, "meters"),
  4901. weight: math.unit(38, "kg"),
  4902. name: "H&K MP724",
  4903. image: {
  4904. source: "./media/characters/asche/h&k-mp724.svg"
  4905. }
  4906. },
  4907. side: {
  4908. height: math.unit(5, "meters"),
  4909. weight: math.unit(1000, "kg"),
  4910. name: "Side",
  4911. image: {
  4912. source: "./media/characters/asche/side.svg",
  4913. extra: 1717 / 1609,
  4914. bottom: 0.005
  4915. }
  4916. },
  4917. back: {
  4918. height: math.unit(5, "meters"),
  4919. weight: math.unit(1000, "kg"),
  4920. name: "Back",
  4921. image: {
  4922. source: "./media/characters/asche/back.svg",
  4923. extra: 1570 / 1501
  4924. }
  4925. },
  4926. },
  4927. [
  4928. {
  4929. name: "DEFCON 5",
  4930. height: math.unit(5, "meters")
  4931. },
  4932. {
  4933. name: "DEFCON 4",
  4934. height: math.unit(500, "meters"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "DEFCON 3",
  4939. height: math.unit(5, "km")
  4940. },
  4941. {
  4942. name: "DEFCON 2",
  4943. height: math.unit(500, "km")
  4944. },
  4945. {
  4946. name: "DEFCON 1",
  4947. height: math.unit(500000, "km")
  4948. },
  4949. {
  4950. name: "DEFCON 0",
  4951. height: math.unit(3, "gigaparsecs")
  4952. },
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4957. {
  4958. front: {
  4959. height: math.unit(2, "meters"),
  4960. weight: math.unit(76, "kg"),
  4961. name: "Front",
  4962. image: {
  4963. source: "./media/characters/gale/front.svg"
  4964. }
  4965. },
  4966. frontAlt1: {
  4967. height: math.unit(2, "meters"),
  4968. weight: math.unit(76, "kg"),
  4969. name: "Front (Alt 1)",
  4970. image: {
  4971. source: "./media/characters/gale/front-alt-1.svg"
  4972. }
  4973. },
  4974. frontAlt2: {
  4975. height: math.unit(2, "meters"),
  4976. weight: math.unit(76, "kg"),
  4977. name: "Front (Alt 2)",
  4978. image: {
  4979. source: "./media/characters/gale/front-alt-2.svg"
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(7, "feet")
  4987. },
  4988. {
  4989. name: "Macro",
  4990. height: math.unit(150, "feet"),
  4991. default: true
  4992. },
  4993. {
  4994. name: "Macro+",
  4995. height: math.unit(300, "feet")
  4996. },
  4997. ]
  4998. ))
  4999. characterMakers.push(() => makeCharacter(
  5000. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5001. {
  5002. front: {
  5003. height: math.unit(5 + 10/12, "feet"),
  5004. weight: math.unit(67, "kg"),
  5005. name: "Front",
  5006. image: {
  5007. source: "./media/characters/draylen/front.svg",
  5008. extra: 832/777,
  5009. bottom: 85/917
  5010. }
  5011. }
  5012. },
  5013. [
  5014. {
  5015. name: "Normal",
  5016. height: math.unit(5 + 10/12, "feet")
  5017. },
  5018. {
  5019. name: "Macro",
  5020. height: math.unit(150, "feet"),
  5021. default: true
  5022. }
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5027. {
  5028. front: {
  5029. height: math.unit(7 + 9 / 12, "feet"),
  5030. weight: math.unit(379, "lbs"),
  5031. name: "Front",
  5032. image: {
  5033. source: "./media/characters/chez/front.svg"
  5034. }
  5035. },
  5036. side: {
  5037. height: math.unit(7 + 9 / 12, "feet"),
  5038. weight: math.unit(379, "lbs"),
  5039. name: "Side",
  5040. image: {
  5041. source: "./media/characters/chez/side.svg"
  5042. }
  5043. }
  5044. },
  5045. [
  5046. {
  5047. name: "Normal",
  5048. height: math.unit(7 + 9 / 12, "feet"),
  5049. default: true
  5050. },
  5051. {
  5052. name: "God King",
  5053. height: math.unit(9750000, "meters")
  5054. }
  5055. ]
  5056. ))
  5057. characterMakers.push(() => makeCharacter(
  5058. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5059. {
  5060. front: {
  5061. height: math.unit(6, "feet"),
  5062. weight: math.unit(275, "lbs"),
  5063. name: "Front",
  5064. image: {
  5065. source: "./media/characters/kaylum/front.svg",
  5066. bottom: 0.01,
  5067. extra: 1166 / 1031
  5068. }
  5069. },
  5070. frontWingless: {
  5071. height: math.unit(6, "feet"),
  5072. weight: math.unit(275, "lbs"),
  5073. name: "Front (Wingless)",
  5074. image: {
  5075. source: "./media/characters/kaylum/front-wingless.svg",
  5076. bottom: 0.01,
  5077. extra: 1117 / 1031
  5078. }
  5079. }
  5080. },
  5081. [
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(3.05, "meters")
  5085. },
  5086. {
  5087. name: "Master",
  5088. height: math.unit(5.5, "meters")
  5089. },
  5090. {
  5091. name: "Rampage",
  5092. height: math.unit(19, "meters")
  5093. },
  5094. {
  5095. name: "Macro Lite",
  5096. height: math.unit(37, "meters")
  5097. },
  5098. {
  5099. name: "Hyper Predator",
  5100. height: math.unit(61, "meters")
  5101. },
  5102. {
  5103. name: "Macro",
  5104. height: math.unit(138, "meters"),
  5105. default: true
  5106. }
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5111. {
  5112. front: {
  5113. height: math.unit(5 + 5 / 12, "feet"),
  5114. weight: math.unit(120, "lbs"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/geta/front.svg",
  5118. extra: 1003/933,
  5119. bottom: 21/1024
  5120. }
  5121. },
  5122. paw: {
  5123. height: math.unit(0.35, "feet"),
  5124. name: "Paw",
  5125. image: {
  5126. source: "./media/characters/geta/paw.svg"
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Micro",
  5133. height: math.unit(3, "inches"),
  5134. default: true
  5135. },
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(5 + 5 / 12, "feet")
  5139. }
  5140. ]
  5141. ))
  5142. characterMakers.push(() => makeCharacter(
  5143. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5144. {
  5145. front: {
  5146. height: math.unit(6, "feet"),
  5147. weight: math.unit(300, "lbs"),
  5148. name: "Front",
  5149. image: {
  5150. source: "./media/characters/tyrnn/front.svg"
  5151. }
  5152. }
  5153. },
  5154. [
  5155. {
  5156. name: "Main Height",
  5157. height: math.unit(355, "feet"),
  5158. default: true
  5159. },
  5160. {
  5161. name: "Fave. Height",
  5162. height: math.unit(2400, "feet")
  5163. }
  5164. ]
  5165. ))
  5166. characterMakers.push(() => makeCharacter(
  5167. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5168. {
  5169. front: {
  5170. height: math.unit(6, "feet"),
  5171. weight: math.unit(300, "lbs"),
  5172. name: "Front",
  5173. image: {
  5174. source: "./media/characters/appledectomy/front.svg"
  5175. }
  5176. }
  5177. },
  5178. [
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(2500, "feet")
  5182. },
  5183. {
  5184. name: "Megamacro",
  5185. height: math.unit(50, "miles"),
  5186. default: true
  5187. },
  5188. {
  5189. name: "Gigamacro",
  5190. height: math.unit(5000, "miles")
  5191. },
  5192. {
  5193. name: "Teramacro",
  5194. height: math.unit(250000, "miles")
  5195. },
  5196. ]
  5197. ))
  5198. characterMakers.push(() => makeCharacter(
  5199. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5200. {
  5201. front: {
  5202. height: math.unit(6, "feet"),
  5203. weight: math.unit(200, "lbs"),
  5204. name: "Front",
  5205. image: {
  5206. source: "./media/characters/vulpes/front.svg",
  5207. extra: 573 / 543,
  5208. bottom: 0.033
  5209. }
  5210. },
  5211. side: {
  5212. height: math.unit(6, "feet"),
  5213. weight: math.unit(200, "lbs"),
  5214. name: "Side",
  5215. image: {
  5216. source: "./media/characters/vulpes/side.svg",
  5217. extra: 577 / 549,
  5218. bottom: 11 / 588
  5219. }
  5220. },
  5221. back: {
  5222. height: math.unit(6, "feet"),
  5223. weight: math.unit(200, "lbs"),
  5224. name: "Back",
  5225. image: {
  5226. source: "./media/characters/vulpes/back.svg",
  5227. extra: 573 / 549,
  5228. bottom: 20 / 593
  5229. }
  5230. },
  5231. feet: {
  5232. height: math.unit(1.276, "feet"),
  5233. name: "Feet",
  5234. image: {
  5235. source: "./media/characters/vulpes/feet.svg"
  5236. }
  5237. },
  5238. maw: {
  5239. height: math.unit(1.18, "feet"),
  5240. name: "Maw",
  5241. image: {
  5242. source: "./media/characters/vulpes/maw.svg"
  5243. }
  5244. },
  5245. },
  5246. [
  5247. {
  5248. name: "Micro",
  5249. height: math.unit(2, "inches")
  5250. },
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(6.3, "feet")
  5254. },
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(850, "feet")
  5258. },
  5259. {
  5260. name: "Megamacro",
  5261. height: math.unit(7500, "feet"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Gigamacro",
  5266. height: math.unit(570000, "miles")
  5267. }
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(210, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/rain-fallen/front.svg"
  5279. }
  5280. },
  5281. side: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(210, "lbs"),
  5284. name: "Side",
  5285. image: {
  5286. source: "./media/characters/rain-fallen/side.svg"
  5287. }
  5288. },
  5289. back: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(210, "lbs"),
  5292. name: "Back",
  5293. image: {
  5294. source: "./media/characters/rain-fallen/back.svg"
  5295. }
  5296. },
  5297. feral: {
  5298. height: math.unit(9, "feet"),
  5299. weight: math.unit(700, "lbs"),
  5300. name: "Feral",
  5301. image: {
  5302. source: "./media/characters/rain-fallen/feral.svg"
  5303. }
  5304. },
  5305. },
  5306. [
  5307. {
  5308. name: "Meddling with Mortals",
  5309. height: math.unit(8 + 8/12, "feet")
  5310. },
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(5, "meter")
  5314. },
  5315. {
  5316. name: "Macro",
  5317. height: math.unit(150, "meter"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "Megamacro",
  5322. height: math.unit(278e6, "meter")
  5323. },
  5324. {
  5325. name: "Gigamacro",
  5326. height: math.unit(2e9, "meter")
  5327. },
  5328. {
  5329. name: "Teramacro",
  5330. height: math.unit(8e12, "meter")
  5331. },
  5332. {
  5333. name: "Devourer",
  5334. height: math.unit(14, "zettameters")
  5335. },
  5336. {
  5337. name: "Scarlet King",
  5338. height: math.unit(18, "yottameters")
  5339. },
  5340. {
  5341. name: "Void",
  5342. height: math.unit(1e88, "yottameters")
  5343. }
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5348. {
  5349. standing: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(180, "lbs"),
  5352. name: "Standing",
  5353. image: {
  5354. source: "./media/characters/zaakira/standing.svg",
  5355. extra: 1599/1504,
  5356. bottom: 39/1638
  5357. }
  5358. },
  5359. laying: {
  5360. height: math.unit(3.3, "feet"),
  5361. weight: math.unit(180, "lbs"),
  5362. name: "Laying",
  5363. image: {
  5364. source: "./media/characters/zaakira/laying.svg"
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(12, "feet")
  5372. },
  5373. {
  5374. name: "Macro",
  5375. height: math.unit(279, "feet"),
  5376. default: true
  5377. }
  5378. ]
  5379. ))
  5380. characterMakers.push(() => makeCharacter(
  5381. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5382. {
  5383. femSfw: {
  5384. height: math.unit(8, "feet"),
  5385. weight: math.unit(350, "lb"),
  5386. name: "Fem",
  5387. image: {
  5388. source: "./media/characters/sigvald/fem-sfw.svg",
  5389. extra: 182 / 164,
  5390. bottom: 8.7 / 190.5
  5391. }
  5392. },
  5393. femNsfw: {
  5394. height: math.unit(8, "feet"),
  5395. weight: math.unit(350, "lb"),
  5396. name: "Fem (NSFW)",
  5397. image: {
  5398. source: "./media/characters/sigvald/fem-nsfw.svg",
  5399. extra: 182 / 164,
  5400. bottom: 8.7 / 190.5
  5401. }
  5402. },
  5403. maleNsfw: {
  5404. height: math.unit(8, "feet"),
  5405. weight: math.unit(350, "lb"),
  5406. name: "Male (NSFW)",
  5407. image: {
  5408. source: "./media/characters/sigvald/male-nsfw.svg",
  5409. extra: 182 / 164,
  5410. bottom: 8.7 / 190.5
  5411. }
  5412. },
  5413. hermNsfw: {
  5414. height: math.unit(8, "feet"),
  5415. weight: math.unit(350, "lb"),
  5416. name: "Herm (NSFW)",
  5417. image: {
  5418. source: "./media/characters/sigvald/herm-nsfw.svg",
  5419. extra: 182 / 164,
  5420. bottom: 8.7 / 190.5
  5421. }
  5422. },
  5423. dick: {
  5424. height: math.unit(2.36, "feet"),
  5425. name: "Dick",
  5426. image: {
  5427. source: "./media/characters/sigvald/dick.svg"
  5428. }
  5429. },
  5430. eye: {
  5431. height: math.unit(0.31, "feet"),
  5432. name: "Eye",
  5433. image: {
  5434. source: "./media/characters/sigvald/eye.svg"
  5435. }
  5436. },
  5437. mouth: {
  5438. height: math.unit(0.92, "feet"),
  5439. name: "Mouth",
  5440. image: {
  5441. source: "./media/characters/sigvald/mouth.svg"
  5442. }
  5443. },
  5444. paws: {
  5445. height: math.unit(2.2, "feet"),
  5446. name: "Paws",
  5447. image: {
  5448. source: "./media/characters/sigvald/paws.svg"
  5449. }
  5450. }
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(8, "feet")
  5456. },
  5457. {
  5458. name: "Large",
  5459. height: math.unit(12, "feet")
  5460. },
  5461. {
  5462. name: "Larger",
  5463. height: math.unit(20, "feet")
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(150, "feet")
  5468. },
  5469. {
  5470. name: "Macro+",
  5471. height: math.unit(200, "feet"),
  5472. default: true
  5473. },
  5474. ]
  5475. ))
  5476. characterMakers.push(() => makeCharacter(
  5477. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5478. {
  5479. side: {
  5480. height: math.unit(12, "feet"),
  5481. weight: math.unit(2000, "kg"),
  5482. name: "Side",
  5483. image: {
  5484. source: "./media/characters/scott/side.svg",
  5485. extra: 754 / 724,
  5486. bottom: 0.069
  5487. }
  5488. },
  5489. upright: {
  5490. height: math.unit(12, "feet"),
  5491. weight: math.unit(2000, "kg"),
  5492. name: "Upright",
  5493. image: {
  5494. source: "./media/characters/scott/upright.svg",
  5495. extra: 3881 / 3722,
  5496. bottom: 0.05
  5497. }
  5498. },
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(12, "feet"),
  5504. default: true
  5505. },
  5506. ]
  5507. ))
  5508. characterMakers.push(() => makeCharacter(
  5509. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5510. {
  5511. side: {
  5512. height: math.unit(8, "meters"),
  5513. weight: math.unit(84755, "lbs"),
  5514. name: "Side",
  5515. image: {
  5516. source: "./media/characters/tobias/side.svg",
  5517. extra: 1474 / 1096,
  5518. bottom: 38.9 / 1513.1235
  5519. }
  5520. },
  5521. },
  5522. [
  5523. {
  5524. name: "Normal",
  5525. height: math.unit(8, "meters"),
  5526. default: true
  5527. },
  5528. ]
  5529. ))
  5530. characterMakers.push(() => makeCharacter(
  5531. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5532. {
  5533. front: {
  5534. height: math.unit(5.5, "feet"),
  5535. weight: math.unit(400, "lbs"),
  5536. name: "Front",
  5537. image: {
  5538. source: "./media/characters/kieran/front.svg",
  5539. extra: 2694 / 2364,
  5540. bottom: 217 / 2908
  5541. }
  5542. },
  5543. side: {
  5544. height: math.unit(5.5, "feet"),
  5545. weight: math.unit(400, "lbs"),
  5546. name: "Side",
  5547. image: {
  5548. source: "./media/characters/kieran/side.svg",
  5549. extra: 875 / 777,
  5550. bottom: 84.6 / 959
  5551. }
  5552. },
  5553. },
  5554. [
  5555. {
  5556. name: "Normal",
  5557. height: math.unit(5.5, "feet"),
  5558. default: true
  5559. },
  5560. ]
  5561. ))
  5562. characterMakers.push(() => makeCharacter(
  5563. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5564. {
  5565. side: {
  5566. height: math.unit(2, "meters"),
  5567. weight: math.unit(70, "kg"),
  5568. name: "Side",
  5569. image: {
  5570. source: "./media/characters/sanya/side.svg",
  5571. bottom: 0.02,
  5572. extra: 1.02
  5573. }
  5574. },
  5575. },
  5576. [
  5577. {
  5578. name: "Small",
  5579. height: math.unit(2, "meters")
  5580. },
  5581. {
  5582. name: "Normal",
  5583. height: math.unit(3, "meters")
  5584. },
  5585. {
  5586. name: "Macro",
  5587. height: math.unit(16, "meters"),
  5588. default: true
  5589. },
  5590. ]
  5591. ))
  5592. characterMakers.push(() => makeCharacter(
  5593. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5594. {
  5595. front: {
  5596. height: math.unit(2, "meters"),
  5597. weight: math.unit(120, "kg"),
  5598. name: "Front",
  5599. image: {
  5600. source: "./media/characters/miranda/front.svg",
  5601. extra: 195 / 185,
  5602. bottom: 10.9 / 206.5
  5603. }
  5604. },
  5605. back: {
  5606. height: math.unit(2, "meters"),
  5607. weight: math.unit(120, "kg"),
  5608. name: "Back",
  5609. image: {
  5610. source: "./media/characters/miranda/back.svg",
  5611. extra: 201 / 193,
  5612. bottom: 2.3 / 203.7
  5613. }
  5614. },
  5615. },
  5616. [
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(10, "feet"),
  5620. default: true
  5621. }
  5622. ]
  5623. ))
  5624. characterMakers.push(() => makeCharacter(
  5625. { name: "James", species: ["deer"], tags: ["anthro"] },
  5626. {
  5627. side: {
  5628. height: math.unit(2, "meters"),
  5629. weight: math.unit(100, "kg"),
  5630. name: "Front",
  5631. image: {
  5632. source: "./media/characters/james/front.svg",
  5633. extra: 10 / 8.5
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(8.5, "feet"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5647. {
  5648. side: {
  5649. height: math.unit(9.5, "feet"),
  5650. weight: math.unit(2500, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/heather/side.svg"
  5654. }
  5655. },
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(9.5, "feet"),
  5661. default: true
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5667. {
  5668. side: {
  5669. height: math.unit(6.5, "feet"),
  5670. weight: math.unit(400, "lbs"),
  5671. name: "Side",
  5672. image: {
  5673. source: "./media/characters/lukas/side.svg",
  5674. extra: 7.25 / 6.5
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(6.5, "feet"),
  5682. default: true
  5683. }
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5688. {
  5689. side: {
  5690. height: math.unit(5, "feet"),
  5691. weight: math.unit(3000, "lbs"),
  5692. name: "Side",
  5693. image: {
  5694. source: "./media/characters/louise/side.svg"
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Normal",
  5701. height: math.unit(5, "feet"),
  5702. default: true
  5703. }
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5708. {
  5709. side: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(150, "lbs"),
  5712. name: "Side",
  5713. image: {
  5714. source: "./media/characters/ramona/side.svg",
  5715. extra: 871/854,
  5716. bottom: 41/912
  5717. }
  5718. },
  5719. },
  5720. [
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(6 + 4/12, "feet")
  5724. },
  5725. {
  5726. name: "Minimacro",
  5727. height: math.unit(5.3, "meters"),
  5728. default: true
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(20, "stories")
  5733. },
  5734. {
  5735. name: "Macro+",
  5736. height: math.unit(50, "stories")
  5737. },
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5742. {
  5743. standing: {
  5744. height: math.unit(5.75, "feet"),
  5745. weight: math.unit(160, "lbs"),
  5746. name: "Standing",
  5747. image: {
  5748. source: "./media/characters/deerpuff/standing.svg",
  5749. extra: 682 / 624
  5750. }
  5751. },
  5752. sitting: {
  5753. height: math.unit(5.75 / 1.79, "feet"),
  5754. weight: math.unit(160, "lbs"),
  5755. name: "Sitting",
  5756. image: {
  5757. source: "./media/characters/deerpuff/sitting.svg",
  5758. bottom: 44 / 400,
  5759. extra: 1
  5760. }
  5761. },
  5762. taurLaying: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(400, "lbs"),
  5765. name: "Taur (Laying)",
  5766. image: {
  5767. source: "./media/characters/deerpuff/taur-laying.svg"
  5768. }
  5769. },
  5770. },
  5771. [
  5772. {
  5773. name: "Puffball",
  5774. height: math.unit(6, "inches")
  5775. },
  5776. {
  5777. name: "Normalpuff",
  5778. height: math.unit(5.75, "feet")
  5779. },
  5780. {
  5781. name: "Macropuff",
  5782. height: math.unit(1500, "feet"),
  5783. default: true
  5784. },
  5785. {
  5786. name: "Megapuff",
  5787. height: math.unit(500, "miles")
  5788. },
  5789. {
  5790. name: "Gigapuff",
  5791. height: math.unit(250000, "miles")
  5792. },
  5793. {
  5794. name: "Omegapuff",
  5795. height: math.unit(1000, "lightyears")
  5796. },
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5801. {
  5802. stomping: {
  5803. height: math.unit(6, "feet"),
  5804. weight: math.unit(170, "lbs"),
  5805. name: "Stomping",
  5806. image: {
  5807. source: "./media/characters/vivian/stomping.svg"
  5808. }
  5809. },
  5810. sitting: {
  5811. height: math.unit(6 / 1.75, "feet"),
  5812. weight: math.unit(170, "lbs"),
  5813. name: "Sitting",
  5814. image: {
  5815. source: "./media/characters/vivian/sitting.svg",
  5816. bottom: 1 / 6.4,
  5817. extra: 1,
  5818. }
  5819. },
  5820. },
  5821. [
  5822. {
  5823. name: "Normal",
  5824. height: math.unit(7, "feet"),
  5825. default: true
  5826. },
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(10, "stories")
  5830. },
  5831. {
  5832. name: "Macro+",
  5833. height: math.unit(30, "stories")
  5834. },
  5835. {
  5836. name: "Megamacro",
  5837. height: math.unit(10, "miles")
  5838. },
  5839. {
  5840. name: "Megamacro+",
  5841. height: math.unit(2750000, "meters")
  5842. },
  5843. ]
  5844. ))
  5845. characterMakers.push(() => makeCharacter(
  5846. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5847. {
  5848. front: {
  5849. height: math.unit(6, "feet"),
  5850. weight: math.unit(160, "lbs"),
  5851. name: "Front",
  5852. image: {
  5853. source: "./media/characters/prince/front.svg",
  5854. extra: 3400 / 3000
  5855. }
  5856. },
  5857. jumping: {
  5858. height: math.unit(6, "feet"),
  5859. weight: math.unit(160, "lbs"),
  5860. name: "Jumping",
  5861. image: {
  5862. source: "./media/characters/prince/jump.svg",
  5863. extra: 2555 / 2134
  5864. }
  5865. },
  5866. },
  5867. [
  5868. {
  5869. name: "Normal",
  5870. height: math.unit(7.75, "feet"),
  5871. default: true
  5872. },
  5873. {
  5874. name: "Not cute",
  5875. height: math.unit(17, "feet")
  5876. },
  5877. {
  5878. name: "I said NOT",
  5879. height: math.unit(91, "feet")
  5880. },
  5881. {
  5882. name: "Please stop",
  5883. height: math.unit(560, "feet")
  5884. },
  5885. {
  5886. name: "What have you done",
  5887. height: math.unit(2200, "feet")
  5888. },
  5889. {
  5890. name: "Deer God",
  5891. height: math.unit(3.6, "miles")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5897. {
  5898. standing: {
  5899. height: math.unit(6, "feet"),
  5900. weight: math.unit(300, "lbs"),
  5901. name: "Standing",
  5902. image: {
  5903. source: "./media/characters/psymon/standing.svg",
  5904. extra: 1888 / 1810,
  5905. bottom: 0.05
  5906. }
  5907. },
  5908. slithering: {
  5909. height: math.unit(6, "feet"),
  5910. weight: math.unit(300, "lbs"),
  5911. name: "Slithering",
  5912. image: {
  5913. source: "./media/characters/psymon/slithering.svg",
  5914. extra: 1330 / 1224
  5915. }
  5916. },
  5917. slitheringAlt: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(300, "lbs"),
  5920. name: "Slithering (Alt)",
  5921. image: {
  5922. source: "./media/characters/psymon/slithering-alt.svg",
  5923. extra: 1330 / 1224
  5924. }
  5925. },
  5926. },
  5927. [
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(11.25, "feet"),
  5931. default: true
  5932. },
  5933. {
  5934. name: "Large",
  5935. height: math.unit(27, "feet")
  5936. },
  5937. {
  5938. name: "Giant",
  5939. height: math.unit(87, "feet")
  5940. },
  5941. {
  5942. name: "Macro",
  5943. height: math.unit(365, "feet")
  5944. },
  5945. {
  5946. name: "Megamacro",
  5947. height: math.unit(3, "miles")
  5948. },
  5949. {
  5950. name: "World Serpent",
  5951. height: math.unit(8000, "miles")
  5952. },
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(6, "feet"),
  5960. weight: math.unit(180, "lbs"),
  5961. name: "Front",
  5962. image: {
  5963. source: "./media/characters/daimos/front.svg",
  5964. extra: 4160 / 3897,
  5965. bottom: 0.021
  5966. }
  5967. }
  5968. },
  5969. [
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(8, "feet"),
  5973. default: true
  5974. },
  5975. {
  5976. name: "Big Dog",
  5977. height: math.unit(22, "feet")
  5978. },
  5979. {
  5980. name: "Macro",
  5981. height: math.unit(127, "feet")
  5982. },
  5983. {
  5984. name: "Megamacro",
  5985. height: math.unit(3600, "feet")
  5986. },
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5991. {
  5992. side: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(180, "lbs"),
  5995. name: "Side",
  5996. image: {
  5997. source: "./media/characters/blake/side.svg",
  5998. extra: 1212 / 1120,
  5999. bottom: 0.05
  6000. }
  6001. },
  6002. crouched: {
  6003. height: math.unit(6 * 0.57, "feet"),
  6004. weight: math.unit(180, "lbs"),
  6005. name: "Crouched",
  6006. image: {
  6007. source: "./media/characters/blake/crouched.svg",
  6008. extra: 840 / 587,
  6009. bottom: 0.04
  6010. }
  6011. },
  6012. bent: {
  6013. height: math.unit(6 * 0.75, "feet"),
  6014. weight: math.unit(180, "lbs"),
  6015. name: "Bent",
  6016. image: {
  6017. source: "./media/characters/blake/bent.svg",
  6018. extra: 592 / 544,
  6019. bottom: 0.035
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(8 + 1 / 6, "feet"),
  6027. default: true
  6028. },
  6029. {
  6030. name: "Big Backside",
  6031. height: math.unit(37, "feet")
  6032. },
  6033. {
  6034. name: "Subway Shredder",
  6035. height: math.unit(72, "feet")
  6036. },
  6037. {
  6038. name: "City Carver",
  6039. height: math.unit(1675, "feet")
  6040. },
  6041. {
  6042. name: "Tectonic Tweaker",
  6043. height: math.unit(2300, "miles")
  6044. },
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6049. {
  6050. front: {
  6051. height: math.unit(6, "feet"),
  6052. weight: math.unit(180, "lbs"),
  6053. name: "Front",
  6054. image: {
  6055. source: "./media/characters/guisetto/front.svg",
  6056. extra: 856 / 817,
  6057. bottom: 0.06
  6058. }
  6059. },
  6060. airborne: {
  6061. height: math.unit(6, "feet"),
  6062. weight: math.unit(180, "lbs"),
  6063. name: "Airborne",
  6064. image: {
  6065. source: "./media/characters/guisetto/airborne.svg",
  6066. extra: 584 / 525
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Normal",
  6073. height: math.unit(10 + 11 / 12, "feet"),
  6074. default: true
  6075. },
  6076. {
  6077. name: "Large",
  6078. height: math.unit(35, "feet")
  6079. },
  6080. {
  6081. name: "Macro",
  6082. height: math.unit(475, "feet")
  6083. },
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(180, "lbs"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/luxor/front.svg",
  6095. extra: 2940 / 2152
  6096. }
  6097. },
  6098. back: {
  6099. height: math.unit(6, "feet"),
  6100. weight: math.unit(180, "lbs"),
  6101. name: "Back",
  6102. image: {
  6103. source: "./media/characters/luxor/back.svg",
  6104. extra: 1083 / 960
  6105. }
  6106. },
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(5 + 5 / 6, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Lamp",
  6116. height: math.unit(50, "feet")
  6117. },
  6118. {
  6119. name: "Lämp",
  6120. height: math.unit(300, "feet")
  6121. },
  6122. {
  6123. name: "The sun is a lamp",
  6124. height: math.unit(250000, "miles")
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6130. {
  6131. front: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(50, "lbs"),
  6134. name: "Front",
  6135. image: {
  6136. source: "./media/characters/huoyan/front.svg"
  6137. }
  6138. },
  6139. side: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(180, "lbs"),
  6142. name: "Side",
  6143. image: {
  6144. source: "./media/characters/huoyan/side.svg"
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Chef",
  6151. height: math.unit(9, "feet")
  6152. },
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(65, "feet"),
  6156. default: true
  6157. },
  6158. {
  6159. name: "Macro",
  6160. height: math.unit(780, "feet")
  6161. },
  6162. {
  6163. name: "Flaming Mountain",
  6164. height: math.unit(4.8, "miles")
  6165. },
  6166. {
  6167. name: "Celestial",
  6168. height: math.unit(765000, "miles")
  6169. },
  6170. ]
  6171. ))
  6172. characterMakers.push(() => makeCharacter(
  6173. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6174. {
  6175. front: {
  6176. height: math.unit(5 + 3 / 4, "feet"),
  6177. weight: math.unit(120, "lbs"),
  6178. name: "Front",
  6179. image: {
  6180. source: "./media/characters/tails/front.svg"
  6181. }
  6182. }
  6183. },
  6184. [
  6185. {
  6186. name: "Normal",
  6187. height: math.unit(5 + 3 / 4, "feet"),
  6188. default: true
  6189. }
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6194. {
  6195. front: {
  6196. height: math.unit(4, "feet"),
  6197. weight: math.unit(50, "lbs"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/rainy/front.svg"
  6201. }
  6202. }
  6203. },
  6204. [
  6205. {
  6206. name: "Macro",
  6207. height: math.unit(800, "feet"),
  6208. default: true
  6209. }
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6214. {
  6215. front: {
  6216. height: math.unit(6, "feet"),
  6217. weight: math.unit(150, "lbs"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/rainier/front.svg"
  6221. }
  6222. }
  6223. },
  6224. [
  6225. {
  6226. name: "Micro",
  6227. height: math.unit(2, "mm"),
  6228. default: true
  6229. }
  6230. ]
  6231. ))
  6232. characterMakers.push(() => makeCharacter(
  6233. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6234. {
  6235. front: {
  6236. height: math.unit(8 + 4/12, "feet"),
  6237. weight: math.unit(450, "kilograms"),
  6238. volume: math.unit(5, "cups"),
  6239. name: "Front",
  6240. image: {
  6241. source: "./media/characters/andy-renard/front.svg",
  6242. extra: 1839/1726,
  6243. bottom: 134/1973
  6244. }
  6245. },
  6246. back: {
  6247. height: math.unit(8 + 4/12, "feet"),
  6248. weight: math.unit(450, "kilograms"),
  6249. volume: math.unit(5, "cups"),
  6250. name: "Back",
  6251. image: {
  6252. source: "./media/characters/andy-renard/back.svg",
  6253. extra: 1838/1710,
  6254. bottom: 105/1943
  6255. }
  6256. },
  6257. },
  6258. [
  6259. {
  6260. name: "Tall",
  6261. height: math.unit(8 + 4/12, "feet")
  6262. },
  6263. {
  6264. name: "Mini Macro",
  6265. height: math.unit(15, "feet"),
  6266. default: true
  6267. },
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(100, "feet")
  6271. },
  6272. {
  6273. name: "Mega Macro",
  6274. height: math.unit(1000, "feet")
  6275. },
  6276. {
  6277. name: "Giga Macro",
  6278. height: math.unit(10, "miles")
  6279. },
  6280. {
  6281. name: "God Macro",
  6282. height: math.unit(1, "multiverse")
  6283. },
  6284. ]
  6285. ))
  6286. characterMakers.push(() => makeCharacter(
  6287. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6288. {
  6289. front: {
  6290. height: math.unit(6, "feet"),
  6291. weight: math.unit(210, "lbs"),
  6292. name: "Front",
  6293. image: {
  6294. source: "./media/characters/cimmaron/front-sfw.svg",
  6295. extra: 701 / 676,
  6296. bottom: 0.046
  6297. }
  6298. },
  6299. back: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(210, "lbs"),
  6302. name: "Back",
  6303. image: {
  6304. source: "./media/characters/cimmaron/back-sfw.svg",
  6305. extra: 701 / 676,
  6306. bottom: 0.046
  6307. }
  6308. },
  6309. frontNsfw: {
  6310. height: math.unit(6, "feet"),
  6311. weight: math.unit(210, "lbs"),
  6312. name: "Front (NSFW)",
  6313. image: {
  6314. source: "./media/characters/cimmaron/front-nsfw.svg",
  6315. extra: 701 / 676,
  6316. bottom: 0.046
  6317. }
  6318. },
  6319. backNsfw: {
  6320. height: math.unit(6, "feet"),
  6321. weight: math.unit(210, "lbs"),
  6322. name: "Back (NSFW)",
  6323. image: {
  6324. source: "./media/characters/cimmaron/back-nsfw.svg",
  6325. extra: 701 / 676,
  6326. bottom: 0.046
  6327. }
  6328. },
  6329. dick: {
  6330. height: math.unit(1.714, "feet"),
  6331. name: "Dick",
  6332. image: {
  6333. source: "./media/characters/cimmaron/dick.svg"
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(6, "feet"),
  6341. default: true
  6342. },
  6343. {
  6344. name: "Macro Mayor",
  6345. height: math.unit(350, "meters")
  6346. },
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(200, "lbs"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/akari/front.svg",
  6358. extra: 962 / 901,
  6359. bottom: 0.04
  6360. }
  6361. }
  6362. },
  6363. [
  6364. {
  6365. name: "Micro",
  6366. height: math.unit(5, "inches"),
  6367. default: true
  6368. },
  6369. {
  6370. name: "Normal",
  6371. height: math.unit(7, "feet")
  6372. },
  6373. ]
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6377. {
  6378. front: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(140, "lbs"),
  6381. name: "Front",
  6382. image: {
  6383. source: "./media/characters/cynosura/front.svg",
  6384. extra: 896 / 847
  6385. }
  6386. },
  6387. back: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(140, "lbs"),
  6390. name: "Back",
  6391. image: {
  6392. source: "./media/characters/cynosura/back.svg",
  6393. extra: 1365 / 1250
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Micro",
  6400. height: math.unit(4, "inches")
  6401. },
  6402. {
  6403. name: "Normal",
  6404. height: math.unit(5.75, "feet"),
  6405. default: true
  6406. },
  6407. {
  6408. name: "Tall",
  6409. height: math.unit(10, "feet")
  6410. },
  6411. {
  6412. name: "Big",
  6413. height: math.unit(20, "feet")
  6414. },
  6415. {
  6416. name: "Macro",
  6417. height: math.unit(50, "feet")
  6418. },
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(13 + 2/12, "feet"),
  6426. weight: math.unit(800, "kg"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/gin/front.svg",
  6430. extra: 1312/1191,
  6431. bottom: 45/1357
  6432. }
  6433. },
  6434. mouth: {
  6435. height: math.unit(2.39 * 1.8, "feet"),
  6436. name: "Mouth",
  6437. image: {
  6438. source: "./media/characters/gin/mouth.svg"
  6439. }
  6440. },
  6441. hand: {
  6442. height: math.unit(1.57 * 2.19, "feet"),
  6443. name: "Hand",
  6444. image: {
  6445. source: "./media/characters/gin/hand.svg"
  6446. }
  6447. },
  6448. foot: {
  6449. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6450. name: "Foot",
  6451. image: {
  6452. source: "./media/characters/gin/foot.svg"
  6453. }
  6454. },
  6455. sole: {
  6456. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6457. name: "Sole",
  6458. image: {
  6459. source: "./media/characters/gin/sole.svg"
  6460. }
  6461. },
  6462. },
  6463. [
  6464. {
  6465. name: "Very Small",
  6466. height: math.unit(13 + 2 / 12, "feet")
  6467. },
  6468. {
  6469. name: "Micro",
  6470. height: math.unit(600, "miles")
  6471. },
  6472. {
  6473. name: "Regular",
  6474. height: math.unit(20, "earths"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Macro",
  6479. height: math.unit(2.2, "solarradii")
  6480. },
  6481. {
  6482. name: "Teramacro",
  6483. height: math.unit(1.2, "galaxies")
  6484. },
  6485. {
  6486. name: "Omegamacro",
  6487. height: math.unit(200, "universes")
  6488. },
  6489. ]
  6490. ))
  6491. characterMakers.push(() => makeCharacter(
  6492. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6493. {
  6494. front: {
  6495. height: math.unit(6 + 1 / 6, "feet"),
  6496. weight: math.unit(178, "lbs"),
  6497. name: "Front",
  6498. image: {
  6499. source: "./media/characters/guy/front.svg"
  6500. }
  6501. }
  6502. },
  6503. [
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(6 + 1 / 6, "feet"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Large",
  6511. height: math.unit(25 + 7 / 12, "feet")
  6512. },
  6513. {
  6514. name: "Macro",
  6515. height: math.unit(60 + 9 / 12, "feet")
  6516. },
  6517. {
  6518. name: "Macro+",
  6519. height: math.unit(246, "feet")
  6520. },
  6521. {
  6522. name: "Macro++",
  6523. height: math.unit(878, "feet")
  6524. }
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(9, "feet"),
  6532. weight: math.unit(800, "lbs"),
  6533. name: "Front",
  6534. image: {
  6535. source: "./media/characters/tiberius/front.svg",
  6536. extra: 2295 / 2071
  6537. }
  6538. },
  6539. back: {
  6540. height: math.unit(9, "feet"),
  6541. weight: math.unit(800, "lbs"),
  6542. name: "Back",
  6543. image: {
  6544. source: "./media/characters/tiberius/back.svg",
  6545. extra: 2373 / 2160
  6546. }
  6547. },
  6548. },
  6549. [
  6550. {
  6551. name: "Normal",
  6552. height: math.unit(9, "feet"),
  6553. default: true
  6554. }
  6555. ]
  6556. ))
  6557. characterMakers.push(() => makeCharacter(
  6558. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6559. {
  6560. front: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(600, "lbs"),
  6563. name: "Front",
  6564. image: {
  6565. source: "./media/characters/surgo/front.svg",
  6566. extra: 3591 / 2227
  6567. }
  6568. },
  6569. back: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(600, "lbs"),
  6572. name: "Back",
  6573. image: {
  6574. source: "./media/characters/surgo/back.svg",
  6575. extra: 3557 / 2228
  6576. }
  6577. },
  6578. laying: {
  6579. height: math.unit(6 * 0.85, "feet"),
  6580. weight: math.unit(600, "lbs"),
  6581. name: "Laying",
  6582. image: {
  6583. source: "./media/characters/surgo/laying.svg"
  6584. }
  6585. },
  6586. },
  6587. [
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(6, "feet"),
  6591. default: true
  6592. }
  6593. ]
  6594. ))
  6595. characterMakers.push(() => makeCharacter(
  6596. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6597. {
  6598. side: {
  6599. height: math.unit(6, "feet"),
  6600. weight: math.unit(150, "lbs"),
  6601. name: "Side",
  6602. image: {
  6603. source: "./media/characters/cibus/side.svg",
  6604. extra: 800 / 400
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(6, "feet"),
  6612. default: true
  6613. }
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(240, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/nibbles/front.svg"
  6625. }
  6626. },
  6627. side: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(240, "lbs"),
  6630. name: "Side",
  6631. image: {
  6632. source: "./media/characters/nibbles/side.svg"
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(9, "feet"),
  6640. default: true
  6641. }
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6646. {
  6647. side: {
  6648. height: math.unit(5 + 1 / 6, "feet"),
  6649. weight: math.unit(130, "lbs"),
  6650. name: "Side",
  6651. image: {
  6652. source: "./media/characters/rikky/side.svg",
  6653. extra: 851 / 801
  6654. }
  6655. },
  6656. },
  6657. [
  6658. {
  6659. name: "Normal",
  6660. height: math.unit(5 + 1 / 6, "feet")
  6661. },
  6662. {
  6663. name: "Macro",
  6664. height: math.unit(152, "feet"),
  6665. default: true
  6666. },
  6667. {
  6668. name: "Megamacro",
  6669. height: math.unit(7, "miles")
  6670. }
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6675. {
  6676. side: {
  6677. height: math.unit(370, "cm"),
  6678. weight: math.unit(350, "lbs"),
  6679. name: "Side",
  6680. image: {
  6681. source: "./media/characters/malfressa/side.svg"
  6682. }
  6683. },
  6684. walking: {
  6685. height: math.unit(370, "cm"),
  6686. weight: math.unit(350, "lbs"),
  6687. name: "Walking",
  6688. image: {
  6689. source: "./media/characters/malfressa/walking.svg"
  6690. }
  6691. },
  6692. feral: {
  6693. height: math.unit(2500, "cm"),
  6694. weight: math.unit(100000, "lbs"),
  6695. name: "Feral",
  6696. image: {
  6697. source: "./media/characters/malfressa/feral.svg",
  6698. extra: 2108 / 837,
  6699. bottom: 0.02
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(370, "cm")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(300, "meters"),
  6711. default: true
  6712. }
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(60, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/jaro/front.svg",
  6724. extra: 845/817,
  6725. bottom: 45/890
  6726. }
  6727. },
  6728. back: {
  6729. height: math.unit(6, "feet"),
  6730. weight: math.unit(60, "kg"),
  6731. name: "Back",
  6732. image: {
  6733. source: "./media/characters/jaro/back.svg",
  6734. extra: 847/817,
  6735. bottom: 34/881
  6736. }
  6737. },
  6738. },
  6739. [
  6740. {
  6741. name: "Micro",
  6742. height: math.unit(7, "inches")
  6743. },
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(5.5, "feet"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Minimacro",
  6751. height: math.unit(20, "feet")
  6752. },
  6753. {
  6754. name: "Macro",
  6755. height: math.unit(200, "meters")
  6756. }
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(6, "feet"),
  6764. weight: math.unit(195, "lb"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/rogue/front.svg"
  6768. }
  6769. },
  6770. },
  6771. [
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(90, "feet"),
  6775. default: true
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6781. {
  6782. standing: {
  6783. height: math.unit(5 + 8 / 12, "feet"),
  6784. weight: math.unit(140, "lb"),
  6785. name: "Standing",
  6786. image: {
  6787. source: "./media/characters/piper/standing.svg",
  6788. extra: 1440/1284,
  6789. bottom: 66/1506
  6790. }
  6791. },
  6792. running: {
  6793. height: math.unit(5 + 8 / 12, "feet"),
  6794. weight: math.unit(140, "lb"),
  6795. name: "Running",
  6796. image: {
  6797. source: "./media/characters/piper/running.svg",
  6798. extra: 3948/3655,
  6799. bottom: 0/3948
  6800. }
  6801. },
  6802. sole: {
  6803. height: math.unit(0.81, "feet"),
  6804. weight: math.unit(2, "kg"),
  6805. name: "Sole",
  6806. image: {
  6807. source: "./media/characters/piper/sole.svg"
  6808. }
  6809. },
  6810. nipple: {
  6811. height: math.unit(0.25, "feet"),
  6812. weight: math.unit(1.5, "lb"),
  6813. name: "Nipple",
  6814. image: {
  6815. source: "./media/characters/piper/nipple.svg"
  6816. }
  6817. },
  6818. head: {
  6819. height: math.unit(1.1, "feet"),
  6820. name: "Head",
  6821. image: {
  6822. source: "./media/characters/piper/head.svg"
  6823. }
  6824. },
  6825. },
  6826. [
  6827. {
  6828. name: "Micro",
  6829. height: math.unit(2, "inches")
  6830. },
  6831. {
  6832. name: "Normal",
  6833. height: math.unit(5 + 8 / 12, "feet")
  6834. },
  6835. {
  6836. name: "Macro",
  6837. height: math.unit(250, "feet"),
  6838. default: true
  6839. },
  6840. {
  6841. name: "Megamacro",
  6842. height: math.unit(7, "miles")
  6843. },
  6844. ]
  6845. ))
  6846. characterMakers.push(() => makeCharacter(
  6847. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6848. {
  6849. front: {
  6850. height: math.unit(6, "feet"),
  6851. weight: math.unit(220, "lb"),
  6852. name: "Front",
  6853. image: {
  6854. source: "./media/characters/gemini/front.svg"
  6855. }
  6856. },
  6857. back: {
  6858. height: math.unit(6, "feet"),
  6859. weight: math.unit(220, "lb"),
  6860. name: "Back",
  6861. image: {
  6862. source: "./media/characters/gemini/back.svg"
  6863. }
  6864. },
  6865. kneeling: {
  6866. height: math.unit(6 / 1.5, "feet"),
  6867. weight: math.unit(220, "lb"),
  6868. name: "Kneeling",
  6869. image: {
  6870. source: "./media/characters/gemini/kneeling.svg",
  6871. bottom: 0.02
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(300, "meters"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Megamacro",
  6883. height: math.unit(6900, "meters")
  6884. },
  6885. ]
  6886. ))
  6887. characterMakers.push(() => makeCharacter(
  6888. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6889. {
  6890. anthro: {
  6891. height: math.unit(2.35, "meters"),
  6892. weight: math.unit(73, "kg"),
  6893. name: "Anthro",
  6894. image: {
  6895. source: "./media/characters/alicia/anthro.svg",
  6896. extra: 2571 / 2385,
  6897. bottom: 75 / 2648
  6898. }
  6899. },
  6900. paw: {
  6901. height: math.unit(1.32, "feet"),
  6902. name: "Paw",
  6903. image: {
  6904. source: "./media/characters/alicia/paw.svg"
  6905. }
  6906. },
  6907. feral: {
  6908. height: math.unit(1.69, "meters"),
  6909. weight: math.unit(73, "kg"),
  6910. name: "Feral",
  6911. image: {
  6912. source: "./media/characters/alicia/feral.svg",
  6913. extra: 2123 / 1715,
  6914. bottom: 222 / 2349
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(2.35, "meters")
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(60, "meters"),
  6926. default: true
  6927. },
  6928. {
  6929. name: "Megamacro",
  6930. height: math.unit(10000, "kilometers")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(7, "feet"),
  6939. weight: math.unit(250, "lbs"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/archy/front.svg"
  6943. }
  6944. }
  6945. },
  6946. [
  6947. {
  6948. name: "Micro",
  6949. height: math.unit(1, "inch")
  6950. },
  6951. {
  6952. name: "Shorty",
  6953. height: math.unit(5, "feet")
  6954. },
  6955. {
  6956. name: "Normal",
  6957. height: math.unit(7, "feet")
  6958. },
  6959. {
  6960. name: "Macro",
  6961. height: math.unit(600, "meters"),
  6962. default: true
  6963. },
  6964. {
  6965. name: "Megamacro",
  6966. height: math.unit(1, "mile")
  6967. },
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6972. {
  6973. front: {
  6974. height: math.unit(1.65, "meters"),
  6975. weight: math.unit(74, "kg"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/berri/front.svg",
  6979. extra: 857 / 837,
  6980. bottom: 18 / 877
  6981. }
  6982. },
  6983. bum: {
  6984. height: math.unit(1.46, "feet"),
  6985. name: "Bum",
  6986. image: {
  6987. source: "./media/characters/berri/bum.svg"
  6988. }
  6989. },
  6990. mouth: {
  6991. height: math.unit(0.44, "feet"),
  6992. name: "Mouth",
  6993. image: {
  6994. source: "./media/characters/berri/mouth.svg"
  6995. }
  6996. },
  6997. paw: {
  6998. height: math.unit(0.826, "feet"),
  6999. name: "Paw",
  7000. image: {
  7001. source: "./media/characters/berri/paw.svg"
  7002. }
  7003. },
  7004. },
  7005. [
  7006. {
  7007. name: "Normal",
  7008. height: math.unit(1.65, "meters")
  7009. },
  7010. {
  7011. name: "Macro",
  7012. height: math.unit(60, "m"),
  7013. default: true
  7014. },
  7015. {
  7016. name: "Megamacro",
  7017. height: math.unit(9.213, "km")
  7018. },
  7019. {
  7020. name: "Planet Eater",
  7021. height: math.unit(489, "megameters")
  7022. },
  7023. {
  7024. name: "Teramacro",
  7025. height: math.unit(2471635000000, "meters")
  7026. },
  7027. {
  7028. name: "Examacro",
  7029. height: math.unit(8.0624e+26, "meters")
  7030. }
  7031. ]
  7032. ))
  7033. characterMakers.push(() => makeCharacter(
  7034. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7035. {
  7036. front: {
  7037. height: math.unit(1.72, "meters"),
  7038. weight: math.unit(68, "kg"),
  7039. name: "Front",
  7040. image: {
  7041. source: "./media/characters/lexi/front.svg"
  7042. }
  7043. }
  7044. },
  7045. [
  7046. {
  7047. name: "Very Smol",
  7048. height: math.unit(10, "mm")
  7049. },
  7050. {
  7051. name: "Micro",
  7052. height: math.unit(6.8, "cm"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(1.72, "m")
  7058. }
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(1.69, "meters"),
  7066. weight: math.unit(68, "kg"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/martin/front.svg",
  7070. extra: 596 / 581
  7071. }
  7072. }
  7073. },
  7074. [
  7075. {
  7076. name: "Micro",
  7077. height: math.unit(6.85, "cm"),
  7078. default: true
  7079. },
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(1.69, "m")
  7083. }
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7088. {
  7089. front: {
  7090. height: math.unit(1.69, "meters"),
  7091. weight: math.unit(68, "kg"),
  7092. name: "Front",
  7093. image: {
  7094. source: "./media/characters/juno/front.svg"
  7095. }
  7096. }
  7097. },
  7098. [
  7099. {
  7100. name: "Micro",
  7101. height: math.unit(7, "cm")
  7102. },
  7103. {
  7104. name: "Normal",
  7105. height: math.unit(1.89, "m")
  7106. },
  7107. {
  7108. name: "Macro",
  7109. height: math.unit(353, "meters"),
  7110. default: true
  7111. }
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7116. {
  7117. front: {
  7118. height: math.unit(1.93, "meters"),
  7119. weight: math.unit(83, "kg"),
  7120. name: "Front",
  7121. image: {
  7122. source: "./media/characters/samantha/front.svg"
  7123. }
  7124. },
  7125. frontClothed: {
  7126. height: math.unit(1.93, "meters"),
  7127. weight: math.unit(83, "kg"),
  7128. name: "Front (Clothed)",
  7129. image: {
  7130. source: "./media/characters/samantha/front-clothed.svg"
  7131. }
  7132. },
  7133. back: {
  7134. height: math.unit(1.93, "meters"),
  7135. weight: math.unit(83, "kg"),
  7136. name: "Back",
  7137. image: {
  7138. source: "./media/characters/samantha/back.svg"
  7139. }
  7140. },
  7141. },
  7142. [
  7143. {
  7144. name: "Normal",
  7145. height: math.unit(1.93, "m")
  7146. },
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(74, "meters"),
  7150. default: true
  7151. },
  7152. {
  7153. name: "Macro+",
  7154. height: math.unit(223, "meters"),
  7155. },
  7156. {
  7157. name: "Megamacro",
  7158. height: math.unit(8381, "meters"),
  7159. },
  7160. {
  7161. name: "Megamacro+",
  7162. height: math.unit(12000, "kilometers")
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(1.92, "meters"),
  7171. weight: math.unit(80, "kg"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/dr-clay/front.svg"
  7175. }
  7176. },
  7177. frontClothed: {
  7178. height: math.unit(1.92, "meters"),
  7179. weight: math.unit(80, "kg"),
  7180. name: "Front (Clothed)",
  7181. image: {
  7182. source: "./media/characters/dr-clay/front-clothed.svg"
  7183. }
  7184. }
  7185. },
  7186. [
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(1.92, "m")
  7190. },
  7191. {
  7192. name: "Macro",
  7193. height: math.unit(214, "meters"),
  7194. default: true
  7195. },
  7196. {
  7197. name: "Macro+",
  7198. height: math.unit(12.237, "meters"),
  7199. },
  7200. {
  7201. name: "Megamacro",
  7202. height: math.unit(557, "megameters"),
  7203. },
  7204. {
  7205. name: "Unimaginable",
  7206. height: math.unit(120e9, "lightyears")
  7207. },
  7208. ]
  7209. ))
  7210. characterMakers.push(() => makeCharacter(
  7211. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7212. {
  7213. front: {
  7214. height: math.unit(2, "meters"),
  7215. weight: math.unit(80, "kg"),
  7216. name: "Front",
  7217. image: {
  7218. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7219. }
  7220. }
  7221. },
  7222. [
  7223. {
  7224. name: "Teramacro",
  7225. height: math.unit(500000, "lightyears"),
  7226. default: true
  7227. },
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7232. {
  7233. crux: {
  7234. height: math.unit(2, "meters"),
  7235. weight: math.unit(150, "kg"),
  7236. name: "Crux",
  7237. image: {
  7238. source: "./media/characters/vemus/crux.svg",
  7239. extra: 1074/936,
  7240. bottom: 23/1097
  7241. }
  7242. },
  7243. skunkTanuki: {
  7244. height: math.unit(2, "meters"),
  7245. weight: math.unit(150, "kg"),
  7246. name: "Skunk-Tanuki",
  7247. image: {
  7248. source: "./media/characters/vemus/skunk-tanuki.svg",
  7249. extra: 926/893,
  7250. bottom: 20/946
  7251. }
  7252. },
  7253. },
  7254. [
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(4, "meters"),
  7258. default: true
  7259. },
  7260. {
  7261. name: "Big",
  7262. height: math.unit(8, "meters")
  7263. },
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(100, "meters")
  7267. },
  7268. {
  7269. name: "Macro+",
  7270. height: math.unit(1500, "meters")
  7271. },
  7272. {
  7273. name: "Stellar",
  7274. height: math.unit(14e8, "meters")
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(2, "meters"),
  7283. weight: math.unit(70, "kg"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/beherit/front.svg",
  7287. extra: 1234/1109,
  7288. bottom: 55/1289
  7289. }
  7290. }
  7291. },
  7292. [
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(6, "feet")
  7296. },
  7297. {
  7298. name: "Lorg",
  7299. height: math.unit(25, "feet"),
  7300. default: true
  7301. },
  7302. {
  7303. name: "Lorger",
  7304. height: math.unit(75, "feet")
  7305. },
  7306. {
  7307. name: "Macro",
  7308. height: math.unit(200, "meters")
  7309. },
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7314. {
  7315. front: {
  7316. height: math.unit(2, "meters"),
  7317. weight: math.unit(150, "kg"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/everett/front.svg",
  7321. extra: 1017/866,
  7322. bottom: 86/1103
  7323. }
  7324. },
  7325. paw: {
  7326. height: math.unit(2 / 3.6, "meters"),
  7327. name: "Paw",
  7328. image: {
  7329. source: "./media/characters/everett/paw.svg"
  7330. }
  7331. },
  7332. },
  7333. [
  7334. {
  7335. name: "Normal",
  7336. height: math.unit(15, "feet"),
  7337. default: true
  7338. },
  7339. {
  7340. name: "Lorg",
  7341. height: math.unit(70, "feet"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Lorger",
  7346. height: math.unit(250, "feet")
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(500, "meters")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(2, "meters"),
  7359. weight: math.unit(86, "kg"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/rose/front.svg",
  7363. extra: 1785/1636,
  7364. bottom: 30/1815
  7365. },
  7366. form: "liom",
  7367. default: true
  7368. },
  7369. frontSporty: {
  7370. height: math.unit(2, "meters"),
  7371. weight: math.unit(86, "kg"),
  7372. name: "Front (Sporty)",
  7373. image: {
  7374. source: "./media/characters/rose/front-sporty.svg",
  7375. extra: 350/335,
  7376. bottom: 10/360
  7377. },
  7378. form: "liom"
  7379. },
  7380. frontAlt: {
  7381. height: math.unit(1.6, "meters"),
  7382. weight: math.unit(86, "kg"),
  7383. name: "Front (Alt)",
  7384. image: {
  7385. source: "./media/characters/rose/front-alt.svg",
  7386. extra: 299/283,
  7387. bottom: 3/302
  7388. },
  7389. form: "liom"
  7390. },
  7391. plush: {
  7392. height: math.unit(2, "meters"),
  7393. weight: math.unit(86/3, "kg"),
  7394. name: "Plush",
  7395. image: {
  7396. source: "./media/characters/rose/plush.svg",
  7397. extra: 361/337,
  7398. bottom: 11/372
  7399. },
  7400. form: "plush",
  7401. default: true
  7402. },
  7403. faeStanding: {
  7404. height: math.unit(10, "cm"),
  7405. weight: math.unit(10, "grams"),
  7406. name: "Standing",
  7407. image: {
  7408. source: "./media/characters/rose/fae-standing.svg",
  7409. extra: 1189/1060,
  7410. bottom: 27/1216
  7411. },
  7412. form: "fae",
  7413. default: true
  7414. },
  7415. faeSitting: {
  7416. height: math.unit(5, "cm"),
  7417. weight: math.unit(10, "grams"),
  7418. name: "Sitting",
  7419. image: {
  7420. source: "./media/characters/rose/fae-sitting.svg",
  7421. extra: 737/577,
  7422. bottom: 356/1093
  7423. },
  7424. form: "fae"
  7425. },
  7426. faePaw: {
  7427. height: math.unit(1.35, "cm"),
  7428. name: "Paw",
  7429. image: {
  7430. source: "./media/characters/rose/fae-paw.svg"
  7431. },
  7432. form: "fae"
  7433. },
  7434. },
  7435. [
  7436. {
  7437. name: "True Micro",
  7438. height: math.unit(9, "cm"),
  7439. form: "liom"
  7440. },
  7441. {
  7442. name: "Micro",
  7443. height: math.unit(16, "cm"),
  7444. form: "liom"
  7445. },
  7446. {
  7447. name: "Normal",
  7448. height: math.unit(1.85, "meters"),
  7449. default: true,
  7450. form: "liom"
  7451. },
  7452. {
  7453. name: "Mini-Macro",
  7454. height: math.unit(5, "meters"),
  7455. form: "liom"
  7456. },
  7457. {
  7458. name: "Macro",
  7459. height: math.unit(15, "meters"),
  7460. form: "liom"
  7461. },
  7462. {
  7463. name: "True Macro",
  7464. height: math.unit(40, "meters"),
  7465. form: "liom"
  7466. },
  7467. {
  7468. name: "City Scale",
  7469. height: math.unit(1, "km"),
  7470. form: "liom"
  7471. },
  7472. {
  7473. name: "Plushie",
  7474. height: math.unit(9, "cm"),
  7475. form: "plush",
  7476. default: true
  7477. },
  7478. {
  7479. name: "Fae",
  7480. height: math.unit(10, "cm"),
  7481. form: "fae",
  7482. default: true
  7483. },
  7484. ],
  7485. {
  7486. "liom": {
  7487. name: "Liom"
  7488. },
  7489. "plush": {
  7490. name: "Plush"
  7491. },
  7492. "fae": {
  7493. name: "Fae Fox",
  7494. default: true
  7495. }
  7496. }
  7497. ))
  7498. characterMakers.push(() => makeCharacter(
  7499. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7500. {
  7501. front: {
  7502. height: math.unit(2, "meters"),
  7503. weight: math.unit(350, "lbs"),
  7504. name: "Front",
  7505. image: {
  7506. source: "./media/characters/regal/front.svg"
  7507. }
  7508. },
  7509. back: {
  7510. height: math.unit(2, "meters"),
  7511. weight: math.unit(350, "lbs"),
  7512. name: "Back",
  7513. image: {
  7514. source: "./media/characters/regal/back.svg"
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(350, "feet"),
  7522. default: true
  7523. }
  7524. ]
  7525. ))
  7526. characterMakers.push(() => makeCharacter(
  7527. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7528. {
  7529. front: {
  7530. height: math.unit(4 + 11 / 12, "feet"),
  7531. weight: math.unit(100, "lbs"),
  7532. name: "Front",
  7533. image: {
  7534. source: "./media/characters/opal/front.svg"
  7535. }
  7536. },
  7537. frontAlt: {
  7538. height: math.unit(4 + 11 / 12, "feet"),
  7539. weight: math.unit(100, "lbs"),
  7540. name: "Front (Alt)",
  7541. image: {
  7542. source: "./media/characters/opal/front-alt.svg"
  7543. }
  7544. },
  7545. },
  7546. [
  7547. {
  7548. name: "Small",
  7549. height: math.unit(4 + 11 / 12, "feet")
  7550. },
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(20, "feet"),
  7554. default: true
  7555. },
  7556. {
  7557. name: "Macro",
  7558. height: math.unit(120, "feet")
  7559. },
  7560. {
  7561. name: "Megamacro",
  7562. height: math.unit(80, "miles")
  7563. },
  7564. {
  7565. name: "True Size",
  7566. height: math.unit(100000, "lightyears")
  7567. },
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(6, "feet"),
  7575. weight: math.unit(200, "lbs"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/vector-wuff/front.svg"
  7579. }
  7580. }
  7581. },
  7582. [
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(2.8, "meters")
  7586. },
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(450, "meters"),
  7590. default: true
  7591. },
  7592. {
  7593. name: "Megamacro",
  7594. height: math.unit(15, "kilometers")
  7595. }
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7600. {
  7601. front: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(256, "lbs"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/dannik/front.svg"
  7607. }
  7608. }
  7609. },
  7610. [
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(69.57, "meters"),
  7614. default: true
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(120, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/azura-saharah/front.svg"
  7627. }
  7628. },
  7629. back: {
  7630. height: math.unit(6, "feet"),
  7631. weight: math.unit(120, "lbs"),
  7632. name: "Back",
  7633. image: {
  7634. source: "./media/characters/azura-saharah/back.svg"
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Macro",
  7641. height: math.unit(100, "feet"),
  7642. default: true
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7648. {
  7649. side: {
  7650. height: math.unit(5 + 4 / 12, "feet"),
  7651. weight: math.unit(163, "lbs"),
  7652. name: "Side",
  7653. image: {
  7654. source: "./media/characters/kennedy/side.svg"
  7655. }
  7656. }
  7657. },
  7658. [
  7659. {
  7660. name: "Standard Doggo",
  7661. height: math.unit(5 + 4 / 12, "feet")
  7662. },
  7663. {
  7664. name: "Big Doggo",
  7665. height: math.unit(25 + 3 / 12, "feet"),
  7666. default: true
  7667. },
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7672. {
  7673. front: {
  7674. height: math.unit(5 + 5/12, "feet"),
  7675. weight: math.unit(100, "lbs"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/odios-de-lunar/front.svg",
  7679. extra: 1468/1323,
  7680. bottom: 22/1490
  7681. }
  7682. }
  7683. },
  7684. [
  7685. {
  7686. name: "Micro",
  7687. height: math.unit(3, "inches")
  7688. },
  7689. {
  7690. name: "Normal",
  7691. height: math.unit(5.5, "feet"),
  7692. default: true
  7693. },
  7694. {
  7695. name: "Macro",
  7696. height: math.unit(100, "feet")
  7697. },
  7698. ]
  7699. ))
  7700. characterMakers.push(() => makeCharacter(
  7701. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7702. {
  7703. back: {
  7704. height: math.unit(6, "feet"),
  7705. weight: math.unit(220, "lbs"),
  7706. name: "Back",
  7707. image: {
  7708. source: "./media/characters/mandake/back.svg"
  7709. }
  7710. }
  7711. },
  7712. [
  7713. {
  7714. name: "Normal",
  7715. height: math.unit(7, "feet"),
  7716. default: true
  7717. },
  7718. {
  7719. name: "Macro",
  7720. height: math.unit(78, "feet")
  7721. },
  7722. {
  7723. name: "Macro+",
  7724. height: math.unit(300, "meters")
  7725. },
  7726. {
  7727. name: "Macro++",
  7728. height: math.unit(2400, "feet")
  7729. },
  7730. {
  7731. name: "Megamacro",
  7732. height: math.unit(5167, "meters")
  7733. },
  7734. {
  7735. name: "Gigamacro",
  7736. height: math.unit(41769, "miles")
  7737. },
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(120, "lbs"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/yozey/front.svg"
  7749. }
  7750. },
  7751. frontAlt: {
  7752. height: math.unit(6, "feet"),
  7753. weight: math.unit(120, "lbs"),
  7754. name: "Front (Alt)",
  7755. image: {
  7756. source: "./media/characters/yozey/front-alt.svg"
  7757. }
  7758. },
  7759. side: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(120, "lbs"),
  7762. name: "Side",
  7763. image: {
  7764. source: "./media/characters/yozey/side.svg"
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Micro",
  7771. height: math.unit(3, "inches"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Normal",
  7776. height: math.unit(6, "feet")
  7777. }
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(103, "lbs"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/valeska-voss/front.svg"
  7789. }
  7790. }
  7791. },
  7792. [
  7793. {
  7794. name: "Mini-Sized Sub",
  7795. height: math.unit(3.1, "inches")
  7796. },
  7797. {
  7798. name: "Mid-Sized Sub",
  7799. height: math.unit(6.2, "inches")
  7800. },
  7801. {
  7802. name: "Full-Sized Sub",
  7803. height: math.unit(9.3, "inches")
  7804. },
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(5 + 2 / 12, "foot"),
  7808. default: true
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(6, "feet"),
  7817. weight: math.unit(160, "lbs"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/gene-zeta/front.svg",
  7821. extra: 3006 / 2826,
  7822. bottom: 182 / 3188
  7823. }
  7824. }
  7825. },
  7826. [
  7827. {
  7828. name: "Micro",
  7829. height: math.unit(6, "inches")
  7830. },
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(5 + 11 / 12, "foot"),
  7834. default: true
  7835. },
  7836. {
  7837. name: "Macro",
  7838. height: math.unit(140, "feet")
  7839. },
  7840. {
  7841. name: "Supercharged",
  7842. height: math.unit(2500, "feet")
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(6, "feet"),
  7851. weight: math.unit(350, "lbs"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/razinox/front.svg",
  7855. extra: 1686 / 1548,
  7856. bottom: 28.2 / 1868
  7857. }
  7858. },
  7859. back: {
  7860. height: math.unit(6, "feet"),
  7861. weight: math.unit(350, "lbs"),
  7862. name: "Back",
  7863. image: {
  7864. source: "./media/characters/razinox/back.svg",
  7865. extra: 1660 / 1590,
  7866. bottom: 15 / 1665
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(10 + 8 / 12, "foot")
  7874. },
  7875. {
  7876. name: "Minimacro",
  7877. height: math.unit(15, "foot")
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(60, "foot"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Megamacro",
  7886. height: math.unit(5, "miles")
  7887. },
  7888. {
  7889. name: "Gigamacro",
  7890. height: math.unit(6000, "miles")
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(150, "lbs"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/cobalt/front.svg"
  7903. }
  7904. }
  7905. },
  7906. [
  7907. {
  7908. name: "Normal",
  7909. height: math.unit(8 + 1 / 12, "foot")
  7910. },
  7911. {
  7912. name: "Macro",
  7913. height: math.unit(111, "foot"),
  7914. default: true
  7915. },
  7916. {
  7917. name: "Supracosmic",
  7918. height: math.unit(1e42, "feet")
  7919. },
  7920. ]
  7921. ))
  7922. characterMakers.push(() => makeCharacter(
  7923. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7924. {
  7925. front: {
  7926. height: math.unit(5, "inches"),
  7927. name: "Front",
  7928. image: {
  7929. source: "./media/characters/amanda/front.svg",
  7930. extra: 926/791,
  7931. bottom: 38/964
  7932. }
  7933. },
  7934. back: {
  7935. height: math.unit(5, "inches"),
  7936. name: "Back",
  7937. image: {
  7938. source: "./media/characters/amanda/back.svg",
  7939. extra: 909/805,
  7940. bottom: 43/952
  7941. }
  7942. },
  7943. },
  7944. [
  7945. {
  7946. name: "Micro",
  7947. height: math.unit(5, "inches"),
  7948. default: true
  7949. },
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(2.75, "meters"),
  7957. weight: math.unit(1200, "lb"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/teal/front.svg",
  7961. extra: 2463 / 2320,
  7962. bottom: 166 / 2629
  7963. }
  7964. },
  7965. back: {
  7966. height: math.unit(2.75, "meters"),
  7967. weight: math.unit(1200, "lb"),
  7968. name: "Back",
  7969. image: {
  7970. source: "./media/characters/teal/back.svg",
  7971. extra: 2580 / 2489,
  7972. bottom: 151 / 2731
  7973. }
  7974. },
  7975. sitting: {
  7976. height: math.unit(1.9, "meters"),
  7977. weight: math.unit(1200, "lb"),
  7978. name: "Sitting",
  7979. image: {
  7980. source: "./media/characters/teal/sitting.svg",
  7981. extra: 623 / 590,
  7982. bottom: 121 / 744
  7983. }
  7984. },
  7985. standing: {
  7986. height: math.unit(2.75, "meters"),
  7987. weight: math.unit(1200, "lb"),
  7988. name: "Standing",
  7989. image: {
  7990. source: "./media/characters/teal/standing.svg",
  7991. extra: 923 / 893,
  7992. bottom: 60 / 983
  7993. }
  7994. },
  7995. stretching: {
  7996. height: math.unit(3.65, "meters"),
  7997. weight: math.unit(1200, "lb"),
  7998. name: "Stretching",
  7999. image: {
  8000. source: "./media/characters/teal/stretching.svg",
  8001. extra: 1276 / 1244,
  8002. bottom: 0 / 1276
  8003. }
  8004. },
  8005. legged: {
  8006. height: math.unit(1.3, "meters"),
  8007. weight: math.unit(100, "lb"),
  8008. name: "Legged",
  8009. image: {
  8010. source: "./media/characters/teal/legged.svg",
  8011. extra: 462 / 437,
  8012. bottom: 24 / 486
  8013. }
  8014. },
  8015. naga: {
  8016. height: math.unit(5.4, "meters"),
  8017. weight: math.unit(4000, "lb"),
  8018. name: "Naga",
  8019. image: {
  8020. source: "./media/characters/teal/naga.svg",
  8021. extra: 1902 / 1858,
  8022. bottom: 0 / 1902
  8023. }
  8024. },
  8025. hand: {
  8026. height: math.unit(0.52, "meters"),
  8027. name: "Hand",
  8028. image: {
  8029. source: "./media/characters/teal/hand.svg"
  8030. }
  8031. },
  8032. maw: {
  8033. height: math.unit(0.43, "meters"),
  8034. name: "Maw",
  8035. image: {
  8036. source: "./media/characters/teal/maw.svg"
  8037. }
  8038. },
  8039. slit: {
  8040. height: math.unit(0.25, "meters"),
  8041. name: "Slit",
  8042. image: {
  8043. source: "./media/characters/teal/slit.svg"
  8044. }
  8045. },
  8046. },
  8047. [
  8048. {
  8049. name: "Normal",
  8050. height: math.unit(2.75, "meters"),
  8051. default: true
  8052. },
  8053. {
  8054. name: "Macro",
  8055. height: math.unit(300, "feet")
  8056. },
  8057. {
  8058. name: "Macro+",
  8059. height: math.unit(2000, "feet")
  8060. },
  8061. ]
  8062. ))
  8063. characterMakers.push(() => makeCharacter(
  8064. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8065. {
  8066. frontCat: {
  8067. height: math.unit(6, "feet"),
  8068. weight: math.unit(180, "lbs"),
  8069. name: "Front (Cat)",
  8070. image: {
  8071. source: "./media/characters/ravin-amulet/front-cat.svg"
  8072. }
  8073. },
  8074. frontCatAlt: {
  8075. height: math.unit(6, "feet"),
  8076. weight: math.unit(180, "lbs"),
  8077. name: "Front (Alt, Cat)",
  8078. image: {
  8079. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8080. }
  8081. },
  8082. frontWerewolf: {
  8083. height: math.unit(6 * 1.2, "feet"),
  8084. weight: math.unit(225, "lbs"),
  8085. name: "Front (Werewolf)",
  8086. image: {
  8087. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8088. }
  8089. },
  8090. backWerewolf: {
  8091. height: math.unit(6 * 1.2, "feet"),
  8092. weight: math.unit(225, "lbs"),
  8093. name: "Back (Werewolf)",
  8094. image: {
  8095. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8096. }
  8097. },
  8098. },
  8099. [
  8100. {
  8101. name: "Nano",
  8102. height: math.unit(1, "micrometer")
  8103. },
  8104. {
  8105. name: "Micro",
  8106. height: math.unit(1, "inch")
  8107. },
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(6, "feet"),
  8111. default: true
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(60, "feet")
  8116. }
  8117. ]
  8118. ))
  8119. characterMakers.push(() => makeCharacter(
  8120. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8121. {
  8122. front: {
  8123. height: math.unit(6, "feet"),
  8124. weight: math.unit(165, "lbs"),
  8125. name: "Front",
  8126. image: {
  8127. source: "./media/characters/fluoresce/front.svg"
  8128. }
  8129. }
  8130. },
  8131. [
  8132. {
  8133. name: "Micro",
  8134. height: math.unit(6, "cm")
  8135. },
  8136. {
  8137. name: "Normal",
  8138. height: math.unit(5 + 7 / 12, "feet"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Macro",
  8143. height: math.unit(56, "feet")
  8144. },
  8145. {
  8146. name: "Megamacro",
  8147. height: math.unit(1.9, "miles")
  8148. },
  8149. ]
  8150. ))
  8151. characterMakers.push(() => makeCharacter(
  8152. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8153. {
  8154. front: {
  8155. height: math.unit(9 + 6 / 12, "feet"),
  8156. weight: math.unit(523, "lbs"),
  8157. name: "Side",
  8158. image: {
  8159. source: "./media/characters/aurora/side.svg"
  8160. }
  8161. }
  8162. },
  8163. [
  8164. {
  8165. name: "Normal",
  8166. height: math.unit(9 + 6 / 12, "feet")
  8167. },
  8168. {
  8169. name: "Macro",
  8170. height: math.unit(96, "feet"),
  8171. default: true
  8172. },
  8173. {
  8174. name: "Macro+",
  8175. height: math.unit(243, "feet")
  8176. },
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8181. {
  8182. front: {
  8183. height: math.unit(194, "cm"),
  8184. weight: math.unit(90, "kg"),
  8185. name: "Front",
  8186. image: {
  8187. source: "./media/characters/ranek/front.svg",
  8188. extra: 1862/1791,
  8189. bottom: 80/1942
  8190. }
  8191. },
  8192. back: {
  8193. height: math.unit(194, "cm"),
  8194. weight: math.unit(90, "kg"),
  8195. name: "Back",
  8196. image: {
  8197. source: "./media/characters/ranek/back.svg",
  8198. extra: 1853/1787,
  8199. bottom: 74/1927
  8200. }
  8201. },
  8202. feral: {
  8203. height: math.unit(30, "cm"),
  8204. weight: math.unit(1.6, "lbs"),
  8205. name: "Feral",
  8206. image: {
  8207. source: "./media/characters/ranek/feral.svg",
  8208. extra: 990/631,
  8209. bottom: 29/1019
  8210. }
  8211. },
  8212. },
  8213. [
  8214. {
  8215. name: "Normal",
  8216. height: math.unit(194, "cm"),
  8217. default: true
  8218. },
  8219. {
  8220. name: "Macro",
  8221. height: math.unit(100, "meters")
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(5 + 6 / 12, "feet"),
  8230. weight: math.unit(153, "lbs"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/andrew-cooper/front.svg"
  8234. }
  8235. },
  8236. },
  8237. [
  8238. {
  8239. name: "Nano",
  8240. height: math.unit(1, "mm")
  8241. },
  8242. {
  8243. name: "Micro",
  8244. height: math.unit(2, "inches")
  8245. },
  8246. {
  8247. name: "Normal",
  8248. height: math.unit(5 + 6 / 12, "feet"),
  8249. default: true
  8250. }
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(6, "feet"),
  8258. weight: math.unit(180, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/akane-sato/front.svg",
  8262. extra: 1219 / 1140
  8263. }
  8264. },
  8265. back: {
  8266. height: math.unit(6, "feet"),
  8267. weight: math.unit(180, "lbs"),
  8268. name: "Back",
  8269. image: {
  8270. source: "./media/characters/akane-sato/back.svg",
  8271. extra: 1219 / 1170
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(2.5, "meters")
  8279. },
  8280. {
  8281. name: "Macro",
  8282. height: math.unit(250, "meters"),
  8283. default: true
  8284. },
  8285. {
  8286. name: "Megamacro",
  8287. height: math.unit(25, "km")
  8288. },
  8289. ]
  8290. ))
  8291. characterMakers.push(() => makeCharacter(
  8292. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8293. {
  8294. front: {
  8295. height: math.unit(6, "feet"),
  8296. weight: math.unit(65, "kg"),
  8297. name: "Front",
  8298. image: {
  8299. source: "./media/characters/rook/front.svg",
  8300. extra: 960 / 950
  8301. }
  8302. }
  8303. },
  8304. [
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(8.8, "feet")
  8308. },
  8309. {
  8310. name: "Macro",
  8311. height: math.unit(88, "feet"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Megamacro",
  8316. height: math.unit(8, "miles")
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(12 + 2 / 12, "feet"),
  8325. weight: math.unit(808, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/prodigy/front.svg"
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(12 + 2 / 12, "feet"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(143, "feet")
  8341. },
  8342. {
  8343. name: "Macro+",
  8344. height: math.unit(400, "feet")
  8345. },
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8350. {
  8351. front: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(225, "lbs"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/daniel/front.svg"
  8357. }
  8358. },
  8359. leaning: {
  8360. height: math.unit(6, "feet"),
  8361. weight: math.unit(225, "lbs"),
  8362. name: "Leaning",
  8363. image: {
  8364. source: "./media/characters/daniel/leaning.svg"
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(1000, "feet"),
  8372. default: true
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(88, "lbs"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/chiros/front.svg",
  8385. extra: 306 / 226
  8386. }
  8387. },
  8388. side: {
  8389. height: math.unit(6, "feet"),
  8390. weight: math.unit(88, "lbs"),
  8391. name: "Side",
  8392. image: {
  8393. source: "./media/characters/chiros/side.svg",
  8394. extra: 306 / 226
  8395. }
  8396. },
  8397. },
  8398. [
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(6, "cm"),
  8402. default: true
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8408. {
  8409. front: {
  8410. height: math.unit(6, "feet"),
  8411. weight: math.unit(100, "lbs"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/selka/front.svg",
  8415. extra: 947 / 887
  8416. }
  8417. }
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(5, "cm"),
  8423. default: true
  8424. },
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8429. {
  8430. front: {
  8431. height: math.unit(8 + 3 / 12, "feet"),
  8432. weight: math.unit(424, "lbs"),
  8433. name: "Front",
  8434. image: {
  8435. source: "./media/characters/verin/front.svg",
  8436. extra: 1845 / 1550
  8437. }
  8438. },
  8439. frontArmored: {
  8440. height: math.unit(8 + 3 / 12, "feet"),
  8441. weight: math.unit(424, "lbs"),
  8442. name: "Front (Armored)",
  8443. image: {
  8444. source: "./media/characters/verin/front-armor.svg",
  8445. extra: 1845 / 1550,
  8446. bottom: 0.01
  8447. }
  8448. },
  8449. back: {
  8450. height: math.unit(8 + 3 / 12, "feet"),
  8451. weight: math.unit(424, "lbs"),
  8452. name: "Back",
  8453. image: {
  8454. source: "./media/characters/verin/back.svg",
  8455. bottom: 0.1,
  8456. extra: 1
  8457. }
  8458. },
  8459. foot: {
  8460. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8461. name: "Foot",
  8462. image: {
  8463. source: "./media/characters/verin/foot.svg"
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(8 + 3 / 12, "feet")
  8471. },
  8472. {
  8473. name: "Minimacro",
  8474. height: math.unit(21, "feet"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(626, "feet")
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8485. {
  8486. front: {
  8487. height: math.unit(2.718, "meters"),
  8488. weight: math.unit(150, "lbs"),
  8489. name: "Front",
  8490. image: {
  8491. source: "./media/characters/sovrim-terraquian/front.svg",
  8492. extra: 1752/1689,
  8493. bottom: 36/1788
  8494. }
  8495. },
  8496. back: {
  8497. height: math.unit(2.718, "meters"),
  8498. weight: math.unit(150, "lbs"),
  8499. name: "Back",
  8500. image: {
  8501. source: "./media/characters/sovrim-terraquian/back.svg",
  8502. extra: 1698/1657,
  8503. bottom: 58/1756
  8504. }
  8505. },
  8506. tongue: {
  8507. height: math.unit(2.865, "feet"),
  8508. name: "Tongue",
  8509. image: {
  8510. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8511. }
  8512. },
  8513. hand: {
  8514. height: math.unit(1.61, "feet"),
  8515. name: "Hand",
  8516. image: {
  8517. source: "./media/characters/sovrim-terraquian/hand.svg"
  8518. }
  8519. },
  8520. foot: {
  8521. height: math.unit(1.05, "feet"),
  8522. name: "Foot",
  8523. image: {
  8524. source: "./media/characters/sovrim-terraquian/foot.svg"
  8525. }
  8526. },
  8527. footAlt: {
  8528. height: math.unit(0.88, "feet"),
  8529. name: "Foot (Alt)",
  8530. image: {
  8531. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Micro",
  8538. height: math.unit(2, "inches")
  8539. },
  8540. {
  8541. name: "Small",
  8542. height: math.unit(1, "meter")
  8543. },
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(Math.E, "meters"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "Macro",
  8551. height: math.unit(20, "meters")
  8552. },
  8553. {
  8554. name: "Macro+",
  8555. height: math.unit(400, "meters")
  8556. },
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8561. {
  8562. front: {
  8563. height: math.unit(7, "feet"),
  8564. weight: math.unit(489, "lbs"),
  8565. name: "Front",
  8566. image: {
  8567. source: "./media/characters/reece-silvermane/front.svg",
  8568. bottom: 0.02,
  8569. extra: 1
  8570. }
  8571. },
  8572. },
  8573. [
  8574. {
  8575. name: "Macro",
  8576. height: math.unit(1.5, "miles"),
  8577. default: true
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(6, "feet"),
  8586. weight: math.unit(78, "kg"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/kane/front.svg",
  8590. extra: 978 / 899
  8591. }
  8592. },
  8593. },
  8594. [
  8595. {
  8596. name: "Normal",
  8597. height: math.unit(2.1, "m"),
  8598. },
  8599. {
  8600. name: "Macro",
  8601. height: math.unit(1, "km"),
  8602. default: true
  8603. },
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8608. {
  8609. front: {
  8610. height: math.unit(6, "feet"),
  8611. weight: math.unit(200, "kg"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/tegon/front.svg",
  8615. bottom: 0.01,
  8616. extra: 1
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Micro",
  8623. height: math.unit(1, "inch")
  8624. },
  8625. {
  8626. name: "Normal",
  8627. height: math.unit(6 + 3 / 12, "feet"),
  8628. default: true
  8629. },
  8630. {
  8631. name: "Macro",
  8632. height: math.unit(300, "feet")
  8633. },
  8634. {
  8635. name: "Megamacro",
  8636. height: math.unit(69, "miles")
  8637. },
  8638. ]
  8639. ))
  8640. characterMakers.push(() => makeCharacter(
  8641. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8642. {
  8643. side: {
  8644. height: math.unit(6, "feet"),
  8645. weight: math.unit(2304, "lbs"),
  8646. name: "Side",
  8647. image: {
  8648. source: "./media/characters/arcturax/side.svg",
  8649. extra: 790 / 376,
  8650. bottom: 0.01
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Micro",
  8657. height: math.unit(2, "inch")
  8658. },
  8659. {
  8660. name: "Normal",
  8661. height: math.unit(6, "feet")
  8662. },
  8663. {
  8664. name: "Macro",
  8665. height: math.unit(39, "feet"),
  8666. default: true
  8667. },
  8668. {
  8669. name: "Megamacro",
  8670. height: math.unit(7, "miles")
  8671. },
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(6, "feet"),
  8679. weight: math.unit(50, "lbs"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/sentri/front.svg",
  8683. extra: 1750 / 1570,
  8684. bottom: 0.025
  8685. }
  8686. },
  8687. frontAlt: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(50, "lbs"),
  8690. name: "Front (Alt)",
  8691. image: {
  8692. source: "./media/characters/sentri/front-alt.svg",
  8693. extra: 1750 / 1570,
  8694. bottom: 0.025
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(15, "feet"),
  8702. default: true
  8703. },
  8704. {
  8705. name: "Macro",
  8706. height: math.unit(2500, "feet")
  8707. }
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8712. {
  8713. front: {
  8714. height: math.unit(5 + 8 / 12, "feet"),
  8715. weight: math.unit(130, "lbs"),
  8716. name: "Front",
  8717. image: {
  8718. source: "./media/characters/corvin/front.svg",
  8719. extra: 1803 / 1629
  8720. }
  8721. },
  8722. frontShirt: {
  8723. height: math.unit(5 + 8 / 12, "feet"),
  8724. weight: math.unit(130, "lbs"),
  8725. name: "Front (Shirt)",
  8726. image: {
  8727. source: "./media/characters/corvin/front-shirt.svg",
  8728. extra: 1803 / 1629
  8729. }
  8730. },
  8731. frontPoncho: {
  8732. height: math.unit(5 + 8 / 12, "feet"),
  8733. weight: math.unit(130, "lbs"),
  8734. name: "Front (Poncho)",
  8735. image: {
  8736. source: "./media/characters/corvin/front-poncho.svg",
  8737. extra: 1803 / 1629
  8738. }
  8739. },
  8740. side: {
  8741. height: math.unit(5 + 8 / 12, "feet"),
  8742. weight: math.unit(130, "lbs"),
  8743. name: "Side",
  8744. image: {
  8745. source: "./media/characters/corvin/side.svg",
  8746. extra: 1012 / 945
  8747. }
  8748. },
  8749. back: {
  8750. height: math.unit(5 + 8 / 12, "feet"),
  8751. weight: math.unit(130, "lbs"),
  8752. name: "Back",
  8753. image: {
  8754. source: "./media/characters/corvin/back.svg",
  8755. extra: 1803 / 1629
  8756. }
  8757. },
  8758. },
  8759. [
  8760. {
  8761. name: "Micro",
  8762. height: math.unit(3, "inches")
  8763. },
  8764. {
  8765. name: "Normal",
  8766. height: math.unit(5 + 8 / 12, "feet")
  8767. },
  8768. {
  8769. name: "Macro",
  8770. height: math.unit(300, "feet"),
  8771. default: true
  8772. },
  8773. {
  8774. name: "Megamacro",
  8775. height: math.unit(500, "miles")
  8776. }
  8777. ]
  8778. ))
  8779. characterMakers.push(() => makeCharacter(
  8780. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8781. {
  8782. front: {
  8783. height: math.unit(6, "feet"),
  8784. weight: math.unit(135, "lbs"),
  8785. name: "Front",
  8786. image: {
  8787. source: "./media/characters/q/front.svg",
  8788. extra: 854 / 752,
  8789. bottom: 0.005
  8790. }
  8791. },
  8792. back: {
  8793. height: math.unit(6, "feet"),
  8794. weight: math.unit(130, "lbs"),
  8795. name: "Back",
  8796. image: {
  8797. source: "./media/characters/q/back.svg",
  8798. extra: 854 / 752
  8799. }
  8800. },
  8801. },
  8802. [
  8803. {
  8804. name: "Macro",
  8805. height: math.unit(90, "feet"),
  8806. default: true
  8807. },
  8808. {
  8809. name: "Extra Macro",
  8810. height: math.unit(300, "feet"),
  8811. },
  8812. {
  8813. name: "BIG WALF",
  8814. height: math.unit(750, "feet"),
  8815. },
  8816. ]
  8817. ))
  8818. characterMakers.push(() => makeCharacter(
  8819. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8820. {
  8821. front: {
  8822. height: math.unit(6, "feet"),
  8823. weight: math.unit(150, "lbs"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/carley/front.svg",
  8827. extra: 3927 / 3540,
  8828. bottom: 29.2 / 735
  8829. }
  8830. }
  8831. },
  8832. [
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(6 + 3 / 12, "feet")
  8836. },
  8837. {
  8838. name: "Macro",
  8839. height: math.unit(185, "feet"),
  8840. default: true
  8841. },
  8842. {
  8843. name: "Megamacro",
  8844. height: math.unit(8, "miles"),
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(3, "feet"),
  8853. weight: math.unit(28, "lbs"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/citrine/front.svg"
  8857. }
  8858. }
  8859. },
  8860. [
  8861. {
  8862. name: "Normal",
  8863. height: math.unit(3, "feet"),
  8864. default: true
  8865. }
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8870. {
  8871. front: {
  8872. height: math.unit(14, "feet"),
  8873. weight: math.unit(1450, "kg"),
  8874. preyCapacity: math.unit(15, "people"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/aura-starwind/front.svg",
  8878. extra: 1440/1327,
  8879. bottom: 11/1451
  8880. }
  8881. },
  8882. side: {
  8883. height: math.unit(14, "feet"),
  8884. weight: math.unit(1450, "kg"),
  8885. preyCapacity: math.unit(15, "people"),
  8886. name: "Side",
  8887. image: {
  8888. source: "./media/characters/aura-starwind/side.svg",
  8889. extra: 1654 / 1497
  8890. }
  8891. },
  8892. taur: {
  8893. height: math.unit(18, "feet"),
  8894. weight: math.unit(5500, "kg"),
  8895. preyCapacity: math.unit(50, "people"),
  8896. name: "Taur",
  8897. image: {
  8898. source: "./media/characters/aura-starwind/taur.svg",
  8899. extra: 1760 / 1650
  8900. }
  8901. },
  8902. feral: {
  8903. height: math.unit(46, "feet"),
  8904. weight: math.unit(25000, "kg"),
  8905. preyCapacity: math.unit(120, "people"),
  8906. name: "Feral",
  8907. image: {
  8908. source: "./media/characters/aura-starwind/feral.svg"
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(14, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(50, "meters")
  8921. },
  8922. {
  8923. name: "Megamacro",
  8924. height: math.unit(5000, "meters")
  8925. },
  8926. {
  8927. name: "Gigamacro",
  8928. height: math.unit(100000, "kilometers")
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8934. {
  8935. front: {
  8936. height: math.unit(2 + 7 / 12, "feet"),
  8937. weight: math.unit(32, "lbs"),
  8938. name: "Front",
  8939. image: {
  8940. source: "./media/characters/rivet/front.svg",
  8941. extra: 1716 / 1658,
  8942. bottom: 0.03
  8943. }
  8944. },
  8945. foot: {
  8946. height: math.unit(0.551, "feet"),
  8947. name: "Rivet's Foot",
  8948. image: {
  8949. source: "./media/characters/rivet/foot.svg"
  8950. },
  8951. rename: true
  8952. }
  8953. },
  8954. [
  8955. {
  8956. name: "Micro",
  8957. height: math.unit(1.5, "inches"),
  8958. },
  8959. {
  8960. name: "Normal",
  8961. height: math.unit(2 + 7 / 12, "feet"),
  8962. default: true
  8963. },
  8964. {
  8965. name: "Macro",
  8966. height: math.unit(85, "feet")
  8967. },
  8968. {
  8969. name: "Megamacro",
  8970. height: math.unit(2.2, "km")
  8971. }
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8976. {
  8977. front: {
  8978. height: math.unit(5 + 9 / 12, "feet"),
  8979. weight: math.unit(150, "lbs"),
  8980. name: "Front",
  8981. image: {
  8982. source: "./media/characters/coffee/front.svg",
  8983. extra: 3666 / 3032,
  8984. bottom: 0.04
  8985. }
  8986. },
  8987. foot: {
  8988. height: math.unit(1.29, "feet"),
  8989. name: "Foot",
  8990. image: {
  8991. source: "./media/characters/coffee/foot.svg"
  8992. }
  8993. },
  8994. },
  8995. [
  8996. {
  8997. name: "Micro",
  8998. height: math.unit(2, "inches"),
  8999. },
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(5 + 9 / 12, "feet"),
  9003. default: true
  9004. },
  9005. {
  9006. name: "Macro",
  9007. height: math.unit(800, "feet")
  9008. },
  9009. {
  9010. name: "Megamacro",
  9011. height: math.unit(25, "miles")
  9012. }
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9017. {
  9018. front: {
  9019. height: math.unit(6, "feet"),
  9020. weight: math.unit(200, "lbs"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/chari-gal/front.svg",
  9024. extra: 1568 / 1385,
  9025. bottom: 0.047
  9026. }
  9027. },
  9028. gigantamax: {
  9029. height: math.unit(6 * 16, "feet"),
  9030. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9031. name: "Gigantamax",
  9032. image: {
  9033. source: "./media/characters/chari-gal/gigantamax.svg",
  9034. extra: 1124 / 888,
  9035. bottom: 0.03
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Normal",
  9042. height: math.unit(5 + 7 / 12, "feet")
  9043. },
  9044. {
  9045. name: "Macro",
  9046. height: math.unit(200, "feet"),
  9047. default: true
  9048. }
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9053. {
  9054. front: {
  9055. height: math.unit(6, "feet"),
  9056. weight: math.unit(150, "lbs"),
  9057. name: "Front",
  9058. image: {
  9059. source: "./media/characters/nova/front.svg",
  9060. extra: 5000 / 4722,
  9061. bottom: 0.02
  9062. }
  9063. }
  9064. },
  9065. [
  9066. {
  9067. name: "Micro-",
  9068. height: math.unit(0.8, "inches")
  9069. },
  9070. {
  9071. name: "Micro",
  9072. height: math.unit(2, "inches"),
  9073. default: true
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9079. {
  9080. front: {
  9081. height: math.unit(3 + 1 / 12, "feet"),
  9082. weight: math.unit(21.7, "lbs"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/argent/front.svg",
  9086. extra: 1471 / 1331,
  9087. bottom: 100.8 / 1575.5
  9088. }
  9089. }
  9090. },
  9091. [
  9092. {
  9093. name: "Micro",
  9094. height: math.unit(2, "inches")
  9095. },
  9096. {
  9097. name: "Normal",
  9098. height: math.unit(3 + 1 / 12, "feet"),
  9099. default: true
  9100. },
  9101. {
  9102. name: "Macro",
  9103. height: math.unit(120, "feet")
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9109. {
  9110. lamp: {
  9111. height: math.unit(7 * 1559 / 989, "feet"),
  9112. name: "Magic Lamp",
  9113. image: {
  9114. source: "./media/characters/mira-al-cul/lamp.svg",
  9115. extra: 1617 / 1559
  9116. }
  9117. },
  9118. front: {
  9119. height: math.unit(7, "feet"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/mira-al-cul/front.svg",
  9123. extra: 1044 / 990
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Heavily Restricted",
  9130. height: math.unit(7 * 1559 / 989, "feet")
  9131. },
  9132. {
  9133. name: "Freshly Freed",
  9134. height: math.unit(50 * 1559 / 989, "feet")
  9135. },
  9136. {
  9137. name: "World Encompassing",
  9138. height: math.unit(10000 * 1559 / 989, "miles")
  9139. },
  9140. {
  9141. name: "Galactic",
  9142. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9143. },
  9144. {
  9145. name: "Palmed Universe",
  9146. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "Multiversal Matriarch",
  9151. height: math.unit(8.87e10, "yottameters")
  9152. },
  9153. {
  9154. name: "Void Mother",
  9155. height: math.unit(3.14e110, "yottaparsecs")
  9156. },
  9157. {
  9158. name: "Toying with Transcendence",
  9159. height: math.unit(1e307, "meters")
  9160. },
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9165. {
  9166. front: {
  9167. height: math.unit(17 + 1 / 12, "feet"),
  9168. weight: math.unit(476.2 * 5, "lbs"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/kuro-shi-uchū/front.svg",
  9172. extra: 2329 / 1835,
  9173. bottom: 0.02
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Micro",
  9180. height: math.unit(2, "inches")
  9181. },
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(12, "meters")
  9185. },
  9186. {
  9187. name: "Planetary",
  9188. height: math.unit(0.00929, "AU"),
  9189. default: true
  9190. },
  9191. {
  9192. name: "Universal",
  9193. height: math.unit(20, "gigaparsecs")
  9194. },
  9195. ]
  9196. ))
  9197. characterMakers.push(() => makeCharacter(
  9198. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9199. {
  9200. front: {
  9201. height: math.unit(5 + 2 / 12, "feet"),
  9202. weight: math.unit(120, "lbs"),
  9203. name: "Front",
  9204. image: {
  9205. source: "./media/characters/katherine/front.svg",
  9206. extra: 2075 / 1969
  9207. }
  9208. },
  9209. dress: {
  9210. height: math.unit(5 + 2 / 12, "feet"),
  9211. weight: math.unit(120, "lbs"),
  9212. name: "Dress",
  9213. image: {
  9214. source: "./media/characters/katherine/dress.svg",
  9215. extra: 2258 / 2064
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Micro",
  9222. height: math.unit(1, "inches"),
  9223. default: true
  9224. },
  9225. {
  9226. name: "Normal",
  9227. height: math.unit(5 + 2 / 12, "feet")
  9228. },
  9229. {
  9230. name: "Macro",
  9231. height: math.unit(100, "meters")
  9232. },
  9233. {
  9234. name: "Megamacro",
  9235. height: math.unit(80, "miles")
  9236. },
  9237. ]
  9238. ))
  9239. characterMakers.push(() => makeCharacter(
  9240. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9241. {
  9242. front: {
  9243. height: math.unit(7 + 8 / 12, "feet"),
  9244. weight: math.unit(250, "lbs"),
  9245. name: "Front",
  9246. image: {
  9247. source: "./media/characters/yevis/front.svg",
  9248. extra: 1938 / 1755
  9249. }
  9250. }
  9251. },
  9252. [
  9253. {
  9254. name: "Mortal",
  9255. height: math.unit(7 + 8 / 12, "feet")
  9256. },
  9257. {
  9258. name: "Battle",
  9259. height: math.unit(25 + 11 / 12, "feet")
  9260. },
  9261. {
  9262. name: "Wrath",
  9263. height: math.unit(1654 + 11 / 12, "feet")
  9264. },
  9265. {
  9266. name: "Planet Destroyer",
  9267. height: math.unit(12000, "miles")
  9268. },
  9269. {
  9270. name: "Galaxy Conqueror",
  9271. height: math.unit(1.45, "zettameters"),
  9272. default: true
  9273. },
  9274. {
  9275. name: "Universal War",
  9276. height: math.unit(184, "gigaparsecs")
  9277. },
  9278. {
  9279. name: "Eternity War",
  9280. height: math.unit(1.98e55, "yottaparsecs")
  9281. },
  9282. ]
  9283. ))
  9284. characterMakers.push(() => makeCharacter(
  9285. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9286. {
  9287. front: {
  9288. height: math.unit(5 + 8 / 12, "feet"),
  9289. weight: math.unit(63, "kg"),
  9290. name: "Front",
  9291. image: {
  9292. source: "./media/characters/xavier/front.svg",
  9293. extra: 944 / 883
  9294. }
  9295. },
  9296. frontStretch: {
  9297. height: math.unit(5 + 8 / 12, "feet"),
  9298. weight: math.unit(63, "kg"),
  9299. name: "Stretching",
  9300. image: {
  9301. source: "./media/characters/xavier/front-stretch.svg",
  9302. extra: 962 / 820
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(5 + 8 / 12, "feet")
  9310. },
  9311. {
  9312. name: "Macro",
  9313. height: math.unit(100, "meters"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "McLargeHuge",
  9318. height: math.unit(10, "miles")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(5 + 5 / 12, "feet"),
  9327. weight: math.unit(150, "lb"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/joshii/front.svg",
  9331. extra: 765 / 653,
  9332. bottom: 51 / 816
  9333. }
  9334. },
  9335. foot: {
  9336. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9337. name: "Foot",
  9338. image: {
  9339. source: "./media/characters/joshii/foot.svg"
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Micro",
  9346. height: math.unit(2, "inches"),
  9347. default: true
  9348. },
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(5 + 5 / 12, "feet")
  9352. },
  9353. {
  9354. name: "Macro",
  9355. height: math.unit(785, "feet")
  9356. },
  9357. {
  9358. name: "Megamacro",
  9359. height: math.unit(24.5, "miles")
  9360. },
  9361. ]
  9362. ))
  9363. characterMakers.push(() => makeCharacter(
  9364. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9365. {
  9366. front: {
  9367. height: math.unit(6, "feet"),
  9368. weight: math.unit(150, "lb"),
  9369. name: "Front",
  9370. image: {
  9371. source: "./media/characters/goddess-elizabeth/front.svg",
  9372. extra: 1800 / 1525,
  9373. bottom: 0.005
  9374. }
  9375. },
  9376. foot: {
  9377. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9378. name: "Foot",
  9379. image: {
  9380. source: "./media/characters/goddess-elizabeth/foot.svg"
  9381. }
  9382. },
  9383. mouth: {
  9384. height: math.unit(6, "feet"),
  9385. name: "Mouth",
  9386. image: {
  9387. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9388. }
  9389. },
  9390. },
  9391. [
  9392. {
  9393. name: "Micro",
  9394. height: math.unit(12, "feet")
  9395. },
  9396. {
  9397. name: "Normal",
  9398. height: math.unit(80, "miles"),
  9399. default: true
  9400. },
  9401. {
  9402. name: "Macro",
  9403. height: math.unit(15000, "parsecs")
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(5 + 9 / 12, "feet"),
  9412. weight: math.unit(144, "lb"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/kara/front.svg"
  9416. }
  9417. },
  9418. feet: {
  9419. height: math.unit(6 / 6.765, "feet"),
  9420. name: "Kara's Feet",
  9421. rename: true,
  9422. image: {
  9423. source: "./media/characters/kara/feet.svg"
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Normal",
  9430. height: math.unit(5 + 9 / 12, "feet")
  9431. },
  9432. {
  9433. name: "Macro",
  9434. height: math.unit(174, "feet"),
  9435. default: true
  9436. },
  9437. ]
  9438. ))
  9439. characterMakers.push(() => makeCharacter(
  9440. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9441. {
  9442. front: {
  9443. height: math.unit(18, "feet"),
  9444. weight: math.unit(4050, "lb"),
  9445. name: "Front",
  9446. image: {
  9447. source: "./media/characters/tyrone/front.svg",
  9448. extra: 2405 / 2270,
  9449. bottom: 182 / 2587
  9450. }
  9451. },
  9452. },
  9453. [
  9454. {
  9455. name: "Normal",
  9456. height: math.unit(18, "feet"),
  9457. default: true
  9458. },
  9459. {
  9460. name: "Macro",
  9461. height: math.unit(300, "feet")
  9462. },
  9463. {
  9464. name: "Megamacro",
  9465. height: math.unit(15, "km")
  9466. },
  9467. {
  9468. name: "Gigamacro",
  9469. height: math.unit(500, "km")
  9470. },
  9471. {
  9472. name: "Teramacro",
  9473. height: math.unit(0.5, "gigameters")
  9474. },
  9475. {
  9476. name: "Omnimacro",
  9477. height: math.unit(1e252, "yottauniverse")
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(7 + 8 / 12, "feet"),
  9486. weight: math.unit(120, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/danny/front.svg",
  9490. extra: 1490 / 1350
  9491. }
  9492. },
  9493. back: {
  9494. height: math.unit(7 + 8 / 12, "feet"),
  9495. weight: math.unit(120, "lb"),
  9496. name: "Back",
  9497. image: {
  9498. source: "./media/characters/danny/back.svg",
  9499. extra: 1490 / 1350
  9500. }
  9501. },
  9502. },
  9503. [
  9504. {
  9505. name: "Normal",
  9506. height: math.unit(7 + 8 / 12, "feet"),
  9507. default: true
  9508. },
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9513. {
  9514. front: {
  9515. height: math.unit(3.5, "inches"),
  9516. weight: math.unit(19, "grams"),
  9517. name: "Front",
  9518. image: {
  9519. source: "./media/characters/mallow/front.svg",
  9520. extra: 471 / 431
  9521. }
  9522. },
  9523. back: {
  9524. height: math.unit(3.5, "inches"),
  9525. weight: math.unit(19, "grams"),
  9526. name: "Back",
  9527. image: {
  9528. source: "./media/characters/mallow/back.svg",
  9529. extra: 471 / 431
  9530. }
  9531. },
  9532. },
  9533. [
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(3.5, "inches"),
  9537. default: true
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(9, "feet"),
  9546. weight: math.unit(230, "kg"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/starry-aqua/front.svg"
  9550. }
  9551. },
  9552. back: {
  9553. height: math.unit(9, "feet"),
  9554. weight: math.unit(230, "kg"),
  9555. name: "Back",
  9556. image: {
  9557. source: "./media/characters/starry-aqua/back.svg"
  9558. }
  9559. },
  9560. hand: {
  9561. height: math.unit(9 * 0.1168, "feet"),
  9562. name: "Hand",
  9563. image: {
  9564. source: "./media/characters/starry-aqua/hand.svg"
  9565. }
  9566. },
  9567. foot: {
  9568. height: math.unit(9 * 0.18, "feet"),
  9569. name: "Foot",
  9570. image: {
  9571. source: "./media/characters/starry-aqua/foot.svg"
  9572. }
  9573. }
  9574. },
  9575. [
  9576. {
  9577. name: "Micro",
  9578. height: math.unit(3, "inches")
  9579. },
  9580. {
  9581. name: "Normal",
  9582. height: math.unit(9, "feet")
  9583. },
  9584. {
  9585. name: "Macro",
  9586. height: math.unit(300, "feet"),
  9587. default: true
  9588. },
  9589. {
  9590. name: "Megamacro",
  9591. height: math.unit(3200, "feet")
  9592. }
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9597. {
  9598. front: {
  9599. height: math.unit(15, "feet"),
  9600. weight: math.unit(5026, "lb"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/luka-towers/front.svg",
  9604. extra: 1269/1133,
  9605. bottom: 51/1320
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(15, "feet"),
  9613. default: true
  9614. },
  9615. {
  9616. name: "Minimacro",
  9617. height: math.unit(25, "feet")
  9618. },
  9619. {
  9620. name: "Macro",
  9621. height: math.unit(320, "feet")
  9622. },
  9623. {
  9624. name: "Megamacro",
  9625. height: math.unit(35000, "feet")
  9626. },
  9627. {
  9628. name: "Gigamacro",
  9629. height: math.unit(4000, "miles")
  9630. },
  9631. {
  9632. name: "Teramacro",
  9633. height: math.unit(15000, "miles")
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9639. {
  9640. front: {
  9641. height: math.unit(6, "feet"),
  9642. weight: math.unit(150, "lb"),
  9643. name: "Front",
  9644. image: {
  9645. source: "./media/characters/natalie-nightring/front.svg",
  9646. extra: 1,
  9647. bottom: 0.06
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Uh Oh",
  9654. height: math.unit(0.1, "mm")
  9655. },
  9656. {
  9657. name: "Small",
  9658. height: math.unit(3, "inches")
  9659. },
  9660. {
  9661. name: "Human Scale",
  9662. height: math.unit(6, "feet")
  9663. },
  9664. {
  9665. name: "Librarian",
  9666. height: math.unit(50, "feet"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Immense",
  9671. height: math.unit(200, "miles")
  9672. },
  9673. ]
  9674. ))
  9675. characterMakers.push(() => makeCharacter(
  9676. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9677. {
  9678. front: {
  9679. height: math.unit(6, "feet"),
  9680. weight: math.unit(180, "lbs"),
  9681. name: "Front",
  9682. image: {
  9683. source: "./media/characters/danni-rosie/front.svg",
  9684. extra: 1260 / 1128,
  9685. bottom: 0.022
  9686. }
  9687. },
  9688. },
  9689. [
  9690. {
  9691. name: "Micro",
  9692. height: math.unit(2, "inches"),
  9693. default: true
  9694. },
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9699. {
  9700. front: {
  9701. height: math.unit(5 + 9 / 12, "feet"),
  9702. weight: math.unit(220, "lb"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/samantha-kruse/front.svg",
  9706. extra: (985 / 935),
  9707. bottom: 0.03
  9708. }
  9709. },
  9710. frontUndressed: {
  9711. height: math.unit(5 + 9 / 12, "feet"),
  9712. weight: math.unit(220, "lb"),
  9713. name: "Front (Undressed)",
  9714. image: {
  9715. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9716. extra: (973 / 923),
  9717. bottom: 0.025
  9718. }
  9719. },
  9720. fat: {
  9721. height: math.unit(5 + 9 / 12, "feet"),
  9722. weight: math.unit(900, "lb"),
  9723. name: "Front (Fat)",
  9724. image: {
  9725. source: "./media/characters/samantha-kruse/fat.svg",
  9726. extra: 2688 / 2561
  9727. }
  9728. },
  9729. },
  9730. [
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(5 + 9 / 12, "feet"),
  9734. default: true
  9735. }
  9736. ]
  9737. ))
  9738. characterMakers.push(() => makeCharacter(
  9739. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9740. {
  9741. back: {
  9742. height: math.unit(5 + 4 / 12, "feet"),
  9743. weight: math.unit(4963, "lb"),
  9744. name: "Back",
  9745. image: {
  9746. source: "./media/characters/amelia-rosie/back.svg",
  9747. extra: 1113 / 963,
  9748. bottom: 0.01
  9749. }
  9750. },
  9751. },
  9752. [
  9753. {
  9754. name: "Level 0",
  9755. height: math.unit(5 + 4 / 12, "feet")
  9756. },
  9757. {
  9758. name: "Level 1",
  9759. height: math.unit(164597, "feet"),
  9760. default: true
  9761. },
  9762. {
  9763. name: "Level 2",
  9764. height: math.unit(956243, "miles")
  9765. },
  9766. {
  9767. name: "Level 3",
  9768. height: math.unit(29421709423, "miles")
  9769. },
  9770. {
  9771. name: "Level 4",
  9772. height: math.unit(154, "lightyears")
  9773. },
  9774. {
  9775. name: "Level 5",
  9776. height: math.unit(4738272, "lightyears")
  9777. },
  9778. {
  9779. name: "Level 6",
  9780. height: math.unit(145787152896, "lightyears")
  9781. },
  9782. ]
  9783. ))
  9784. characterMakers.push(() => makeCharacter(
  9785. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9786. {
  9787. front: {
  9788. height: math.unit(5 + 11 / 12, "feet"),
  9789. weight: math.unit(65, "kg"),
  9790. name: "Front",
  9791. image: {
  9792. source: "./media/characters/rook-kitara/front.svg",
  9793. extra: 1347 / 1274,
  9794. bottom: 0.005
  9795. }
  9796. },
  9797. },
  9798. [
  9799. {
  9800. name: "Totally Unfair",
  9801. height: math.unit(1.8, "mm")
  9802. },
  9803. {
  9804. name: "Lap Rookie",
  9805. height: math.unit(1.4, "feet")
  9806. },
  9807. {
  9808. name: "Normal",
  9809. height: math.unit(5 + 11 / 12, "feet"),
  9810. default: true
  9811. },
  9812. {
  9813. name: "How Did This Happen",
  9814. height: math.unit(80, "miles")
  9815. }
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9820. {
  9821. front: {
  9822. height: math.unit(7, "feet"),
  9823. weight: math.unit(300, "lb"),
  9824. name: "Front",
  9825. image: {
  9826. source: "./media/characters/pisces/front.svg",
  9827. extra: 2255 / 2115,
  9828. bottom: 0.03
  9829. }
  9830. },
  9831. back: {
  9832. height: math.unit(7, "feet"),
  9833. weight: math.unit(300, "lb"),
  9834. name: "Back",
  9835. image: {
  9836. source: "./media/characters/pisces/back.svg",
  9837. extra: 2146 / 2055,
  9838. bottom: 0.04
  9839. }
  9840. },
  9841. },
  9842. [
  9843. {
  9844. name: "Normal",
  9845. height: math.unit(7, "feet"),
  9846. default: true
  9847. },
  9848. {
  9849. name: "Swimming Pool",
  9850. height: math.unit(12.2, "meters")
  9851. },
  9852. {
  9853. name: "Olympic Swimming Pool",
  9854. height: math.unit(56.3, "meters")
  9855. },
  9856. {
  9857. name: "Lake Superior",
  9858. height: math.unit(93900, "meters")
  9859. },
  9860. {
  9861. name: "Mediterranean Sea",
  9862. height: math.unit(644457, "meters")
  9863. },
  9864. {
  9865. name: "World's Oceans",
  9866. height: math.unit(4567491, "meters")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(2.3, "meters"),
  9875. weight: math.unit(120, "kg"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/zelas/front.svg"
  9879. }
  9880. },
  9881. side: {
  9882. height: math.unit(2.3, "meters"),
  9883. weight: math.unit(120, "kg"),
  9884. name: "Side",
  9885. image: {
  9886. source: "./media/characters/zelas/side.svg"
  9887. }
  9888. },
  9889. back: {
  9890. height: math.unit(2.3, "meters"),
  9891. weight: math.unit(120, "kg"),
  9892. name: "Back",
  9893. image: {
  9894. source: "./media/characters/zelas/back.svg"
  9895. }
  9896. },
  9897. foot: {
  9898. height: math.unit(1.116, "feet"),
  9899. name: "Foot",
  9900. image: {
  9901. source: "./media/characters/zelas/foot.svg"
  9902. }
  9903. },
  9904. },
  9905. [
  9906. {
  9907. name: "Normal",
  9908. height: math.unit(2.3, "meters")
  9909. },
  9910. {
  9911. name: "Macro",
  9912. height: math.unit(30, "meters"),
  9913. default: true
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9919. {
  9920. front: {
  9921. height: math.unit(1, "inch"),
  9922. weight: math.unit(0.21, "grams"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/talbot/front.svg",
  9926. extra: 594 / 544
  9927. }
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Micro",
  9933. height: math.unit(1, "inch"),
  9934. default: true
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9940. {
  9941. front: {
  9942. height: math.unit(3 + 3 / 12, "feet"),
  9943. weight: math.unit(51.8, "lb"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/fliss/front.svg",
  9947. extra: 840 / 640
  9948. }
  9949. },
  9950. },
  9951. [
  9952. {
  9953. name: "Teeny Tiny",
  9954. height: math.unit(1, "mm")
  9955. },
  9956. {
  9957. name: "Small",
  9958. height: math.unit(1, "inch"),
  9959. default: true
  9960. },
  9961. {
  9962. name: "Standard Sylveon",
  9963. height: math.unit(3 + 3 / 12, "feet")
  9964. },
  9965. {
  9966. name: "Large Nuisance",
  9967. height: math.unit(33, "feet")
  9968. },
  9969. {
  9970. name: "City Filler",
  9971. height: math.unit(3000, "feet")
  9972. },
  9973. {
  9974. name: "New Horizon",
  9975. height: math.unit(6000, "miles")
  9976. },
  9977. ]
  9978. ))
  9979. characterMakers.push(() => makeCharacter(
  9980. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9981. {
  9982. front: {
  9983. height: math.unit(5, "cm"),
  9984. weight: math.unit(1.94, "g"),
  9985. name: "Front",
  9986. image: {
  9987. source: "./media/characters/fleta/front.svg",
  9988. extra: 835 / 803
  9989. }
  9990. },
  9991. back: {
  9992. height: math.unit(5, "cm"),
  9993. weight: math.unit(1.94, "g"),
  9994. name: "Back",
  9995. image: {
  9996. source: "./media/characters/fleta/back.svg",
  9997. extra: 835 / 803
  9998. }
  9999. },
  10000. },
  10001. [
  10002. {
  10003. name: "Micro",
  10004. height: math.unit(5, "cm"),
  10005. default: true
  10006. },
  10007. ]
  10008. ))
  10009. characterMakers.push(() => makeCharacter(
  10010. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10011. {
  10012. front: {
  10013. height: math.unit(6, "feet"),
  10014. weight: math.unit(225, "lb"),
  10015. name: "Front",
  10016. image: {
  10017. source: "./media/characters/dominic/front.svg",
  10018. extra: 1770 / 1620,
  10019. bottom: 0.025
  10020. }
  10021. },
  10022. back: {
  10023. height: math.unit(6, "feet"),
  10024. weight: math.unit(225, "lb"),
  10025. name: "Back",
  10026. image: {
  10027. source: "./media/characters/dominic/back.svg",
  10028. extra: 1745 / 1620,
  10029. bottom: 0.065
  10030. }
  10031. },
  10032. },
  10033. [
  10034. {
  10035. name: "Nano",
  10036. height: math.unit(0.1, "mm")
  10037. },
  10038. {
  10039. name: "Micro-",
  10040. height: math.unit(1, "mm")
  10041. },
  10042. {
  10043. name: "Micro",
  10044. height: math.unit(4, "inches")
  10045. },
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(6 + 4 / 12, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "Macro",
  10053. height: math.unit(115, "feet")
  10054. },
  10055. {
  10056. name: "Macro+",
  10057. height: math.unit(955, "feet")
  10058. },
  10059. {
  10060. name: "Megamacro",
  10061. height: math.unit(8990, "feet")
  10062. },
  10063. {
  10064. name: "Gigmacro",
  10065. height: math.unit(9310, "miles")
  10066. },
  10067. {
  10068. name: "Teramacro",
  10069. height: math.unit(1567005010, "miles")
  10070. },
  10071. {
  10072. name: "Examacro",
  10073. height: math.unit(1425, "parsecs")
  10074. },
  10075. ]
  10076. ))
  10077. characterMakers.push(() => makeCharacter(
  10078. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10079. {
  10080. front: {
  10081. height: math.unit(400, "feet"),
  10082. weight: math.unit(44444444, "lb"),
  10083. name: "Front",
  10084. image: {
  10085. source: "./media/characters/major-colonel/front.svg"
  10086. }
  10087. },
  10088. back: {
  10089. height: math.unit(400, "feet"),
  10090. weight: math.unit(44444444, "lb"),
  10091. name: "Back",
  10092. image: {
  10093. source: "./media/characters/major-colonel/back.svg"
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Macro",
  10100. height: math.unit(400, "feet"),
  10101. default: true
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10107. {
  10108. catFront: {
  10109. height: math.unit(6, "feet"),
  10110. weight: math.unit(120, "lb"),
  10111. name: "Front (Cat Side)",
  10112. image: {
  10113. source: "./media/characters/axel-lycan/cat-front.svg",
  10114. extra: 430 / 402,
  10115. bottom: 43 / 472.35
  10116. }
  10117. },
  10118. catBack: {
  10119. height: math.unit(6, "feet"),
  10120. weight: math.unit(120, "lb"),
  10121. name: "Back (Cat Side)",
  10122. image: {
  10123. source: "./media/characters/axel-lycan/cat-back.svg",
  10124. extra: 447 / 419,
  10125. bottom: 23.3 / 469
  10126. }
  10127. },
  10128. wolfFront: {
  10129. height: math.unit(6, "feet"),
  10130. weight: math.unit(120, "lb"),
  10131. name: "Front (Wolf Side)",
  10132. image: {
  10133. source: "./media/characters/axel-lycan/wolf-front.svg",
  10134. extra: 485 / 456,
  10135. bottom: 19 / 504
  10136. }
  10137. },
  10138. wolfBack: {
  10139. height: math.unit(6, "feet"),
  10140. weight: math.unit(120, "lb"),
  10141. name: "Back (Wolf Side)",
  10142. image: {
  10143. source: "./media/characters/axel-lycan/wolf-back.svg",
  10144. extra: 475 / 438,
  10145. bottom: 39.2 / 514
  10146. }
  10147. },
  10148. },
  10149. [
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(1, "km"),
  10153. default: true
  10154. },
  10155. ]
  10156. ))
  10157. characterMakers.push(() => makeCharacter(
  10158. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10159. {
  10160. front: {
  10161. height: math.unit(5 + 9 / 12, "feet"),
  10162. weight: math.unit(175, "lb"),
  10163. name: "Front",
  10164. image: {
  10165. source: "./media/characters/vanrel-hyena/front.svg",
  10166. extra: 1086 / 1010,
  10167. bottom: 0.04
  10168. }
  10169. },
  10170. },
  10171. [
  10172. {
  10173. name: "Normal",
  10174. height: math.unit(5 + 9 / 12, "feet"),
  10175. default: true
  10176. },
  10177. ]
  10178. ))
  10179. characterMakers.push(() => makeCharacter(
  10180. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10181. {
  10182. front: {
  10183. height: math.unit(6, "feet"),
  10184. weight: math.unit(103, "lb"),
  10185. name: "Front",
  10186. image: {
  10187. source: "./media/characters/abbott-absol/front.svg",
  10188. extra: 2010 / 1842
  10189. }
  10190. },
  10191. },
  10192. [
  10193. {
  10194. name: "Megamicro",
  10195. height: math.unit(0.1, "mm")
  10196. },
  10197. {
  10198. name: "Micro",
  10199. height: math.unit(1, "inch")
  10200. },
  10201. {
  10202. name: "Normal",
  10203. height: math.unit(6, "feet"),
  10204. default: true
  10205. },
  10206. ]
  10207. ))
  10208. characterMakers.push(() => makeCharacter(
  10209. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10210. {
  10211. front: {
  10212. height: math.unit(6, "feet"),
  10213. weight: math.unit(264, "lb"),
  10214. name: "Front",
  10215. image: {
  10216. source: "./media/characters/hector/front.svg",
  10217. extra: 2280 / 2130,
  10218. bottom: 0.07
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(12.25, "foot"),
  10226. default: true
  10227. },
  10228. {
  10229. name: "Macro",
  10230. height: math.unit(160, "feet")
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(6, "feet"),
  10239. weight: math.unit(150, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/sal/front.svg",
  10243. extra: 1846 / 1699,
  10244. bottom: 0.04
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Megamacro",
  10251. height: math.unit(10, "miles"),
  10252. default: true
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10258. {
  10259. front: {
  10260. height: math.unit(3, "meters"),
  10261. weight: math.unit(450, "kg"),
  10262. name: "front",
  10263. image: {
  10264. source: "./media/characters/ranger/front.svg",
  10265. extra: 2401 / 2243,
  10266. bottom: 0.05
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(3, "meters"),
  10274. default: true
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10280. {
  10281. front: {
  10282. height: math.unit(14, "feet"),
  10283. weight: math.unit(800, "kg"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/theresa/front.svg",
  10287. extra: 3575 / 3346,
  10288. bottom: 0.03
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(14, "feet"),
  10296. default: true
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10302. {
  10303. front: {
  10304. height: math.unit(6, "feet"),
  10305. weight: math.unit(3, "kg"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/ine/front.svg",
  10309. extra: 678 / 539,
  10310. bottom: 0.023
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Normal",
  10317. height: math.unit(2.265, "feet"),
  10318. default: true
  10319. },
  10320. ]
  10321. ))
  10322. characterMakers.push(() => makeCharacter(
  10323. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10324. {
  10325. front: {
  10326. height: math.unit(5, "feet"),
  10327. weight: math.unit(30, "kg"),
  10328. name: "Front",
  10329. image: {
  10330. source: "./media/characters/vial/front.svg",
  10331. extra: 1365 / 1277,
  10332. bottom: 0.04
  10333. }
  10334. },
  10335. },
  10336. [
  10337. {
  10338. name: "Normal",
  10339. height: math.unit(5, "feet"),
  10340. default: true
  10341. },
  10342. ]
  10343. ))
  10344. characterMakers.push(() => makeCharacter(
  10345. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10346. {
  10347. side: {
  10348. height: math.unit(3.4, "meters"),
  10349. weight: math.unit(1000, "lb"),
  10350. name: "Side",
  10351. image: {
  10352. source: "./media/characters/rovoska/side.svg",
  10353. extra: 4403 / 1515
  10354. }
  10355. },
  10356. },
  10357. [
  10358. {
  10359. name: "Normal",
  10360. height: math.unit(3.4, "meters"),
  10361. default: true
  10362. },
  10363. ]
  10364. ))
  10365. characterMakers.push(() => makeCharacter(
  10366. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10367. {
  10368. front: {
  10369. height: math.unit(8, "feet"),
  10370. weight: math.unit(315, "lb"),
  10371. name: "Front",
  10372. image: {
  10373. source: "./media/characters/gunner-rotthbauer/front.svg"
  10374. }
  10375. },
  10376. back: {
  10377. height: math.unit(8, "feet"),
  10378. weight: math.unit(315, "lb"),
  10379. name: "Back",
  10380. image: {
  10381. source: "./media/characters/gunner-rotthbauer/back.svg"
  10382. }
  10383. },
  10384. },
  10385. [
  10386. {
  10387. name: "Micro",
  10388. height: math.unit(3.5, "inches")
  10389. },
  10390. {
  10391. name: "Normal",
  10392. height: math.unit(8, "feet"),
  10393. default: true
  10394. },
  10395. {
  10396. name: "Macro",
  10397. height: math.unit(250, "feet")
  10398. },
  10399. {
  10400. name: "Megamacro",
  10401. height: math.unit(1, "AU")
  10402. },
  10403. ]
  10404. ))
  10405. characterMakers.push(() => makeCharacter(
  10406. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10407. {
  10408. front: {
  10409. height: math.unit(5 + 5 / 12, "feet"),
  10410. weight: math.unit(140, "lb"),
  10411. name: "Front",
  10412. image: {
  10413. source: "./media/characters/allatia/front.svg",
  10414. extra: 1227 / 1180,
  10415. bottom: 0.027
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Normal",
  10422. height: math.unit(5 + 5 / 12, "feet")
  10423. },
  10424. {
  10425. name: "Macro",
  10426. height: math.unit(250, "feet"),
  10427. default: true
  10428. },
  10429. {
  10430. name: "Megamacro",
  10431. height: math.unit(8, "miles")
  10432. }
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(6, "feet"),
  10440. weight: math.unit(120, "lb"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/tene/front.svg",
  10444. extra: 814/750,
  10445. bottom: 36/850
  10446. }
  10447. },
  10448. stomping: {
  10449. height: math.unit(2.025, "meters"),
  10450. weight: math.unit(120, "lb"),
  10451. name: "Stomping",
  10452. image: {
  10453. source: "./media/characters/tene/stomping.svg",
  10454. extra: 885/821,
  10455. bottom: 15/900
  10456. }
  10457. },
  10458. sitting: {
  10459. height: math.unit(1, "meter"),
  10460. weight: math.unit(120, "lb"),
  10461. name: "Sitting",
  10462. image: {
  10463. source: "./media/characters/tene/sitting.svg",
  10464. extra: 396/366,
  10465. bottom: 79/475
  10466. }
  10467. },
  10468. smiling: {
  10469. height: math.unit(1.2, "feet"),
  10470. name: "Smiling",
  10471. image: {
  10472. source: "./media/characters/tene/smiling.svg",
  10473. extra: 1364/1071,
  10474. bottom: 0/1364
  10475. }
  10476. },
  10477. smug: {
  10478. height: math.unit(1.3, "feet"),
  10479. name: "Smug",
  10480. image: {
  10481. source: "./media/characters/tene/smug.svg",
  10482. extra: 1323/1082,
  10483. bottom: 0/1323
  10484. }
  10485. },
  10486. feral: {
  10487. height: math.unit(3.9, "feet"),
  10488. weight: math.unit(250, "lb"),
  10489. name: "Feral",
  10490. image: {
  10491. source: "./media/characters/tene/feral.svg",
  10492. extra: 717 / 458,
  10493. bottom: 0.179
  10494. }
  10495. },
  10496. },
  10497. [
  10498. {
  10499. name: "Normal",
  10500. height: math.unit(6, "feet")
  10501. },
  10502. {
  10503. name: "Macro",
  10504. height: math.unit(300, "feet"),
  10505. default: true
  10506. },
  10507. {
  10508. name: "Megamacro",
  10509. height: math.unit(5, "miles")
  10510. },
  10511. ]
  10512. ))
  10513. characterMakers.push(() => makeCharacter(
  10514. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10515. {
  10516. side: {
  10517. height: math.unit(6, "feet"),
  10518. name: "Side",
  10519. image: {
  10520. source: "./media/characters/evander/side.svg",
  10521. extra: 877 / 477
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(0.83, "meters"),
  10529. default: true
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(12, "feet"),
  10538. weight: math.unit(1000, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10542. extra: 1762 / 1611
  10543. }
  10544. },
  10545. back: {
  10546. height: math.unit(12, "feet"),
  10547. weight: math.unit(1000, "lb"),
  10548. name: "Back",
  10549. image: {
  10550. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10551. extra: 1762 / 1611
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Normal",
  10558. height: math.unit(12, "feet"),
  10559. default: true
  10560. },
  10561. {
  10562. name: "Kaiju",
  10563. height: math.unit(150, "feet")
  10564. },
  10565. ]
  10566. ))
  10567. characterMakers.push(() => makeCharacter(
  10568. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10569. {
  10570. front: {
  10571. height: math.unit(6, "feet"),
  10572. weight: math.unit(150, "lb"),
  10573. name: "Front",
  10574. image: {
  10575. source: "./media/characters/zero-alurus/front.svg"
  10576. }
  10577. },
  10578. back: {
  10579. height: math.unit(6, "feet"),
  10580. weight: math.unit(150, "lb"),
  10581. name: "Back",
  10582. image: {
  10583. source: "./media/characters/zero-alurus/back.svg"
  10584. }
  10585. },
  10586. },
  10587. [
  10588. {
  10589. name: "Normal",
  10590. height: math.unit(5 + 10 / 12, "feet")
  10591. },
  10592. {
  10593. name: "Macro",
  10594. height: math.unit(60, "feet"),
  10595. default: true
  10596. },
  10597. {
  10598. name: "Macro+",
  10599. height: math.unit(450, "feet")
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10605. {
  10606. front: {
  10607. height: math.unit(6, "feet"),
  10608. weight: math.unit(200, "lb"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/mega-shi/front.svg",
  10612. extra: 1279 / 1250,
  10613. bottom: 0.02
  10614. }
  10615. },
  10616. back: {
  10617. height: math.unit(6, "feet"),
  10618. weight: math.unit(200, "lb"),
  10619. name: "Back",
  10620. image: {
  10621. source: "./media/characters/mega-shi/back.svg",
  10622. extra: 1279 / 1250,
  10623. bottom: 0.02
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Micro",
  10630. height: math.unit(16 + 6 / 12, "feet")
  10631. },
  10632. {
  10633. name: "Third Dimension",
  10634. height: math.unit(40, "meters")
  10635. },
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(660, "feet"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Megamacro",
  10643. height: math.unit(10, "miles")
  10644. },
  10645. {
  10646. name: "Planetary Launch",
  10647. height: math.unit(500, "miles")
  10648. },
  10649. {
  10650. name: "Interstellar",
  10651. height: math.unit(1e9, "miles")
  10652. },
  10653. {
  10654. name: "Leaving the Universe",
  10655. height: math.unit(1, "gigaparsec")
  10656. },
  10657. {
  10658. name: "Travelling Universes",
  10659. height: math.unit(30e15, "parsecs")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10665. {
  10666. front: {
  10667. height: math.unit(5 + 4/12, "feet"),
  10668. weight: math.unit(120, "lb"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/odyssey/front.svg",
  10672. extra: 1747/1571,
  10673. bottom: 47/1794
  10674. }
  10675. },
  10676. side: {
  10677. height: math.unit(5.1, "feet"),
  10678. weight: math.unit(120, "lb"),
  10679. name: "Side",
  10680. image: {
  10681. source: "./media/characters/odyssey/side.svg",
  10682. extra: 1847/1619,
  10683. bottom: 47/1894
  10684. }
  10685. },
  10686. lounging: {
  10687. height: math.unit(1.464, "feet"),
  10688. weight: math.unit(120, "lb"),
  10689. name: "Lounging",
  10690. image: {
  10691. source: "./media/characters/odyssey/lounging.svg",
  10692. extra: 1235/837,
  10693. bottom: 551/1786
  10694. }
  10695. },
  10696. },
  10697. [
  10698. {
  10699. name: "Normal",
  10700. height: math.unit(5 + 4 / 12, "feet")
  10701. },
  10702. {
  10703. name: "Macro",
  10704. height: math.unit(1, "km")
  10705. },
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(3000, "km")
  10709. },
  10710. {
  10711. name: "Gigamacro",
  10712. height: math.unit(1, "AU"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Omniversal",
  10717. height: math.unit(100e14, "lightyears")
  10718. },
  10719. ]
  10720. ))
  10721. characterMakers.push(() => makeCharacter(
  10722. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10723. {
  10724. front: {
  10725. height: math.unit(6, "feet"),
  10726. weight: math.unit(300, "lb"),
  10727. name: "Front",
  10728. image: {
  10729. source: "./media/characters/mekuto/front.svg",
  10730. extra: 921 / 832,
  10731. bottom: 0.03
  10732. }
  10733. },
  10734. hand: {
  10735. height: math.unit(6 / 10.24, "feet"),
  10736. name: "Hand",
  10737. image: {
  10738. source: "./media/characters/mekuto/hand.svg"
  10739. }
  10740. },
  10741. foot: {
  10742. height: math.unit(6 / 5.05, "feet"),
  10743. name: "Foot",
  10744. image: {
  10745. source: "./media/characters/mekuto/foot.svg"
  10746. }
  10747. },
  10748. },
  10749. [
  10750. {
  10751. name: "Minimicro",
  10752. height: math.unit(0.2, "inches")
  10753. },
  10754. {
  10755. name: "Micro",
  10756. height: math.unit(1.5, "inches")
  10757. },
  10758. {
  10759. name: "Normal",
  10760. height: math.unit(5 + 11 / 12, "feet"),
  10761. default: true
  10762. },
  10763. {
  10764. name: "Minimacro",
  10765. height: math.unit(17 + 9 / 12, "feet")
  10766. },
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(177.5, "feet")
  10770. },
  10771. {
  10772. name: "Megamacro",
  10773. height: math.unit(152, "miles")
  10774. },
  10775. ]
  10776. ))
  10777. characterMakers.push(() => makeCharacter(
  10778. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10779. {
  10780. front: {
  10781. height: math.unit(6.5, "inches"),
  10782. weight: math.unit(13, "oz"),
  10783. name: "Front",
  10784. image: {
  10785. source: "./media/characters/dafydd-tomos/front.svg",
  10786. extra: 2990 / 2603,
  10787. bottom: 0.03
  10788. }
  10789. },
  10790. },
  10791. [
  10792. {
  10793. name: "Micro",
  10794. height: math.unit(6.5, "inches"),
  10795. default: true
  10796. },
  10797. ]
  10798. ))
  10799. characterMakers.push(() => makeCharacter(
  10800. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10801. {
  10802. front: {
  10803. height: math.unit(6, "feet"),
  10804. weight: math.unit(150, "lb"),
  10805. name: "Front",
  10806. image: {
  10807. source: "./media/characters/splinter/front.svg",
  10808. extra: 2990 / 2882,
  10809. bottom: 0.04
  10810. }
  10811. },
  10812. back: {
  10813. height: math.unit(6, "feet"),
  10814. weight: math.unit(150, "lb"),
  10815. name: "Back",
  10816. image: {
  10817. source: "./media/characters/splinter/back.svg",
  10818. extra: 2990 / 2882,
  10819. bottom: 0.04
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Normal",
  10826. height: math.unit(6, "feet")
  10827. },
  10828. {
  10829. name: "Macro",
  10830. height: math.unit(230, "meters"),
  10831. default: true
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10837. {
  10838. front: {
  10839. height: math.unit(4 + 10 / 12, "feet"),
  10840. weight: math.unit(480, "lb"),
  10841. name: "Front",
  10842. image: {
  10843. source: "./media/characters/snow-gabumon/front.svg",
  10844. extra: 1140 / 963,
  10845. bottom: 0.058
  10846. }
  10847. },
  10848. back: {
  10849. height: math.unit(4 + 10 / 12, "feet"),
  10850. weight: math.unit(480, "lb"),
  10851. name: "Back",
  10852. image: {
  10853. source: "./media/characters/snow-gabumon/back.svg",
  10854. extra: 1115 / 962,
  10855. bottom: 0.041
  10856. }
  10857. },
  10858. frontUndresed: {
  10859. height: math.unit(4 + 10 / 12, "feet"),
  10860. weight: math.unit(480, "lb"),
  10861. name: "Front (Undressed)",
  10862. image: {
  10863. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10864. extra: 1061 / 960,
  10865. bottom: 0.045
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Micro",
  10872. height: math.unit(1, "inch")
  10873. },
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(4 + 10 / 12, "feet"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "Macro",
  10881. height: math.unit(200, "feet")
  10882. },
  10883. {
  10884. name: "Megamacro",
  10885. height: math.unit(120, "miles")
  10886. },
  10887. {
  10888. name: "Gigamacro",
  10889. height: math.unit(9800, "miles")
  10890. },
  10891. ]
  10892. ))
  10893. characterMakers.push(() => makeCharacter(
  10894. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10895. {
  10896. front: {
  10897. height: math.unit(1.7, "meters"),
  10898. weight: math.unit(140, "lb"),
  10899. name: "Front",
  10900. image: {
  10901. source: "./media/characters/moody/front.svg",
  10902. extra: 3226 / 3007,
  10903. bottom: 0.087
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Micro",
  10910. height: math.unit(1, "mm")
  10911. },
  10912. {
  10913. name: "Normal",
  10914. height: math.unit(1.7, "meters"),
  10915. default: true
  10916. },
  10917. {
  10918. name: "Macro",
  10919. height: math.unit(80, "meters")
  10920. },
  10921. {
  10922. name: "Macro+",
  10923. height: math.unit(500, "meters")
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(150, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/zyas/front.svg",
  10936. extra: 1180 / 1120,
  10937. bottom: 0.045
  10938. }
  10939. },
  10940. },
  10941. [
  10942. {
  10943. name: "Normal",
  10944. height: math.unit(10, "feet"),
  10945. default: true
  10946. },
  10947. {
  10948. name: "Macro",
  10949. height: math.unit(500, "feet")
  10950. },
  10951. {
  10952. name: "Megamacro",
  10953. height: math.unit(5, "miles")
  10954. },
  10955. {
  10956. name: "Teramacro",
  10957. height: math.unit(150000, "miles")
  10958. },
  10959. ]
  10960. ))
  10961. characterMakers.push(() => makeCharacter(
  10962. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10963. {
  10964. front: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(150, "lb"),
  10967. name: "Front",
  10968. image: {
  10969. source: "./media/characters/cuon/front.svg",
  10970. extra: 1390 / 1320,
  10971. bottom: 0.008
  10972. }
  10973. },
  10974. },
  10975. [
  10976. {
  10977. name: "Micro",
  10978. height: math.unit(3, "inches")
  10979. },
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(18 + 9 / 12, "feet"),
  10983. default: true
  10984. },
  10985. {
  10986. name: "Macro",
  10987. height: math.unit(360, "feet")
  10988. },
  10989. {
  10990. name: "Megamacro",
  10991. height: math.unit(360, "miles")
  10992. },
  10993. ]
  10994. ))
  10995. characterMakers.push(() => makeCharacter(
  10996. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10997. {
  10998. front: {
  10999. height: math.unit(2.4, "meters"),
  11000. weight: math.unit(70, "kg"),
  11001. name: "Front",
  11002. image: {
  11003. source: "./media/characters/nyanuxk/front.svg",
  11004. extra: 1172 / 1084,
  11005. bottom: 0.065
  11006. }
  11007. },
  11008. side: {
  11009. height: math.unit(2.4, "meters"),
  11010. weight: math.unit(70, "kg"),
  11011. name: "Side",
  11012. image: {
  11013. source: "./media/characters/nyanuxk/side.svg",
  11014. extra: 1190 / 1132,
  11015. bottom: 0.007
  11016. }
  11017. },
  11018. back: {
  11019. height: math.unit(2.4, "meters"),
  11020. weight: math.unit(70, "kg"),
  11021. name: "Back",
  11022. image: {
  11023. source: "./media/characters/nyanuxk/back.svg",
  11024. extra: 1200 / 1141,
  11025. bottom: 0.015
  11026. }
  11027. },
  11028. foot: {
  11029. height: math.unit(0.52, "meters"),
  11030. name: "Foot",
  11031. image: {
  11032. source: "./media/characters/nyanuxk/foot.svg"
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Micro",
  11039. height: math.unit(2, "cm")
  11040. },
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(2.4, "meters"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Smaller Macro",
  11048. height: math.unit(120, "meters")
  11049. },
  11050. {
  11051. name: "Bigger Macro",
  11052. height: math.unit(1.2, "km")
  11053. },
  11054. {
  11055. name: "Megamacro",
  11056. height: math.unit(15, "kilometers")
  11057. },
  11058. {
  11059. name: "Gigamacro",
  11060. height: math.unit(2000, "km")
  11061. },
  11062. {
  11063. name: "Teramacro",
  11064. height: math.unit(500000, "km")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11070. {
  11071. side: {
  11072. height: math.unit(6, "feet"),
  11073. name: "Side",
  11074. image: {
  11075. source: "./media/characters/ailbhe/side.svg",
  11076. extra: 757 / 464,
  11077. bottom: 0.041
  11078. }
  11079. },
  11080. },
  11081. [
  11082. {
  11083. name: "Normal",
  11084. height: math.unit(1.07, "meters"),
  11085. default: true
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(120, "kg"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/zevulfius/front.svg",
  11098. extra: 965 / 903
  11099. }
  11100. },
  11101. side: {
  11102. height: math.unit(6, "feet"),
  11103. weight: math.unit(120, "kg"),
  11104. name: "Side",
  11105. image: {
  11106. source: "./media/characters/zevulfius/side.svg",
  11107. extra: 939 / 900
  11108. }
  11109. },
  11110. back: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(120, "kg"),
  11113. name: "Back",
  11114. image: {
  11115. source: "./media/characters/zevulfius/back.svg",
  11116. extra: 918 / 854,
  11117. bottom: 0.005
  11118. }
  11119. },
  11120. foot: {
  11121. height: math.unit(6 / 3.72, "feet"),
  11122. name: "Foot",
  11123. image: {
  11124. source: "./media/characters/zevulfius/foot.svg"
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Macro",
  11131. height: math.unit(750, "meters")
  11132. },
  11133. {
  11134. name: "Megamacro",
  11135. height: math.unit(20, "km"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Gigamacro",
  11140. height: math.unit(2000, "km")
  11141. },
  11142. {
  11143. name: "Teramacro",
  11144. height: math.unit(250000, "km")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(100, "feet"),
  11153. weight: math.unit(350, "kg"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/rikes/front.svg",
  11157. extra: 1565 / 1483,
  11158. bottom: 0.017
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Macro",
  11165. height: math.unit(100, "feet"),
  11166. default: true
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11172. {
  11173. front: {
  11174. height: math.unit(8, "feet"),
  11175. weight: math.unit(356, "lb"),
  11176. name: "Front",
  11177. image: {
  11178. source: "./media/characters/adam-silver-mane/front.svg",
  11179. extra: 1036/937,
  11180. bottom: 63/1099
  11181. }
  11182. },
  11183. side: {
  11184. height: math.unit(8, "feet"),
  11185. weight: math.unit(356, "lb"),
  11186. name: "Side",
  11187. image: {
  11188. source: "./media/characters/adam-silver-mane/side.svg",
  11189. extra: 997/901,
  11190. bottom: 59/1056
  11191. }
  11192. },
  11193. frontNsfw: {
  11194. height: math.unit(8, "feet"),
  11195. weight: math.unit(356, "lb"),
  11196. name: "Front (NSFW)",
  11197. image: {
  11198. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11199. extra: 1036/937,
  11200. bottom: 63/1099
  11201. }
  11202. },
  11203. sideNsfw: {
  11204. height: math.unit(8, "feet"),
  11205. weight: math.unit(356, "lb"),
  11206. name: "Side (NSFW)",
  11207. image: {
  11208. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11209. extra: 997/901,
  11210. bottom: 59/1056
  11211. }
  11212. },
  11213. dick: {
  11214. height: math.unit(2.1, "feet"),
  11215. name: "Dick",
  11216. image: {
  11217. source: "./media/characters/adam-silver-mane/dick.svg"
  11218. }
  11219. },
  11220. taur: {
  11221. height: math.unit(16, "feet"),
  11222. weight: math.unit(1500, "kg"),
  11223. name: "Taur",
  11224. image: {
  11225. source: "./media/characters/adam-silver-mane/taur.svg",
  11226. extra: 1713 / 1571,
  11227. bottom: 0.01
  11228. }
  11229. },
  11230. },
  11231. [
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(8, "feet")
  11235. },
  11236. {
  11237. name: "Minimacro",
  11238. height: math.unit(80, "feet")
  11239. },
  11240. {
  11241. name: "MDA",
  11242. height: math.unit(80, "meters")
  11243. },
  11244. {
  11245. name: "Macro",
  11246. height: math.unit(800, "feet"),
  11247. default: true
  11248. },
  11249. {
  11250. name: "Megamacro",
  11251. height: math.unit(8000, "feet")
  11252. },
  11253. {
  11254. name: "Gigamacro",
  11255. height: math.unit(800, "miles")
  11256. },
  11257. {
  11258. name: "Teramacro",
  11259. height: math.unit(80000, "miles")
  11260. },
  11261. {
  11262. name: "Celestial",
  11263. height: math.unit(8e6, "miles")
  11264. },
  11265. {
  11266. name: "Star Dragon",
  11267. height: math.unit(800000, "parsecs")
  11268. },
  11269. {
  11270. name: "Godly",
  11271. height: math.unit(800, "teraparsecs")
  11272. },
  11273. ]
  11274. ))
  11275. characterMakers.push(() => makeCharacter(
  11276. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11277. {
  11278. front: {
  11279. height: math.unit(6, "feet"),
  11280. weight: math.unit(150, "lb"),
  11281. name: "Front",
  11282. image: {
  11283. source: "./media/characters/ky'owin/front.svg",
  11284. extra: 3888 / 3068,
  11285. bottom: 0.015
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(6 + 8 / 12, "feet")
  11293. },
  11294. {
  11295. name: "Large",
  11296. height: math.unit(68, "feet")
  11297. },
  11298. {
  11299. name: "Macro",
  11300. height: math.unit(132, "feet")
  11301. },
  11302. {
  11303. name: "Macro+",
  11304. height: math.unit(340, "feet")
  11305. },
  11306. {
  11307. name: "Macro++",
  11308. height: math.unit(680, "feet"),
  11309. default: true
  11310. },
  11311. {
  11312. name: "Megamacro",
  11313. height: math.unit(1, "mile")
  11314. },
  11315. {
  11316. name: "Megamacro+",
  11317. height: math.unit(10, "miles")
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11323. {
  11324. front: {
  11325. height: math.unit(4, "feet"),
  11326. weight: math.unit(50, "lb"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/mal/front.svg",
  11330. extra: 785 / 724,
  11331. bottom: 0.07
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Micro",
  11338. height: math.unit(4, "inches")
  11339. },
  11340. {
  11341. name: "Normal",
  11342. height: math.unit(4, "feet"),
  11343. default: true
  11344. },
  11345. {
  11346. name: "Macro",
  11347. height: math.unit(200, "feet")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11353. {
  11354. front: {
  11355. height: math.unit(6, "feet"),
  11356. weight: math.unit(150, "lb"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/jordan-deware/front.svg",
  11360. extra: 1191 / 1012
  11361. }
  11362. },
  11363. },
  11364. [
  11365. {
  11366. name: "Nano",
  11367. height: math.unit(0.01, "mm")
  11368. },
  11369. {
  11370. name: "Minimicro",
  11371. height: math.unit(1, "mm")
  11372. },
  11373. {
  11374. name: "Micro",
  11375. height: math.unit(0.5, "inches")
  11376. },
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(4, "feet"),
  11380. default: true
  11381. },
  11382. {
  11383. name: "Minimacro",
  11384. height: math.unit(40, "meters")
  11385. },
  11386. {
  11387. name: "Small Macro",
  11388. height: math.unit(400, "meters")
  11389. },
  11390. {
  11391. name: "Macro",
  11392. height: math.unit(4, "miles")
  11393. },
  11394. {
  11395. name: "Megamacro",
  11396. height: math.unit(40, "miles")
  11397. },
  11398. {
  11399. name: "Megamacro+",
  11400. height: math.unit(400, "miles")
  11401. },
  11402. {
  11403. name: "Gigamacro",
  11404. height: math.unit(400000, "miles")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11410. {
  11411. side: {
  11412. height: math.unit(6, "feet"),
  11413. weight: math.unit(150, "lb"),
  11414. name: "Side",
  11415. image: {
  11416. source: "./media/characters/kimiko/side.svg",
  11417. extra: 600 / 358
  11418. }
  11419. },
  11420. },
  11421. [
  11422. {
  11423. name: "Normal",
  11424. height: math.unit(15, "feet"),
  11425. default: true
  11426. },
  11427. {
  11428. name: "Macro",
  11429. height: math.unit(220, "feet")
  11430. },
  11431. {
  11432. name: "Macro+",
  11433. height: math.unit(1450, "feet")
  11434. },
  11435. {
  11436. name: "Megamacro",
  11437. height: math.unit(11500, "feet")
  11438. },
  11439. {
  11440. name: "Gigamacro",
  11441. height: math.unit(9500, "miles")
  11442. },
  11443. {
  11444. name: "Teramacro",
  11445. height: math.unit(2208005005, "miles")
  11446. },
  11447. {
  11448. name: "Examacro",
  11449. height: math.unit(2750, "parsecs")
  11450. },
  11451. {
  11452. name: "Zettamacro",
  11453. height: math.unit(101500, "parsecs")
  11454. },
  11455. ]
  11456. ))
  11457. characterMakers.push(() => makeCharacter(
  11458. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11459. {
  11460. front: {
  11461. height: math.unit(6, "feet"),
  11462. weight: math.unit(70, "kg"),
  11463. name: "Front",
  11464. image: {
  11465. source: "./media/characters/andrew-sleepy/front.svg"
  11466. }
  11467. },
  11468. side: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(70, "kg"),
  11471. name: "Side",
  11472. image: {
  11473. source: "./media/characters/andrew-sleepy/side.svg"
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Micro",
  11480. height: math.unit(1, "mm"),
  11481. default: true
  11482. },
  11483. ]
  11484. ))
  11485. characterMakers.push(() => makeCharacter(
  11486. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11487. {
  11488. front: {
  11489. height: math.unit(6, "feet"),
  11490. weight: math.unit(150, "lb"),
  11491. name: "Front",
  11492. image: {
  11493. source: "./media/characters/judio/front.svg",
  11494. extra: 1258 / 1110
  11495. }
  11496. },
  11497. },
  11498. [
  11499. {
  11500. name: "Normal",
  11501. height: math.unit(5 + 6 / 12, "feet")
  11502. },
  11503. {
  11504. name: "Macro",
  11505. height: math.unit(1000, "feet"),
  11506. default: true
  11507. },
  11508. {
  11509. name: "Megamacro",
  11510. height: math.unit(10, "miles")
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11516. {
  11517. frontDressed: {
  11518. height: math.unit(6, "feet"),
  11519. weight: math.unit(68, "kg"),
  11520. name: "Front (Dressed)",
  11521. image: {
  11522. source: "./media/characters/nomaxice/front-dressed.svg",
  11523. extra: 1137/824,
  11524. bottom: 74/1211
  11525. }
  11526. },
  11527. frontShorts: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(68, "kg"),
  11530. name: "Front (Shorts)",
  11531. image: {
  11532. source: "./media/characters/nomaxice/front-shorts.svg",
  11533. extra: 1137/824,
  11534. bottom: 74/1211
  11535. }
  11536. },
  11537. back: {
  11538. height: math.unit(6, "feet"),
  11539. weight: math.unit(68, "kg"),
  11540. name: "Back",
  11541. image: {
  11542. source: "./media/characters/nomaxice/back.svg",
  11543. extra: 822/786,
  11544. bottom: 39/861
  11545. }
  11546. },
  11547. hand: {
  11548. height: math.unit(0.565, "feet"),
  11549. name: "Hand",
  11550. image: {
  11551. source: "./media/characters/nomaxice/hand.svg"
  11552. }
  11553. },
  11554. foot: {
  11555. height: math.unit(1, "feet"),
  11556. name: "Foot",
  11557. image: {
  11558. source: "./media/characters/nomaxice/foot.svg"
  11559. }
  11560. },
  11561. },
  11562. [
  11563. {
  11564. name: "Micro",
  11565. height: math.unit(8, "cm")
  11566. },
  11567. {
  11568. name: "Norm",
  11569. height: math.unit(1.82, "m")
  11570. },
  11571. {
  11572. name: "Norm+",
  11573. height: math.unit(8.8, "feet"),
  11574. default: true
  11575. },
  11576. {
  11577. name: "Big",
  11578. height: math.unit(8, "meters")
  11579. },
  11580. {
  11581. name: "Macro",
  11582. height: math.unit(18, "meters")
  11583. },
  11584. {
  11585. name: "Macro+",
  11586. height: math.unit(88, "meters")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11592. {
  11593. front: {
  11594. height: math.unit(12, "feet"),
  11595. weight: math.unit(1.5, "tons"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/dydros/front.svg",
  11599. extra: 863 / 800,
  11600. bottom: 0.015
  11601. }
  11602. },
  11603. back: {
  11604. height: math.unit(12, "feet"),
  11605. weight: math.unit(1.5, "tons"),
  11606. name: "Back",
  11607. image: {
  11608. source: "./media/characters/dydros/back.svg",
  11609. extra: 900 / 843,
  11610. bottom: 0.005
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(12, "feet"),
  11618. default: true
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11624. {
  11625. front: {
  11626. height: math.unit(6, "feet"),
  11627. weight: math.unit(100, "kg"),
  11628. name: "Front",
  11629. image: {
  11630. source: "./media/characters/riggi/front.svg",
  11631. extra: 5787 / 5303
  11632. }
  11633. },
  11634. hyper: {
  11635. height: math.unit(6 * 5 / 3, "feet"),
  11636. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11637. name: "Hyper",
  11638. image: {
  11639. source: "./media/characters/riggi/hyper.svg",
  11640. extra: 3595 / 3485
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Small Macro",
  11647. height: math.unit(50, "feet")
  11648. },
  11649. {
  11650. name: "Default",
  11651. height: math.unit(200, "feet"),
  11652. default: true
  11653. },
  11654. {
  11655. name: "Loom",
  11656. height: math.unit(10000, "feet")
  11657. },
  11658. {
  11659. name: "Cruising Altitude",
  11660. height: math.unit(30000, "feet")
  11661. },
  11662. {
  11663. name: "Megamacro",
  11664. height: math.unit(100, "miles")
  11665. },
  11666. {
  11667. name: "Continent Sized",
  11668. height: math.unit(2800, "miles")
  11669. },
  11670. {
  11671. name: "Earth Sized",
  11672. height: math.unit(8000, "miles")
  11673. },
  11674. ]
  11675. ))
  11676. characterMakers.push(() => makeCharacter(
  11677. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11678. {
  11679. front: {
  11680. height: math.unit(6, "feet"),
  11681. weight: math.unit(250, "lb"),
  11682. name: "Front",
  11683. image: {
  11684. source: "./media/characters/alexi/front.svg",
  11685. extra: 3483 / 3291,
  11686. bottom: 0.04
  11687. }
  11688. },
  11689. back: {
  11690. height: math.unit(6, "feet"),
  11691. weight: math.unit(250, "lb"),
  11692. name: "Back",
  11693. image: {
  11694. source: "./media/characters/alexi/back.svg",
  11695. extra: 3533 / 3356,
  11696. bottom: 0.021
  11697. }
  11698. },
  11699. frontTransforming: {
  11700. height: math.unit(8.58, "feet"),
  11701. weight: math.unit(1300, "lb"),
  11702. name: "Transforming",
  11703. image: {
  11704. source: "./media/characters/alexi/front-transforming.svg",
  11705. extra: 437 / 409,
  11706. bottom: 19 / 458.66
  11707. }
  11708. },
  11709. frontTransformed: {
  11710. height: math.unit(12.5, "feet"),
  11711. weight: math.unit(4000, "lb"),
  11712. name: "Transformed",
  11713. image: {
  11714. source: "./media/characters/alexi/front-transformed.svg",
  11715. extra: 639 / 614,
  11716. bottom: 30.55 / 671
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Normal",
  11723. height: math.unit(14, "feet"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Minimacro",
  11728. height: math.unit(30, "meters")
  11729. },
  11730. {
  11731. name: "Macro",
  11732. height: math.unit(500, "meters")
  11733. },
  11734. {
  11735. name: "Megamacro",
  11736. height: math.unit(9000, "km")
  11737. },
  11738. {
  11739. name: "Teramacro",
  11740. height: math.unit(384000, "km")
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(6, "feet"),
  11749. weight: math.unit(150, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/kayroo/front.svg",
  11753. extra: 1153 / 1038,
  11754. bottom: 0.06
  11755. }
  11756. },
  11757. foot: {
  11758. height: math.unit(6, "feet"),
  11759. weight: math.unit(150, "lb"),
  11760. name: "Foot",
  11761. image: {
  11762. source: "./media/characters/kayroo/foot.svg"
  11763. }
  11764. },
  11765. },
  11766. [
  11767. {
  11768. name: "Normal",
  11769. height: math.unit(8, "feet"),
  11770. default: true
  11771. },
  11772. {
  11773. name: "Minimacro",
  11774. height: math.unit(250, "feet")
  11775. },
  11776. {
  11777. name: "Macro",
  11778. height: math.unit(2800, "feet")
  11779. },
  11780. {
  11781. name: "Megamacro",
  11782. height: math.unit(5200, "feet")
  11783. },
  11784. {
  11785. name: "Gigamacro",
  11786. height: math.unit(27000, "feet")
  11787. },
  11788. {
  11789. name: "Omega",
  11790. height: math.unit(45000, "feet")
  11791. },
  11792. ]
  11793. ))
  11794. characterMakers.push(() => makeCharacter(
  11795. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11796. {
  11797. front: {
  11798. height: math.unit(18, "feet"),
  11799. weight: math.unit(5800, "lb"),
  11800. name: "Front",
  11801. image: {
  11802. source: "./media/characters/rhys/front.svg",
  11803. extra: 3386 / 3090,
  11804. bottom: 0.07
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Normal",
  11811. height: math.unit(18, "feet"),
  11812. default: true
  11813. },
  11814. {
  11815. name: "Working Size",
  11816. height: math.unit(200, "feet")
  11817. },
  11818. {
  11819. name: "Demolition Size",
  11820. height: math.unit(2000, "feet")
  11821. },
  11822. {
  11823. name: "Maximum Licensed Size",
  11824. height: math.unit(5, "miles")
  11825. },
  11826. {
  11827. name: "Maximum Observed Size",
  11828. height: math.unit(10, "yottameters")
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(6, "feet"),
  11837. weight: math.unit(250, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/toto/front.svg",
  11841. extra: 527 / 479,
  11842. bottom: 0.05
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Micro",
  11849. height: math.unit(3, "feet")
  11850. },
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(10, "feet")
  11854. },
  11855. {
  11856. name: "Macro",
  11857. height: math.unit(150, "feet"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Megamacro",
  11862. height: math.unit(1200, "feet")
  11863. },
  11864. ]
  11865. ))
  11866. characterMakers.push(() => makeCharacter(
  11867. { name: "King", species: ["lion"], tags: ["anthro"] },
  11868. {
  11869. back: {
  11870. height: math.unit(6, "feet"),
  11871. weight: math.unit(150, "lb"),
  11872. name: "Back",
  11873. image: {
  11874. source: "./media/characters/king/back.svg"
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Micro",
  11881. height: math.unit(2, "inches")
  11882. },
  11883. {
  11884. name: "Normal",
  11885. height: math.unit(8, "feet")
  11886. },
  11887. {
  11888. name: "Macro",
  11889. height: math.unit(200, "feet"),
  11890. default: true
  11891. },
  11892. {
  11893. name: "Megamacro",
  11894. height: math.unit(50, "miles")
  11895. },
  11896. ]
  11897. ))
  11898. characterMakers.push(() => makeCharacter(
  11899. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11900. {
  11901. front: {
  11902. height: math.unit(11, "feet"),
  11903. weight: math.unit(1400, "lb"),
  11904. name: "Front",
  11905. image: {
  11906. source: "./media/characters/cordite/front.svg",
  11907. extra: 1919/1827,
  11908. bottom: 40/1959
  11909. }
  11910. },
  11911. side: {
  11912. height: math.unit(11, "feet"),
  11913. weight: math.unit(1400, "lb"),
  11914. name: "Side",
  11915. image: {
  11916. source: "./media/characters/cordite/side.svg",
  11917. extra: 1908/1793,
  11918. bottom: 38/1946
  11919. }
  11920. },
  11921. back: {
  11922. height: math.unit(11, "feet"),
  11923. weight: math.unit(1400, "lb"),
  11924. name: "Back",
  11925. image: {
  11926. source: "./media/characters/cordite/back.svg",
  11927. extra: 1938/1837,
  11928. bottom: 10/1948
  11929. }
  11930. },
  11931. feral: {
  11932. height: math.unit(2, "feet"),
  11933. weight: math.unit(90, "lb"),
  11934. name: "Feral",
  11935. image: {
  11936. source: "./media/characters/cordite/feral.svg",
  11937. extra: 1260 / 755,
  11938. bottom: 0.05
  11939. }
  11940. },
  11941. },
  11942. [
  11943. {
  11944. name: "Normal",
  11945. height: math.unit(11, "feet"),
  11946. default: true
  11947. },
  11948. ]
  11949. ))
  11950. characterMakers.push(() => makeCharacter(
  11951. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11952. {
  11953. front: {
  11954. height: math.unit(6, "feet"),
  11955. weight: math.unit(150, "lb"),
  11956. name: "Front",
  11957. image: {
  11958. source: "./media/characters/pianostrong/front.svg",
  11959. extra: 6577 / 6254,
  11960. bottom: 0.02
  11961. }
  11962. },
  11963. side: {
  11964. height: math.unit(6, "feet"),
  11965. weight: math.unit(150, "lb"),
  11966. name: "Side",
  11967. image: {
  11968. source: "./media/characters/pianostrong/side.svg",
  11969. extra: 6106 / 5730
  11970. }
  11971. },
  11972. back: {
  11973. height: math.unit(6, "feet"),
  11974. weight: math.unit(150, "lb"),
  11975. name: "Back",
  11976. image: {
  11977. source: "./media/characters/pianostrong/back.svg",
  11978. extra: 6085 / 5733,
  11979. bottom: 0.01
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Macro",
  11986. height: math.unit(100, "feet")
  11987. },
  11988. {
  11989. name: "Macro+",
  11990. height: math.unit(300, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Macro++",
  11995. height: math.unit(1000, "feet")
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(150, "lb"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/kona/front.svg",
  12008. extra: 2960 / 2629,
  12009. bottom: 0.005
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Normal",
  12016. height: math.unit(11 + 8 / 12, "feet")
  12017. },
  12018. {
  12019. name: "Macro",
  12020. height: math.unit(850, "feet"),
  12021. default: true
  12022. },
  12023. {
  12024. name: "Macro+",
  12025. height: math.unit(1.5, "km"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Megamacro",
  12030. height: math.unit(80, "miles")
  12031. },
  12032. {
  12033. name: "Gigamacro",
  12034. height: math.unit(3500, "miles")
  12035. },
  12036. ]
  12037. ))
  12038. characterMakers.push(() => makeCharacter(
  12039. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12040. {
  12041. side: {
  12042. height: math.unit(1.9, "meters"),
  12043. weight: math.unit(326, "kg"),
  12044. name: "Side",
  12045. image: {
  12046. source: "./media/characters/levi/side.svg",
  12047. extra: 1704 / 1334,
  12048. bottom: 0.02
  12049. }
  12050. },
  12051. },
  12052. [
  12053. {
  12054. name: "Normal",
  12055. height: math.unit(1.9, "meters"),
  12056. default: true
  12057. },
  12058. {
  12059. name: "Macro",
  12060. height: math.unit(20, "meters")
  12061. },
  12062. {
  12063. name: "Macro+",
  12064. height: math.unit(200, "meters")
  12065. },
  12066. {
  12067. name: "Megamacro",
  12068. height: math.unit(2, "km")
  12069. },
  12070. {
  12071. name: "Megamacro+",
  12072. height: math.unit(20, "km")
  12073. },
  12074. {
  12075. name: "Gigamacro",
  12076. height: math.unit(2500, "km")
  12077. },
  12078. {
  12079. name: "Gigamacro+",
  12080. height: math.unit(120000, "km")
  12081. },
  12082. {
  12083. name: "Teramacro",
  12084. height: math.unit(7.77e6, "km")
  12085. },
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12090. {
  12091. front: {
  12092. height: math.unit(6 + 4/12, "feet"),
  12093. weight: math.unit(190, "lb"),
  12094. name: "Front",
  12095. image: {
  12096. source: "./media/characters/bmc/front.svg",
  12097. extra: 1626/1472,
  12098. bottom: 79/1705
  12099. }
  12100. },
  12101. back: {
  12102. height: math.unit(6 + 4/12, "feet"),
  12103. weight: math.unit(190, "lb"),
  12104. name: "Back",
  12105. image: {
  12106. source: "./media/characters/bmc/back.svg",
  12107. extra: 1640/1479,
  12108. bottom: 45/1685
  12109. }
  12110. },
  12111. frontArmor: {
  12112. height: math.unit(6 + 4/12, "feet"),
  12113. weight: math.unit(190, "lb"),
  12114. name: "Front-armor",
  12115. image: {
  12116. source: "./media/characters/bmc/front-armor.svg",
  12117. extra: 1538/1468,
  12118. bottom: 79/1617
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Human-sized",
  12125. height: math.unit(6 + 4 / 12, "feet")
  12126. },
  12127. {
  12128. name: "Interactive Size",
  12129. height: math.unit(25, "feet")
  12130. },
  12131. {
  12132. name: "Small",
  12133. height: math.unit(250, "feet")
  12134. },
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(1250, "feet"),
  12138. default: true
  12139. },
  12140. {
  12141. name: "Good Day",
  12142. height: math.unit(88, "miles")
  12143. },
  12144. {
  12145. name: "Largest Measured Size",
  12146. height: math.unit(105.960, "galaxies")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(20, "feet"),
  12155. weight: math.unit(2016, "kg"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/sven-the-kaiju/front.svg",
  12159. extra: 1277/1250,
  12160. bottom: 35/1312
  12161. }
  12162. },
  12163. mouth: {
  12164. height: math.unit(1.85, "feet"),
  12165. name: "Mouth",
  12166. image: {
  12167. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Fairy",
  12174. height: math.unit(6, "inches")
  12175. },
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(20, "feet"),
  12179. default: true
  12180. },
  12181. {
  12182. name: "Rampage",
  12183. height: math.unit(200, "feet")
  12184. },
  12185. {
  12186. name: "Archfey Forest Guardian",
  12187. height: math.unit(1, "mile")
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(4, "meters"),
  12196. weight: math.unit(2, "tons"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/marik/front.svg",
  12200. extra: 1057 / 1003,
  12201. bottom: 0.08
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(4, "meters"),
  12209. default: true
  12210. },
  12211. {
  12212. name: "Macro",
  12213. height: math.unit(20, "meters")
  12214. },
  12215. {
  12216. name: "Megamacro",
  12217. height: math.unit(50, "km")
  12218. },
  12219. {
  12220. name: "Gigamacro",
  12221. height: math.unit(100, "km")
  12222. },
  12223. {
  12224. name: "Alpha Macro",
  12225. height: math.unit(7.88e7, "yottameters")
  12226. },
  12227. ]
  12228. ))
  12229. characterMakers.push(() => makeCharacter(
  12230. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12231. {
  12232. front: {
  12233. height: math.unit(6, "feet"),
  12234. weight: math.unit(110, "lb"),
  12235. name: "Front",
  12236. image: {
  12237. source: "./media/characters/mel/front.svg",
  12238. extra: 736 / 617,
  12239. bottom: 0.017
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Pico",
  12246. height: math.unit(3, "pm")
  12247. },
  12248. {
  12249. name: "Nano",
  12250. height: math.unit(3, "nm")
  12251. },
  12252. {
  12253. name: "Micro",
  12254. height: math.unit(0.3, "mm"),
  12255. default: true
  12256. },
  12257. {
  12258. name: "Micro+",
  12259. height: math.unit(3, "mm")
  12260. },
  12261. {
  12262. name: "Normal",
  12263. height: math.unit(5 + 10.5 / 12, "feet")
  12264. },
  12265. ]
  12266. ))
  12267. characterMakers.push(() => makeCharacter(
  12268. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12269. {
  12270. kaiju: {
  12271. height: math.unit(1.75, "meters"),
  12272. weight: math.unit(55, "kg"),
  12273. name: "Kaiju",
  12274. image: {
  12275. source: "./media/characters/lykonous/kaiju.svg",
  12276. extra: 1055 / 946,
  12277. bottom: 0.135
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Normal",
  12284. height: math.unit(2.5, "meters"),
  12285. default: true
  12286. },
  12287. {
  12288. name: "Kaiju Dragon",
  12289. height: math.unit(60, "meters")
  12290. },
  12291. {
  12292. name: "Mega Kaiju",
  12293. height: math.unit(120, "km")
  12294. },
  12295. {
  12296. name: "Giga Kaiju",
  12297. height: math.unit(200, "megameters")
  12298. },
  12299. {
  12300. name: "Terra Kaiju",
  12301. height: math.unit(400, "gigameters")
  12302. },
  12303. {
  12304. name: "Kaiju Dragon God",
  12305. height: math.unit(13000, "exaparsecs")
  12306. },
  12307. ]
  12308. ))
  12309. characterMakers.push(() => makeCharacter(
  12310. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12311. {
  12312. front: {
  12313. height: math.unit(6, "feet"),
  12314. weight: math.unit(150, "lb"),
  12315. name: "Front",
  12316. image: {
  12317. source: "./media/characters/blü/front.svg",
  12318. extra: 1883 / 1564,
  12319. bottom: 0.031
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(13, "feet"),
  12327. default: true
  12328. },
  12329. {
  12330. name: "Big Boi",
  12331. height: math.unit(150, "meters")
  12332. },
  12333. {
  12334. name: "Mini Stomper",
  12335. height: math.unit(300, "meters")
  12336. },
  12337. {
  12338. name: "Macro",
  12339. height: math.unit(1000, "meters")
  12340. },
  12341. {
  12342. name: "Megamacro",
  12343. height: math.unit(11000, "meters")
  12344. },
  12345. {
  12346. name: "Gigamacro",
  12347. height: math.unit(11000, "km")
  12348. },
  12349. {
  12350. name: "Teramacro",
  12351. height: math.unit(420000, "km")
  12352. },
  12353. {
  12354. name: "Examacro",
  12355. height: math.unit(120, "parsecs")
  12356. },
  12357. {
  12358. name: "God Tho",
  12359. height: math.unit(98000000000, "parsecs")
  12360. },
  12361. ]
  12362. ))
  12363. characterMakers.push(() => makeCharacter(
  12364. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12365. {
  12366. taurFront: {
  12367. height: math.unit(6, "feet"),
  12368. weight: math.unit(200, "lb"),
  12369. name: "Taur (Front)",
  12370. image: {
  12371. source: "./media/characters/scales/taur-front.svg",
  12372. extra: 1,
  12373. bottom: 0.05
  12374. }
  12375. },
  12376. taurBack: {
  12377. height: math.unit(6, "feet"),
  12378. weight: math.unit(200, "lb"),
  12379. name: "Taur (Back)",
  12380. image: {
  12381. source: "./media/characters/scales/taur-back.svg",
  12382. extra: 1,
  12383. bottom: 0.08
  12384. }
  12385. },
  12386. anthro: {
  12387. height: math.unit(6 * 7 / 12, "feet"),
  12388. weight: math.unit(100, "lb"),
  12389. name: "Anthro",
  12390. image: {
  12391. source: "./media/characters/scales/anthro.svg",
  12392. extra: 1,
  12393. bottom: 0.06
  12394. }
  12395. },
  12396. },
  12397. [
  12398. {
  12399. name: "Normal",
  12400. height: math.unit(12, "feet"),
  12401. default: true
  12402. },
  12403. ]
  12404. ))
  12405. characterMakers.push(() => makeCharacter(
  12406. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12407. {
  12408. front: {
  12409. height: math.unit(6, "feet"),
  12410. weight: math.unit(150, "lb"),
  12411. name: "Front",
  12412. image: {
  12413. source: "./media/characters/koragos/front.svg",
  12414. extra: 841 / 794,
  12415. bottom: 0.035
  12416. }
  12417. },
  12418. back: {
  12419. height: math.unit(6, "feet"),
  12420. weight: math.unit(150, "lb"),
  12421. name: "Back",
  12422. image: {
  12423. source: "./media/characters/koragos/back.svg",
  12424. extra: 841 / 810,
  12425. bottom: 0.022
  12426. }
  12427. },
  12428. },
  12429. [
  12430. {
  12431. name: "Normal",
  12432. height: math.unit(6 + 11 / 12, "feet"),
  12433. default: true
  12434. },
  12435. {
  12436. name: "Macro",
  12437. height: math.unit(490, "feet")
  12438. },
  12439. {
  12440. name: "Megamacro",
  12441. height: math.unit(10, "miles")
  12442. },
  12443. {
  12444. name: "Gigamacro",
  12445. height: math.unit(50, "miles")
  12446. },
  12447. ]
  12448. ))
  12449. characterMakers.push(() => makeCharacter(
  12450. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12451. {
  12452. front: {
  12453. height: math.unit(6, "feet"),
  12454. weight: math.unit(250, "lb"),
  12455. name: "Front",
  12456. image: {
  12457. source: "./media/characters/xylrem/front.svg",
  12458. extra: 3323 / 3050,
  12459. bottom: 0.065
  12460. }
  12461. },
  12462. },
  12463. [
  12464. {
  12465. name: "Micro",
  12466. height: math.unit(4, "feet")
  12467. },
  12468. {
  12469. name: "Normal",
  12470. height: math.unit(16, "feet"),
  12471. default: true
  12472. },
  12473. {
  12474. name: "Macro",
  12475. height: math.unit(2720, "feet")
  12476. },
  12477. {
  12478. name: "Megamacro",
  12479. height: math.unit(25000, "miles")
  12480. },
  12481. ]
  12482. ))
  12483. characterMakers.push(() => makeCharacter(
  12484. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12485. {
  12486. front: {
  12487. height: math.unit(8, "feet"),
  12488. weight: math.unit(250, "kg"),
  12489. name: "Front",
  12490. image: {
  12491. source: "./media/characters/ikideru/front.svg",
  12492. extra: 930 / 870,
  12493. bottom: 0.087
  12494. }
  12495. },
  12496. back: {
  12497. height: math.unit(8, "feet"),
  12498. weight: math.unit(250, "kg"),
  12499. name: "Back",
  12500. image: {
  12501. source: "./media/characters/ikideru/back.svg",
  12502. extra: 919 / 852,
  12503. bottom: 0.055
  12504. }
  12505. },
  12506. },
  12507. [
  12508. {
  12509. name: "Rare",
  12510. height: math.unit(8, "feet"),
  12511. default: true
  12512. },
  12513. {
  12514. name: "Playful Loom",
  12515. height: math.unit(80, "feet")
  12516. },
  12517. {
  12518. name: "City Leaner",
  12519. height: math.unit(230, "feet")
  12520. },
  12521. {
  12522. name: "Megamacro",
  12523. height: math.unit(2500, "feet")
  12524. },
  12525. {
  12526. name: "Gigamacro",
  12527. height: math.unit(26400, "feet")
  12528. },
  12529. {
  12530. name: "Tectonic Shifter",
  12531. height: math.unit(1.7, "megameters")
  12532. },
  12533. {
  12534. name: "Planet Carer",
  12535. height: math.unit(21, "megameters")
  12536. },
  12537. {
  12538. name: "God",
  12539. height: math.unit(11157.22, "parsecs")
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12545. {
  12546. front: {
  12547. height: math.unit(6, "feet"),
  12548. weight: math.unit(120, "lb"),
  12549. name: "Front",
  12550. image: {
  12551. source: "./media/characters/neo/front.svg"
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Micro",
  12558. height: math.unit(2, "inches"),
  12559. default: true
  12560. },
  12561. {
  12562. name: "Human Size",
  12563. height: math.unit(5 + 8 / 12, "feet")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12569. {
  12570. front: {
  12571. height: math.unit(13 + 10 / 12, "feet"),
  12572. weight: math.unit(5320, "lb"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/chauncey-chantz/front.svg",
  12576. extra: 1587 / 1435,
  12577. bottom: 0.02
  12578. }
  12579. },
  12580. },
  12581. [
  12582. {
  12583. name: "Normal",
  12584. height: math.unit(13 + 10 / 12, "feet"),
  12585. default: true
  12586. },
  12587. {
  12588. name: "Macro",
  12589. height: math.unit(45, "feet")
  12590. },
  12591. {
  12592. name: "Megamacro",
  12593. height: math.unit(250, "miles")
  12594. },
  12595. {
  12596. name: "Planetary",
  12597. height: math.unit(10000, "miles")
  12598. },
  12599. {
  12600. name: "Galactic",
  12601. height: math.unit(40000, "parsecs")
  12602. },
  12603. {
  12604. name: "Universal",
  12605. height: math.unit(1, "yottameter")
  12606. },
  12607. ]
  12608. ))
  12609. characterMakers.push(() => makeCharacter(
  12610. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12611. {
  12612. front: {
  12613. height: math.unit(6, "feet"),
  12614. weight: math.unit(150, "lb"),
  12615. name: "Front",
  12616. image: {
  12617. source: "./media/characters/epifox/front.svg",
  12618. extra: 1,
  12619. bottom: 0.075
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Micro",
  12626. height: math.unit(6, "inches")
  12627. },
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(12, "feet"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Macro",
  12635. height: math.unit(3810, "feet")
  12636. },
  12637. {
  12638. name: "Megamacro",
  12639. height: math.unit(500, "miles")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(1.8796, "m"),
  12648. weight: math.unit(230, "lb"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/colin-t/front.svg",
  12652. extra: 1272 / 1193,
  12653. bottom: 0.07
  12654. }
  12655. },
  12656. },
  12657. [
  12658. {
  12659. name: "Micro",
  12660. height: math.unit(0.571, "meters")
  12661. },
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(1.8796, "meters"),
  12665. default: true
  12666. },
  12667. {
  12668. name: "Tall",
  12669. height: math.unit(4, "meters")
  12670. },
  12671. {
  12672. name: "Macro",
  12673. height: math.unit(67.241, "meters")
  12674. },
  12675. {
  12676. name: "Megamacro",
  12677. height: math.unit(371.856, "meters")
  12678. },
  12679. {
  12680. name: "Planetary",
  12681. height: math.unit(12631.5689, "km")
  12682. },
  12683. ]
  12684. ))
  12685. characterMakers.push(() => makeCharacter(
  12686. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12687. {
  12688. front: {
  12689. height: math.unit(1.85, "meters"),
  12690. weight: math.unit(80, "kg"),
  12691. name: "Front",
  12692. image: {
  12693. source: "./media/characters/matvei/front.svg",
  12694. extra: 614 / 594,
  12695. bottom: 0.01
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Normal",
  12702. height: math.unit(1.85, "meters"),
  12703. default: true
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12709. {
  12710. front: {
  12711. height: math.unit(5 + 9 / 12, "feet"),
  12712. weight: math.unit(70, "lb"),
  12713. name: "Front",
  12714. image: {
  12715. source: "./media/characters/quincy/front.svg",
  12716. extra: 3041 / 2751
  12717. }
  12718. },
  12719. back: {
  12720. height: math.unit(5 + 9 / 12, "feet"),
  12721. weight: math.unit(70, "lb"),
  12722. name: "Back",
  12723. image: {
  12724. source: "./media/characters/quincy/back.svg",
  12725. extra: 3041 / 2751
  12726. }
  12727. },
  12728. flying: {
  12729. height: math.unit(5 + 4 / 12, "feet"),
  12730. weight: math.unit(70, "lb"),
  12731. name: "Flying",
  12732. image: {
  12733. source: "./media/characters/quincy/flying.svg",
  12734. extra: 1044 / 930
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Micro",
  12741. height: math.unit(3, "cm")
  12742. },
  12743. {
  12744. name: "Normal",
  12745. height: math.unit(5 + 9 / 12, "feet")
  12746. },
  12747. {
  12748. name: "Macro",
  12749. height: math.unit(200, "meters"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Megamacro",
  12754. height: math.unit(1000, "meters")
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12760. {
  12761. front: {
  12762. height: math.unit(3 + 11/12, "feet"),
  12763. weight: math.unit(50, "lb"),
  12764. name: "Front",
  12765. image: {
  12766. source: "./media/characters/vanrel/front.svg",
  12767. extra: 1104/949,
  12768. bottom: 52/1156
  12769. }
  12770. },
  12771. back: {
  12772. height: math.unit(3 + 11/12, "feet"),
  12773. weight: math.unit(50, "lb"),
  12774. name: "Back",
  12775. image: {
  12776. source: "./media/characters/vanrel/back.svg",
  12777. extra: 1119/976,
  12778. bottom: 37/1156
  12779. }
  12780. },
  12781. tome: {
  12782. height: math.unit(1.35, "feet"),
  12783. weight: math.unit(10, "lb"),
  12784. name: "Vanrel's Tome",
  12785. rename: true,
  12786. image: {
  12787. source: "./media/characters/vanrel/tome.svg"
  12788. }
  12789. },
  12790. beans: {
  12791. height: math.unit(0.89, "feet"),
  12792. name: "Beans",
  12793. image: {
  12794. source: "./media/characters/vanrel/beans.svg"
  12795. }
  12796. },
  12797. },
  12798. [
  12799. {
  12800. name: "Normal",
  12801. height: math.unit(3 + 11/12, "feet"),
  12802. default: true
  12803. },
  12804. ]
  12805. ))
  12806. characterMakers.push(() => makeCharacter(
  12807. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12808. {
  12809. front: {
  12810. height: math.unit(7 + 5 / 12, "feet"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/kuiper-vanrel/front.svg",
  12814. extra: 1219/1169,
  12815. bottom: 69/1288
  12816. }
  12817. },
  12818. back: {
  12819. height: math.unit(7 + 5 / 12, "feet"),
  12820. name: "Back",
  12821. image: {
  12822. source: "./media/characters/kuiper-vanrel/back.svg",
  12823. extra: 1236/1193,
  12824. bottom: 27/1263
  12825. }
  12826. },
  12827. foot: {
  12828. height: math.unit(0.55, "meters"),
  12829. name: "Foot",
  12830. image: {
  12831. source: "./media/characters/kuiper-vanrel/foot.svg",
  12832. }
  12833. },
  12834. battle: {
  12835. height: math.unit(6.824, "feet"),
  12836. name: "Battle",
  12837. image: {
  12838. source: "./media/characters/kuiper-vanrel/battle.svg",
  12839. extra: 1466 / 1327,
  12840. bottom: 29 / 1492.5
  12841. }
  12842. },
  12843. meerkui: {
  12844. height: math.unit(18, "inches"),
  12845. name: "Meerkui",
  12846. image: {
  12847. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12848. extra: 1354/1289,
  12849. bottom: 69/1423
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(7 + 5 / 12, "feet"),
  12857. default: true
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(8 + 5 / 12, "feet"),
  12866. name: "Front",
  12867. image: {
  12868. source: "./media/characters/keset-vanrel/front.svg",
  12869. extra: 1231/1148,
  12870. bottom: 82/1313
  12871. }
  12872. },
  12873. back: {
  12874. height: math.unit(8 + 5 / 12, "feet"),
  12875. name: "Back",
  12876. image: {
  12877. source: "./media/characters/keset-vanrel/back.svg",
  12878. extra: 1240/1174,
  12879. bottom: 33/1273
  12880. }
  12881. },
  12882. hand: {
  12883. height: math.unit(0.6, "meters"),
  12884. name: "Hand",
  12885. image: {
  12886. source: "./media/characters/keset-vanrel/hand.svg"
  12887. }
  12888. },
  12889. foot: {
  12890. height: math.unit(0.94978, "meters"),
  12891. name: "Foot",
  12892. image: {
  12893. source: "./media/characters/keset-vanrel/foot.svg"
  12894. }
  12895. },
  12896. battle: {
  12897. height: math.unit(7.408, "feet"),
  12898. name: "Battle",
  12899. image: {
  12900. source: "./media/characters/keset-vanrel/battle.svg",
  12901. extra: 1890 / 1386,
  12902. bottom: 73.28 / 1970
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Normal",
  12909. height: math.unit(8 + 5 / 12, "feet"),
  12910. default: true
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(6, "feet"),
  12919. weight: math.unit(150, "lb"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/neos/front.svg",
  12923. extra: 1696 / 992,
  12924. bottom: 0.14
  12925. }
  12926. },
  12927. },
  12928. [
  12929. {
  12930. name: "Normal",
  12931. height: math.unit(54, "cm"),
  12932. default: true
  12933. },
  12934. {
  12935. name: "Macro",
  12936. height: math.unit(100, "m")
  12937. },
  12938. {
  12939. name: "Megamacro",
  12940. height: math.unit(10, "km")
  12941. },
  12942. {
  12943. name: "Megamacro+",
  12944. height: math.unit(100, "km")
  12945. },
  12946. {
  12947. name: "Gigamacro",
  12948. height: math.unit(100, "Mm")
  12949. },
  12950. {
  12951. name: "Teramacro",
  12952. height: math.unit(100, "Gm")
  12953. },
  12954. {
  12955. name: "Examacro",
  12956. height: math.unit(100, "Em")
  12957. },
  12958. {
  12959. name: "Godly",
  12960. height: math.unit(10000, "Ym")
  12961. },
  12962. {
  12963. name: "Beyond Godly",
  12964. height: math.unit(25, "multiverses")
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12970. {
  12971. feminine: {
  12972. height: math.unit(5, "feet"),
  12973. weight: math.unit(100, "lb"),
  12974. name: "Feminine",
  12975. image: {
  12976. source: "./media/characters/sammy-mouse/feminine.svg",
  12977. extra: 2526 / 2425,
  12978. bottom: 0.123
  12979. }
  12980. },
  12981. masculine: {
  12982. height: math.unit(5, "feet"),
  12983. weight: math.unit(100, "lb"),
  12984. name: "Masculine",
  12985. image: {
  12986. source: "./media/characters/sammy-mouse/masculine.svg",
  12987. extra: 2526 / 2425,
  12988. bottom: 0.123
  12989. }
  12990. },
  12991. },
  12992. [
  12993. {
  12994. name: "Micro",
  12995. height: math.unit(5, "inches")
  12996. },
  12997. {
  12998. name: "Normal",
  12999. height: math.unit(5, "feet"),
  13000. default: true
  13001. },
  13002. {
  13003. name: "Macro",
  13004. height: math.unit(60, "feet")
  13005. },
  13006. ]
  13007. ))
  13008. characterMakers.push(() => makeCharacter(
  13009. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13010. {
  13011. front: {
  13012. height: math.unit(4, "feet"),
  13013. weight: math.unit(50, "lb"),
  13014. name: "Front",
  13015. image: {
  13016. source: "./media/characters/kole/front.svg",
  13017. extra: 1423 / 1303,
  13018. bottom: 0.025
  13019. }
  13020. },
  13021. back: {
  13022. height: math.unit(4, "feet"),
  13023. weight: math.unit(50, "lb"),
  13024. name: "Back",
  13025. image: {
  13026. source: "./media/characters/kole/back.svg",
  13027. extra: 1426 / 1280,
  13028. bottom: 0.02
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Normal",
  13035. height: math.unit(4, "feet"),
  13036. default: true
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13042. {
  13043. front: {
  13044. height: math.unit(2.5, "feet"),
  13045. weight: math.unit(32, "lb"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/rufran/front.svg",
  13049. extra: 1313/885,
  13050. bottom: 94/1407
  13051. }
  13052. },
  13053. side: {
  13054. height: math.unit(2.5, "feet"),
  13055. weight: math.unit(32, "lb"),
  13056. name: "Side",
  13057. image: {
  13058. source: "./media/characters/rufran/side.svg",
  13059. extra: 1109/852,
  13060. bottom: 118/1227
  13061. }
  13062. },
  13063. back: {
  13064. height: math.unit(2.5, "feet"),
  13065. weight: math.unit(32, "lb"),
  13066. name: "Back",
  13067. image: {
  13068. source: "./media/characters/rufran/back.svg",
  13069. extra: 1280/878,
  13070. bottom: 131/1411
  13071. }
  13072. },
  13073. mouth: {
  13074. height: math.unit(1.13, "feet"),
  13075. name: "Mouth",
  13076. image: {
  13077. source: "./media/characters/rufran/mouth.svg"
  13078. }
  13079. },
  13080. foot: {
  13081. height: math.unit(1.33, "feet"),
  13082. name: "Foot",
  13083. image: {
  13084. source: "./media/characters/rufran/foot.svg"
  13085. }
  13086. },
  13087. koboldFront: {
  13088. height: math.unit(2 + 6 / 12, "feet"),
  13089. weight: math.unit(20, "lb"),
  13090. name: "Front (Kobold)",
  13091. image: {
  13092. source: "./media/characters/rufran/kobold-front.svg",
  13093. extra: 2041 / 1839,
  13094. bottom: 0.055
  13095. }
  13096. },
  13097. koboldBack: {
  13098. height: math.unit(2 + 6 / 12, "feet"),
  13099. weight: math.unit(20, "lb"),
  13100. name: "Back (Kobold)",
  13101. image: {
  13102. source: "./media/characters/rufran/kobold-back.svg",
  13103. extra: 2054 / 1839,
  13104. bottom: 0.01
  13105. }
  13106. },
  13107. koboldHand: {
  13108. height: math.unit(0.2166, "meters"),
  13109. name: "Hand (Kobold)",
  13110. image: {
  13111. source: "./media/characters/rufran/kobold-hand.svg"
  13112. }
  13113. },
  13114. koboldFoot: {
  13115. height: math.unit(0.185, "meters"),
  13116. name: "Foot (Kobold)",
  13117. image: {
  13118. source: "./media/characters/rufran/kobold-foot.svg"
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Micro",
  13125. height: math.unit(1, "inch")
  13126. },
  13127. {
  13128. name: "Normal",
  13129. height: math.unit(2 + 6 / 12, "feet"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Big",
  13134. height: math.unit(60, "feet")
  13135. },
  13136. {
  13137. name: "Macro",
  13138. height: math.unit(325, "feet")
  13139. },
  13140. ]
  13141. ))
  13142. characterMakers.push(() => makeCharacter(
  13143. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13144. {
  13145. front: {
  13146. height: math.unit(0.3, "meters"),
  13147. weight: math.unit(3.5, "kg"),
  13148. name: "Front",
  13149. image: {
  13150. source: "./media/characters/chip/front.svg",
  13151. extra: 748 / 674
  13152. }
  13153. },
  13154. },
  13155. [
  13156. {
  13157. name: "Micro",
  13158. height: math.unit(1, "inch"),
  13159. default: true
  13160. },
  13161. ]
  13162. ))
  13163. characterMakers.push(() => makeCharacter(
  13164. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13165. {
  13166. side: {
  13167. height: math.unit(2.3, "meters"),
  13168. weight: math.unit(3500, "lb"),
  13169. name: "Side",
  13170. image: {
  13171. source: "./media/characters/torvid/side.svg",
  13172. extra: 1972 / 722,
  13173. bottom: 0.035
  13174. }
  13175. },
  13176. },
  13177. [
  13178. {
  13179. name: "Normal",
  13180. height: math.unit(2.3, "meters"),
  13181. default: true
  13182. },
  13183. ]
  13184. ))
  13185. characterMakers.push(() => makeCharacter(
  13186. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13187. {
  13188. front: {
  13189. height: math.unit(2, "meters"),
  13190. weight: math.unit(150.5, "kg"),
  13191. name: "Front",
  13192. image: {
  13193. source: "./media/characters/susan/front.svg",
  13194. extra: 693 / 635,
  13195. bottom: 0.05
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(505, "miles"),
  13203. default: true
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13209. {
  13210. front: {
  13211. height: math.unit(6, "feet"),
  13212. weight: math.unit(150, "lb"),
  13213. name: "Front",
  13214. image: {
  13215. source: "./media/characters/raindrops/front.svg",
  13216. extra: 2655 / 2461,
  13217. bottom: 49 / 2705
  13218. }
  13219. },
  13220. back: {
  13221. height: math.unit(6, "feet"),
  13222. weight: math.unit(150, "lb"),
  13223. name: "Back",
  13224. image: {
  13225. source: "./media/characters/raindrops/back.svg",
  13226. extra: 2574 / 2400,
  13227. bottom: 65 / 2634
  13228. }
  13229. },
  13230. },
  13231. [
  13232. {
  13233. name: "Micro",
  13234. height: math.unit(6, "inches")
  13235. },
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(6 + 2 / 12, "feet")
  13239. },
  13240. {
  13241. name: "Macro",
  13242. height: math.unit(131, "feet"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Megamacro",
  13247. height: math.unit(15, "miles")
  13248. },
  13249. {
  13250. name: "Gigamacro",
  13251. height: math.unit(4000, "miles")
  13252. },
  13253. {
  13254. name: "Teramacro",
  13255. height: math.unit(315000, "miles")
  13256. },
  13257. ]
  13258. ))
  13259. characterMakers.push(() => makeCharacter(
  13260. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13261. {
  13262. front: {
  13263. height: math.unit(2.794, "meters"),
  13264. weight: math.unit(325, "kg"),
  13265. name: "Front",
  13266. image: {
  13267. source: "./media/characters/tezwa/front.svg",
  13268. extra: 2083 / 1906,
  13269. bottom: 0.031
  13270. }
  13271. },
  13272. foot: {
  13273. height: math.unit(0.687, "meters"),
  13274. name: "Foot",
  13275. image: {
  13276. source: "./media/characters/tezwa/foot.svg"
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Normal",
  13283. height: math.unit(9 + 2 / 12, "feet"),
  13284. default: true
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(58, "feet"),
  13293. weight: math.unit(89000, "lb"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/typhus/front.svg",
  13297. extra: 816 / 800,
  13298. bottom: 0.065
  13299. }
  13300. },
  13301. },
  13302. [
  13303. {
  13304. name: "Macro",
  13305. height: math.unit(58, "feet"),
  13306. default: true
  13307. },
  13308. ]
  13309. ))
  13310. characterMakers.push(() => makeCharacter(
  13311. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13312. {
  13313. front: {
  13314. height: math.unit(12, "feet"),
  13315. weight: math.unit(6, "tonnes"),
  13316. name: "Front",
  13317. image: {
  13318. source: "./media/characters/lyra-von-wulf/front.svg",
  13319. extra: 1,
  13320. bottom: 0.10
  13321. }
  13322. },
  13323. frontMecha: {
  13324. height: math.unit(12, "feet"),
  13325. weight: math.unit(12, "tonnes"),
  13326. name: "Front (Mecha)",
  13327. image: {
  13328. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13329. extra: 1,
  13330. bottom: 0.042
  13331. }
  13332. },
  13333. maw: {
  13334. height: math.unit(2.2, "feet"),
  13335. name: "Maw",
  13336. image: {
  13337. source: "./media/characters/lyra-von-wulf/maw.svg"
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Normal",
  13344. height: math.unit(12, "feet"),
  13345. default: true
  13346. },
  13347. {
  13348. name: "Classic",
  13349. height: math.unit(50, "feet")
  13350. },
  13351. {
  13352. name: "Macro",
  13353. height: math.unit(500, "feet")
  13354. },
  13355. {
  13356. name: "Megamacro",
  13357. height: math.unit(1, "mile")
  13358. },
  13359. {
  13360. name: "Gigamacro",
  13361. height: math.unit(400, "miles")
  13362. },
  13363. {
  13364. name: "Teramacro",
  13365. height: math.unit(22000, "miles")
  13366. },
  13367. {
  13368. name: "Solarmacro",
  13369. height: math.unit(8600000, "miles")
  13370. },
  13371. {
  13372. name: "Galactic",
  13373. height: math.unit(1057000, "lightyears")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(6 + 10 / 12, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/dixon/front.svg",
  13386. extra: 3361 / 3209,
  13387. bottom: 0.01
  13388. }
  13389. },
  13390. },
  13391. [
  13392. {
  13393. name: "Normal",
  13394. height: math.unit(6 + 10 / 12, "feet"),
  13395. default: true
  13396. },
  13397. {
  13398. name: "Big",
  13399. height: math.unit(12, "meters")
  13400. },
  13401. {
  13402. name: "Macro",
  13403. height: math.unit(500, "meters")
  13404. },
  13405. {
  13406. name: "Megamacro",
  13407. height: math.unit(2, "km")
  13408. },
  13409. ]
  13410. ))
  13411. characterMakers.push(() => makeCharacter(
  13412. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13413. {
  13414. front: {
  13415. height: math.unit(185, "cm"),
  13416. weight: math.unit(68, "kg"),
  13417. name: "Front",
  13418. image: {
  13419. source: "./media/characters/kauko/front.svg",
  13420. extra: 1455 / 1421,
  13421. bottom: 0.03
  13422. }
  13423. },
  13424. back: {
  13425. height: math.unit(185, "cm"),
  13426. weight: math.unit(68, "kg"),
  13427. name: "Back",
  13428. image: {
  13429. source: "./media/characters/kauko/back.svg",
  13430. extra: 1455 / 1421,
  13431. bottom: 0.004
  13432. }
  13433. },
  13434. },
  13435. [
  13436. {
  13437. name: "Normal",
  13438. height: math.unit(185, "cm"),
  13439. default: true
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13445. {
  13446. front: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(150, "kg"),
  13449. name: "Front",
  13450. image: {
  13451. source: "./media/characters/varg/front.svg",
  13452. extra: 1108 / 1018,
  13453. bottom: 0.0375
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Normal",
  13460. height: math.unit(5, "meters")
  13461. },
  13462. {
  13463. name: "Macro",
  13464. height: math.unit(200, "meters")
  13465. },
  13466. {
  13467. name: "Megamacro",
  13468. height: math.unit(20, "kilometers")
  13469. },
  13470. {
  13471. name: "True Size",
  13472. height: math.unit(211, "km"),
  13473. default: true
  13474. },
  13475. {
  13476. name: "Gigamacro",
  13477. height: math.unit(1000, "km")
  13478. },
  13479. {
  13480. name: "Gigamacro+",
  13481. height: math.unit(8000, "km")
  13482. },
  13483. {
  13484. name: "Teramacro",
  13485. height: math.unit(1000000, "km")
  13486. },
  13487. ]
  13488. ))
  13489. characterMakers.push(() => makeCharacter(
  13490. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13491. {
  13492. front: {
  13493. height: math.unit(7 + 7 / 12, "feet"),
  13494. weight: math.unit(267, "lb"),
  13495. name: "Front",
  13496. image: {
  13497. source: "./media/characters/dayza/front.svg",
  13498. extra: 1262 / 1200,
  13499. bottom: 0.035
  13500. }
  13501. },
  13502. side: {
  13503. height: math.unit(7 + 7 / 12, "feet"),
  13504. weight: math.unit(267, "lb"),
  13505. name: "Side",
  13506. image: {
  13507. source: "./media/characters/dayza/side.svg",
  13508. extra: 1295 / 1245,
  13509. bottom: 0.05
  13510. }
  13511. },
  13512. back: {
  13513. height: math.unit(7 + 7 / 12, "feet"),
  13514. weight: math.unit(267, "lb"),
  13515. name: "Back",
  13516. image: {
  13517. source: "./media/characters/dayza/back.svg",
  13518. extra: 1241 / 1170
  13519. }
  13520. },
  13521. },
  13522. [
  13523. {
  13524. name: "Normal",
  13525. height: math.unit(7 + 7 / 12, "feet"),
  13526. default: true
  13527. },
  13528. {
  13529. name: "Macro",
  13530. height: math.unit(155, "feet")
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13536. {
  13537. front: {
  13538. height: math.unit(6 + 5 / 12, "feet"),
  13539. weight: math.unit(160, "lb"),
  13540. name: "Front",
  13541. image: {
  13542. source: "./media/characters/xanthos/front.svg",
  13543. extra: 1,
  13544. bottom: 0.04
  13545. }
  13546. },
  13547. back: {
  13548. height: math.unit(6 + 5 / 12, "feet"),
  13549. weight: math.unit(160, "lb"),
  13550. name: "Back",
  13551. image: {
  13552. source: "./media/characters/xanthos/back.svg",
  13553. extra: 1,
  13554. bottom: 0.03
  13555. }
  13556. },
  13557. hand: {
  13558. height: math.unit(0.928, "feet"),
  13559. name: "Hand",
  13560. image: {
  13561. source: "./media/characters/xanthos/hand.svg"
  13562. }
  13563. },
  13564. foot: {
  13565. height: math.unit(1.286, "feet"),
  13566. name: "Foot",
  13567. image: {
  13568. source: "./media/characters/xanthos/foot.svg"
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Normal",
  13575. height: math.unit(6 + 5 / 12, "feet"),
  13576. default: true
  13577. },
  13578. {
  13579. name: "Normal+",
  13580. height: math.unit(6, "meters")
  13581. },
  13582. {
  13583. name: "Macro",
  13584. height: math.unit(40, "feet")
  13585. },
  13586. {
  13587. name: "Macro+",
  13588. height: math.unit(200, "meters")
  13589. },
  13590. {
  13591. name: "Megamacro",
  13592. height: math.unit(20, "km")
  13593. },
  13594. {
  13595. name: "Megamacro+",
  13596. height: math.unit(100, "km")
  13597. },
  13598. {
  13599. name: "Gigamacro",
  13600. height: math.unit(200, "megameters")
  13601. },
  13602. {
  13603. name: "Gigamacro+",
  13604. height: math.unit(1.5, "gigameters")
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13610. {
  13611. front: {
  13612. height: math.unit(6 + 3 / 12, "feet"),
  13613. weight: math.unit(215, "lb"),
  13614. name: "Front",
  13615. image: {
  13616. source: "./media/characters/grynn/front.svg",
  13617. extra: 4627 / 4209,
  13618. bottom: 0.047
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Micro",
  13625. height: math.unit(6, "inches")
  13626. },
  13627. {
  13628. name: "Normal",
  13629. height: math.unit(6 + 3 / 12, "feet"),
  13630. default: true
  13631. },
  13632. {
  13633. name: "Big",
  13634. height: math.unit(104, "feet")
  13635. },
  13636. {
  13637. name: "Macro",
  13638. height: math.unit(944, "feet")
  13639. },
  13640. {
  13641. name: "Macro+",
  13642. height: math.unit(9480, "feet")
  13643. },
  13644. {
  13645. name: "Megamacro",
  13646. height: math.unit(78752, "feet")
  13647. },
  13648. {
  13649. name: "Megamacro+",
  13650. height: math.unit(630128, "feet")
  13651. },
  13652. {
  13653. name: "Megamacro++",
  13654. height: math.unit(3150695, "feet")
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13660. {
  13661. front: {
  13662. height: math.unit(7 + 5 / 12, "feet"),
  13663. weight: math.unit(450, "lb"),
  13664. name: "Front",
  13665. image: {
  13666. source: "./media/characters/mocha-aura/front.svg",
  13667. extra: 1907 / 1817,
  13668. bottom: 0.04
  13669. }
  13670. },
  13671. back: {
  13672. height: math.unit(7 + 5 / 12, "feet"),
  13673. weight: math.unit(450, "lb"),
  13674. name: "Back",
  13675. image: {
  13676. source: "./media/characters/mocha-aura/back.svg",
  13677. extra: 1900 / 1825,
  13678. bottom: 0.045
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Nano",
  13685. height: math.unit(1, "nm")
  13686. },
  13687. {
  13688. name: "Megamicro",
  13689. height: math.unit(1, "mm")
  13690. },
  13691. {
  13692. name: "Micro",
  13693. height: math.unit(3, "inches")
  13694. },
  13695. {
  13696. name: "Normal",
  13697. height: math.unit(7 + 5 / 12, "feet"),
  13698. default: true
  13699. },
  13700. {
  13701. name: "Macro",
  13702. height: math.unit(30, "feet")
  13703. },
  13704. {
  13705. name: "Megamacro",
  13706. height: math.unit(3500, "feet")
  13707. },
  13708. {
  13709. name: "Teramacro",
  13710. height: math.unit(500000, "miles")
  13711. },
  13712. {
  13713. name: "Petamacro",
  13714. height: math.unit(50000000000000000, "parsecs")
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13720. {
  13721. front: {
  13722. height: math.unit(6, "feet"),
  13723. weight: math.unit(150, "lb"),
  13724. name: "Front",
  13725. image: {
  13726. source: "./media/characters/ilisha-devya/front.svg",
  13727. extra: 1053/1049,
  13728. bottom: 270/1323
  13729. }
  13730. },
  13731. back: {
  13732. height: math.unit(6, "feet"),
  13733. weight: math.unit(150, "lb"),
  13734. name: "Back",
  13735. image: {
  13736. source: "./media/characters/ilisha-devya/back.svg",
  13737. extra: 1131/1128,
  13738. bottom: 39/1170
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Macro",
  13745. height: math.unit(500, "feet"),
  13746. default: true
  13747. },
  13748. {
  13749. name: "Megamacro",
  13750. height: math.unit(10, "miles")
  13751. },
  13752. {
  13753. name: "Gigamacro",
  13754. height: math.unit(100000, "miles")
  13755. },
  13756. {
  13757. name: "Examacro",
  13758. height: math.unit(1e9, "lightyears")
  13759. },
  13760. {
  13761. name: "Omniversal",
  13762. height: math.unit(1e33, "lightyears")
  13763. },
  13764. {
  13765. name: "Beyond Infinite",
  13766. height: math.unit(1e100, "lightyears")
  13767. },
  13768. ]
  13769. ))
  13770. characterMakers.push(() => makeCharacter(
  13771. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13772. {
  13773. Side: {
  13774. height: math.unit(6, "feet"),
  13775. weight: math.unit(150, "lb"),
  13776. name: "Side",
  13777. image: {
  13778. source: "./media/characters/mira/side.svg",
  13779. extra: 900 / 799,
  13780. bottom: 0.02
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Human Size",
  13787. height: math.unit(6, "feet")
  13788. },
  13789. {
  13790. name: "Macro",
  13791. height: math.unit(100, "feet"),
  13792. default: true
  13793. },
  13794. {
  13795. name: "Megamacro",
  13796. height: math.unit(10, "miles")
  13797. },
  13798. {
  13799. name: "Gigamacro",
  13800. height: math.unit(25000, "miles")
  13801. },
  13802. {
  13803. name: "Teramacro",
  13804. height: math.unit(300, "AU")
  13805. },
  13806. {
  13807. name: "Full Size",
  13808. height: math.unit(4.5e10, "lightyears")
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13814. {
  13815. front: {
  13816. height: math.unit(6, "feet"),
  13817. weight: math.unit(150, "lb"),
  13818. name: "Front",
  13819. image: {
  13820. source: "./media/characters/holly/front.svg",
  13821. extra: 639 / 606
  13822. }
  13823. },
  13824. back: {
  13825. height: math.unit(6, "feet"),
  13826. weight: math.unit(150, "lb"),
  13827. name: "Back",
  13828. image: {
  13829. source: "./media/characters/holly/back.svg",
  13830. extra: 623 / 598
  13831. }
  13832. },
  13833. frontWorking: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Front (Working)",
  13837. image: {
  13838. source: "./media/characters/holly/front-working.svg",
  13839. extra: 607 / 577,
  13840. bottom: 0.048
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Normal",
  13847. height: math.unit(12 + 3 / 12, "feet"),
  13848. default: true
  13849. },
  13850. ]
  13851. ))
  13852. characterMakers.push(() => makeCharacter(
  13853. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13854. {
  13855. front: {
  13856. height: math.unit(6, "feet"),
  13857. weight: math.unit(150, "lb"),
  13858. name: "Front",
  13859. image: {
  13860. source: "./media/characters/porter/front.svg",
  13861. extra: 1,
  13862. bottom: 0.01
  13863. }
  13864. },
  13865. frontRobes: {
  13866. height: math.unit(6, "feet"),
  13867. weight: math.unit(150, "lb"),
  13868. name: "Front (Robes)",
  13869. image: {
  13870. source: "./media/characters/porter/front-robes.svg",
  13871. extra: 1.01,
  13872. bottom: 0.01
  13873. }
  13874. },
  13875. },
  13876. [
  13877. {
  13878. name: "Normal",
  13879. height: math.unit(11 + 9 / 12, "feet"),
  13880. default: true
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13886. {
  13887. legendary: {
  13888. height: math.unit(6, "feet"),
  13889. weight: math.unit(150, "lb"),
  13890. name: "Legendary",
  13891. image: {
  13892. source: "./media/characters/lucy/legendary.svg",
  13893. extra: 1355 / 1100,
  13894. bottom: 0.045
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Legendary",
  13901. height: math.unit(86882 * 2, "miles"),
  13902. default: true
  13903. },
  13904. ]
  13905. ))
  13906. characterMakers.push(() => makeCharacter(
  13907. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13908. {
  13909. front: {
  13910. height: math.unit(6, "feet"),
  13911. weight: math.unit(150, "lb"),
  13912. name: "Front",
  13913. image: {
  13914. source: "./media/characters/drusilla/front.svg",
  13915. extra: 678 / 635,
  13916. bottom: 0.03
  13917. }
  13918. },
  13919. back: {
  13920. height: math.unit(6, "feet"),
  13921. weight: math.unit(150, "lb"),
  13922. name: "Back",
  13923. image: {
  13924. source: "./media/characters/drusilla/back.svg",
  13925. extra: 678 / 635,
  13926. bottom: 0.005
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Macro",
  13933. height: math.unit(100, "feet")
  13934. },
  13935. {
  13936. name: "Canon Height",
  13937. height: math.unit(2000, "feet"),
  13938. default: true
  13939. },
  13940. ]
  13941. ))
  13942. characterMakers.push(() => makeCharacter(
  13943. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13944. {
  13945. front: {
  13946. height: math.unit(6, "feet"),
  13947. weight: math.unit(180, "lb"),
  13948. name: "Front",
  13949. image: {
  13950. source: "./media/characters/renard-thatch/front.svg",
  13951. extra: 2411 / 2275,
  13952. bottom: 0.01
  13953. }
  13954. },
  13955. frontPosing: {
  13956. height: math.unit(6, "feet"),
  13957. weight: math.unit(180, "lb"),
  13958. name: "Front (Posing)",
  13959. image: {
  13960. source: "./media/characters/renard-thatch/front-posing.svg",
  13961. extra: 2381 / 2261,
  13962. bottom: 0.01
  13963. }
  13964. },
  13965. back: {
  13966. height: math.unit(6, "feet"),
  13967. weight: math.unit(180, "lb"),
  13968. name: "Back",
  13969. image: {
  13970. source: "./media/characters/renard-thatch/back.svg",
  13971. extra: 2428 / 2288
  13972. }
  13973. },
  13974. },
  13975. [
  13976. {
  13977. name: "Micro",
  13978. height: math.unit(3, "inches")
  13979. },
  13980. {
  13981. name: "Default",
  13982. height: math.unit(6, "feet"),
  13983. default: true
  13984. },
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(75, "feet")
  13988. },
  13989. ]
  13990. ))
  13991. characterMakers.push(() => makeCharacter(
  13992. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13993. {
  13994. front: {
  13995. height: math.unit(1450, "feet"),
  13996. weight: math.unit(1.21e6, "tons"),
  13997. name: "Front",
  13998. image: {
  13999. source: "./media/characters/sekvra/front.svg",
  14000. extra: 1193/1190,
  14001. bottom: 78/1271
  14002. }
  14003. },
  14004. side: {
  14005. height: math.unit(1450, "feet"),
  14006. weight: math.unit(1.21e6, "tons"),
  14007. name: "Side",
  14008. image: {
  14009. source: "./media/characters/sekvra/side.svg",
  14010. extra: 1193/1190,
  14011. bottom: 52/1245
  14012. }
  14013. },
  14014. back: {
  14015. height: math.unit(1450, "feet"),
  14016. weight: math.unit(1.21e6, "tons"),
  14017. name: "Back",
  14018. image: {
  14019. source: "./media/characters/sekvra/back.svg",
  14020. extra: 1219/1216,
  14021. bottom: 21/1240
  14022. }
  14023. },
  14024. frontClothed: {
  14025. height: math.unit(1450, "feet"),
  14026. weight: math.unit(1.21e6, "tons"),
  14027. name: "Front (Clothed)",
  14028. image: {
  14029. source: "./media/characters/sekvra/front-clothed.svg",
  14030. extra: 1192/1189,
  14031. bottom: 79/1271
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Macro",
  14038. height: math.unit(1450, "feet"),
  14039. default: true
  14040. },
  14041. {
  14042. name: "Megamacro",
  14043. height: math.unit(15000, "feet")
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(6, "feet"),
  14052. weight: math.unit(150, "lb"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/carmine/front.svg",
  14056. extra: 1,
  14057. bottom: 0.035
  14058. }
  14059. },
  14060. frontArmor: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(150, "lb"),
  14063. name: "Front (Armor)",
  14064. image: {
  14065. source: "./media/characters/carmine/front-armor.svg",
  14066. extra: 1,
  14067. bottom: 0.035
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Large",
  14074. height: math.unit(1, "mile")
  14075. },
  14076. {
  14077. name: "Huge",
  14078. height: math.unit(40, "miles"),
  14079. default: true
  14080. },
  14081. {
  14082. name: "Colossal",
  14083. height: math.unit(2500, "miles")
  14084. },
  14085. ]
  14086. ))
  14087. characterMakers.push(() => makeCharacter(
  14088. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14089. {
  14090. front: {
  14091. height: math.unit(6, "feet"),
  14092. weight: math.unit(150, "lb"),
  14093. name: "Front",
  14094. image: {
  14095. source: "./media/characters/elyssia/front.svg",
  14096. extra: 2201 / 2035,
  14097. bottom: 0.05
  14098. }
  14099. },
  14100. frontClothed: {
  14101. height: math.unit(6, "feet"),
  14102. weight: math.unit(150, "lb"),
  14103. name: "Front (Clothed)",
  14104. image: {
  14105. source: "./media/characters/elyssia/front-clothed.svg",
  14106. extra: 2201 / 2035,
  14107. bottom: 0.05
  14108. }
  14109. },
  14110. back: {
  14111. height: math.unit(6, "feet"),
  14112. weight: math.unit(150, "lb"),
  14113. name: "Back",
  14114. image: {
  14115. source: "./media/characters/elyssia/back.svg",
  14116. extra: 2201 / 2035,
  14117. bottom: 0.013
  14118. }
  14119. },
  14120. },
  14121. [
  14122. {
  14123. name: "Smaller",
  14124. height: math.unit(150, "feet")
  14125. },
  14126. {
  14127. name: "Standard",
  14128. height: math.unit(1400, "feet"),
  14129. default: true
  14130. },
  14131. {
  14132. name: "Distracted",
  14133. height: math.unit(15000, "feet")
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(7 + 4/12, "feet"),
  14142. weight: math.unit(690, "lb"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/geno-maxwell/front.svg",
  14146. extra: 984/856,
  14147. bottom: 87/1071
  14148. }
  14149. },
  14150. back: {
  14151. height: math.unit(7 + 4/12, "feet"),
  14152. weight: math.unit(690, "lb"),
  14153. name: "Back",
  14154. image: {
  14155. source: "./media/characters/geno-maxwell/back.svg",
  14156. extra: 981/854,
  14157. bottom: 57/1038
  14158. }
  14159. },
  14160. frontCostume: {
  14161. height: math.unit(7 + 4/12, "feet"),
  14162. weight: math.unit(690, "lb"),
  14163. name: "Front (Costume)",
  14164. image: {
  14165. source: "./media/characters/geno-maxwell/front-costume.svg",
  14166. extra: 984/856,
  14167. bottom: 87/1071
  14168. }
  14169. },
  14170. backcostume: {
  14171. height: math.unit(7 + 4/12, "feet"),
  14172. weight: math.unit(690, "lb"),
  14173. name: "Back (Costume)",
  14174. image: {
  14175. source: "./media/characters/geno-maxwell/back-costume.svg",
  14176. extra: 981/854,
  14177. bottom: 57/1038
  14178. }
  14179. },
  14180. },
  14181. [
  14182. {
  14183. name: "Micro",
  14184. height: math.unit(3, "inches")
  14185. },
  14186. {
  14187. name: "Normal",
  14188. height: math.unit(7 + 4 / 12, "feet"),
  14189. default: true
  14190. },
  14191. {
  14192. name: "Macro",
  14193. height: math.unit(220, "feet")
  14194. },
  14195. {
  14196. name: "Megamacro",
  14197. height: math.unit(11, "miles")
  14198. },
  14199. ]
  14200. ))
  14201. characterMakers.push(() => makeCharacter(
  14202. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14203. {
  14204. front: {
  14205. height: math.unit(7 + 4/12, "feet"),
  14206. weight: math.unit(750, "lb"),
  14207. name: "Front",
  14208. image: {
  14209. source: "./media/characters/regena-maxwell/front.svg",
  14210. extra: 984/856,
  14211. bottom: 87/1071
  14212. }
  14213. },
  14214. back: {
  14215. height: math.unit(7 + 4/12, "feet"),
  14216. weight: math.unit(750, "lb"),
  14217. name: "Back",
  14218. image: {
  14219. source: "./media/characters/regena-maxwell/back.svg",
  14220. extra: 981/854,
  14221. bottom: 57/1038
  14222. }
  14223. },
  14224. frontCostume: {
  14225. height: math.unit(7 + 4/12, "feet"),
  14226. weight: math.unit(750, "lb"),
  14227. name: "Front (Costume)",
  14228. image: {
  14229. source: "./media/characters/regena-maxwell/front-costume.svg",
  14230. extra: 984/856,
  14231. bottom: 87/1071
  14232. }
  14233. },
  14234. backcostume: {
  14235. height: math.unit(7 + 4/12, "feet"),
  14236. weight: math.unit(750, "lb"),
  14237. name: "Back (Costume)",
  14238. image: {
  14239. source: "./media/characters/regena-maxwell/back-costume.svg",
  14240. extra: 981/854,
  14241. bottom: 57/1038
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Normal",
  14248. height: math.unit(7 + 4 / 12, "feet"),
  14249. default: true
  14250. },
  14251. {
  14252. name: "Macro",
  14253. height: math.unit(220, "feet")
  14254. },
  14255. {
  14256. name: "Megamacro",
  14257. height: math.unit(11, "miles")
  14258. },
  14259. ]
  14260. ))
  14261. characterMakers.push(() => makeCharacter(
  14262. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14263. {
  14264. front: {
  14265. height: math.unit(6, "feet"),
  14266. weight: math.unit(150, "lb"),
  14267. name: "Front",
  14268. image: {
  14269. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14270. extra: 860 / 690,
  14271. bottom: 0.03
  14272. }
  14273. },
  14274. },
  14275. [
  14276. {
  14277. name: "Normal",
  14278. height: math.unit(1.7, "meters"),
  14279. default: true
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(6, "feet"),
  14288. weight: math.unit(150, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/quilly/front.svg",
  14292. extra: 890 / 776
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Gigamacro",
  14299. height: math.unit(404090, "miles"),
  14300. default: true
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(7 + 8 / 12, "feet"),
  14309. weight: math.unit(350, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/tempest/front.svg",
  14313. extra: 1175 / 1086,
  14314. bottom: 0.02
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Normal",
  14321. height: math.unit(7 + 8 / 12, "feet"),
  14322. default: true
  14323. },
  14324. ]
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14328. {
  14329. side: {
  14330. height: math.unit(4 + 5 / 12, "feet"),
  14331. weight: math.unit(80, "lb"),
  14332. name: "Side",
  14333. image: {
  14334. source: "./media/characters/rodger/side.svg",
  14335. extra: 1235 / 1118
  14336. }
  14337. },
  14338. },
  14339. [
  14340. {
  14341. name: "Micro",
  14342. height: math.unit(1, "inch")
  14343. },
  14344. {
  14345. name: "Normal",
  14346. height: math.unit(4 + 5 / 12, "feet"),
  14347. default: true
  14348. },
  14349. {
  14350. name: "Macro",
  14351. height: math.unit(120, "feet")
  14352. },
  14353. ]
  14354. ))
  14355. characterMakers.push(() => makeCharacter(
  14356. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14357. {
  14358. front: {
  14359. height: math.unit(6, "feet"),
  14360. weight: math.unit(150, "lb"),
  14361. name: "Front",
  14362. image: {
  14363. source: "./media/characters/danyel/front.svg",
  14364. extra: 1185 / 1123,
  14365. bottom: 0.05
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Shrunken",
  14372. height: math.unit(0.5, "mm")
  14373. },
  14374. {
  14375. name: "Micro",
  14376. height: math.unit(1, "mm"),
  14377. default: true
  14378. },
  14379. {
  14380. name: "Upsized",
  14381. height: math.unit(5 + 5 / 12, "feet")
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(5 + 6 / 12, "feet"),
  14390. weight: math.unit(200, "lb"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/vivian-bijoux/front.svg",
  14394. extra: 1217/1209,
  14395. bottom: 76/1293
  14396. }
  14397. },
  14398. back: {
  14399. height: math.unit(5 + 6 / 12, "feet"),
  14400. weight: math.unit(200, "lb"),
  14401. name: "Back",
  14402. image: {
  14403. source: "./media/characters/vivian-bijoux/back.svg",
  14404. extra: 1214/1208,
  14405. bottom: 51/1265
  14406. }
  14407. },
  14408. dressed: {
  14409. height: math.unit(5 + 6 / 12, "feet"),
  14410. weight: math.unit(200, "lb"),
  14411. name: "Dressed",
  14412. image: {
  14413. source: "./media/characters/vivian-bijoux/dressed.svg",
  14414. extra: 1217/1209,
  14415. bottom: 76/1293
  14416. }
  14417. },
  14418. },
  14419. [
  14420. {
  14421. name: "Normal",
  14422. height: math.unit(5 + 6 / 12, "feet"),
  14423. default: true
  14424. },
  14425. {
  14426. name: "Bad Dream",
  14427. height: math.unit(500, "feet")
  14428. },
  14429. {
  14430. name: "Nightmare",
  14431. height: math.unit(500, "miles")
  14432. },
  14433. ]
  14434. ))
  14435. characterMakers.push(() => makeCharacter(
  14436. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14437. {
  14438. front: {
  14439. height: math.unit(6 + 1 / 12, "feet"),
  14440. weight: math.unit(260, "lb"),
  14441. name: "Front",
  14442. image: {
  14443. source: "./media/characters/zeta/front.svg",
  14444. extra: 1968 / 1889,
  14445. bottom: 0.06
  14446. }
  14447. },
  14448. back: {
  14449. height: math.unit(6 + 1 / 12, "feet"),
  14450. weight: math.unit(260, "lb"),
  14451. name: "Back",
  14452. image: {
  14453. source: "./media/characters/zeta/back.svg",
  14454. extra: 1944 / 1858,
  14455. bottom: 0.03
  14456. }
  14457. },
  14458. hand: {
  14459. height: math.unit(1.112, "feet"),
  14460. name: "Hand",
  14461. image: {
  14462. source: "./media/characters/zeta/hand.svg"
  14463. }
  14464. },
  14465. foot: {
  14466. height: math.unit(1.48, "feet"),
  14467. name: "Foot",
  14468. image: {
  14469. source: "./media/characters/zeta/foot.svg"
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Micro",
  14476. height: math.unit(6, "inches")
  14477. },
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(6 + 1 / 12, "feet"),
  14481. default: true
  14482. },
  14483. {
  14484. name: "Macro",
  14485. height: math.unit(20, "feet")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(150, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/jamie-larsen/front.svg",
  14498. extra: 962 / 933,
  14499. bottom: 0.02
  14500. }
  14501. },
  14502. back: {
  14503. height: math.unit(6, "feet"),
  14504. weight: math.unit(150, "lb"),
  14505. name: "Back",
  14506. image: {
  14507. source: "./media/characters/jamie-larsen/back.svg",
  14508. extra: 997 / 946
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Macro",
  14515. height: math.unit(28 + 7 / 12, "feet"),
  14516. default: true
  14517. },
  14518. {
  14519. name: "Macro+",
  14520. height: math.unit(180, "feet")
  14521. },
  14522. {
  14523. name: "Megamacro",
  14524. height: math.unit(10, "miles")
  14525. },
  14526. {
  14527. name: "Gigamacro",
  14528. height: math.unit(200000, "miles")
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(120, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/vance/front.svg",
  14541. extra: 1980 / 1890,
  14542. bottom: 0.09
  14543. }
  14544. },
  14545. back: {
  14546. height: math.unit(6, "feet"),
  14547. weight: math.unit(120, "lb"),
  14548. name: "Back",
  14549. image: {
  14550. source: "./media/characters/vance/back.svg",
  14551. extra: 2081 / 1994,
  14552. bottom: 0.014
  14553. }
  14554. },
  14555. hand: {
  14556. height: math.unit(0.88, "feet"),
  14557. name: "Hand",
  14558. image: {
  14559. source: "./media/characters/vance/hand.svg"
  14560. }
  14561. },
  14562. foot: {
  14563. height: math.unit(0.64, "feet"),
  14564. name: "Foot",
  14565. image: {
  14566. source: "./media/characters/vance/foot.svg"
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Small",
  14573. height: math.unit(90, "feet"),
  14574. default: true
  14575. },
  14576. {
  14577. name: "Macro",
  14578. height: math.unit(100, "meters")
  14579. },
  14580. {
  14581. name: "Megamacro",
  14582. height: math.unit(15, "miles")
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14588. {
  14589. front: {
  14590. height: math.unit(6, "feet"),
  14591. weight: math.unit(180, "lb"),
  14592. name: "Front",
  14593. image: {
  14594. source: "./media/characters/xochitl/front.svg",
  14595. extra: 2297 / 2261,
  14596. bottom: 0.065
  14597. }
  14598. },
  14599. back: {
  14600. height: math.unit(6, "feet"),
  14601. weight: math.unit(180, "lb"),
  14602. name: "Back",
  14603. image: {
  14604. source: "./media/characters/xochitl/back.svg",
  14605. extra: 2386 / 2354,
  14606. bottom: 0.01
  14607. }
  14608. },
  14609. foot: {
  14610. height: math.unit(6 / 5 * 1.15, "feet"),
  14611. weight: math.unit(150, "lb"),
  14612. name: "Foot",
  14613. image: {
  14614. source: "./media/characters/xochitl/foot.svg"
  14615. }
  14616. },
  14617. },
  14618. [
  14619. {
  14620. name: "Macro",
  14621. height: math.unit(80, "feet")
  14622. },
  14623. {
  14624. name: "Macro+",
  14625. height: math.unit(400, "feet"),
  14626. default: true
  14627. },
  14628. {
  14629. name: "Gigamacro",
  14630. height: math.unit(80000, "miles")
  14631. },
  14632. {
  14633. name: "Gigamacro+",
  14634. height: math.unit(400000, "miles")
  14635. },
  14636. {
  14637. name: "Teramacro",
  14638. height: math.unit(300, "AU")
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/vincent/front.svg",
  14651. extra: 1130 / 1080,
  14652. bottom: 0.055
  14653. }
  14654. },
  14655. beak: {
  14656. height: math.unit(6 * 0.1, "feet"),
  14657. name: "Beak",
  14658. image: {
  14659. source: "./media/characters/vincent/beak.svg"
  14660. }
  14661. },
  14662. hand: {
  14663. height: math.unit(6 * 0.85, "feet"),
  14664. weight: math.unit(150, "lb"),
  14665. name: "Hand",
  14666. image: {
  14667. source: "./media/characters/vincent/hand.svg"
  14668. }
  14669. },
  14670. foot: {
  14671. height: math.unit(6 * 0.19, "feet"),
  14672. weight: math.unit(150, "lb"),
  14673. name: "Foot",
  14674. image: {
  14675. source: "./media/characters/vincent/foot.svg"
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Base",
  14682. height: math.unit(6 + 5 / 12, "feet"),
  14683. default: true
  14684. },
  14685. {
  14686. name: "Macro",
  14687. height: math.unit(300, "feet")
  14688. },
  14689. {
  14690. name: "Megamacro",
  14691. height: math.unit(2, "miles")
  14692. },
  14693. {
  14694. name: "Gigamacro",
  14695. height: math.unit(1000, "miles")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(2, "meters"),
  14704. weight: math.unit(500, "kg"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/coatl/front.svg",
  14708. extra: 3948 / 3500,
  14709. bottom: 0.082
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(4, "meters")
  14717. },
  14718. {
  14719. name: "Macro",
  14720. height: math.unit(100, "meters"),
  14721. default: true
  14722. },
  14723. {
  14724. name: "Macro+",
  14725. height: math.unit(300, "meters")
  14726. },
  14727. {
  14728. name: "Megamacro",
  14729. height: math.unit(3, "gigameters")
  14730. },
  14731. {
  14732. name: "Megamacro+",
  14733. height: math.unit(300, "terameters")
  14734. },
  14735. {
  14736. name: "Megamacro++",
  14737. height: math.unit(3, "lightyears")
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(6, "feet"),
  14746. weight: math.unit(50, "kg"),
  14747. name: "front",
  14748. image: {
  14749. source: "./media/characters/shiroryu/front.svg",
  14750. extra: 1990 / 1935
  14751. }
  14752. },
  14753. },
  14754. [
  14755. {
  14756. name: "Mortal Mingling",
  14757. height: math.unit(3, "meters")
  14758. },
  14759. {
  14760. name: "Kaiju-ish",
  14761. height: math.unit(250, "meters")
  14762. },
  14763. {
  14764. name: "Somewhat Godly",
  14765. height: math.unit(400, "km"),
  14766. default: true
  14767. },
  14768. {
  14769. name: "Planetary",
  14770. height: math.unit(300, "megameters")
  14771. },
  14772. {
  14773. name: "Galaxy-dwarfing",
  14774. height: math.unit(450, "kiloparsecs")
  14775. },
  14776. {
  14777. name: "Universe Eater",
  14778. height: math.unit(150, "gigaparsecs")
  14779. },
  14780. {
  14781. name: "Almost Immeasurable",
  14782. height: math.unit(1.3e266, "yottaparsecs")
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14788. {
  14789. front: {
  14790. height: math.unit(6, "feet"),
  14791. weight: math.unit(150, "lb"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/umeko/front.svg",
  14795. extra: 1,
  14796. bottom: 0.019
  14797. }
  14798. },
  14799. frontArmored: {
  14800. height: math.unit(6, "feet"),
  14801. weight: math.unit(150, "lb"),
  14802. name: "Front (Armored)",
  14803. image: {
  14804. source: "./media/characters/umeko/front-armored.svg",
  14805. extra: 1,
  14806. bottom: 0.021
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Macro",
  14813. height: math.unit(220, "feet"),
  14814. default: true
  14815. },
  14816. {
  14817. name: "Guardian Dragon",
  14818. height: math.unit(50, "miles")
  14819. },
  14820. {
  14821. name: "Cosmic",
  14822. height: math.unit(800000, "miles")
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14828. {
  14829. front: {
  14830. height: math.unit(6, "feet"),
  14831. weight: math.unit(150, "lb"),
  14832. name: "Front",
  14833. image: {
  14834. source: "./media/characters/cassidy/front.svg",
  14835. extra: 810/808,
  14836. bottom: 41/851
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "Canon Height",
  14843. height: math.unit(120, "feet"),
  14844. default: true
  14845. },
  14846. {
  14847. name: "Macro+",
  14848. height: math.unit(400, "feet")
  14849. },
  14850. {
  14851. name: "Macro++",
  14852. height: math.unit(4000, "feet")
  14853. },
  14854. {
  14855. name: "Megamacro",
  14856. height: math.unit(3, "miles")
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(6, "feet"),
  14865. weight: math.unit(150, "lb"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/isaac/front.svg",
  14869. extra: 896 / 815,
  14870. bottom: 0.11
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Human Size",
  14877. height: math.unit(8, "feet"),
  14878. default: true
  14879. },
  14880. {
  14881. name: "Macro",
  14882. height: math.unit(400, "feet")
  14883. },
  14884. {
  14885. name: "Megamacro",
  14886. height: math.unit(50, "miles")
  14887. },
  14888. {
  14889. name: "Canon Height",
  14890. height: math.unit(200, "AU")
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(6, "feet"),
  14899. weight: math.unit(72, "kg"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/sleekit/front.svg",
  14903. extra: 4693 / 4487,
  14904. bottom: 0.012
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Minimum Height",
  14911. height: math.unit(10, "meters")
  14912. },
  14913. {
  14914. name: "Smaller",
  14915. height: math.unit(25, "meters")
  14916. },
  14917. {
  14918. name: "Larger",
  14919. height: math.unit(38, "meters"),
  14920. default: true
  14921. },
  14922. {
  14923. name: "Maximum height",
  14924. height: math.unit(100, "meters")
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(6, "feet"),
  14933. weight: math.unit(150, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/nillia/front.svg",
  14937. extra: 2195 / 2037,
  14938. bottom: 0.005
  14939. }
  14940. },
  14941. back: {
  14942. height: math.unit(6, "feet"),
  14943. weight: math.unit(150, "lb"),
  14944. name: "Back",
  14945. image: {
  14946. source: "./media/characters/nillia/back.svg",
  14947. extra: 2195 / 2037,
  14948. bottom: 0.005
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Canon Height",
  14955. height: math.unit(489, "feet"),
  14956. default: true
  14957. }
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14962. {
  14963. front: {
  14964. height: math.unit(6, "feet"),
  14965. weight: math.unit(150, "lb"),
  14966. name: "Front",
  14967. image: {
  14968. source: "./media/characters/mesmyriza/front.svg",
  14969. extra: 2067 / 1784,
  14970. bottom: 0.035
  14971. }
  14972. },
  14973. foot: {
  14974. height: math.unit(6 / (250 / 35), "feet"),
  14975. name: "Foot",
  14976. image: {
  14977. source: "./media/characters/mesmyriza/foot.svg"
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Macro",
  14984. height: math.unit(457, "meters"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Megamacro",
  14989. height: math.unit(8, "megameters")
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14995. {
  14996. front: {
  14997. height: math.unit(6, "feet"),
  14998. weight: math.unit(250, "lb"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/saudade/front.svg",
  15002. extra: 1172 / 1139,
  15003. bottom: 0.035
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Micro",
  15010. height: math.unit(3, "inches")
  15011. },
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(6, "feet"),
  15015. default: true
  15016. },
  15017. {
  15018. name: "Macro",
  15019. height: math.unit(50, "feet")
  15020. },
  15021. {
  15022. name: "Megamacro",
  15023. height: math.unit(2800, "feet")
  15024. },
  15025. ]
  15026. ))
  15027. characterMakers.push(() => makeCharacter(
  15028. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15029. {
  15030. front: {
  15031. height: math.unit(5 + 4 / 12, "feet"),
  15032. weight: math.unit(100, "lb"),
  15033. name: "Front",
  15034. image: {
  15035. source: "./media/characters/keireer/front.svg",
  15036. extra: 716 / 666,
  15037. bottom: 0.05
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(5 + 4 / 12, "feet"),
  15045. default: true
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15051. {
  15052. front: {
  15053. height: math.unit(6, "feet"),
  15054. weight: math.unit(90, "kg"),
  15055. name: "Front",
  15056. image: {
  15057. source: "./media/characters/mirja/front.svg",
  15058. extra: 1789 / 1683,
  15059. bottom: 0.05
  15060. }
  15061. },
  15062. frontDressed: {
  15063. height: math.unit(6, "feet"),
  15064. weight: math.unit(90, "lb"),
  15065. name: "Front (Dressed)",
  15066. image: {
  15067. source: "./media/characters/mirja/front-dressed.svg",
  15068. extra: 1789 / 1683,
  15069. bottom: 0.05
  15070. }
  15071. },
  15072. back: {
  15073. height: math.unit(6, "feet"),
  15074. weight: math.unit(90, "lb"),
  15075. name: "Back",
  15076. image: {
  15077. source: "./media/characters/mirja/back.svg",
  15078. extra: 953 / 917,
  15079. bottom: 0.017
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "\"Incognito\"",
  15086. height: math.unit(3, "meters")
  15087. },
  15088. {
  15089. name: "Strolling Size",
  15090. height: math.unit(15, "km")
  15091. },
  15092. {
  15093. name: "Larger Strolling Size",
  15094. height: math.unit(400, "km")
  15095. },
  15096. {
  15097. name: "Preferred Size",
  15098. height: math.unit(5000, "km")
  15099. },
  15100. {
  15101. name: "True Size",
  15102. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15103. default: true
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(15, "feet"),
  15112. weight: math.unit(880, "kg"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/nightraver/front.svg",
  15116. extra: 2444 / 2160,
  15117. bottom: 0.027
  15118. }
  15119. },
  15120. back: {
  15121. height: math.unit(15, "feet"),
  15122. weight: math.unit(880, "kg"),
  15123. name: "Back",
  15124. image: {
  15125. source: "./media/characters/nightraver/back.svg",
  15126. extra: 2309 / 2180,
  15127. bottom: 0.005
  15128. }
  15129. },
  15130. sole: {
  15131. height: math.unit(2.878, "feet"),
  15132. name: "Sole",
  15133. image: {
  15134. source: "./media/characters/nightraver/sole.svg"
  15135. }
  15136. },
  15137. foot: {
  15138. height: math.unit(2.285, "feet"),
  15139. name: "Foot",
  15140. image: {
  15141. source: "./media/characters/nightraver/foot.svg"
  15142. }
  15143. },
  15144. maw: {
  15145. height: math.unit(2.67, "feet"),
  15146. name: "Maw",
  15147. image: {
  15148. source: "./media/characters/nightraver/maw.svg"
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Micro",
  15155. height: math.unit(1, "cm")
  15156. },
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(15, "feet"),
  15160. default: true
  15161. },
  15162. {
  15163. name: "Macro",
  15164. height: math.unit(300, "feet")
  15165. },
  15166. {
  15167. name: "Megamacro",
  15168. height: math.unit(300, "miles")
  15169. },
  15170. {
  15171. name: "Gigamacro",
  15172. height: math.unit(10000, "miles")
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15178. {
  15179. side: {
  15180. height: math.unit(2, "inches"),
  15181. weight: math.unit(5, "grams"),
  15182. name: "Side",
  15183. image: {
  15184. source: "./media/characters/arc/side.svg"
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Micro",
  15191. height: math.unit(2, "inches"),
  15192. default: true
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15198. {
  15199. front: {
  15200. height: math.unit(1.1938, "meters"),
  15201. weight: math.unit(54, "kg"),
  15202. name: "Front",
  15203. image: {
  15204. source: "./media/characters/nebula-shahar/front.svg",
  15205. extra: 1642 / 1436,
  15206. bottom: 0.06
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Megamicro",
  15213. height: math.unit(0.3, "mm")
  15214. },
  15215. {
  15216. name: "Micro",
  15217. height: math.unit(3, "cm")
  15218. },
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(138, "cm"),
  15222. default: true
  15223. },
  15224. {
  15225. name: "Macro",
  15226. height: math.unit(30, "m")
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(5.24, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/shayla/front.svg",
  15239. extra: 1512 / 1414,
  15240. bottom: 0.01
  15241. }
  15242. },
  15243. back: {
  15244. height: math.unit(5.24, "feet"),
  15245. weight: math.unit(150, "lb"),
  15246. name: "Back",
  15247. image: {
  15248. source: "./media/characters/shayla/back.svg",
  15249. extra: 1512 / 1414
  15250. }
  15251. },
  15252. hand: {
  15253. height: math.unit(0.7781496062992126, "feet"),
  15254. name: "Hand",
  15255. image: {
  15256. source: "./media/characters/shayla/hand.svg"
  15257. }
  15258. },
  15259. foot: {
  15260. height: math.unit(1.4206036745406823, "feet"),
  15261. name: "Foot",
  15262. image: {
  15263. source: "./media/characters/shayla/foot.svg"
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Micro",
  15270. height: math.unit(0.32, "feet")
  15271. },
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(5.24, "feet"),
  15275. default: true
  15276. },
  15277. {
  15278. name: "Macro",
  15279. height: math.unit(492.12, "feet")
  15280. },
  15281. {
  15282. name: "Megamacro",
  15283. height: math.unit(186.41, "miles")
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(2.2, "m"),
  15292. weight: math.unit(120, "kg"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/pia-jr/front.svg",
  15296. extra: 1000 / 970,
  15297. bottom: 0.035
  15298. }
  15299. },
  15300. hand: {
  15301. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15302. name: "Hand",
  15303. image: {
  15304. source: "./media/characters/pia-jr/hand.svg"
  15305. }
  15306. },
  15307. paw: {
  15308. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15309. name: "Paw",
  15310. image: {
  15311. source: "./media/characters/pia-jr/paw.svg"
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Micro",
  15318. height: math.unit(1.2, "cm")
  15319. },
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(2.2, "m"),
  15323. default: true
  15324. },
  15325. {
  15326. name: "Macro",
  15327. height: math.unit(180, "m")
  15328. },
  15329. {
  15330. name: "Megamacro",
  15331. height: math.unit(420, "km")
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(2, "m"),
  15340. weight: math.unit(115, "kg"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/pia-sr/front.svg",
  15344. extra: 760 / 730,
  15345. bottom: 0.015
  15346. }
  15347. },
  15348. back: {
  15349. height: math.unit(2, "m"),
  15350. weight: math.unit(115, "kg"),
  15351. name: "Back",
  15352. image: {
  15353. source: "./media/characters/pia-sr/back.svg",
  15354. extra: 760 / 730,
  15355. bottom: 0.01
  15356. }
  15357. },
  15358. hand: {
  15359. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15360. name: "Hand",
  15361. image: {
  15362. source: "./media/characters/pia-sr/hand.svg"
  15363. }
  15364. },
  15365. foot: {
  15366. height: math.unit(1.83, "feet"),
  15367. name: "Foot",
  15368. image: {
  15369. source: "./media/characters/pia-sr/foot.svg"
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Micro",
  15376. height: math.unit(88, "mm")
  15377. },
  15378. {
  15379. name: "Normal",
  15380. height: math.unit(2, "m"),
  15381. default: true
  15382. },
  15383. {
  15384. name: "Macro",
  15385. height: math.unit(200, "m")
  15386. },
  15387. {
  15388. name: "Megamacro",
  15389. height: math.unit(420, "km")
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15395. {
  15396. front: {
  15397. height: math.unit(8 + 2 / 12, "feet"),
  15398. weight: math.unit(300, "lb"),
  15399. name: "Front",
  15400. image: {
  15401. source: "./media/characters/kibibyte/front.svg",
  15402. extra: 2221 / 2098,
  15403. bottom: 0.04
  15404. }
  15405. },
  15406. },
  15407. [
  15408. {
  15409. name: "Normal",
  15410. height: math.unit(8 + 2 / 12, "feet"),
  15411. default: true
  15412. },
  15413. {
  15414. name: "Socialable Macro",
  15415. height: math.unit(50, "feet")
  15416. },
  15417. {
  15418. name: "Macro",
  15419. height: math.unit(300, "feet")
  15420. },
  15421. {
  15422. name: "Megamacro",
  15423. height: math.unit(500, "miles")
  15424. },
  15425. ]
  15426. ))
  15427. characterMakers.push(() => makeCharacter(
  15428. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15429. {
  15430. front: {
  15431. height: math.unit(6, "feet"),
  15432. weight: math.unit(150, "lb"),
  15433. name: "Front",
  15434. image: {
  15435. source: "./media/characters/felix/front.svg",
  15436. extra: 762 / 722,
  15437. bottom: 0.02
  15438. }
  15439. },
  15440. frontClothed: {
  15441. height: math.unit(6, "feet"),
  15442. weight: math.unit(150, "lb"),
  15443. name: "Front (Clothed)",
  15444. image: {
  15445. source: "./media/characters/felix/front-clothed.svg",
  15446. extra: 762 / 722,
  15447. bottom: 0.02
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Normal",
  15454. height: math.unit(6 + 8 / 12, "feet"),
  15455. default: true
  15456. },
  15457. {
  15458. name: "Macro",
  15459. height: math.unit(2600, "feet")
  15460. },
  15461. {
  15462. name: "Megamacro",
  15463. height: math.unit(450, "miles")
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15469. {
  15470. front: {
  15471. height: math.unit(6 + 1 / 12, "feet"),
  15472. weight: math.unit(250, "lb"),
  15473. name: "Front",
  15474. image: {
  15475. source: "./media/characters/tobo/front.svg",
  15476. extra: 608 / 586,
  15477. bottom: 0.023
  15478. }
  15479. },
  15480. back: {
  15481. height: math.unit(6 + 1 / 12, "feet"),
  15482. weight: math.unit(250, "lb"),
  15483. name: "Back",
  15484. image: {
  15485. source: "./media/characters/tobo/back.svg",
  15486. extra: 608 / 586
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Nano",
  15493. height: math.unit(2, "nm")
  15494. },
  15495. {
  15496. name: "Megamicro",
  15497. height: math.unit(0.1, "mm")
  15498. },
  15499. {
  15500. name: "Micro",
  15501. height: math.unit(1, "inch"),
  15502. default: true
  15503. },
  15504. {
  15505. name: "Human-sized",
  15506. height: math.unit(6 + 1 / 12, "feet")
  15507. },
  15508. {
  15509. name: "Macro",
  15510. height: math.unit(250, "feet")
  15511. },
  15512. {
  15513. name: "Megamacro",
  15514. height: math.unit(75, "miles")
  15515. },
  15516. {
  15517. name: "Texas-sized",
  15518. height: math.unit(750, "miles")
  15519. },
  15520. {
  15521. name: "Teramacro",
  15522. height: math.unit(50000, "miles")
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(6, "feet"),
  15531. weight: math.unit(269, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/danny-kapowsky/front.svg",
  15535. extra: 766 / 736,
  15536. bottom: 0.044
  15537. }
  15538. },
  15539. back: {
  15540. height: math.unit(6, "feet"),
  15541. weight: math.unit(269, "lb"),
  15542. name: "Back",
  15543. image: {
  15544. source: "./media/characters/danny-kapowsky/back.svg",
  15545. extra: 797 / 760,
  15546. bottom: 0.025
  15547. }
  15548. },
  15549. },
  15550. [
  15551. {
  15552. name: "Macro",
  15553. height: math.unit(150, "feet"),
  15554. default: true
  15555. },
  15556. {
  15557. name: "Macro+",
  15558. height: math.unit(200, "feet")
  15559. },
  15560. {
  15561. name: "Macro++",
  15562. height: math.unit(300, "feet")
  15563. },
  15564. {
  15565. name: "Macro+++",
  15566. height: math.unit(400, "feet")
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15572. {
  15573. side: {
  15574. height: math.unit(6, "feet"),
  15575. weight: math.unit(170, "lb"),
  15576. name: "Side",
  15577. image: {
  15578. source: "./media/characters/finn/side.svg",
  15579. extra: 1953 / 1807,
  15580. bottom: 0.057
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Megamacro",
  15587. height: math.unit(14445, "feet"),
  15588. default: true
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(5 + 6 / 12, "feet"),
  15597. weight: math.unit(125, "lb"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/roy/front.svg",
  15601. extra: 1,
  15602. bottom: 0.11
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Micro",
  15609. height: math.unit(3, "inches"),
  15610. default: true
  15611. },
  15612. {
  15613. name: "Normal",
  15614. height: math.unit(5 + 6 / 12, "feet")
  15615. },
  15616. {
  15617. name: "Lesser Macro",
  15618. height: math.unit(60, "feet")
  15619. },
  15620. {
  15621. name: "Greater Macro",
  15622. height: math.unit(120, "feet")
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15628. {
  15629. front: {
  15630. height: math.unit(6, "feet"),
  15631. weight: math.unit(100, "lb"),
  15632. name: "Front",
  15633. image: {
  15634. source: "./media/characters/aevsivs/front.svg",
  15635. extra: 1,
  15636. bottom: 0.03
  15637. }
  15638. },
  15639. back: {
  15640. height: math.unit(6, "feet"),
  15641. weight: math.unit(100, "lb"),
  15642. name: "Back",
  15643. image: {
  15644. source: "./media/characters/aevsivs/back.svg"
  15645. }
  15646. },
  15647. },
  15648. [
  15649. {
  15650. name: "Micro",
  15651. height: math.unit(2, "inches"),
  15652. default: true
  15653. },
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(5, "feet")
  15657. },
  15658. ]
  15659. ))
  15660. characterMakers.push(() => makeCharacter(
  15661. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15662. {
  15663. front: {
  15664. height: math.unit(5 + 7 / 12, "feet"),
  15665. weight: math.unit(159, "lb"),
  15666. name: "Front",
  15667. image: {
  15668. source: "./media/characters/hildegard/front.svg",
  15669. extra: 289 / 269,
  15670. bottom: 7.63 / 297.8
  15671. }
  15672. },
  15673. back: {
  15674. height: math.unit(5 + 7 / 12, "feet"),
  15675. weight: math.unit(159, "lb"),
  15676. name: "Back",
  15677. image: {
  15678. source: "./media/characters/hildegard/back.svg",
  15679. extra: 280 / 260,
  15680. bottom: 2.3 / 282
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Normal",
  15687. height: math.unit(5 + 7 / 12, "feet"),
  15688. default: true
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15694. {
  15695. bernard: {
  15696. height: math.unit(2 + 7 / 12, "feet"),
  15697. weight: math.unit(66, "lb"),
  15698. name: "Bernard",
  15699. rename: true,
  15700. image: {
  15701. source: "./media/characters/bernard-wilder/bernard.svg",
  15702. extra: 192 / 128,
  15703. bottom: 0.05
  15704. }
  15705. },
  15706. wilder: {
  15707. height: math.unit(5 + 8 / 12, "feet"),
  15708. weight: math.unit(143, "lb"),
  15709. name: "Wilder",
  15710. rename: true,
  15711. image: {
  15712. source: "./media/characters/bernard-wilder/wilder.svg",
  15713. extra: 361 / 312,
  15714. bottom: 0.02
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(2 + 7 / 12, "feet"),
  15722. default: true
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15728. {
  15729. anthro: {
  15730. height: math.unit(6 + 1 / 12, "feet"),
  15731. weight: math.unit(155, "lb"),
  15732. name: "Anthro",
  15733. image: {
  15734. source: "./media/characters/hearth/anthro.svg",
  15735. extra: 1178/1136,
  15736. bottom: 28/1206
  15737. }
  15738. },
  15739. feral: {
  15740. height: math.unit(3.78, "feet"),
  15741. weight: math.unit(35, "kg"),
  15742. name: "Feral",
  15743. image: {
  15744. source: "./media/characters/hearth/feral.svg",
  15745. extra: 153 / 135,
  15746. bottom: 0.03
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(6 + 1 / 12, "feet"),
  15754. default: true
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(6, "feet"),
  15763. weight: math.unit(182, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/ingrid/front.svg",
  15767. extra: 294 / 268,
  15768. bottom: 0.027
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(6, "feet"),
  15776. default: true
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15782. {
  15783. eevee: {
  15784. height: math.unit(2 + 10 / 12, "feet"),
  15785. weight: math.unit(86, "lb"),
  15786. name: "Malgam",
  15787. image: {
  15788. source: "./media/characters/malgam/eevee.svg",
  15789. extra: 952/784,
  15790. bottom: 38/990
  15791. }
  15792. },
  15793. sylveon: {
  15794. height: math.unit(4, "feet"),
  15795. weight: math.unit(101, "lb"),
  15796. name: "Future Malgam",
  15797. rename: true,
  15798. image: {
  15799. source: "./media/characters/malgam/sylveon.svg",
  15800. extra: 371 / 325,
  15801. bottom: 0.015
  15802. }
  15803. },
  15804. gigantamax: {
  15805. height: math.unit(50, "feet"),
  15806. name: "Gigantamax Malgam",
  15807. rename: true,
  15808. image: {
  15809. source: "./media/characters/malgam/gigantamax.svg"
  15810. }
  15811. },
  15812. },
  15813. [
  15814. {
  15815. name: "Normal",
  15816. height: math.unit(2 + 10 / 12, "feet"),
  15817. default: true
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15823. {
  15824. front: {
  15825. height: math.unit(5 + 11 / 12, "feet"),
  15826. weight: math.unit(188, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/fleur/front.svg",
  15830. extra: 309 / 283,
  15831. bottom: 0.007
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(5 + 11 / 12, "feet"),
  15839. default: true
  15840. },
  15841. ]
  15842. ))
  15843. characterMakers.push(() => makeCharacter(
  15844. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15845. {
  15846. front: {
  15847. height: math.unit(5 + 4 / 12, "feet"),
  15848. weight: math.unit(122, "lb"),
  15849. name: "Front",
  15850. image: {
  15851. source: "./media/characters/jude/front.svg",
  15852. extra: 288 / 273,
  15853. bottom: 0.03
  15854. }
  15855. },
  15856. },
  15857. [
  15858. {
  15859. name: "Normal",
  15860. height: math.unit(5 + 4 / 12, "feet"),
  15861. default: true
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(5 + 11 / 12, "feet"),
  15870. weight: math.unit(190, "lb"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/seara/front.svg",
  15874. extra: 1,
  15875. bottom: 0.05
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(5 + 11 / 12, "feet"),
  15883. default: true
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15889. {
  15890. front: {
  15891. height: math.unit(16 + 5 / 12, "feet"),
  15892. weight: math.unit(524, "lb"),
  15893. name: "Front",
  15894. image: {
  15895. source: "./media/characters/caspian-lugia/front.svg",
  15896. extra: 1,
  15897. bottom: 0.04
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(16 + 5 / 12, "feet"),
  15905. default: true
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(5 + 7 / 12, "feet"),
  15914. weight: math.unit(170, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/mika/front.svg",
  15918. extra: 1,
  15919. bottom: 0.016
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Normal",
  15926. height: math.unit(5 + 7 / 12, "feet"),
  15927. default: true
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15933. {
  15934. front: {
  15935. height: math.unit(6 + 2 / 12, "feet"),
  15936. weight: math.unit(268, "lb"),
  15937. name: "Front",
  15938. image: {
  15939. source: "./media/characters/sol/front.svg",
  15940. extra: 247 / 231,
  15941. bottom: 0.05
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Normal",
  15948. height: math.unit(6 + 2 / 12, "feet"),
  15949. default: true
  15950. },
  15951. ]
  15952. ))
  15953. characterMakers.push(() => makeCharacter(
  15954. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15955. {
  15956. buizel: {
  15957. height: math.unit(2 + 5 / 12, "feet"),
  15958. weight: math.unit(87, "lb"),
  15959. name: "Front",
  15960. image: {
  15961. source: "./media/characters/umiko/buizel.svg",
  15962. extra: 172 / 157,
  15963. bottom: 0.01
  15964. },
  15965. form: "buizel",
  15966. default: true
  15967. },
  15968. floatzel: {
  15969. height: math.unit(5 + 9 / 12, "feet"),
  15970. weight: math.unit(250, "lb"),
  15971. name: "Front",
  15972. image: {
  15973. source: "./media/characters/umiko/floatzel.svg",
  15974. extra: 1076/1006,
  15975. bottom: 15/1091
  15976. },
  15977. form: "floatzel",
  15978. default: true
  15979. },
  15980. },
  15981. [
  15982. {
  15983. name: "Normal",
  15984. height: math.unit(2 + 5 / 12, "feet"),
  15985. form: "buizel",
  15986. default: true
  15987. },
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(5 + 9 / 12, "feet"),
  15991. form: "floatzel",
  15992. default: true
  15993. },
  15994. ],
  15995. {
  15996. "buizel": {
  15997. name: "Buizel"
  15998. },
  15999. "floatzel": {
  16000. name: "Floatzel",
  16001. default: true
  16002. }
  16003. }
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(6 + 2 / 12, "feet"),
  16010. weight: math.unit(146, "lb"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/iliac/front.svg",
  16014. extra: 389 / 365,
  16015. bottom: 0.035
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(6 + 2 / 12, "feet"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16029. {
  16030. front: {
  16031. height: math.unit(6, "feet"),
  16032. weight: math.unit(170, "lb"),
  16033. name: "Front",
  16034. image: {
  16035. source: "./media/characters/topaz/front.svg",
  16036. extra: 317 / 303,
  16037. bottom: 0.055
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Normal",
  16044. height: math.unit(6, "feet"),
  16045. default: true
  16046. },
  16047. ]
  16048. ))
  16049. characterMakers.push(() => makeCharacter(
  16050. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16051. {
  16052. front: {
  16053. height: math.unit(5 + 11 / 12, "feet"),
  16054. weight: math.unit(144, "lb"),
  16055. name: "Front",
  16056. image: {
  16057. source: "./media/characters/gabriel/front.svg",
  16058. extra: 285 / 262,
  16059. bottom: 0.004
  16060. }
  16061. },
  16062. },
  16063. [
  16064. {
  16065. name: "Normal",
  16066. height: math.unit(5 + 11 / 12, "feet"),
  16067. default: true
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16073. {
  16074. side: {
  16075. height: math.unit(6 + 5 / 12, "feet"),
  16076. weight: math.unit(300, "lb"),
  16077. name: "Side",
  16078. image: {
  16079. source: "./media/characters/tempest-suicune/side.svg",
  16080. extra: 195 / 154,
  16081. bottom: 0.04
  16082. }
  16083. },
  16084. },
  16085. [
  16086. {
  16087. name: "Normal",
  16088. height: math.unit(6 + 5 / 12, "feet"),
  16089. default: true
  16090. },
  16091. ]
  16092. ))
  16093. characterMakers.push(() => makeCharacter(
  16094. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16095. {
  16096. front: {
  16097. height: math.unit(7 + 2 / 12, "feet"),
  16098. weight: math.unit(322, "lb"),
  16099. name: "Front",
  16100. image: {
  16101. source: "./media/characters/vulcan/front.svg",
  16102. extra: 154 / 147,
  16103. bottom: 0.04
  16104. }
  16105. },
  16106. },
  16107. [
  16108. {
  16109. name: "Normal",
  16110. height: math.unit(7 + 2 / 12, "feet"),
  16111. default: true
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16117. {
  16118. front: {
  16119. height: math.unit(5 + 10 / 12, "feet"),
  16120. weight: math.unit(264, "lb"),
  16121. name: "Front",
  16122. image: {
  16123. source: "./media/characters/gault/front.svg",
  16124. extra: 161 / 140,
  16125. bottom: 0.028
  16126. }
  16127. },
  16128. },
  16129. [
  16130. {
  16131. name: "Normal",
  16132. height: math.unit(5 + 10 / 12, "feet"),
  16133. default: true
  16134. },
  16135. ]
  16136. ))
  16137. characterMakers.push(() => makeCharacter(
  16138. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16139. {
  16140. front: {
  16141. height: math.unit(6, "feet"),
  16142. weight: math.unit(150, "lb"),
  16143. name: "Front",
  16144. image: {
  16145. source: "./media/characters/shard/front.svg",
  16146. extra: 273 / 238,
  16147. bottom: 0.02
  16148. }
  16149. },
  16150. },
  16151. [
  16152. {
  16153. name: "Normal",
  16154. height: math.unit(3 + 6 / 12, "feet"),
  16155. default: true
  16156. },
  16157. ]
  16158. ))
  16159. characterMakers.push(() => makeCharacter(
  16160. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16161. {
  16162. front: {
  16163. height: math.unit(5 + 11 / 12, "feet"),
  16164. weight: math.unit(146, "lb"),
  16165. name: "Front",
  16166. image: {
  16167. source: "./media/characters/ashe/front.svg",
  16168. extra: 400 / 373,
  16169. bottom: 0.01
  16170. }
  16171. },
  16172. },
  16173. [
  16174. {
  16175. name: "Normal",
  16176. height: math.unit(5 + 11 / 12, "feet"),
  16177. default: true
  16178. },
  16179. ]
  16180. ))
  16181. characterMakers.push(() => makeCharacter(
  16182. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16183. {
  16184. front: {
  16185. height: math.unit(5 + 5 / 12, "feet"),
  16186. weight: math.unit(135, "lb"),
  16187. name: "Front",
  16188. image: {
  16189. source: "./media/characters/beatrix/front.svg",
  16190. extra: 392 / 379,
  16191. bottom: 0.01
  16192. }
  16193. },
  16194. },
  16195. [
  16196. {
  16197. name: "Normal",
  16198. height: math.unit(6, "feet"),
  16199. default: true
  16200. },
  16201. ]
  16202. ))
  16203. characterMakers.push(() => makeCharacter(
  16204. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16205. {
  16206. front: {
  16207. height: math.unit(6 + 2/12, "feet"),
  16208. weight: math.unit(135, "lb"),
  16209. name: "Front",
  16210. image: {
  16211. source: "./media/characters/ignatius/front.svg",
  16212. extra: 1380/1259,
  16213. bottom: 27/1407
  16214. }
  16215. },
  16216. },
  16217. [
  16218. {
  16219. name: "Normal",
  16220. height: math.unit(6 + 2/12, "feet"),
  16221. default: true
  16222. },
  16223. ]
  16224. ))
  16225. characterMakers.push(() => makeCharacter(
  16226. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16227. {
  16228. front: {
  16229. height: math.unit(6 + 2 / 12, "feet"),
  16230. weight: math.unit(138, "lb"),
  16231. name: "Front",
  16232. image: {
  16233. source: "./media/characters/mei-li/front.svg",
  16234. extra: 237 / 229,
  16235. bottom: 0.03
  16236. }
  16237. },
  16238. },
  16239. [
  16240. {
  16241. name: "Normal",
  16242. height: math.unit(6 + 2 / 12, "feet"),
  16243. default: true
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16249. {
  16250. front: {
  16251. height: math.unit(2 + 4 / 12, "feet"),
  16252. weight: math.unit(62, "lb"),
  16253. name: "Front",
  16254. image: {
  16255. source: "./media/characters/puru/front.svg",
  16256. extra: 206 / 149,
  16257. bottom: 0.06
  16258. }
  16259. },
  16260. },
  16261. [
  16262. {
  16263. name: "Normal",
  16264. height: math.unit(2 + 4 / 12, "feet"),
  16265. default: true
  16266. },
  16267. ]
  16268. ))
  16269. characterMakers.push(() => makeCharacter(
  16270. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16271. {
  16272. anthro: {
  16273. height: math.unit(5 + 8/12, "feet"),
  16274. weight: math.unit(200, "lb"),
  16275. energyNeed: math.unit(2000, "kcal"),
  16276. name: "Anthro",
  16277. image: {
  16278. source: "./media/characters/kee/anthro.svg",
  16279. extra: 3251/3184,
  16280. bottom: 250/3501
  16281. }
  16282. },
  16283. taur: {
  16284. height: math.unit(11, "feet"),
  16285. weight: math.unit(500, "lb"),
  16286. energyNeed: math.unit(5000, "kcal"),
  16287. name: "Taur",
  16288. image: {
  16289. source: "./media/characters/kee/taur.svg",
  16290. extra: 1362/1320,
  16291. bottom: 83/1445
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Normal",
  16298. height: math.unit(5 + 8/12, "feet"),
  16299. default: true
  16300. },
  16301. {
  16302. name: "Macro",
  16303. height: math.unit(35, "feet")
  16304. },
  16305. ]
  16306. ))
  16307. characterMakers.push(() => makeCharacter(
  16308. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16309. {
  16310. anthro: {
  16311. height: math.unit(7, "feet"),
  16312. weight: math.unit(190, "lb"),
  16313. name: "Anthro",
  16314. image: {
  16315. source: "./media/characters/cobalt-dracha/anthro.svg",
  16316. extra: 231 / 225,
  16317. bottom: 0.04
  16318. }
  16319. },
  16320. feral: {
  16321. height: math.unit(9 + 7 / 12, "feet"),
  16322. weight: math.unit(294, "lb"),
  16323. name: "Feral",
  16324. image: {
  16325. source: "./media/characters/cobalt-dracha/feral.svg",
  16326. extra: 692 / 633,
  16327. bottom: 0.05
  16328. }
  16329. },
  16330. },
  16331. [
  16332. {
  16333. name: "Normal",
  16334. height: math.unit(7, "feet"),
  16335. default: true
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16341. {
  16342. fallen: {
  16343. height: math.unit(11 + 8 / 12, "feet"),
  16344. weight: math.unit(485, "lb"),
  16345. name: "Java (Fallen)",
  16346. rename: true,
  16347. image: {
  16348. source: "./media/characters/java/fallen.svg",
  16349. extra: 226 / 208,
  16350. bottom: 0.005
  16351. }
  16352. },
  16353. godkin: {
  16354. height: math.unit(10 + 6 / 12, "feet"),
  16355. weight: math.unit(328, "lb"),
  16356. name: "Java (Godkin)",
  16357. rename: true,
  16358. image: {
  16359. source: "./media/characters/java/godkin.svg",
  16360. extra: 1104/1068,
  16361. bottom: 36/1140
  16362. }
  16363. },
  16364. },
  16365. [
  16366. {
  16367. name: "Normal",
  16368. height: math.unit(11 + 8 / 12, "feet"),
  16369. default: true
  16370. },
  16371. ]
  16372. ))
  16373. characterMakers.push(() => makeCharacter(
  16374. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16375. {
  16376. front: {
  16377. height: math.unit(5 + 9 / 12, "feet"),
  16378. weight: math.unit(170, "lb"),
  16379. name: "Front",
  16380. image: {
  16381. source: "./media/characters/purna/front.svg",
  16382. extra: 239 / 229,
  16383. bottom: 0.01
  16384. }
  16385. },
  16386. },
  16387. [
  16388. {
  16389. name: "Normal",
  16390. height: math.unit(5 + 9 / 12, "feet"),
  16391. default: true
  16392. },
  16393. ]
  16394. ))
  16395. characterMakers.push(() => makeCharacter(
  16396. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16397. {
  16398. front: {
  16399. height: math.unit(5 + 9 / 12, "feet"),
  16400. weight: math.unit(142, "lb"),
  16401. name: "Front",
  16402. image: {
  16403. source: "./media/characters/kuva/front.svg",
  16404. extra: 281 / 271,
  16405. bottom: 0.006
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(5 + 9 / 12, "feet"),
  16413. default: true
  16414. },
  16415. ]
  16416. ))
  16417. characterMakers.push(() => makeCharacter(
  16418. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16419. {
  16420. anthro: {
  16421. height: math.unit(9 + 2 / 12, "feet"),
  16422. weight: math.unit(270, "lb"),
  16423. name: "Anthro",
  16424. image: {
  16425. source: "./media/characters/embra/anthro.svg",
  16426. extra: 200 / 187,
  16427. bottom: 0.02
  16428. }
  16429. },
  16430. feral: {
  16431. height: math.unit(18 + 8 / 12, "feet"),
  16432. weight: math.unit(576, "lb"),
  16433. name: "Feral",
  16434. image: {
  16435. source: "./media/characters/embra/feral.svg",
  16436. extra: 152 / 137,
  16437. bottom: 0.037
  16438. }
  16439. },
  16440. },
  16441. [
  16442. {
  16443. name: "Normal",
  16444. height: math.unit(9 + 2 / 12, "feet"),
  16445. default: true
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16451. {
  16452. anthro: {
  16453. height: math.unit(10 + 9 / 12, "feet"),
  16454. weight: math.unit(224, "lb"),
  16455. name: "Anthro",
  16456. image: {
  16457. source: "./media/characters/grottos/anthro.svg",
  16458. extra: 350 / 332,
  16459. bottom: 0.045
  16460. }
  16461. },
  16462. feral: {
  16463. height: math.unit(20 + 7 / 12, "feet"),
  16464. weight: math.unit(629, "lb"),
  16465. name: "Feral",
  16466. image: {
  16467. source: "./media/characters/grottos/feral.svg",
  16468. extra: 207 / 190,
  16469. bottom: 0.05
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(10 + 9 / 12, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16483. {
  16484. anthro: {
  16485. height: math.unit(9 + 6 / 12, "feet"),
  16486. weight: math.unit(298, "lb"),
  16487. name: "Anthro",
  16488. image: {
  16489. source: "./media/characters/frifna/anthro.svg",
  16490. extra: 282 / 269,
  16491. bottom: 0.015
  16492. }
  16493. },
  16494. feral: {
  16495. height: math.unit(16 + 2 / 12, "feet"),
  16496. weight: math.unit(624, "lb"),
  16497. name: "Feral",
  16498. image: {
  16499. source: "./media/characters/frifna/feral.svg"
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Normal",
  16506. height: math.unit(9 + 6 / 12, "feet"),
  16507. default: true
  16508. },
  16509. ]
  16510. ))
  16511. characterMakers.push(() => makeCharacter(
  16512. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16513. {
  16514. front: {
  16515. height: math.unit(6 + 2 / 12, "feet"),
  16516. weight: math.unit(168, "lb"),
  16517. name: "Front",
  16518. image: {
  16519. source: "./media/characters/elise/front.svg",
  16520. extra: 276 / 271
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(6 + 2 / 12, "feet"),
  16528. default: true
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16534. {
  16535. front: {
  16536. height: math.unit(5 + 10 / 12, "feet"),
  16537. weight: math.unit(210, "lb"),
  16538. name: "Front",
  16539. image: {
  16540. source: "./media/characters/glade/front.svg",
  16541. extra: 258 / 247,
  16542. bottom: 0.008
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(5 + 10 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16556. {
  16557. front: {
  16558. height: math.unit(5 + 10 / 12, "feet"),
  16559. weight: math.unit(129, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/rina/front.svg",
  16563. extra: 266 / 255,
  16564. bottom: 0.005
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(5 + 10 / 12, "feet"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(6 + 1 / 12, "feet"),
  16581. weight: math.unit(192, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/veronica/front.svg",
  16585. extra: 319 / 309,
  16586. bottom: 0.005
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(6 + 1 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16600. {
  16601. front: {
  16602. height: math.unit(9 + 3 / 12, "feet"),
  16603. weight: math.unit(1100, "lb"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/braxton/front.svg",
  16607. extra: 1057 / 984,
  16608. bottom: 0.05
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(9 + 3 / 12, "feet")
  16616. },
  16617. {
  16618. name: "Giant",
  16619. height: math.unit(300, "feet"),
  16620. default: true
  16621. },
  16622. {
  16623. name: "Macro",
  16624. height: math.unit(700, "feet")
  16625. },
  16626. {
  16627. name: "Megamacro",
  16628. height: math.unit(6000, "feet")
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(6 + 7 / 12, "feet"),
  16637. weight: math.unit(150, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/blue-feyonics/front.svg",
  16641. extra: 1403 / 1306,
  16642. bottom: 0.047
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(6 + 7 / 12, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(1.8, "meters"),
  16659. weight: math.unit(60, "kg"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/maxwell/front.svg",
  16663. extra: 2060 / 1873
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Micro",
  16670. height: math.unit(1, "mm")
  16671. },
  16672. {
  16673. name: "Normal",
  16674. height: math.unit(1.8, "meter"),
  16675. default: true
  16676. },
  16677. {
  16678. name: "Macro",
  16679. height: math.unit(30, "meters")
  16680. },
  16681. {
  16682. name: "Megamacro",
  16683. height: math.unit(10, "km")
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(6, "feet"),
  16692. weight: math.unit(150, "lb"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/jack/front.svg",
  16696. extra: 1754 / 1640,
  16697. bottom: 0.01
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(80000, "feet"),
  16705. default: true
  16706. },
  16707. {
  16708. name: "Max size",
  16709. height: math.unit(10, "lightyears")
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16715. {
  16716. urban: {
  16717. height: math.unit(5, "feet"),
  16718. weight: math.unit(240, "lb"),
  16719. name: "Urban",
  16720. image: {
  16721. source: "./media/characters/cafat/urban.svg",
  16722. extra: 1223/1126,
  16723. bottom: 205/1428
  16724. }
  16725. },
  16726. summer: {
  16727. height: math.unit(5, "feet"),
  16728. weight: math.unit(240, "lb"),
  16729. name: "Summer",
  16730. image: {
  16731. source: "./media/characters/cafat/summer.svg",
  16732. extra: 1223/1126,
  16733. bottom: 205/1428
  16734. }
  16735. },
  16736. winter: {
  16737. height: math.unit(5, "feet"),
  16738. weight: math.unit(240, "lb"),
  16739. name: "Winter",
  16740. image: {
  16741. source: "./media/characters/cafat/winter.svg",
  16742. extra: 1223/1126,
  16743. bottom: 205/1428
  16744. }
  16745. },
  16746. lingerie: {
  16747. height: math.unit(5, "feet"),
  16748. weight: math.unit(240, "lb"),
  16749. name: "Lingerie",
  16750. image: {
  16751. source: "./media/characters/cafat/lingerie.svg",
  16752. extra: 1223/1126,
  16753. bottom: 205/1428
  16754. }
  16755. },
  16756. upright: {
  16757. height: math.unit(6.3, "feet"),
  16758. weight: math.unit(240, "lb"),
  16759. name: "Upright",
  16760. image: {
  16761. source: "./media/characters/cafat/upright.svg",
  16762. bottom: 0.01
  16763. }
  16764. },
  16765. uprightFull: {
  16766. height: math.unit(6.3, "feet"),
  16767. weight: math.unit(240, "lb"),
  16768. name: "Upright (Full)",
  16769. image: {
  16770. source: "./media/characters/cafat/upright-full.svg",
  16771. bottom: 0.01
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Small",
  16778. height: math.unit(5, "feet"),
  16779. default: true
  16780. },
  16781. {
  16782. name: "Large",
  16783. height: math.unit(13, "feet")
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16789. {
  16790. front: {
  16791. height: math.unit(6, "feet"),
  16792. weight: math.unit(150, "lb"),
  16793. name: "Front",
  16794. image: {
  16795. source: "./media/characters/verin-raharra/front.svg",
  16796. extra: 5019 / 4835,
  16797. bottom: 0.023
  16798. }
  16799. },
  16800. },
  16801. [
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(7 + 5 / 12, "feet"),
  16805. default: true
  16806. },
  16807. {
  16808. name: "Upsized",
  16809. height: math.unit(20, "feet")
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(7, "feet"),
  16818. weight: math.unit(230, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/nakata/front.svg",
  16822. extra: 1.005,
  16823. bottom: 0.01
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(7, "feet"),
  16831. default: true
  16832. },
  16833. {
  16834. name: "Big",
  16835. height: math.unit(14, "feet")
  16836. },
  16837. {
  16838. name: "Macro",
  16839. height: math.unit(400, "feet")
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(4.91, "feet"),
  16848. weight: math.unit(100, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/lily/front.svg",
  16852. extra: 1585 / 1415,
  16853. bottom: 0.02
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(4.91, "feet"),
  16861. default: true
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16867. {
  16868. laying: {
  16869. height: math.unit(4 + 4 / 12, "feet"),
  16870. weight: math.unit(600, "lb"),
  16871. name: "Laying",
  16872. image: {
  16873. source: "./media/characters/sheila/laying.svg",
  16874. extra: 1333 / 1265,
  16875. bottom: 0.16
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(4 + 4 / 12, "feet"),
  16883. default: true
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(6, "feet"),
  16892. weight: math.unit(190, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/sax/front.svg",
  16896. extra: 1187 / 973,
  16897. bottom: 0.042
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Micro",
  16904. height: math.unit(4, "inches"),
  16905. default: true
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16911. {
  16912. front: {
  16913. height: math.unit(6, "feet"),
  16914. weight: math.unit(150, "lb"),
  16915. name: "Front",
  16916. image: {
  16917. source: "./media/characters/pandora/front.svg",
  16918. extra: 2720 / 2556,
  16919. bottom: 0.015
  16920. }
  16921. },
  16922. back: {
  16923. height: math.unit(6, "feet"),
  16924. weight: math.unit(150, "lb"),
  16925. name: "Back",
  16926. image: {
  16927. source: "./media/characters/pandora/back.svg",
  16928. extra: 2720 / 2556,
  16929. bottom: 0.01
  16930. }
  16931. },
  16932. beans: {
  16933. height: math.unit(6 / 8, "feet"),
  16934. name: "Beans",
  16935. image: {
  16936. source: "./media/characters/pandora/beans.svg"
  16937. }
  16938. },
  16939. collar: {
  16940. height: math.unit(0.31, "feet"),
  16941. name: "Collar",
  16942. image: {
  16943. source: "./media/characters/pandora/collar.svg"
  16944. }
  16945. },
  16946. skirt: {
  16947. height: math.unit(6, "feet"),
  16948. weight: math.unit(150, "lb"),
  16949. name: "Skirt",
  16950. image: {
  16951. source: "./media/characters/pandora/skirt.svg",
  16952. extra: 1622 / 1525,
  16953. bottom: 0.015
  16954. }
  16955. },
  16956. hoodie: {
  16957. height: math.unit(6, "feet"),
  16958. weight: math.unit(150, "lb"),
  16959. name: "Hoodie",
  16960. image: {
  16961. source: "./media/characters/pandora/hoodie.svg",
  16962. extra: 1622 / 1525,
  16963. bottom: 0.015
  16964. }
  16965. },
  16966. casual: {
  16967. height: math.unit(6, "feet"),
  16968. weight: math.unit(150, "lb"),
  16969. name: "Casual",
  16970. image: {
  16971. source: "./media/characters/pandora/casual.svg",
  16972. extra: 1622 / 1525,
  16973. bottom: 0.015
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(6, "feet")
  16981. },
  16982. {
  16983. name: "Big Steppy",
  16984. height: math.unit(1, "km"),
  16985. default: true
  16986. },
  16987. {
  16988. name: "Galactic Steppy",
  16989. height: math.unit(2, "gigameters")
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16995. {
  16996. side: {
  16997. height: math.unit(10, "feet"),
  16998. weight: math.unit(800, "kg"),
  16999. name: "Side",
  17000. image: {
  17001. source: "./media/characters/venio-darcony/side.svg",
  17002. extra: 1373 / 1003,
  17003. bottom: 0.037
  17004. }
  17005. },
  17006. front: {
  17007. height: math.unit(19, "feet"),
  17008. weight: math.unit(800, "kg"),
  17009. name: "Front",
  17010. image: {
  17011. source: "./media/characters/venio-darcony/front.svg"
  17012. }
  17013. },
  17014. back: {
  17015. height: math.unit(19, "feet"),
  17016. weight: math.unit(800, "kg"),
  17017. name: "Back",
  17018. image: {
  17019. source: "./media/characters/venio-darcony/back.svg"
  17020. }
  17021. },
  17022. sideNsfw: {
  17023. height: math.unit(10, "feet"),
  17024. weight: math.unit(800, "kg"),
  17025. name: "Side (NSFW)",
  17026. image: {
  17027. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17028. extra: 1373 / 1003,
  17029. bottom: 0.037
  17030. }
  17031. },
  17032. frontNsfw: {
  17033. height: math.unit(19, "feet"),
  17034. weight: math.unit(800, "kg"),
  17035. name: "Front (NSFW)",
  17036. image: {
  17037. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17038. }
  17039. },
  17040. backNsfw: {
  17041. height: math.unit(19, "feet"),
  17042. weight: math.unit(800, "kg"),
  17043. name: "Back (NSFW)",
  17044. image: {
  17045. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17046. }
  17047. },
  17048. sideArmored: {
  17049. height: math.unit(10, "feet"),
  17050. weight: math.unit(800, "kg"),
  17051. name: "Side (Armored)",
  17052. image: {
  17053. source: "./media/characters/venio-darcony/side-armored.svg",
  17054. extra: 1373 / 1003,
  17055. bottom: 0.037
  17056. }
  17057. },
  17058. frontArmored: {
  17059. height: math.unit(19, "feet"),
  17060. weight: math.unit(900, "kg"),
  17061. name: "Front (Armored)",
  17062. image: {
  17063. source: "./media/characters/venio-darcony/front-armored.svg"
  17064. }
  17065. },
  17066. backArmored: {
  17067. height: math.unit(19, "feet"),
  17068. weight: math.unit(900, "kg"),
  17069. name: "Back (Armored)",
  17070. image: {
  17071. source: "./media/characters/venio-darcony/back-armored.svg"
  17072. }
  17073. },
  17074. sword: {
  17075. height: math.unit(10, "feet"),
  17076. weight: math.unit(50, "lb"),
  17077. name: "Sword",
  17078. image: {
  17079. source: "./media/characters/venio-darcony/sword.svg"
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(10, "feet")
  17087. },
  17088. {
  17089. name: "Macro",
  17090. height: math.unit(130, "feet"),
  17091. default: true
  17092. },
  17093. {
  17094. name: "Macro+",
  17095. height: math.unit(240, "feet")
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17101. {
  17102. front: {
  17103. height: math.unit(6, "feet"),
  17104. weight: math.unit(150, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/veski/front.svg",
  17108. extra: 1299 / 1225,
  17109. bottom: 0.04
  17110. }
  17111. },
  17112. back: {
  17113. height: math.unit(6, "feet"),
  17114. weight: math.unit(150, "lb"),
  17115. name: "Back",
  17116. image: {
  17117. source: "./media/characters/veski/back.svg",
  17118. extra: 1299 / 1225,
  17119. bottom: 0.008
  17120. }
  17121. },
  17122. maw: {
  17123. height: math.unit(1.5 * 1.21, "feet"),
  17124. name: "Maw",
  17125. image: {
  17126. source: "./media/characters/veski/maw.svg"
  17127. }
  17128. },
  17129. },
  17130. [
  17131. {
  17132. name: "Macro",
  17133. height: math.unit(2, "km"),
  17134. default: true
  17135. },
  17136. ]
  17137. ))
  17138. characterMakers.push(() => makeCharacter(
  17139. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17140. {
  17141. front: {
  17142. height: math.unit(5 + 7 / 12, "feet"),
  17143. name: "Front",
  17144. image: {
  17145. source: "./media/characters/isabelle/front.svg",
  17146. extra: 2130 / 1976,
  17147. bottom: 0.05
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Supermicro",
  17154. height: math.unit(10, "micrometers")
  17155. },
  17156. {
  17157. name: "Micro",
  17158. height: math.unit(1, "inch")
  17159. },
  17160. {
  17161. name: "Tiny",
  17162. height: math.unit(5, "inches")
  17163. },
  17164. {
  17165. name: "Standard",
  17166. height: math.unit(5 + 7 / 12, "inches")
  17167. },
  17168. {
  17169. name: "Macro",
  17170. height: math.unit(80, "meters"),
  17171. default: true
  17172. },
  17173. {
  17174. name: "Megamacro",
  17175. height: math.unit(250, "meters")
  17176. },
  17177. {
  17178. name: "Gigamacro",
  17179. height: math.unit(5, "km")
  17180. },
  17181. {
  17182. name: "Cosmic",
  17183. height: math.unit(2.5e6, "miles")
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17189. {
  17190. front: {
  17191. height: math.unit(6, "feet"),
  17192. weight: math.unit(150, "lb"),
  17193. name: "Front",
  17194. image: {
  17195. source: "./media/characters/hanzo/front.svg",
  17196. extra: 374 / 344,
  17197. bottom: 0.02
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Normal",
  17204. height: math.unit(8, "feet"),
  17205. default: true
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17211. {
  17212. front: {
  17213. height: math.unit(7, "feet"),
  17214. weight: math.unit(130, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/anna/front.svg",
  17218. extra: 169 / 145,
  17219. bottom: 0.06
  17220. }
  17221. },
  17222. full: {
  17223. height: math.unit(4.96, "feet"),
  17224. weight: math.unit(220, "lb"),
  17225. name: "Full",
  17226. image: {
  17227. source: "./media/characters/anna/full.svg",
  17228. extra: 138 / 114,
  17229. bottom: 0.15
  17230. }
  17231. },
  17232. tongue: {
  17233. height: math.unit(2.53, "feet"),
  17234. name: "Tongue",
  17235. image: {
  17236. source: "./media/characters/anna/tongue.svg"
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(7, "feet"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(7, "feet"),
  17253. weight: math.unit(150, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/ian-corvid/front.svg",
  17257. extra: 150 / 142,
  17258. bottom: 0.02
  17259. }
  17260. },
  17261. back: {
  17262. height: math.unit(7, "feet"),
  17263. weight: math.unit(150, "lb"),
  17264. name: "Back",
  17265. image: {
  17266. source: "./media/characters/ian-corvid/back.svg",
  17267. extra: 150 / 143,
  17268. bottom: 0.01
  17269. }
  17270. },
  17271. stomping: {
  17272. height: math.unit(7, "feet"),
  17273. weight: math.unit(150, "lb"),
  17274. name: "Stomping",
  17275. image: {
  17276. source: "./media/characters/ian-corvid/stomping.svg",
  17277. extra: 76 / 72
  17278. }
  17279. },
  17280. sitting: {
  17281. height: math.unit(7 / 1.8, "feet"),
  17282. weight: math.unit(150, "lb"),
  17283. name: "Sitting",
  17284. image: {
  17285. source: "./media/characters/ian-corvid/sitting.svg",
  17286. extra: 1400 / 1269,
  17287. bottom: 0.15
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Tiny Microw",
  17294. height: math.unit(1, "inch")
  17295. },
  17296. {
  17297. name: "Microw",
  17298. height: math.unit(6, "inches")
  17299. },
  17300. {
  17301. name: "Crow",
  17302. height: math.unit(7 + 1 / 12, "feet"),
  17303. default: true
  17304. },
  17305. {
  17306. name: "Macrow",
  17307. height: math.unit(176, "feet")
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17313. {
  17314. front: {
  17315. height: math.unit(5 + 7 / 12, "feet"),
  17316. weight: math.unit(147, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/natalie-kellon/front.svg",
  17320. extra: 1214 / 1141,
  17321. bottom: 0.02
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Micro",
  17328. height: math.unit(1 / 16, "inch")
  17329. },
  17330. {
  17331. name: "Tiny",
  17332. height: math.unit(4, "inches")
  17333. },
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(5 + 7 / 12, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Amazon",
  17341. height: math.unit(12, "feet")
  17342. },
  17343. {
  17344. name: "Giantess",
  17345. height: math.unit(160, "meters")
  17346. },
  17347. {
  17348. name: "Titaness",
  17349. height: math.unit(800, "meters")
  17350. },
  17351. ]
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17355. {
  17356. front: {
  17357. height: math.unit(6, "feet"),
  17358. weight: math.unit(150, "lb"),
  17359. name: "Front",
  17360. image: {
  17361. source: "./media/characters/alluria/front.svg",
  17362. extra: 806 / 738,
  17363. bottom: 0.01
  17364. }
  17365. },
  17366. side: {
  17367. height: math.unit(6, "feet"),
  17368. weight: math.unit(150, "lb"),
  17369. name: "Side",
  17370. image: {
  17371. source: "./media/characters/alluria/side.svg",
  17372. extra: 800 / 750,
  17373. }
  17374. },
  17375. back: {
  17376. height: math.unit(6, "feet"),
  17377. weight: math.unit(150, "lb"),
  17378. name: "Back",
  17379. image: {
  17380. source: "./media/characters/alluria/back.svg",
  17381. extra: 806 / 738,
  17382. }
  17383. },
  17384. frontMaid: {
  17385. height: math.unit(6, "feet"),
  17386. weight: math.unit(150, "lb"),
  17387. name: "Front (Maid)",
  17388. image: {
  17389. source: "./media/characters/alluria/front-maid.svg",
  17390. extra: 806 / 738,
  17391. bottom: 0.01
  17392. }
  17393. },
  17394. sideMaid: {
  17395. height: math.unit(6, "feet"),
  17396. weight: math.unit(150, "lb"),
  17397. name: "Side (Maid)",
  17398. image: {
  17399. source: "./media/characters/alluria/side-maid.svg",
  17400. extra: 800 / 750,
  17401. bottom: 0.005
  17402. }
  17403. },
  17404. backMaid: {
  17405. height: math.unit(6, "feet"),
  17406. weight: math.unit(150, "lb"),
  17407. name: "Back (Maid)",
  17408. image: {
  17409. source: "./media/characters/alluria/back-maid.svg",
  17410. extra: 806 / 738,
  17411. }
  17412. },
  17413. },
  17414. [
  17415. {
  17416. name: "Micro",
  17417. height: math.unit(6, "inches"),
  17418. default: true
  17419. },
  17420. ]
  17421. ))
  17422. characterMakers.push(() => makeCharacter(
  17423. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17424. {
  17425. front: {
  17426. height: math.unit(6, "feet"),
  17427. weight: math.unit(150, "lb"),
  17428. name: "Front",
  17429. image: {
  17430. source: "./media/characters/kyle/front.svg",
  17431. extra: 1069 / 962,
  17432. bottom: 77.228 / 1727.45
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Macro",
  17439. height: math.unit(150, "feet"),
  17440. default: true
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17446. {
  17447. front: {
  17448. height: math.unit(6, "feet"),
  17449. weight: math.unit(300, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/duncan/front.svg",
  17453. extra: 1650 / 1482,
  17454. bottom: 0.05
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Macro",
  17461. height: math.unit(100, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17468. {
  17469. front: {
  17470. height: math.unit(5 + 4 / 12, "feet"),
  17471. weight: math.unit(220, "lb"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/memory/front.svg",
  17475. extra: 3641 / 3545,
  17476. bottom: 0.03
  17477. }
  17478. },
  17479. back: {
  17480. height: math.unit(5 + 4 / 12, "feet"),
  17481. weight: math.unit(220, "lb"),
  17482. name: "Back",
  17483. image: {
  17484. source: "./media/characters/memory/back.svg",
  17485. extra: 3641 / 3545,
  17486. bottom: 0.025
  17487. }
  17488. },
  17489. frontSkirt: {
  17490. height: math.unit(5 + 4 / 12, "feet"),
  17491. weight: math.unit(220, "lb"),
  17492. name: "Front (Skirt)",
  17493. image: {
  17494. source: "./media/characters/memory/front-skirt.svg",
  17495. extra: 3641 / 3545,
  17496. bottom: 0.03
  17497. }
  17498. },
  17499. frontDress: {
  17500. height: math.unit(5 + 4 / 12, "feet"),
  17501. weight: math.unit(220, "lb"),
  17502. name: "Front (Dress)",
  17503. image: {
  17504. source: "./media/characters/memory/front-dress.svg",
  17505. extra: 3641 / 3545,
  17506. bottom: 0.03
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Micro",
  17513. height: math.unit(6, "inches"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(5 + 4 / 12, "feet")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(4 + 11 / 12, "feet"),
  17527. weight: math.unit(100, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/luno/front.svg",
  17531. extra: 1535 / 1487,
  17532. bottom: 0.03
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Micro",
  17539. height: math.unit(3, "inches")
  17540. },
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(4 + 11 / 12, "feet"),
  17544. default: true
  17545. },
  17546. {
  17547. name: "Macro",
  17548. height: math.unit(300, "feet")
  17549. },
  17550. {
  17551. name: "Megamacro",
  17552. height: math.unit(700, "miles")
  17553. },
  17554. ]
  17555. ))
  17556. characterMakers.push(() => makeCharacter(
  17557. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17558. {
  17559. front: {
  17560. height: math.unit(6 + 2 / 12, "feet"),
  17561. weight: math.unit(170, "lb"),
  17562. name: "Front",
  17563. image: {
  17564. source: "./media/characters/jamesy/front.svg",
  17565. extra: 440 / 382,
  17566. bottom: 0.005
  17567. }
  17568. },
  17569. },
  17570. [
  17571. {
  17572. name: "Micro",
  17573. height: math.unit(3, "inches")
  17574. },
  17575. {
  17576. name: "Normal",
  17577. height: math.unit(6 + 2 / 12, "feet"),
  17578. default: true
  17579. },
  17580. {
  17581. name: "Macro",
  17582. height: math.unit(300, "feet")
  17583. },
  17584. {
  17585. name: "Megamacro",
  17586. height: math.unit(700, "miles")
  17587. },
  17588. ]
  17589. ))
  17590. characterMakers.push(() => makeCharacter(
  17591. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17592. {
  17593. front: {
  17594. height: math.unit(6, "feet"),
  17595. weight: math.unit(160, "lb"),
  17596. name: "Front",
  17597. image: {
  17598. source: "./media/characters/mark/front.svg",
  17599. extra: 3300 / 3100,
  17600. bottom: 136.42 / 3440.47
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Macro",
  17607. height: math.unit(120, "meters")
  17608. },
  17609. {
  17610. name: "Bigger Macro",
  17611. height: math.unit(350, "meters")
  17612. },
  17613. {
  17614. name: "Megamacro",
  17615. height: math.unit(8, "km"),
  17616. default: true
  17617. },
  17618. {
  17619. name: "Continental",
  17620. height: math.unit(4550, "km")
  17621. },
  17622. {
  17623. name: "Planetary",
  17624. height: math.unit(65000, "km")
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17630. {
  17631. front: {
  17632. height: math.unit(6, "feet"),
  17633. weight: math.unit(400, "lb"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/mac/front.svg",
  17637. extra: 1048 / 987.7,
  17638. bottom: 60 / 1107.6,
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Macro",
  17645. height: math.unit(500, "feet"),
  17646. default: true
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17652. {
  17653. front: {
  17654. height: math.unit(5 + 2 / 12, "feet"),
  17655. weight: math.unit(190, "lb"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/bari/front.svg",
  17659. extra: 3156 / 2880,
  17660. bottom: 0.03
  17661. }
  17662. },
  17663. back: {
  17664. height: math.unit(5 + 2 / 12, "feet"),
  17665. weight: math.unit(190, "lb"),
  17666. name: "Back",
  17667. image: {
  17668. source: "./media/characters/bari/back.svg",
  17669. extra: 3260 / 2834,
  17670. bottom: 0.025
  17671. }
  17672. },
  17673. frontPlush: {
  17674. height: math.unit(5 + 2 / 12, "feet"),
  17675. weight: math.unit(190, "lb"),
  17676. name: "Front (Plush)",
  17677. image: {
  17678. source: "./media/characters/bari/front-plush.svg",
  17679. extra: 1112 / 1061,
  17680. bottom: 0.002
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Micro",
  17687. height: math.unit(3, "inches")
  17688. },
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(5 + 2 / 12, "feet"),
  17692. default: true
  17693. },
  17694. {
  17695. name: "Macro",
  17696. height: math.unit(20, "feet")
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17702. {
  17703. front: {
  17704. height: math.unit(6 + 1 / 12, "feet"),
  17705. weight: math.unit(275, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/hunter-misha-raven/front.svg"
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Mortal",
  17715. height: math.unit(6 + 1 / 12, "feet")
  17716. },
  17717. {
  17718. name: "Divine",
  17719. height: math.unit(1.12134e34, "parsecs"),
  17720. default: true
  17721. },
  17722. ]
  17723. ))
  17724. characterMakers.push(() => makeCharacter(
  17725. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17726. {
  17727. front: {
  17728. height: math.unit(6 + 3 / 12, "feet"),
  17729. weight: math.unit(220, "lb"),
  17730. name: "Front",
  17731. image: {
  17732. source: "./media/characters/max-calore/front.svg",
  17733. extra: 1700 / 1648,
  17734. bottom: 0.01
  17735. }
  17736. },
  17737. back: {
  17738. height: math.unit(6 + 3 / 12, "feet"),
  17739. weight: math.unit(220, "lb"),
  17740. name: "Back",
  17741. image: {
  17742. source: "./media/characters/max-calore/back.svg",
  17743. extra: 1700 / 1648,
  17744. bottom: 0.01
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(6 + 3 / 12, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17758. {
  17759. side: {
  17760. height: math.unit(2 + 8 / 12, "feet"),
  17761. weight: math.unit(99, "lb"),
  17762. name: "Side",
  17763. image: {
  17764. source: "./media/characters/aspen/side.svg",
  17765. extra: 152 / 138,
  17766. bottom: 0.032
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(2 + 8 / 12, "feet"),
  17774. default: true
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17780. {
  17781. side: {
  17782. height: math.unit(3 + 2 / 12, "feet"),
  17783. weight: math.unit(224, "lb"),
  17784. name: "Side",
  17785. image: {
  17786. source: "./media/characters/sheila-feral-wolf/side.svg",
  17787. extra: 179 / 166,
  17788. bottom: 0.03
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(3 + 2 / 12, "feet"),
  17796. default: true
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17802. {
  17803. side: {
  17804. height: math.unit(1 + 9 / 12, "feet"),
  17805. weight: math.unit(38, "lb"),
  17806. name: "Side",
  17807. image: {
  17808. source: "./media/characters/michelle/side.svg",
  17809. extra: 147 / 136.7,
  17810. bottom: 0.03
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(1 + 9 / 12, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17824. {
  17825. front: {
  17826. height: math.unit(1.54, "feet"),
  17827. weight: math.unit(50, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/nino/front.svg"
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Normal",
  17837. height: math.unit(1.54, "feet"),
  17838. default: true
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17844. {
  17845. front: {
  17846. height: math.unit(1.49, "feet"),
  17847. weight: math.unit(45, "lb"),
  17848. name: "Front",
  17849. image: {
  17850. source: "./media/characters/viola/front.svg"
  17851. }
  17852. },
  17853. },
  17854. [
  17855. {
  17856. name: "Normal",
  17857. height: math.unit(1.49, "feet"),
  17858. default: true
  17859. },
  17860. ]
  17861. ))
  17862. characterMakers.push(() => makeCharacter(
  17863. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17864. {
  17865. front: {
  17866. height: math.unit(6 + 5 / 12, "feet"),
  17867. weight: math.unit(580, "lb"),
  17868. name: "Front",
  17869. image: {
  17870. source: "./media/characters/atlas/front.svg",
  17871. extra: 298.5 / 290,
  17872. bottom: 0.015
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(6 + 5 / 12, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17886. {
  17887. side: {
  17888. height: math.unit(15.6, "inches"),
  17889. weight: math.unit(10, "lb"),
  17890. name: "Side",
  17891. image: {
  17892. source: "./media/characters/davy/side.svg",
  17893. extra: 200 / 170,
  17894. bottom: 0.01
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(15.6, "inches"),
  17902. default: true
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17908. {
  17909. side: {
  17910. height: math.unit(4 + 8 / 12, "feet"),
  17911. weight: math.unit(166, "lb"),
  17912. name: "Side",
  17913. image: {
  17914. source: "./media/characters/fiona/side.svg",
  17915. extra: 232 / 220,
  17916. bottom: 0.03
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(4 + 8 / 12, "feet"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17930. {
  17931. front: {
  17932. height: math.unit(26, "inches"),
  17933. weight: math.unit(35, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/lyla/front.svg",
  17937. bottom: 0.1
  17938. }
  17939. },
  17940. },
  17941. [
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(3, "feet"),
  17945. default: true
  17946. },
  17947. ]
  17948. ))
  17949. characterMakers.push(() => makeCharacter(
  17950. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17951. {
  17952. side: {
  17953. height: math.unit(1.8, "feet"),
  17954. weight: math.unit(44, "lb"),
  17955. name: "Side",
  17956. image: {
  17957. source: "./media/characters/perseus/side.svg",
  17958. bottom: 0.21
  17959. }
  17960. },
  17961. },
  17962. [
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(1.8, "feet"),
  17966. default: true
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17972. {
  17973. side: {
  17974. height: math.unit(4 + 2 / 12, "feet"),
  17975. weight: math.unit(20, "lb"),
  17976. name: "Side",
  17977. image: {
  17978. source: "./media/characters/remus/side.svg"
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Normal",
  17985. height: math.unit(4 + 2 / 12, "feet"),
  17986. default: true
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17992. {
  17993. front: {
  17994. height: math.unit(4 + 11 / 12, "feet"),
  17995. weight: math.unit(114, "lb"),
  17996. name: "Front",
  17997. image: {
  17998. source: "./media/characters/raf/front.svg",
  17999. extra: 1504/1339,
  18000. bottom: 26/1530
  18001. }
  18002. },
  18003. side: {
  18004. height: math.unit(4 + 11 / 12, "feet"),
  18005. weight: math.unit(114, "lb"),
  18006. name: "Side",
  18007. image: {
  18008. source: "./media/characters/raf/side.svg",
  18009. extra: 1466/1316,
  18010. bottom: 29/1495
  18011. }
  18012. },
  18013. paw: {
  18014. height: math.unit(1.45, "feet"),
  18015. name: "Paw",
  18016. image: {
  18017. source: "./media/characters/raf/paw.svg"
  18018. },
  18019. extraAttributes: {
  18020. "toeSize": {
  18021. name: "Toe Size",
  18022. power: 2,
  18023. type: "area",
  18024. base: math.unit(0.004, "m^2")
  18025. },
  18026. "padSize": {
  18027. name: "Pad Size",
  18028. power: 2,
  18029. type: "area",
  18030. base: math.unit(0.04, "m^2")
  18031. },
  18032. "footSize": {
  18033. name: "Foot Size",
  18034. power: 2,
  18035. type: "area",
  18036. base: math.unit(0.08, "m^2")
  18037. },
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Micro",
  18044. height: math.unit(2, "inches")
  18045. },
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(4 + 11 / 12, "feet"),
  18049. default: true
  18050. },
  18051. {
  18052. name: "Macro",
  18053. height: math.unit(70, "feet")
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18059. {
  18060. front: {
  18061. height: math.unit(1.5, "meters"),
  18062. weight: math.unit(68, "kg"),
  18063. name: "Front",
  18064. image: {
  18065. source: "./media/characters/liam-einarr/front.svg",
  18066. extra: 2822 / 2666
  18067. }
  18068. },
  18069. back: {
  18070. height: math.unit(1.5, "meters"),
  18071. weight: math.unit(68, "kg"),
  18072. name: "Back",
  18073. image: {
  18074. source: "./media/characters/liam-einarr/back.svg",
  18075. extra: 2822 / 2666,
  18076. bottom: 0.015
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(1.5, "meters"),
  18084. default: true
  18085. },
  18086. {
  18087. name: "Macro",
  18088. height: math.unit(150, "meters")
  18089. },
  18090. {
  18091. name: "Megamacro",
  18092. height: math.unit(35, "km")
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18098. {
  18099. front: {
  18100. height: math.unit(6, "feet"),
  18101. weight: math.unit(75, "kg"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/linda/front.svg",
  18105. extra: 930 / 874,
  18106. bottom: 0.004
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(6, "feet"),
  18114. default: true
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(6 + 8 / 12, "feet"),
  18123. weight: math.unit(220, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/caylex/front.svg",
  18127. extra: 821 / 772,
  18128. bottom: 0.07
  18129. }
  18130. },
  18131. back: {
  18132. height: math.unit(6 + 8 / 12, "feet"),
  18133. weight: math.unit(220, "lb"),
  18134. name: "Back",
  18135. image: {
  18136. source: "./media/characters/caylex/back.svg",
  18137. extra: 821 / 772,
  18138. bottom: 0.022
  18139. }
  18140. },
  18141. hand: {
  18142. height: math.unit(1.25, "feet"),
  18143. name: "Hand",
  18144. image: {
  18145. source: "./media/characters/caylex/hand.svg"
  18146. }
  18147. },
  18148. foot: {
  18149. height: math.unit(1.6, "feet"),
  18150. name: "Foot",
  18151. image: {
  18152. source: "./media/characters/caylex/foot.svg"
  18153. }
  18154. },
  18155. armored: {
  18156. height: math.unit(6 + 8 / 12, "feet"),
  18157. weight: math.unit(250, "lb"),
  18158. name: "Armored",
  18159. image: {
  18160. source: "./media/characters/caylex/armored.svg",
  18161. extra: 1420 / 1310,
  18162. bottom: 0.045
  18163. }
  18164. },
  18165. },
  18166. [
  18167. {
  18168. name: "Normal",
  18169. height: math.unit(6 + 8 / 12, "feet"),
  18170. default: true
  18171. },
  18172. {
  18173. name: "Normal+",
  18174. height: math.unit(12, "feet")
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18180. {
  18181. front: {
  18182. height: math.unit(7 + 6 / 12, "feet"),
  18183. weight: math.unit(288, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/alana/front.svg",
  18187. extra: 679 / 653,
  18188. bottom: 22.5 / 701
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(7 + 6 / 12, "feet")
  18196. },
  18197. {
  18198. name: "Large",
  18199. height: math.unit(50, "feet")
  18200. },
  18201. {
  18202. name: "Macro",
  18203. height: math.unit(100, "feet"),
  18204. default: true
  18205. },
  18206. {
  18207. name: "Macro+",
  18208. height: math.unit(200, "feet")
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18214. {
  18215. front: {
  18216. height: math.unit(6 + 1 / 12, "feet"),
  18217. weight: math.unit(210, "lb"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/hasani/front.svg",
  18221. extra: 244 / 232,
  18222. bottom: 0.01
  18223. }
  18224. },
  18225. back: {
  18226. height: math.unit(6 + 1 / 12, "feet"),
  18227. weight: math.unit(210, "lb"),
  18228. name: "Back",
  18229. image: {
  18230. source: "./media/characters/hasani/back.svg",
  18231. extra: 244 / 232,
  18232. bottom: 0.01
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(6 + 1 / 12, "feet")
  18240. },
  18241. {
  18242. name: "Macro",
  18243. height: math.unit(175, "feet"),
  18244. default: true
  18245. },
  18246. ]
  18247. ))
  18248. characterMakers.push(() => makeCharacter(
  18249. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18250. {
  18251. front: {
  18252. height: math.unit(1.82, "meters"),
  18253. weight: math.unit(140, "lb"),
  18254. name: "Front",
  18255. image: {
  18256. source: "./media/characters/nita/front.svg",
  18257. extra: 2473 / 2363,
  18258. bottom: 0.01
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Normal",
  18265. height: math.unit(1.82, "m")
  18266. },
  18267. {
  18268. name: "Macro",
  18269. height: math.unit(300, "m")
  18270. },
  18271. {
  18272. name: "Mistake Canon",
  18273. height: math.unit(0.5, "miles"),
  18274. default: true
  18275. },
  18276. {
  18277. name: "Big Mistake",
  18278. height: math.unit(13, "miles")
  18279. },
  18280. {
  18281. name: "Playing God",
  18282. height: math.unit(2450, "miles")
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18288. {
  18289. front: {
  18290. height: math.unit(4, "feet"),
  18291. weight: math.unit(120, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/shiriko/front.svg",
  18295. extra: 970/934,
  18296. bottom: 5/975
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(4, "feet"),
  18304. default: true
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(6, "feet"),
  18313. name: "front",
  18314. image: {
  18315. source: "./media/characters/deja/front.svg",
  18316. extra: 926 / 840,
  18317. bottom: 0.07
  18318. }
  18319. },
  18320. },
  18321. [
  18322. {
  18323. name: "Planck Length",
  18324. height: math.unit(1.6e-35, "meters")
  18325. },
  18326. {
  18327. name: "Normal",
  18328. height: math.unit(30.48, "meters"),
  18329. default: true
  18330. },
  18331. {
  18332. name: "Universal",
  18333. height: math.unit(8.8e26, "meters")
  18334. },
  18335. ]
  18336. ))
  18337. characterMakers.push(() => makeCharacter(
  18338. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18339. {
  18340. side: {
  18341. height: math.unit(8, "feet"),
  18342. weight: math.unit(6300, "lb"),
  18343. name: "Side",
  18344. image: {
  18345. source: "./media/characters/anima/side.svg",
  18346. bottom: 0.035
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(8, "feet"),
  18354. default: true
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18360. {
  18361. front: {
  18362. height: math.unit(8, "feet"),
  18363. weight: math.unit(350, "lb"),
  18364. name: "Front",
  18365. image: {
  18366. source: "./media/characters/bianca/front.svg",
  18367. extra: 234 / 225,
  18368. bottom: 0.03
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Normal",
  18375. height: math.unit(8, "feet"),
  18376. default: true
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18382. {
  18383. front: {
  18384. height: math.unit(11 + 5/12, "feet"),
  18385. weight: math.unit(1200, "lb"),
  18386. name: "Front",
  18387. image: {
  18388. source: "./media/characters/adinia/front.svg",
  18389. extra: 1767/1641,
  18390. bottom: 44/1811
  18391. },
  18392. extraAttributes: {
  18393. "energyIntake": {
  18394. name: "Energy Intake",
  18395. power: 3,
  18396. type: "energy",
  18397. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18398. },
  18399. }
  18400. },
  18401. back: {
  18402. height: math.unit(11 + 5/12, "feet"),
  18403. weight: math.unit(1200, "lb"),
  18404. name: "Back",
  18405. image: {
  18406. source: "./media/characters/adinia/back.svg",
  18407. extra: 1834/1684,
  18408. bottom: 14/1848
  18409. },
  18410. extraAttributes: {
  18411. "energyIntake": {
  18412. name: "Energy Intake",
  18413. power: 3,
  18414. type: "energy",
  18415. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18416. },
  18417. }
  18418. },
  18419. maw: {
  18420. height: math.unit(3.79, "feet"),
  18421. name: "Maw",
  18422. image: {
  18423. source: "./media/characters/adinia/maw.svg"
  18424. }
  18425. },
  18426. rump: {
  18427. height: math.unit(4.6, "feet"),
  18428. name: "Rump",
  18429. image: {
  18430. source: "./media/characters/adinia/rump.svg"
  18431. }
  18432. },
  18433. },
  18434. [
  18435. {
  18436. name: "Normal",
  18437. height: math.unit(11 + 5 / 12, "feet"),
  18438. default: true
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18444. {
  18445. front: {
  18446. height: math.unit(3, "meters"),
  18447. weight: math.unit(200, "kg"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/lykasa/front.svg",
  18451. extra: 1076 / 976,
  18452. bottom: 0.06
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(3, "meters")
  18460. },
  18461. {
  18462. name: "Kaiju",
  18463. height: math.unit(120, "meters"),
  18464. default: true
  18465. },
  18466. {
  18467. name: "Mega Kaiju",
  18468. height: math.unit(240, "km")
  18469. },
  18470. {
  18471. name: "Giga Kaiju",
  18472. height: math.unit(400, "megameters")
  18473. },
  18474. {
  18475. name: "Tera Kaiju",
  18476. height: math.unit(800, "gigameters")
  18477. },
  18478. {
  18479. name: "Kaiju Dragon Goddess",
  18480. height: math.unit(26, "zettaparsecs")
  18481. },
  18482. ]
  18483. ))
  18484. characterMakers.push(() => makeCharacter(
  18485. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18486. {
  18487. side: {
  18488. height: math.unit(283 / 124 * 6, "feet"),
  18489. weight: math.unit(35000, "lb"),
  18490. name: "Side",
  18491. image: {
  18492. source: "./media/characters/malfaren/side.svg",
  18493. extra: 1310/529,
  18494. bottom: 24/1334
  18495. }
  18496. },
  18497. front: {
  18498. height: math.unit(22.36, "feet"),
  18499. weight: math.unit(35000, "lb"),
  18500. name: "Front",
  18501. image: {
  18502. source: "./media/characters/malfaren/front.svg",
  18503. extra: 1237/1115,
  18504. bottom: 32/1269
  18505. }
  18506. },
  18507. maw: {
  18508. height: math.unit(6.9, "feet"),
  18509. name: "Maw",
  18510. image: {
  18511. source: "./media/characters/malfaren/maw.svg"
  18512. }
  18513. },
  18514. dick: {
  18515. height: math.unit(6.19, "feet"),
  18516. name: "Dick",
  18517. image: {
  18518. source: "./media/characters/malfaren/dick.svg"
  18519. }
  18520. },
  18521. eye: {
  18522. height: math.unit(0.69, "feet"),
  18523. name: "Eye",
  18524. image: {
  18525. source: "./media/characters/malfaren/eye.svg"
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Big",
  18532. height: math.unit(283 / 162 * 6, "feet"),
  18533. },
  18534. {
  18535. name: "Bigger",
  18536. height: math.unit(283 / 124 * 6, "feet")
  18537. },
  18538. {
  18539. name: "Massive",
  18540. height: math.unit(283 / 92 * 6, "feet"),
  18541. default: true
  18542. },
  18543. {
  18544. name: "👀💦",
  18545. height: math.unit(283 / 73 * 6, "feet"),
  18546. },
  18547. ]
  18548. ))
  18549. characterMakers.push(() => makeCharacter(
  18550. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18551. {
  18552. front: {
  18553. height: math.unit(1.7, "m"),
  18554. weight: math.unit(70, "kg"),
  18555. name: "Front",
  18556. image: {
  18557. source: "./media/characters/kernel/front.svg",
  18558. extra: 222 / 210,
  18559. bottom: 0.007
  18560. }
  18561. },
  18562. },
  18563. [
  18564. {
  18565. name: "Nano",
  18566. height: math.unit(17, "micrometers")
  18567. },
  18568. {
  18569. name: "Micro",
  18570. height: math.unit(1.7, "mm")
  18571. },
  18572. {
  18573. name: "Small",
  18574. height: math.unit(1.7, "cm")
  18575. },
  18576. {
  18577. name: "Normal",
  18578. height: math.unit(1.7, "m"),
  18579. default: true
  18580. },
  18581. ]
  18582. ))
  18583. characterMakers.push(() => makeCharacter(
  18584. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18585. {
  18586. front: {
  18587. height: math.unit(1.75, "meters"),
  18588. weight: math.unit(65, "kg"),
  18589. name: "Front",
  18590. image: {
  18591. source: "./media/characters/jayne-folest/front.svg",
  18592. extra: 2115 / 2007,
  18593. bottom: 0.02
  18594. }
  18595. },
  18596. back: {
  18597. height: math.unit(1.75, "meters"),
  18598. weight: math.unit(65, "kg"),
  18599. name: "Back",
  18600. image: {
  18601. source: "./media/characters/jayne-folest/back.svg",
  18602. extra: 2115 / 2007,
  18603. bottom: 0.005
  18604. }
  18605. },
  18606. frontClothed: {
  18607. height: math.unit(1.75, "meters"),
  18608. weight: math.unit(65, "kg"),
  18609. name: "Front (Clothed)",
  18610. image: {
  18611. source: "./media/characters/jayne-folest/front-clothed.svg",
  18612. extra: 2115 / 2007,
  18613. bottom: 0.035
  18614. }
  18615. },
  18616. hand: {
  18617. height: math.unit(1 / 1.260, "feet"),
  18618. name: "Hand",
  18619. image: {
  18620. source: "./media/characters/jayne-folest/hand.svg"
  18621. }
  18622. },
  18623. foot: {
  18624. height: math.unit(1 / 0.918, "feet"),
  18625. name: "Foot",
  18626. image: {
  18627. source: "./media/characters/jayne-folest/foot.svg"
  18628. }
  18629. },
  18630. },
  18631. [
  18632. {
  18633. name: "Micro",
  18634. height: math.unit(4, "cm")
  18635. },
  18636. {
  18637. name: "Normal",
  18638. height: math.unit(1.75, "meters")
  18639. },
  18640. {
  18641. name: "Macro",
  18642. height: math.unit(47.5, "meters"),
  18643. default: true
  18644. },
  18645. ]
  18646. ))
  18647. characterMakers.push(() => makeCharacter(
  18648. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18649. {
  18650. front: {
  18651. height: math.unit(180, "cm"),
  18652. weight: math.unit(70, "kg"),
  18653. name: "Front",
  18654. image: {
  18655. source: "./media/characters/algier/front.svg",
  18656. extra: 596 / 572,
  18657. bottom: 0.04
  18658. }
  18659. },
  18660. back: {
  18661. height: math.unit(180, "cm"),
  18662. weight: math.unit(70, "kg"),
  18663. name: "Back",
  18664. image: {
  18665. source: "./media/characters/algier/back.svg",
  18666. extra: 596 / 572,
  18667. bottom: 0.025
  18668. }
  18669. },
  18670. frontdressed: {
  18671. height: math.unit(180, "cm"),
  18672. weight: math.unit(150, "kg"),
  18673. name: "Front-dressed",
  18674. image: {
  18675. source: "./media/characters/algier/front-dressed.svg",
  18676. extra: 596 / 572,
  18677. bottom: 0.038
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Micro",
  18684. height: math.unit(5, "cm")
  18685. },
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(180, "cm"),
  18689. default: true
  18690. },
  18691. {
  18692. name: "Macro",
  18693. height: math.unit(64, "m")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18699. {
  18700. upright: {
  18701. height: math.unit(7, "feet"),
  18702. weight: math.unit(300, "lb"),
  18703. name: "Upright",
  18704. image: {
  18705. source: "./media/characters/pretzel/upright.svg",
  18706. extra: 534 / 522,
  18707. bottom: 0.065
  18708. }
  18709. },
  18710. sprawling: {
  18711. height: math.unit(3.75, "feet"),
  18712. weight: math.unit(300, "lb"),
  18713. name: "Sprawling",
  18714. image: {
  18715. source: "./media/characters/pretzel/sprawling.svg",
  18716. extra: 314 / 281,
  18717. bottom: 0.1
  18718. }
  18719. },
  18720. tongue: {
  18721. height: math.unit(2, "feet"),
  18722. name: "Tongue",
  18723. image: {
  18724. source: "./media/characters/pretzel/tongue.svg"
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(7, "feet"),
  18732. default: true
  18733. },
  18734. {
  18735. name: "Oversized",
  18736. height: math.unit(15, "feet")
  18737. },
  18738. {
  18739. name: "Huge",
  18740. height: math.unit(30, "feet")
  18741. },
  18742. {
  18743. name: "Macro",
  18744. height: math.unit(250, "feet")
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18750. {
  18751. sideFront: {
  18752. height: math.unit(5 + 2 / 12, "feet"),
  18753. weight: math.unit(120, "lb"),
  18754. name: "Front Side",
  18755. image: {
  18756. source: "./media/characters/roxi/side-front.svg",
  18757. extra: 2924 / 2717,
  18758. bottom: 0.08
  18759. }
  18760. },
  18761. sideBack: {
  18762. height: math.unit(5 + 2 / 12, "feet"),
  18763. weight: math.unit(120, "lb"),
  18764. name: "Back Side",
  18765. image: {
  18766. source: "./media/characters/roxi/side-back.svg",
  18767. extra: 2904 / 2693,
  18768. bottom: 0.06
  18769. }
  18770. },
  18771. front: {
  18772. height: math.unit(5 + 2 / 12, "feet"),
  18773. weight: math.unit(120, "lb"),
  18774. name: "Front",
  18775. image: {
  18776. source: "./media/characters/roxi/front.svg",
  18777. extra: 2028 / 1907,
  18778. bottom: 0.01
  18779. }
  18780. },
  18781. frontAlt: {
  18782. height: math.unit(5 + 2 / 12, "feet"),
  18783. weight: math.unit(120, "lb"),
  18784. name: "Front (Alt)",
  18785. image: {
  18786. source: "./media/characters/roxi/front-alt.svg",
  18787. extra: 1828 / 1798,
  18788. bottom: 0.01
  18789. }
  18790. },
  18791. sitting: {
  18792. height: math.unit(2.8, "feet"),
  18793. weight: math.unit(120, "lb"),
  18794. name: "Sitting",
  18795. image: {
  18796. source: "./media/characters/roxi/sitting.svg",
  18797. extra: 2660 / 2462,
  18798. bottom: 0.1
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Normal",
  18805. height: math.unit(5 + 2 / 12, "feet"),
  18806. default: true
  18807. },
  18808. ]
  18809. ))
  18810. characterMakers.push(() => makeCharacter(
  18811. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18812. {
  18813. side: {
  18814. height: math.unit(55, "feet"),
  18815. weight: math.unit(153, "tons"),
  18816. name: "Side",
  18817. image: {
  18818. source: "./media/characters/shadow/side.svg",
  18819. extra: 701 / 628,
  18820. bottom: 0.02
  18821. }
  18822. },
  18823. flying: {
  18824. height: math.unit(145, "feet"),
  18825. weight: math.unit(153, "tons"),
  18826. name: "Flying",
  18827. image: {
  18828. source: "./media/characters/shadow/flying.svg"
  18829. }
  18830. },
  18831. },
  18832. [
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(55, "feet"),
  18836. default: true
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18842. {
  18843. front: {
  18844. height: math.unit(6, "feet"),
  18845. weight: math.unit(200, "lb"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/marcie/front.svg",
  18849. extra: 960 / 876,
  18850. bottom: 58 / 1017.87
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Macro",
  18857. height: math.unit(1, "mile"),
  18858. default: true
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(7, "feet"),
  18867. weight: math.unit(200, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/kachina/front.svg",
  18871. extra: 1290.68 / 1119,
  18872. bottom: 36.5 / 1327.18
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(7, "feet"),
  18880. default: true
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18886. {
  18887. looking: {
  18888. height: math.unit(2, "meters"),
  18889. weight: math.unit(300, "kg"),
  18890. name: "Looking",
  18891. image: {
  18892. source: "./media/characters/kash/looking.svg",
  18893. extra: 474 / 344,
  18894. bottom: 0.03
  18895. }
  18896. },
  18897. side: {
  18898. height: math.unit(2, "meters"),
  18899. weight: math.unit(300, "kg"),
  18900. name: "Side",
  18901. image: {
  18902. source: "./media/characters/kash/side.svg",
  18903. extra: 302 / 251,
  18904. bottom: 0.03
  18905. }
  18906. },
  18907. front: {
  18908. height: math.unit(2, "meters"),
  18909. weight: math.unit(300, "kg"),
  18910. name: "Front",
  18911. image: {
  18912. source: "./media/characters/kash/front.svg",
  18913. extra: 495 / 360,
  18914. bottom: 0.015
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(2, "meters"),
  18922. default: true
  18923. },
  18924. {
  18925. name: "Big",
  18926. height: math.unit(3, "meters")
  18927. },
  18928. {
  18929. name: "Large",
  18930. height: math.unit(5, "meters")
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18936. {
  18937. feeding: {
  18938. height: math.unit(6.7, "feet"),
  18939. weight: math.unit(350, "lb"),
  18940. name: "Feeding",
  18941. image: {
  18942. source: "./media/characters/lalim/feeding.svg",
  18943. }
  18944. },
  18945. },
  18946. [
  18947. {
  18948. name: "Normal",
  18949. height: math.unit(6.7, "feet"),
  18950. default: true
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18956. {
  18957. front: {
  18958. height: math.unit(9.5, "feet"),
  18959. weight: math.unit(600, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/de'vout/front.svg",
  18963. extra: 1443 / 1328,
  18964. bottom: 0.025
  18965. }
  18966. },
  18967. back: {
  18968. height: math.unit(9.5, "feet"),
  18969. weight: math.unit(600, "lb"),
  18970. name: "Back",
  18971. image: {
  18972. source: "./media/characters/de'vout/back.svg",
  18973. extra: 1443 / 1328
  18974. }
  18975. },
  18976. frontDressed: {
  18977. height: math.unit(9.5, "feet"),
  18978. weight: math.unit(600, "lb"),
  18979. name: "Front (Dressed",
  18980. image: {
  18981. source: "./media/characters/de'vout/front-dressed.svg",
  18982. extra: 1443 / 1328,
  18983. bottom: 0.025
  18984. }
  18985. },
  18986. backDressed: {
  18987. height: math.unit(9.5, "feet"),
  18988. weight: math.unit(600, "lb"),
  18989. name: "Back (Dressed",
  18990. image: {
  18991. source: "./media/characters/de'vout/back-dressed.svg",
  18992. extra: 1443 / 1328
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(9.5, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19006. {
  19007. front: {
  19008. height: math.unit(8, "feet"),
  19009. weight: math.unit(225, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/talana/front.svg",
  19013. extra: 1410 / 1300,
  19014. bottom: 0.015
  19015. }
  19016. },
  19017. frontDressed: {
  19018. height: math.unit(8, "feet"),
  19019. weight: math.unit(225, "lb"),
  19020. name: "Front (Dressed",
  19021. image: {
  19022. source: "./media/characters/talana/front-dressed.svg",
  19023. extra: 1410 / 1300,
  19024. bottom: 0.015
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(8, "feet"),
  19032. default: true
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19038. {
  19039. side: {
  19040. height: math.unit(7.2, "feet"),
  19041. weight: math.unit(150, "lb"),
  19042. name: "Side",
  19043. image: {
  19044. source: "./media/characters/xeauvok/side.svg",
  19045. extra: 1975 / 1523,
  19046. bottom: 0.07
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(7.2, "feet"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19060. {
  19061. side: {
  19062. height: math.unit(4, "meters"),
  19063. weight: math.unit(2200, "kg"),
  19064. name: "Side",
  19065. image: {
  19066. source: "./media/characters/zara/side.svg",
  19067. extra: 765/744,
  19068. bottom: 156/921
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(4, "meters"),
  19076. default: true
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19082. {
  19083. side: {
  19084. height: math.unit(6, "feet"),
  19085. weight: math.unit(150, "lb"),
  19086. name: "Side",
  19087. image: {
  19088. source: "./media/characters/richard-dragon/side.svg",
  19089. extra: 845 / 340,
  19090. bottom: 0.017
  19091. }
  19092. },
  19093. maw: {
  19094. height: math.unit(2.97, "feet"),
  19095. name: "Maw",
  19096. image: {
  19097. source: "./media/characters/richard-dragon/maw.svg"
  19098. }
  19099. },
  19100. },
  19101. [
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(4, "feet"),
  19109. weight: math.unit(100, "lb"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/richard-smeargle/front.svg",
  19113. extra: 2952 / 2820,
  19114. bottom: 0.028
  19115. }
  19116. },
  19117. },
  19118. [
  19119. {
  19120. name: "Normal",
  19121. height: math.unit(4, "feet"),
  19122. default: true
  19123. },
  19124. {
  19125. name: "Dynamax",
  19126. height: math.unit(20, "meters")
  19127. },
  19128. ]
  19129. ))
  19130. characterMakers.push(() => makeCharacter(
  19131. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19132. {
  19133. front: {
  19134. height: math.unit(6, "feet"),
  19135. weight: math.unit(110, "lb"),
  19136. name: "Front",
  19137. image: {
  19138. source: "./media/characters/klay/front.svg",
  19139. extra: 962 / 883,
  19140. bottom: 0.04
  19141. }
  19142. },
  19143. back: {
  19144. height: math.unit(6, "feet"),
  19145. weight: math.unit(110, "lb"),
  19146. name: "Back",
  19147. image: {
  19148. source: "./media/characters/klay/back.svg",
  19149. extra: 962 / 883
  19150. }
  19151. },
  19152. beans: {
  19153. height: math.unit(1.15, "feet"),
  19154. name: "Beans",
  19155. image: {
  19156. source: "./media/characters/klay/beans.svg"
  19157. }
  19158. },
  19159. },
  19160. [
  19161. {
  19162. name: "Micro",
  19163. height: math.unit(6, "inches")
  19164. },
  19165. {
  19166. name: "Mini",
  19167. height: math.unit(3, "feet")
  19168. },
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(6, "feet"),
  19172. default: true
  19173. },
  19174. {
  19175. name: "Big",
  19176. height: math.unit(25, "feet")
  19177. },
  19178. {
  19179. name: "Macro",
  19180. height: math.unit(100, "feet")
  19181. },
  19182. {
  19183. name: "Megamacro",
  19184. height: math.unit(400, "feet")
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19190. {
  19191. front: {
  19192. height: math.unit(6, "feet"),
  19193. weight: math.unit(160, "lb"),
  19194. name: "Front",
  19195. image: {
  19196. source: "./media/characters/marcus/front.svg",
  19197. extra: 734 / 676,
  19198. bottom: 0.03
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Little",
  19205. height: math.unit(6, "feet")
  19206. },
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(110, "feet"),
  19210. default: true
  19211. },
  19212. {
  19213. name: "Macro",
  19214. height: math.unit(250, "feet")
  19215. },
  19216. {
  19217. name: "Megamacro",
  19218. height: math.unit(1000, "feet")
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19224. {
  19225. front: {
  19226. height: math.unit(7, "feet"),
  19227. weight: math.unit(275, "lb"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/claude-delroute/front.svg",
  19231. extra: 902/827,
  19232. bottom: 26/928
  19233. }
  19234. },
  19235. side: {
  19236. height: math.unit(7, "feet"),
  19237. weight: math.unit(275, "lb"),
  19238. name: "Side",
  19239. image: {
  19240. source: "./media/characters/claude-delroute/side.svg",
  19241. extra: 908/853,
  19242. bottom: 16/924
  19243. }
  19244. },
  19245. back: {
  19246. height: math.unit(7, "feet"),
  19247. weight: math.unit(275, "lb"),
  19248. name: "Back",
  19249. image: {
  19250. source: "./media/characters/claude-delroute/back.svg",
  19251. extra: 911/829,
  19252. bottom: 18/929
  19253. }
  19254. },
  19255. maw: {
  19256. height: math.unit(0.6407, "meters"),
  19257. name: "Maw",
  19258. image: {
  19259. source: "./media/characters/claude-delroute/maw.svg"
  19260. }
  19261. },
  19262. },
  19263. [
  19264. {
  19265. name: "Normal",
  19266. height: math.unit(7, "feet"),
  19267. default: true
  19268. },
  19269. {
  19270. name: "Lorge",
  19271. height: math.unit(20, "feet")
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19277. {
  19278. front: {
  19279. height: math.unit(8 + 4 / 12, "feet"),
  19280. weight: math.unit(600, "lb"),
  19281. name: "Front",
  19282. image: {
  19283. source: "./media/characters/dragonien/front.svg",
  19284. extra: 100 / 94,
  19285. bottom: 3.3 / 103.3445
  19286. }
  19287. },
  19288. back: {
  19289. height: math.unit(8 + 4 / 12, "feet"),
  19290. weight: math.unit(600, "lb"),
  19291. name: "Back",
  19292. image: {
  19293. source: "./media/characters/dragonien/back.svg",
  19294. extra: 776 / 746,
  19295. bottom: 6.4 / 782.0616
  19296. }
  19297. },
  19298. foot: {
  19299. height: math.unit(1.54, "feet"),
  19300. name: "Foot",
  19301. image: {
  19302. source: "./media/characters/dragonien/foot.svg",
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(8 + 4 / 12, "feet"),
  19310. default: true
  19311. },
  19312. {
  19313. name: "Macro",
  19314. height: math.unit(200, "feet")
  19315. },
  19316. {
  19317. name: "Megamacro",
  19318. height: math.unit(1, "mile")
  19319. },
  19320. {
  19321. name: "Gigamacro",
  19322. height: math.unit(1000, "miles")
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19328. {
  19329. front: {
  19330. height: math.unit(5 + 2 / 12, "feet"),
  19331. weight: math.unit(110, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/desta/front.svg",
  19335. extra: 767 / 726,
  19336. bottom: 11.7 / 779
  19337. }
  19338. },
  19339. back: {
  19340. height: math.unit(5 + 2 / 12, "feet"),
  19341. weight: math.unit(110, "lb"),
  19342. name: "Back",
  19343. image: {
  19344. source: "./media/characters/desta/back.svg",
  19345. extra: 777 / 728,
  19346. bottom: 6 / 784
  19347. }
  19348. },
  19349. frontAlt: {
  19350. height: math.unit(5 + 2 / 12, "feet"),
  19351. weight: math.unit(110, "lb"),
  19352. name: "Front",
  19353. image: {
  19354. source: "./media/characters/desta/front-alt.svg",
  19355. extra: 1482 / 1417
  19356. }
  19357. },
  19358. side: {
  19359. height: math.unit(5 + 2 / 12, "feet"),
  19360. weight: math.unit(110, "lb"),
  19361. name: "Side",
  19362. image: {
  19363. source: "./media/characters/desta/side.svg",
  19364. extra: 2579 / 2491,
  19365. bottom: 0.053
  19366. }
  19367. },
  19368. },
  19369. [
  19370. {
  19371. name: "Micro",
  19372. height: math.unit(6, "inches")
  19373. },
  19374. {
  19375. name: "Normal",
  19376. height: math.unit(5 + 2 / 12, "feet"),
  19377. default: true
  19378. },
  19379. {
  19380. name: "Macro",
  19381. height: math.unit(62, "feet")
  19382. },
  19383. {
  19384. name: "Megamacro",
  19385. height: math.unit(1800, "feet")
  19386. },
  19387. ]
  19388. ))
  19389. characterMakers.push(() => makeCharacter(
  19390. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19391. {
  19392. front: {
  19393. height: math.unit(10, "feet"),
  19394. weight: math.unit(700, "lb"),
  19395. name: "Front",
  19396. image: {
  19397. source: "./media/characters/storm-alystar/front.svg",
  19398. extra: 2112 / 1898,
  19399. bottom: 0.034
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Micro",
  19406. height: math.unit(3.5, "inches")
  19407. },
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(10, "feet"),
  19411. default: true
  19412. },
  19413. {
  19414. name: "Macro",
  19415. height: math.unit(400, "feet")
  19416. },
  19417. {
  19418. name: "Deific",
  19419. height: math.unit(60, "miles")
  19420. },
  19421. ]
  19422. ))
  19423. characterMakers.push(() => makeCharacter(
  19424. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19425. {
  19426. front: {
  19427. height: math.unit(2.35, "meters"),
  19428. weight: math.unit(119, "kg"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/ilia/front.svg",
  19432. extra: 1285 / 1255,
  19433. bottom: 0.06
  19434. }
  19435. },
  19436. },
  19437. [
  19438. {
  19439. name: "Normal",
  19440. height: math.unit(2.35, "meters")
  19441. },
  19442. {
  19443. name: "Macro",
  19444. height: math.unit(140, "meters"),
  19445. default: true
  19446. },
  19447. {
  19448. name: "Megamacro",
  19449. height: math.unit(100, "miles")
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19455. {
  19456. front: {
  19457. height: math.unit(6 + 5 / 12, "feet"),
  19458. weight: math.unit(190, "lb"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/kingdead/front.svg",
  19462. extra: 1228 / 1177
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Micro",
  19469. height: math.unit(7, "inches")
  19470. },
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(6 + 5 / 12, "feet")
  19474. },
  19475. {
  19476. name: "Macro",
  19477. height: math.unit(150, "feet"),
  19478. default: true
  19479. },
  19480. {
  19481. name: "Megamacro",
  19482. height: math.unit(200, "miles")
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(8, "feet"),
  19491. weight: math.unit(600, "lb"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/kyrehx/front.svg",
  19495. extra: 1195 / 1095,
  19496. bottom: 0.034
  19497. }
  19498. },
  19499. },
  19500. [
  19501. {
  19502. name: "Micro",
  19503. height: math.unit(2, "inches")
  19504. },
  19505. {
  19506. name: "Normal",
  19507. height: math.unit(8, "feet"),
  19508. default: true
  19509. },
  19510. {
  19511. name: "Macro",
  19512. height: math.unit(255, "feet")
  19513. },
  19514. ]
  19515. ))
  19516. characterMakers.push(() => makeCharacter(
  19517. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19518. {
  19519. front: {
  19520. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19521. weight: math.unit(184, "lb"),
  19522. name: "Front",
  19523. image: {
  19524. source: "./media/characters/xang/front.svg",
  19525. extra: 845 / 755
  19526. }
  19527. },
  19528. },
  19529. [
  19530. {
  19531. name: "Normal",
  19532. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19533. default: true
  19534. },
  19535. {
  19536. name: "Macro",
  19537. height: math.unit(0.935 * 146, "feet")
  19538. },
  19539. {
  19540. name: "Megamacro",
  19541. height: math.unit(0.935 * 3, "miles")
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19547. {
  19548. frontDressed: {
  19549. height: math.unit(5 + 7 / 12, "feet"),
  19550. weight: math.unit(140, "lb"),
  19551. name: "Front (Dressed)",
  19552. image: {
  19553. source: "./media/characters/doc-weardno/front-dressed.svg",
  19554. extra: 263 / 234
  19555. }
  19556. },
  19557. backDressed: {
  19558. height: math.unit(5 + 7 / 12, "feet"),
  19559. weight: math.unit(140, "lb"),
  19560. name: "Back (Dressed)",
  19561. image: {
  19562. source: "./media/characters/doc-weardno/back-dressed.svg",
  19563. extra: 266 / 238
  19564. }
  19565. },
  19566. front: {
  19567. height: math.unit(5 + 7 / 12, "feet"),
  19568. weight: math.unit(140, "lb"),
  19569. name: "Front",
  19570. image: {
  19571. source: "./media/characters/doc-weardno/front.svg",
  19572. extra: 254 / 233
  19573. }
  19574. },
  19575. },
  19576. [
  19577. {
  19578. name: "Micro",
  19579. height: math.unit(3, "inches")
  19580. },
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(5 + 7 / 12, "feet"),
  19584. default: true
  19585. },
  19586. {
  19587. name: "Macro",
  19588. height: math.unit(25, "feet")
  19589. },
  19590. {
  19591. name: "Megamacro",
  19592. height: math.unit(2, "miles")
  19593. },
  19594. ]
  19595. ))
  19596. characterMakers.push(() => makeCharacter(
  19597. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19598. {
  19599. front: {
  19600. height: math.unit(6 + 2 / 12, "feet"),
  19601. weight: math.unit(153, "lb"),
  19602. name: "Front",
  19603. image: {
  19604. source: "./media/characters/seth-whilst/front.svg",
  19605. bottom: 0.07
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Micro",
  19612. height: math.unit(5, "inches")
  19613. },
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(6 + 2 / 12, "feet"),
  19617. default: true
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19623. {
  19624. front: {
  19625. height: math.unit(3, "inches"),
  19626. weight: math.unit(8, "grams"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/pocket-jabari/front.svg",
  19630. extra: 1024 / 974,
  19631. bottom: 0.039
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Minimicro",
  19638. height: math.unit(8, "mm")
  19639. },
  19640. {
  19641. name: "Micro",
  19642. height: math.unit(3, "inches"),
  19643. default: true
  19644. },
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(3, "feet")
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19653. {
  19654. frontDressed: {
  19655. height: math.unit(15, "feet"),
  19656. weight: math.unit(3280, "lb"),
  19657. name: "Front (Dressed)",
  19658. image: {
  19659. source: "./media/characters/sapphy/front-dressed.svg",
  19660. extra: 1951/1654,
  19661. bottom: 194/2145
  19662. },
  19663. form: "anthro",
  19664. default: true
  19665. },
  19666. backDressed: {
  19667. height: math.unit(15, "feet"),
  19668. weight: math.unit(3280, "lb"),
  19669. name: "Back (Dressed)",
  19670. image: {
  19671. source: "./media/characters/sapphy/back-dressed.svg",
  19672. extra: 2058/1918,
  19673. bottom: 125/2183
  19674. },
  19675. form: "anthro"
  19676. },
  19677. frontNude: {
  19678. height: math.unit(15, "feet"),
  19679. weight: math.unit(3280, "lb"),
  19680. name: "Front (Nude)",
  19681. image: {
  19682. source: "./media/characters/sapphy/front-nude.svg",
  19683. extra: 1951/1654,
  19684. bottom: 194/2145
  19685. },
  19686. form: "anthro"
  19687. },
  19688. backNude: {
  19689. height: math.unit(15, "feet"),
  19690. weight: math.unit(3280, "lb"),
  19691. name: "Back (Nude)",
  19692. image: {
  19693. source: "./media/characters/sapphy/back-nude.svg",
  19694. extra: 2058/1918,
  19695. bottom: 125/2183
  19696. },
  19697. form: "anthro"
  19698. },
  19699. full: {
  19700. height: math.unit(15, "feet"),
  19701. weight: math.unit(3280, "lb"),
  19702. name: "Full",
  19703. image: {
  19704. source: "./media/characters/sapphy/full.svg",
  19705. extra: 1396/1317,
  19706. bottom: 44/1440
  19707. },
  19708. form: "anthro"
  19709. },
  19710. dick: {
  19711. height: math.unit(3.8, "feet"),
  19712. name: "Dick",
  19713. image: {
  19714. source: "./media/characters/sapphy/dick.svg"
  19715. },
  19716. form: "anthro"
  19717. },
  19718. feral: {
  19719. height: math.unit(35, "feet"),
  19720. weight: math.unit(160, "tons"),
  19721. name: "Feral",
  19722. image: {
  19723. source: "./media/characters/sapphy/feral.svg",
  19724. extra: 1050/573,
  19725. bottom: 60/1110
  19726. },
  19727. form: "feral",
  19728. default: true
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(15, "feet"),
  19735. form: "anthro"
  19736. },
  19737. {
  19738. name: "Casual Macro",
  19739. height: math.unit(120, "feet"),
  19740. form: "anthro"
  19741. },
  19742. {
  19743. name: "Macro",
  19744. height: math.unit(2150, "feet"),
  19745. default: true,
  19746. form: "anthro"
  19747. },
  19748. {
  19749. name: "Megamacro",
  19750. height: math.unit(8, "miles"),
  19751. form: "anthro"
  19752. },
  19753. {
  19754. name: "Galaxy Mom",
  19755. height: math.unit(6, "megalightyears"),
  19756. form: "anthro"
  19757. },
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(35, "feet"),
  19761. form: "feral",
  19762. default: true
  19763. },
  19764. {
  19765. name: "Macro",
  19766. height: math.unit(300, "feet"),
  19767. form: "feral"
  19768. },
  19769. {
  19770. name: "Galaxy Mom",
  19771. height: math.unit(10, "megalightyears"),
  19772. form: "feral"
  19773. },
  19774. ],
  19775. {
  19776. "anthro": {
  19777. name: "Anthro",
  19778. default: true
  19779. },
  19780. "feral": {
  19781. name: "Feral"
  19782. }
  19783. }
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(6, "feet"),
  19790. weight: math.unit(170, "lb"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/kiro/front.svg",
  19794. extra: 1064 / 1012,
  19795. bottom: 0.052
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "Micro",
  19802. height: math.unit(6, "inches")
  19803. },
  19804. {
  19805. name: "Normal",
  19806. height: math.unit(6, "feet"),
  19807. default: true
  19808. },
  19809. {
  19810. name: "Macro",
  19811. height: math.unit(72, "feet")
  19812. },
  19813. ]
  19814. ))
  19815. characterMakers.push(() => makeCharacter(
  19816. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19817. {
  19818. front: {
  19819. height: math.unit(5 + 9 / 12, "feet"),
  19820. weight: math.unit(175, "lb"),
  19821. name: "Front",
  19822. image: {
  19823. source: "./media/characters/irishfox/front.svg",
  19824. extra: 1912 / 1680,
  19825. bottom: 0.02
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Nano",
  19832. height: math.unit(1, "mm")
  19833. },
  19834. {
  19835. name: "Micro",
  19836. height: math.unit(2, "inches")
  19837. },
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(5 + 9 / 12, "feet"),
  19841. default: true
  19842. },
  19843. {
  19844. name: "Macro",
  19845. height: math.unit(45, "feet")
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(6 + 1 / 12, "feet"),
  19854. weight: math.unit(75, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/aronai-sieyes/front.svg",
  19858. extra: 1532/1450,
  19859. bottom: 42/1574
  19860. }
  19861. },
  19862. side: {
  19863. height: math.unit(6 + 1 / 12, "feet"),
  19864. weight: math.unit(75, "lb"),
  19865. name: "Side",
  19866. image: {
  19867. source: "./media/characters/aronai-sieyes/side.svg",
  19868. extra: 1422/1365,
  19869. bottom: 148/1570
  19870. }
  19871. },
  19872. back: {
  19873. height: math.unit(6 + 1 / 12, "feet"),
  19874. weight: math.unit(75, "lb"),
  19875. name: "Back",
  19876. image: {
  19877. source: "./media/characters/aronai-sieyes/back.svg",
  19878. extra: 1526/1464,
  19879. bottom: 51/1577
  19880. }
  19881. },
  19882. dressed: {
  19883. height: math.unit(6 + 1 / 12, "feet"),
  19884. weight: math.unit(75, "lb"),
  19885. name: "Dressed",
  19886. image: {
  19887. source: "./media/characters/aronai-sieyes/dressed.svg",
  19888. extra: 1559/1483,
  19889. bottom: 39/1598
  19890. }
  19891. },
  19892. slit: {
  19893. height: math.unit(1.3, "feet"),
  19894. name: "Slit",
  19895. image: {
  19896. source: "./media/characters/aronai-sieyes/slit.svg"
  19897. }
  19898. },
  19899. slitSpread: {
  19900. height: math.unit(0.9, "feet"),
  19901. name: "Slit (Spread)",
  19902. image: {
  19903. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19904. }
  19905. },
  19906. rump: {
  19907. height: math.unit(1.3, "feet"),
  19908. name: "Rump",
  19909. image: {
  19910. source: "./media/characters/aronai-sieyes/rump.svg"
  19911. }
  19912. },
  19913. maw: {
  19914. height: math.unit(1.25, "feet"),
  19915. name: "Maw",
  19916. image: {
  19917. source: "./media/characters/aronai-sieyes/maw.svg"
  19918. }
  19919. },
  19920. feral: {
  19921. height: math.unit(18, "feet"),
  19922. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19923. name: "Feral",
  19924. image: {
  19925. source: "./media/characters/aronai-sieyes/feral.svg",
  19926. extra: 1530 / 1240,
  19927. bottom: 0.035
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Micro",
  19934. height: math.unit(2, "inches")
  19935. },
  19936. {
  19937. name: "Normal",
  19938. height: math.unit(6 + 1 / 12, "feet"),
  19939. default: true
  19940. }
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19945. {
  19946. front: {
  19947. height: math.unit(12, "feet"),
  19948. weight: math.unit(410, "kg"),
  19949. name: "Front",
  19950. image: {
  19951. source: "./media/characters/xuna/front.svg",
  19952. extra: 2184 / 1980
  19953. }
  19954. },
  19955. side: {
  19956. height: math.unit(12, "feet"),
  19957. weight: math.unit(410, "kg"),
  19958. name: "Side",
  19959. image: {
  19960. source: "./media/characters/xuna/side.svg",
  19961. extra: 2184 / 1980
  19962. }
  19963. },
  19964. back: {
  19965. height: math.unit(12, "feet"),
  19966. weight: math.unit(410, "kg"),
  19967. name: "Back",
  19968. image: {
  19969. source: "./media/characters/xuna/back.svg",
  19970. extra: 2184 / 1980
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Nano glow",
  19977. height: math.unit(10, "nm")
  19978. },
  19979. {
  19980. name: "Micro floof",
  19981. height: math.unit(0.3, "m")
  19982. },
  19983. {
  19984. name: "Huggable softy boi",
  19985. height: math.unit(3.6576, "m"),
  19986. default: true
  19987. },
  19988. {
  19989. name: "Admirable floof",
  19990. height: math.unit(80, "meters")
  19991. },
  19992. {
  19993. name: "Gentle macro",
  19994. height: math.unit(300, "meters")
  19995. },
  19996. {
  19997. name: "Very careful floof",
  19998. height: math.unit(3200, "meters")
  19999. },
  20000. {
  20001. name: "The mega floof",
  20002. height: math.unit(36000, "meters")
  20003. },
  20004. {
  20005. name: "Giga-fur-Wicker",
  20006. height: math.unit(4800000, "meters")
  20007. },
  20008. {
  20009. name: "Licky world",
  20010. height: math.unit(20000000, "meters")
  20011. },
  20012. {
  20013. name: "Floofy cyan sun",
  20014. height: math.unit(1500000000, "meters")
  20015. },
  20016. {
  20017. name: "Milky Wicker",
  20018. height: math.unit(1000000000000000000000, "meters")
  20019. },
  20020. {
  20021. name: "The observing Wicker",
  20022. height: math.unit(999999999999999999999999999, "meters")
  20023. },
  20024. ]
  20025. ))
  20026. characterMakers.push(() => makeCharacter(
  20027. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20028. {
  20029. front: {
  20030. height: math.unit(5 + 9 / 12, "feet"),
  20031. weight: math.unit(150, "lb"),
  20032. name: "Front",
  20033. image: {
  20034. source: "./media/characters/arokha-sieyes/front.svg",
  20035. extra: 1425 / 1284,
  20036. bottom: 0.05
  20037. }
  20038. },
  20039. },
  20040. [
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(5 + 9 / 12, "feet")
  20044. },
  20045. {
  20046. name: "Macro",
  20047. height: math.unit(30, "meters"),
  20048. default: true
  20049. },
  20050. ]
  20051. ))
  20052. characterMakers.push(() => makeCharacter(
  20053. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20054. {
  20055. front: {
  20056. height: math.unit(6, "feet"),
  20057. weight: math.unit(180, "lb"),
  20058. name: "Front",
  20059. image: {
  20060. source: "./media/characters/arokh-sieyes/front.svg",
  20061. extra: 1830 / 1769,
  20062. bottom: 0.01
  20063. }
  20064. },
  20065. },
  20066. [
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(6, "feet")
  20070. },
  20071. {
  20072. name: "Macro",
  20073. height: math.unit(30, "meters"),
  20074. default: true
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20080. {
  20081. side: {
  20082. height: math.unit(13 + 1 / 12, "feet"),
  20083. weight: math.unit(8.5, "tonnes"),
  20084. name: "Side",
  20085. image: {
  20086. source: "./media/characters/goldeneye/side.svg",
  20087. extra: 1182 / 778,
  20088. bottom: 0.067
  20089. }
  20090. },
  20091. paw: {
  20092. height: math.unit(3.4, "feet"),
  20093. name: "Paw",
  20094. image: {
  20095. source: "./media/characters/goldeneye/paw.svg"
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(13 + 1 / 12, "feet"),
  20103. default: true
  20104. },
  20105. ]
  20106. ))
  20107. characterMakers.push(() => makeCharacter(
  20108. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20109. {
  20110. front: {
  20111. height: math.unit(6 + 1 / 12, "feet"),
  20112. weight: math.unit(210, "lb"),
  20113. name: "Front",
  20114. image: {
  20115. source: "./media/characters/leonardo-lycheborne/front.svg",
  20116. extra: 776/723,
  20117. bottom: 34/810
  20118. }
  20119. },
  20120. side: {
  20121. height: math.unit(6 + 1 / 12, "feet"),
  20122. weight: math.unit(210, "lb"),
  20123. name: "Side",
  20124. image: {
  20125. source: "./media/characters/leonardo-lycheborne/side.svg",
  20126. extra: 780/728,
  20127. bottom: 12/792
  20128. }
  20129. },
  20130. back: {
  20131. height: math.unit(6 + 1 / 12, "feet"),
  20132. weight: math.unit(210, "lb"),
  20133. name: "Back",
  20134. image: {
  20135. source: "./media/characters/leonardo-lycheborne/back.svg",
  20136. extra: 775/721,
  20137. bottom: 17/792
  20138. }
  20139. },
  20140. hand: {
  20141. height: math.unit(1.08, "feet"),
  20142. name: "Hand",
  20143. image: {
  20144. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20145. }
  20146. },
  20147. foot: {
  20148. height: math.unit(1.32, "feet"),
  20149. name: "Foot",
  20150. image: {
  20151. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20152. }
  20153. },
  20154. maw: {
  20155. height: math.unit(1, "feet"),
  20156. name: "Maw",
  20157. image: {
  20158. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20159. }
  20160. },
  20161. were: {
  20162. height: math.unit(20, "feet"),
  20163. weight: math.unit(7800, "lb"),
  20164. name: "Were",
  20165. image: {
  20166. source: "./media/characters/leonardo-lycheborne/were.svg",
  20167. extra: 1224/1165,
  20168. bottom: 72/1296
  20169. }
  20170. },
  20171. feral: {
  20172. height: math.unit(7.5, "feet"),
  20173. weight: math.unit(600, "lb"),
  20174. name: "Feral",
  20175. image: {
  20176. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20177. extra: 797/702,
  20178. bottom: 139/936
  20179. }
  20180. },
  20181. taur: {
  20182. height: math.unit(11, "feet"),
  20183. weight: math.unit(3300, "lb"),
  20184. name: "Taur",
  20185. image: {
  20186. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20187. extra: 1271/1197,
  20188. bottom: 47/1318
  20189. }
  20190. },
  20191. barghest: {
  20192. height: math.unit(11, "feet"),
  20193. weight: math.unit(1300, "lb"),
  20194. name: "Barghest",
  20195. image: {
  20196. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20197. extra: 1291/1204,
  20198. bottom: 37/1328
  20199. }
  20200. },
  20201. dick: {
  20202. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20203. name: "Dick",
  20204. image: {
  20205. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20206. }
  20207. },
  20208. dickWere: {
  20209. height: math.unit((20) / 3.8, "feet"),
  20210. name: "Dick (Were)",
  20211. image: {
  20212. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20213. }
  20214. },
  20215. },
  20216. [
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(6 + 1 / 12, "feet"),
  20220. default: true
  20221. },
  20222. ]
  20223. ))
  20224. characterMakers.push(() => makeCharacter(
  20225. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20226. {
  20227. front: {
  20228. height: math.unit(10, "feet"),
  20229. weight: math.unit(350, "lb"),
  20230. name: "Front",
  20231. image: {
  20232. source: "./media/characters/jet/front.svg",
  20233. extra: 2050 / 1980,
  20234. bottom: 0.013
  20235. }
  20236. },
  20237. back: {
  20238. height: math.unit(10, "feet"),
  20239. weight: math.unit(350, "lb"),
  20240. name: "Back",
  20241. image: {
  20242. source: "./media/characters/jet/back.svg",
  20243. extra: 2050 / 1980,
  20244. bottom: 0.013
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Micro",
  20251. height: math.unit(6, "inches")
  20252. },
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(10, "feet"),
  20256. default: true
  20257. },
  20258. {
  20259. name: "Macro",
  20260. height: math.unit(100, "feet")
  20261. },
  20262. ]
  20263. ))
  20264. characterMakers.push(() => makeCharacter(
  20265. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20266. {
  20267. front: {
  20268. height: math.unit(15, "feet"),
  20269. weight: math.unit(2800, "lb"),
  20270. name: "Front",
  20271. image: {
  20272. source: "./media/characters/tanarath/front.svg",
  20273. extra: 2392 / 2220,
  20274. bottom: 0.03
  20275. }
  20276. },
  20277. back: {
  20278. height: math.unit(15, "feet"),
  20279. weight: math.unit(2800, "lb"),
  20280. name: "Back",
  20281. image: {
  20282. source: "./media/characters/tanarath/back.svg",
  20283. extra: 2392 / 2220,
  20284. bottom: 0.03
  20285. }
  20286. },
  20287. },
  20288. [
  20289. {
  20290. name: "Normal",
  20291. height: math.unit(15, "feet"),
  20292. default: true
  20293. },
  20294. ]
  20295. ))
  20296. characterMakers.push(() => makeCharacter(
  20297. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20298. {
  20299. front: {
  20300. height: math.unit(7 + 1 / 12, "feet"),
  20301. weight: math.unit(175, "lb"),
  20302. name: "Front",
  20303. image: {
  20304. source: "./media/characters/patty-cattybatty/front.svg",
  20305. extra: 908 / 874,
  20306. bottom: 0.025
  20307. }
  20308. },
  20309. },
  20310. [
  20311. {
  20312. name: "Micro",
  20313. height: math.unit(1, "inch")
  20314. },
  20315. {
  20316. name: "Normal",
  20317. height: math.unit(7 + 1 / 12, "feet")
  20318. },
  20319. {
  20320. name: "Mini Macro",
  20321. height: math.unit(155, "feet")
  20322. },
  20323. {
  20324. name: "Macro",
  20325. height: math.unit(1077, "feet")
  20326. },
  20327. {
  20328. name: "Mega Macro",
  20329. height: math.unit(47650, "feet"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Giga Macro",
  20334. height: math.unit(440, "miles")
  20335. },
  20336. {
  20337. name: "Tera Macro",
  20338. height: math.unit(8700, "miles")
  20339. },
  20340. {
  20341. name: "Planetary Macro",
  20342. height: math.unit(32700, "miles")
  20343. },
  20344. {
  20345. name: "Solar Macro",
  20346. height: math.unit(550000, "miles")
  20347. },
  20348. {
  20349. name: "Celestial Macro",
  20350. height: math.unit(2.5, "AU")
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20356. {
  20357. front: {
  20358. height: math.unit(4 + 5 / 12, "feet"),
  20359. weight: math.unit(90, "lb"),
  20360. name: "Front",
  20361. image: {
  20362. source: "./media/characters/cappu/front.svg",
  20363. extra: 1247 / 1152,
  20364. bottom: 0.012
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(4 + 5 / 12, "feet"),
  20372. default: true
  20373. },
  20374. ]
  20375. ))
  20376. characterMakers.push(() => makeCharacter(
  20377. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20378. {
  20379. frontDressed: {
  20380. height: math.unit(70, "cm"),
  20381. weight: math.unit(6, "kg"),
  20382. name: "Front (Dressed)",
  20383. image: {
  20384. source: "./media/characters/sebi/front-dressed.svg",
  20385. extra: 713.5 / 686.5,
  20386. bottom: 0.003
  20387. }
  20388. },
  20389. front: {
  20390. height: math.unit(70, "cm"),
  20391. weight: math.unit(5, "kg"),
  20392. name: "Front",
  20393. image: {
  20394. source: "./media/characters/sebi/front.svg",
  20395. extra: 713.5 / 686.5,
  20396. bottom: 0.003
  20397. }
  20398. }
  20399. },
  20400. [
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(70, "cm"),
  20404. default: true
  20405. },
  20406. {
  20407. name: "Macro",
  20408. height: math.unit(8, "meters")
  20409. },
  20410. ]
  20411. ))
  20412. characterMakers.push(() => makeCharacter(
  20413. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20414. {
  20415. front: {
  20416. height: math.unit(6, "feet"),
  20417. weight: math.unit(150, "lb"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/typhek/front.svg",
  20421. extra: 1948 / 1929,
  20422. bottom: 0.025
  20423. }
  20424. },
  20425. side: {
  20426. height: math.unit(6, "feet"),
  20427. weight: math.unit(150, "lb"),
  20428. name: "Side",
  20429. image: {
  20430. source: "./media/characters/typhek/side.svg",
  20431. extra: 2034 / 2010,
  20432. bottom: 0.003
  20433. }
  20434. },
  20435. back: {
  20436. height: math.unit(6, "feet"),
  20437. weight: math.unit(150, "lb"),
  20438. name: "Back",
  20439. image: {
  20440. source: "./media/characters/typhek/back.svg",
  20441. extra: 2005 / 1978,
  20442. bottom: 0.004
  20443. }
  20444. },
  20445. palm: {
  20446. height: math.unit(1.2, "feet"),
  20447. name: "Palm",
  20448. image: {
  20449. source: "./media/characters/typhek/palm.svg"
  20450. }
  20451. },
  20452. fist: {
  20453. height: math.unit(1.1, "feet"),
  20454. name: "Fist",
  20455. image: {
  20456. source: "./media/characters/typhek/fist.svg"
  20457. }
  20458. },
  20459. foot: {
  20460. height: math.unit(1.57, "feet"),
  20461. name: "Foot",
  20462. image: {
  20463. source: "./media/characters/typhek/foot.svg"
  20464. }
  20465. },
  20466. sole: {
  20467. height: math.unit(2.05, "feet"),
  20468. name: "Sole",
  20469. image: {
  20470. source: "./media/characters/typhek/sole.svg"
  20471. }
  20472. },
  20473. },
  20474. [
  20475. {
  20476. name: "Macro",
  20477. height: math.unit(40, "stories"),
  20478. default: true
  20479. },
  20480. {
  20481. name: "Megamacro",
  20482. height: math.unit(1, "mile")
  20483. },
  20484. {
  20485. name: "Gigamacro",
  20486. height: math.unit(4000, "solarradii")
  20487. },
  20488. {
  20489. name: "Universal",
  20490. height: math.unit(1.1, "universes")
  20491. }
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20496. {
  20497. side: {
  20498. height: math.unit(5 + 7 / 12, "feet"),
  20499. weight: math.unit(150, "lb"),
  20500. name: "Side",
  20501. image: {
  20502. source: "./media/characters/kassy/side.svg",
  20503. extra: 1280 / 1225,
  20504. bottom: 0.002
  20505. }
  20506. },
  20507. front: {
  20508. height: math.unit(5 + 7 / 12, "feet"),
  20509. weight: math.unit(150, "lb"),
  20510. name: "Front",
  20511. image: {
  20512. source: "./media/characters/kassy/front.svg",
  20513. extra: 1280 / 1225,
  20514. bottom: 0.025
  20515. }
  20516. },
  20517. back: {
  20518. height: math.unit(5 + 7 / 12, "feet"),
  20519. weight: math.unit(150, "lb"),
  20520. name: "Back",
  20521. image: {
  20522. source: "./media/characters/kassy/back.svg",
  20523. extra: 1280 / 1225,
  20524. bottom: 0.002
  20525. }
  20526. },
  20527. foot: {
  20528. height: math.unit(1.266, "feet"),
  20529. name: "Foot",
  20530. image: {
  20531. source: "./media/characters/kassy/foot.svg"
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(5 + 7 / 12, "feet")
  20539. },
  20540. {
  20541. name: "Macro",
  20542. height: math.unit(137, "feet"),
  20543. default: true
  20544. },
  20545. {
  20546. name: "Megamacro",
  20547. height: math.unit(1, "mile")
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(6 + 1 / 12, "feet"),
  20556. weight: math.unit(200, "lb"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/neil/front.svg",
  20560. extra: 1326 / 1250,
  20561. bottom: 0.023
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(6 + 1 / 12, "feet"),
  20569. default: true
  20570. },
  20571. {
  20572. name: "Macro",
  20573. height: math.unit(200, "feet")
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20579. {
  20580. front: {
  20581. height: math.unit(5 + 9 / 12, "feet"),
  20582. weight: math.unit(190, "lb"),
  20583. name: "Front",
  20584. image: {
  20585. source: "./media/characters/atticus/front.svg",
  20586. extra: 2934 / 2785,
  20587. bottom: 0.025
  20588. }
  20589. },
  20590. },
  20591. [
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(5 + 9 / 12, "feet"),
  20595. default: true
  20596. },
  20597. {
  20598. name: "Macro",
  20599. height: math.unit(180, "feet")
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20605. {
  20606. side: {
  20607. height: math.unit(9, "feet"),
  20608. weight: math.unit(650, "lb"),
  20609. name: "Side",
  20610. image: {
  20611. source: "./media/characters/milo/side.svg",
  20612. extra: 2644 / 2310,
  20613. bottom: 0.032
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(9, "feet"),
  20621. default: true
  20622. },
  20623. {
  20624. name: "Macro",
  20625. height: math.unit(300, "feet")
  20626. },
  20627. ]
  20628. ))
  20629. characterMakers.push(() => makeCharacter(
  20630. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20631. {
  20632. side: {
  20633. height: math.unit(8, "meters"),
  20634. weight: math.unit(90000, "kg"),
  20635. name: "Side",
  20636. image: {
  20637. source: "./media/characters/ijzer/side.svg",
  20638. extra: 2756 / 1600,
  20639. bottom: 0.01
  20640. }
  20641. },
  20642. },
  20643. [
  20644. {
  20645. name: "Small",
  20646. height: math.unit(3, "meters")
  20647. },
  20648. {
  20649. name: "Normal",
  20650. height: math.unit(8, "meters"),
  20651. default: true
  20652. },
  20653. {
  20654. name: "Normal+",
  20655. height: math.unit(10, "meters")
  20656. },
  20657. {
  20658. name: "Bigger",
  20659. height: math.unit(24, "meters")
  20660. },
  20661. {
  20662. name: "Huge",
  20663. height: math.unit(80, "meters")
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20669. {
  20670. front: {
  20671. height: math.unit(6 + 2 / 12, "feet"),
  20672. weight: math.unit(153, "lb"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/luca-cervicum/front.svg",
  20676. extra: 370 / 327,
  20677. bottom: 0.015
  20678. }
  20679. },
  20680. back: {
  20681. height: math.unit(6 + 2 / 12, "feet"),
  20682. weight: math.unit(153, "lb"),
  20683. name: "Back",
  20684. image: {
  20685. source: "./media/characters/luca-cervicum/back.svg",
  20686. extra: 367 / 333,
  20687. bottom: 0.005
  20688. }
  20689. },
  20690. frontGear: {
  20691. height: math.unit(6 + 2 / 12, "feet"),
  20692. weight: math.unit(173, "lb"),
  20693. name: "Front (Gear)",
  20694. image: {
  20695. source: "./media/characters/luca-cervicum/front-gear.svg",
  20696. extra: 377 / 333,
  20697. bottom: 0.006
  20698. }
  20699. },
  20700. },
  20701. [
  20702. {
  20703. name: "Normal",
  20704. height: math.unit(6 + 2 / 12, "feet"),
  20705. default: true
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(6 + 1 / 12, "feet"),
  20714. weight: math.unit(304, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/oliver/front.svg",
  20718. extra: 157 / 143,
  20719. bottom: 0.08
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(6 + 1 / 12, "feet"),
  20727. default: true
  20728. },
  20729. ]
  20730. ))
  20731. characterMakers.push(() => makeCharacter(
  20732. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20733. {
  20734. front: {
  20735. height: math.unit(5 + 7 / 12, "feet"),
  20736. weight: math.unit(140, "lb"),
  20737. name: "Front",
  20738. image: {
  20739. source: "./media/characters/shane/front.svg",
  20740. extra: 304 / 289,
  20741. bottom: 0.005
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(5 + 7 / 12, "feet"),
  20749. default: true
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20755. {
  20756. front: {
  20757. height: math.unit(5 + 9 / 12, "feet"),
  20758. weight: math.unit(178, "lb"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/shin/front.svg",
  20762. extra: 159 / 151,
  20763. bottom: 0.015
  20764. }
  20765. },
  20766. },
  20767. [
  20768. {
  20769. name: "Normal",
  20770. height: math.unit(5 + 9 / 12, "feet"),
  20771. default: true
  20772. },
  20773. ]
  20774. ))
  20775. characterMakers.push(() => makeCharacter(
  20776. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20777. {
  20778. front: {
  20779. height: math.unit(5 + 10 / 12, "feet"),
  20780. weight: math.unit(168, "lb"),
  20781. name: "Front",
  20782. image: {
  20783. source: "./media/characters/xerxes/front.svg",
  20784. extra: 282 / 260,
  20785. bottom: 0.045
  20786. }
  20787. },
  20788. },
  20789. [
  20790. {
  20791. name: "Normal",
  20792. height: math.unit(5 + 10 / 12, "feet"),
  20793. default: true
  20794. },
  20795. ]
  20796. ))
  20797. characterMakers.push(() => makeCharacter(
  20798. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20799. {
  20800. front: {
  20801. height: math.unit(6 + 7 / 12, "feet"),
  20802. weight: math.unit(208, "lb"),
  20803. name: "Front",
  20804. image: {
  20805. source: "./media/characters/chaska/front.svg",
  20806. extra: 332 / 319,
  20807. bottom: 0.015
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "Normal",
  20814. height: math.unit(6 + 7 / 12, "feet"),
  20815. default: true
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20821. {
  20822. front: {
  20823. height: math.unit(5 + 8 / 12, "feet"),
  20824. weight: math.unit(208, "lb"),
  20825. name: "Front",
  20826. image: {
  20827. source: "./media/characters/enuk/front.svg",
  20828. extra: 437 / 406,
  20829. bottom: 0.02
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(5 + 8 / 12, "feet"),
  20837. default: true
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20843. {
  20844. front: {
  20845. height: math.unit(5 + 10 / 12, "feet"),
  20846. weight: math.unit(252, "lb"),
  20847. name: "Front",
  20848. image: {
  20849. source: "./media/characters/bruun/front.svg",
  20850. extra: 197 / 187,
  20851. bottom: 0.012
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(5 + 10 / 12, "feet"),
  20859. default: true
  20860. },
  20861. ]
  20862. ))
  20863. characterMakers.push(() => makeCharacter(
  20864. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20865. {
  20866. front: {
  20867. height: math.unit(6 + 10 / 12, "feet"),
  20868. weight: math.unit(255, "lb"),
  20869. name: "Front",
  20870. image: {
  20871. source: "./media/characters/alexeev/front.svg",
  20872. extra: 213 / 200,
  20873. bottom: 0.05
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(6 + 10 / 12, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20887. {
  20888. front: {
  20889. height: math.unit(2 + 8 / 12, "feet"),
  20890. weight: math.unit(22, "lb"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/evelyn/front.svg",
  20894. extra: 208 / 180
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Normal",
  20901. height: math.unit(2 + 8 / 12, "feet"),
  20902. default: true
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20908. {
  20909. front: {
  20910. height: math.unit(5 + 9 / 12, "feet"),
  20911. weight: math.unit(139, "lb"),
  20912. name: "Front",
  20913. image: {
  20914. source: "./media/characters/inca/front.svg",
  20915. extra: 294 / 291,
  20916. bottom: 0.03
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(5 + 9 / 12, "feet"),
  20924. default: true
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20930. {
  20931. front: {
  20932. height: math.unit(6 + 3 / 12, "feet"),
  20933. weight: math.unit(185, "lb"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/mera/front.svg",
  20937. extra: 291 / 277,
  20938. bottom: 0.03
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Normal",
  20945. height: math.unit(6 + 3 / 12, "feet"),
  20946. default: true
  20947. },
  20948. ]
  20949. ))
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20952. {
  20953. front: {
  20954. height: math.unit(6 + 7 / 12, "feet"),
  20955. weight: math.unit(160, "lb"),
  20956. name: "Front",
  20957. image: {
  20958. source: "./media/characters/ceres/front.svg",
  20959. extra: 1023 / 950,
  20960. bottom: 0.027
  20961. }
  20962. },
  20963. back: {
  20964. height: math.unit(6 + 7 / 12, "feet"),
  20965. weight: math.unit(160, "lb"),
  20966. name: "Back",
  20967. image: {
  20968. source: "./media/characters/ceres/back.svg",
  20969. extra: 1023 / 950
  20970. }
  20971. },
  20972. },
  20973. [
  20974. {
  20975. name: "Normal",
  20976. height: math.unit(6 + 7 / 12, "feet"),
  20977. default: true
  20978. },
  20979. ]
  20980. ))
  20981. characterMakers.push(() => makeCharacter(
  20982. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20983. {
  20984. front: {
  20985. height: math.unit(5 + 10 / 12, "feet"),
  20986. weight: math.unit(150, "lb"),
  20987. name: "Front",
  20988. image: {
  20989. source: "./media/characters/kris/front.svg",
  20990. extra: 885 / 803,
  20991. bottom: 0.03
  20992. }
  20993. },
  20994. },
  20995. [
  20996. {
  20997. name: "Normal",
  20998. height: math.unit(5 + 10 / 12, "feet"),
  20999. default: true
  21000. },
  21001. ]
  21002. ))
  21003. characterMakers.push(() => makeCharacter(
  21004. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21005. {
  21006. front: {
  21007. height: math.unit(7, "feet"),
  21008. weight: math.unit(120, "kg"),
  21009. name: "Front",
  21010. image: {
  21011. source: "./media/characters/taluthus/front.svg",
  21012. extra: 903 / 833,
  21013. bottom: 0.015
  21014. }
  21015. },
  21016. },
  21017. [
  21018. {
  21019. name: "Normal",
  21020. height: math.unit(7, "feet"),
  21021. default: true
  21022. },
  21023. {
  21024. name: "Macro",
  21025. height: math.unit(300, "feet")
  21026. },
  21027. ]
  21028. ))
  21029. characterMakers.push(() => makeCharacter(
  21030. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21031. {
  21032. front: {
  21033. height: math.unit(5 + 9 / 12, "feet"),
  21034. weight: math.unit(145, "lb"),
  21035. name: "Front",
  21036. image: {
  21037. source: "./media/characters/dawn/front.svg",
  21038. extra: 2094 / 2016,
  21039. bottom: 0.025
  21040. }
  21041. },
  21042. back: {
  21043. height: math.unit(5 + 9 / 12, "feet"),
  21044. weight: math.unit(160, "lb"),
  21045. name: "Back",
  21046. image: {
  21047. source: "./media/characters/dawn/back.svg",
  21048. extra: 2112 / 2080,
  21049. bottom: 0.005
  21050. }
  21051. },
  21052. },
  21053. [
  21054. {
  21055. name: "Normal",
  21056. height: math.unit(6 + 7 / 12, "feet"),
  21057. default: true
  21058. },
  21059. ]
  21060. ))
  21061. characterMakers.push(() => makeCharacter(
  21062. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21063. {
  21064. anthro: {
  21065. height: math.unit(8 + 3 / 12, "feet"),
  21066. weight: math.unit(450, "lb"),
  21067. name: "Anthro",
  21068. image: {
  21069. source: "./media/characters/arador/anthro.svg",
  21070. extra: 1835 / 1718,
  21071. bottom: 0.025
  21072. }
  21073. },
  21074. feral: {
  21075. height: math.unit(4, "feet"),
  21076. weight: math.unit(200, "lb"),
  21077. name: "Feral",
  21078. image: {
  21079. source: "./media/characters/arador/feral.svg",
  21080. extra: 1683 / 1514,
  21081. bottom: 0.07
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(8 + 3 / 12, "feet")
  21089. },
  21090. {
  21091. name: "Macro",
  21092. height: math.unit(82.5, "feet"),
  21093. default: true
  21094. },
  21095. ]
  21096. ))
  21097. characterMakers.push(() => makeCharacter(
  21098. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21099. {
  21100. front: {
  21101. height: math.unit(5 + 10 / 12, "feet"),
  21102. weight: math.unit(125, "lb"),
  21103. name: "Front",
  21104. image: {
  21105. source: "./media/characters/dharsi/front.svg",
  21106. extra: 716 / 630,
  21107. bottom: 0.035
  21108. }
  21109. },
  21110. },
  21111. [
  21112. {
  21113. name: "Nano",
  21114. height: math.unit(100, "nm")
  21115. },
  21116. {
  21117. name: "Micro",
  21118. height: math.unit(2, "inches")
  21119. },
  21120. {
  21121. name: "Normal",
  21122. height: math.unit(5 + 10 / 12, "feet"),
  21123. default: true
  21124. },
  21125. {
  21126. name: "Macro",
  21127. height: math.unit(1000, "feet")
  21128. },
  21129. {
  21130. name: "Megamacro",
  21131. height: math.unit(10, "miles")
  21132. },
  21133. {
  21134. name: "Gigamacro",
  21135. height: math.unit(3000, "miles")
  21136. },
  21137. {
  21138. name: "Teramacro",
  21139. height: math.unit(500000, "miles")
  21140. },
  21141. {
  21142. name: "Teramacro+",
  21143. height: math.unit(30, "galaxies")
  21144. },
  21145. ]
  21146. ))
  21147. characterMakers.push(() => makeCharacter(
  21148. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21149. {
  21150. front: {
  21151. height: math.unit(6, "feet"),
  21152. weight: math.unit(150, "lb"),
  21153. name: "Front",
  21154. image: {
  21155. source: "./media/characters/deathy/front.svg",
  21156. extra: 1552 / 1463,
  21157. bottom: 0.025
  21158. }
  21159. },
  21160. side: {
  21161. height: math.unit(6, "feet"),
  21162. weight: math.unit(150, "lb"),
  21163. name: "Side",
  21164. image: {
  21165. source: "./media/characters/deathy/side.svg",
  21166. extra: 1604 / 1455,
  21167. bottom: 0.025
  21168. }
  21169. },
  21170. back: {
  21171. height: math.unit(6, "feet"),
  21172. weight: math.unit(150, "lb"),
  21173. name: "Back",
  21174. image: {
  21175. source: "./media/characters/deathy/back.svg",
  21176. extra: 1580 / 1463,
  21177. bottom: 0.005
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Micro",
  21184. height: math.unit(5, "millimeters")
  21185. },
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(6 + 5 / 12, "feet"),
  21189. default: true
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21195. {
  21196. front: {
  21197. height: math.unit(16, "feet"),
  21198. weight: math.unit(4000, "lb"),
  21199. name: "Front",
  21200. image: {
  21201. source: "./media/characters/juniper/front.svg",
  21202. bottom: 0.04
  21203. }
  21204. },
  21205. },
  21206. [
  21207. {
  21208. name: "Normal",
  21209. height: math.unit(16, "feet"),
  21210. default: true
  21211. },
  21212. ]
  21213. ))
  21214. characterMakers.push(() => makeCharacter(
  21215. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21216. {
  21217. front: {
  21218. height: math.unit(6, "feet"),
  21219. weight: math.unit(150, "lb"),
  21220. name: "Front",
  21221. image: {
  21222. source: "./media/characters/hipster/front.svg",
  21223. extra: 1312 / 1209,
  21224. bottom: 0.025
  21225. }
  21226. },
  21227. back: {
  21228. height: math.unit(6, "feet"),
  21229. weight: math.unit(150, "lb"),
  21230. name: "Back",
  21231. image: {
  21232. source: "./media/characters/hipster/back.svg",
  21233. extra: 1281 / 1196,
  21234. bottom: 0.01
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Micro",
  21241. height: math.unit(1, "mm")
  21242. },
  21243. {
  21244. name: "Normal",
  21245. height: math.unit(4, "inches"),
  21246. default: true
  21247. },
  21248. {
  21249. name: "Macro",
  21250. height: math.unit(500, "feet")
  21251. },
  21252. {
  21253. name: "Megamacro",
  21254. height: math.unit(1000, "miles")
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(6, "feet"),
  21263. weight: math.unit(150, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/tendirmuldr/front.svg",
  21267. extra: 1878 / 1772,
  21268. bottom: 0.015
  21269. }
  21270. },
  21271. },
  21272. [
  21273. {
  21274. name: "Megamacro",
  21275. height: math.unit(1500, "miles"),
  21276. default: true
  21277. },
  21278. ]
  21279. ))
  21280. characterMakers.push(() => makeCharacter(
  21281. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21282. {
  21283. front: {
  21284. height: math.unit(14, "feet"),
  21285. weight: math.unit(12000, "lb"),
  21286. name: "Front",
  21287. image: {
  21288. source: "./media/characters/mort/front.svg",
  21289. extra: 365 / 318,
  21290. bottom: 0.01
  21291. }
  21292. },
  21293. side: {
  21294. height: math.unit(14, "feet"),
  21295. weight: math.unit(12000, "lb"),
  21296. name: "Side",
  21297. image: {
  21298. source: "./media/characters/mort/side.svg",
  21299. extra: 365 / 318,
  21300. bottom: 0.052
  21301. },
  21302. default: true
  21303. },
  21304. back: {
  21305. height: math.unit(14, "feet"),
  21306. weight: math.unit(12000, "lb"),
  21307. name: "Back",
  21308. image: {
  21309. source: "./media/characters/mort/back.svg",
  21310. extra: 371 / 332,
  21311. bottom: 0.18
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Normal",
  21318. height: math.unit(14, "feet"),
  21319. default: true
  21320. },
  21321. ]
  21322. ))
  21323. characterMakers.push(() => makeCharacter(
  21324. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21325. {
  21326. front: {
  21327. height: math.unit(8, "feet"),
  21328. weight: math.unit(1, "ton"),
  21329. name: "Front",
  21330. image: {
  21331. source: "./media/characters/lycoa/front.svg",
  21332. extra: 1836/1728,
  21333. bottom: 81/1917
  21334. }
  21335. },
  21336. back: {
  21337. height: math.unit(8, "feet"),
  21338. weight: math.unit(1, "ton"),
  21339. name: "Back",
  21340. image: {
  21341. source: "./media/characters/lycoa/back.svg",
  21342. extra: 1785/1720,
  21343. bottom: 91/1876
  21344. }
  21345. },
  21346. head: {
  21347. height: math.unit(1.6243, "feet"),
  21348. name: "Head",
  21349. image: {
  21350. source: "./media/characters/lycoa/head.svg",
  21351. extra: 1011/782,
  21352. bottom: 0/1011
  21353. }
  21354. },
  21355. tailmaw: {
  21356. height: math.unit(1.9, "feet"),
  21357. name: "Tailmaw",
  21358. image: {
  21359. source: "./media/characters/lycoa/tailmaw.svg"
  21360. }
  21361. },
  21362. tentacles: {
  21363. height: math.unit(2.1, "feet"),
  21364. name: "Tentacles",
  21365. image: {
  21366. source: "./media/characters/lycoa/tentacles.svg"
  21367. }
  21368. },
  21369. dick: {
  21370. height: math.unit(1.73, "feet"),
  21371. name: "Dick",
  21372. image: {
  21373. source: "./media/characters/lycoa/dick.svg"
  21374. }
  21375. },
  21376. },
  21377. [
  21378. {
  21379. name: "Normal",
  21380. height: math.unit(8, "feet"),
  21381. default: true
  21382. },
  21383. {
  21384. name: "Macro",
  21385. height: math.unit(30, "feet")
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21391. {
  21392. front: {
  21393. height: math.unit(4 + 2 / 12, "feet"),
  21394. weight: math.unit(70, "lb"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/naldara/front.svg",
  21398. extra: 1664/1387,
  21399. bottom: 81/1745
  21400. },
  21401. form: "anthro",
  21402. default: true
  21403. },
  21404. naga: {
  21405. height: math.unit(20, "feet"),
  21406. weight: math.unit(15000, "kg"),
  21407. name: "Front",
  21408. image: {
  21409. source: "./media/characters/naldara/naga.svg",
  21410. extra: 1590/1396,
  21411. bottom: 285/1875
  21412. },
  21413. form: "naga",
  21414. default: true
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(4 + 2 / 12, "feet"),
  21421. form: "anthro",
  21422. default: true
  21423. },
  21424. {
  21425. name: "Normal",
  21426. height: math.unit(20, "feet"),
  21427. form: "naga",
  21428. default: true
  21429. },
  21430. ],
  21431. {
  21432. "anthro": {
  21433. name: "Anthro",
  21434. default: true
  21435. },
  21436. "naga": {
  21437. name: "Naga"
  21438. }
  21439. }
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21443. {
  21444. front: {
  21445. height: math.unit(13 + 7 / 12, "feet"),
  21446. weight: math.unit(1500, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/briar/front.svg",
  21450. extra: 1223/1157,
  21451. bottom: 123/1346
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(13 + 7 / 12, "feet"),
  21459. default: true
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21465. {
  21466. side: {
  21467. height: math.unit(16, "feet"),
  21468. weight: math.unit(500, "lb"),
  21469. name: "Side",
  21470. image: {
  21471. source: "./media/characters/vanguard/side.svg",
  21472. extra: 1022/914,
  21473. bottom: 30/1052
  21474. }
  21475. },
  21476. sideAlt: {
  21477. height: math.unit(10, "feet"),
  21478. weight: math.unit(500, "lb"),
  21479. name: "Side (Alt)",
  21480. image: {
  21481. source: "./media/characters/vanguard/side-alt.svg",
  21482. extra: 502 / 425,
  21483. bottom: 0.087
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(17.71, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(7.5, "feet"),
  21500. weight: math.unit(2, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/artemis/work-safe-front.svg",
  21504. extra: 1192 / 1075,
  21505. bottom: 0.07
  21506. },
  21507. form: "work-safe",
  21508. default: true
  21509. },
  21510. frontNsfw: {
  21511. height: math.unit(7.5, "feet"),
  21512. weight: math.unit(2, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/artemis/calibrating-front.svg",
  21516. extra: 1192 / 1075,
  21517. bottom: 0.07
  21518. },
  21519. form: "calibrating",
  21520. default: true
  21521. },
  21522. frontNsfwer: {
  21523. height: math.unit(7.5, "feet"),
  21524. weight: math.unit(2, "lb"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/artemis/oversize-load-front.svg",
  21528. extra: 1192 / 1075,
  21529. bottom: 0.07
  21530. },
  21531. form: "oversize-load",
  21532. default: true
  21533. },
  21534. side: {
  21535. height: math.unit(7.5, "feet"),
  21536. weight: math.unit(2, "lb"),
  21537. name: "Side",
  21538. image: {
  21539. source: "./media/characters/artemis/work-safe-side.svg",
  21540. extra: 1192 / 1075,
  21541. bottom: 0.07
  21542. },
  21543. form: "work-safe"
  21544. },
  21545. sideNsfw: {
  21546. height: math.unit(7.5, "feet"),
  21547. weight: math.unit(2, "lb"),
  21548. name: "Side",
  21549. image: {
  21550. source: "./media/characters/artemis/calibrating-side.svg",
  21551. extra: 1192 / 1075,
  21552. bottom: 0.07
  21553. },
  21554. form: "calibrating"
  21555. },
  21556. sideNsfwer: {
  21557. height: math.unit(7.5, "feet"),
  21558. weight: math.unit(2, "lb"),
  21559. name: "Side",
  21560. image: {
  21561. source: "./media/characters/artemis/oversize-load-side.svg",
  21562. extra: 1192 / 1075,
  21563. bottom: 0.07
  21564. },
  21565. form: "oversize-load"
  21566. },
  21567. maw: {
  21568. height: math.unit(1.1, "feet"),
  21569. name: "Maw",
  21570. image: {
  21571. source: "./media/characters/artemis/maw.svg"
  21572. },
  21573. form: "work-safe"
  21574. },
  21575. stomach: {
  21576. height: math.unit(0.95, "feet"),
  21577. name: "Stomach",
  21578. image: {
  21579. source: "./media/characters/artemis/stomach.svg"
  21580. },
  21581. form: "work-safe"
  21582. },
  21583. dickCanine: {
  21584. height: math.unit(1, "feet"),
  21585. name: "Dick (Canine)",
  21586. image: {
  21587. source: "./media/characters/artemis/dick-canine.svg"
  21588. },
  21589. form: "calibrating"
  21590. },
  21591. dickEquine: {
  21592. height: math.unit(0.85, "feet"),
  21593. name: "Dick (Equine)",
  21594. image: {
  21595. source: "./media/characters/artemis/dick-equine.svg"
  21596. },
  21597. form: "calibrating"
  21598. },
  21599. dickExotic: {
  21600. height: math.unit(0.85, "feet"),
  21601. name: "Dick (Exotic)",
  21602. image: {
  21603. source: "./media/characters/artemis/dick-exotic.svg"
  21604. },
  21605. form: "calibrating"
  21606. },
  21607. dickCanineBigger: {
  21608. height: math.unit(1 * 1.33, "feet"),
  21609. name: "Dick (Canine)",
  21610. image: {
  21611. source: "./media/characters/artemis/dick-canine.svg"
  21612. },
  21613. form: "oversize-load"
  21614. },
  21615. dickEquineBigger: {
  21616. height: math.unit(0.85 * 1.33, "feet"),
  21617. name: "Dick (Equine)",
  21618. image: {
  21619. source: "./media/characters/artemis/dick-equine.svg"
  21620. },
  21621. form: "oversize-load"
  21622. },
  21623. dickExoticBigger: {
  21624. height: math.unit(0.85 * 1.33, "feet"),
  21625. name: "Dick (Exotic)",
  21626. image: {
  21627. source: "./media/characters/artemis/dick-exotic.svg"
  21628. },
  21629. form: "oversize-load"
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(7.5, "feet"),
  21636. form: "work-safe",
  21637. default: true
  21638. },
  21639. {
  21640. name: "Normal",
  21641. height: math.unit(7.5, "feet"),
  21642. form: "calibrating",
  21643. default: true
  21644. },
  21645. {
  21646. name: "Normal",
  21647. height: math.unit(7.5, "feet"),
  21648. form: "oversize-load",
  21649. default: true
  21650. },
  21651. {
  21652. name: "Enlarged",
  21653. height: math.unit(12, "feet"),
  21654. form: "work-safe",
  21655. },
  21656. {
  21657. name: "Enlarged",
  21658. height: math.unit(12, "feet"),
  21659. form: "calibrating",
  21660. },
  21661. {
  21662. name: "Enlarged",
  21663. height: math.unit(12, "feet"),
  21664. form: "oversize-load",
  21665. },
  21666. ],
  21667. {
  21668. "work-safe": {
  21669. name: "Work-Safe",
  21670. default: true
  21671. },
  21672. "calibrating": {
  21673. name: "Calibrating"
  21674. },
  21675. "oversize-load": {
  21676. name: "Oversize Load"
  21677. }
  21678. }
  21679. ))
  21680. characterMakers.push(() => makeCharacter(
  21681. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21682. {
  21683. front: {
  21684. height: math.unit(5 + 3 / 12, "feet"),
  21685. weight: math.unit(160, "lb"),
  21686. name: "Front",
  21687. image: {
  21688. source: "./media/characters/kira/front.svg",
  21689. extra: 906 / 786,
  21690. bottom: 0.01
  21691. }
  21692. },
  21693. back: {
  21694. height: math.unit(5 + 3 / 12, "feet"),
  21695. weight: math.unit(160, "lb"),
  21696. name: "Back",
  21697. image: {
  21698. source: "./media/characters/kira/back.svg",
  21699. extra: 882 / 757,
  21700. bottom: 0.005
  21701. }
  21702. },
  21703. frontDressed: {
  21704. height: math.unit(5 + 3 / 12, "feet"),
  21705. weight: math.unit(160, "lb"),
  21706. name: "Front (Dressed)",
  21707. image: {
  21708. source: "./media/characters/kira/front-dressed.svg",
  21709. extra: 906 / 786,
  21710. bottom: 0.01
  21711. }
  21712. },
  21713. beans: {
  21714. height: math.unit(0.92, "feet"),
  21715. name: "Beans",
  21716. image: {
  21717. source: "./media/characters/kira/beans.svg"
  21718. }
  21719. },
  21720. },
  21721. [
  21722. {
  21723. name: "Normal",
  21724. height: math.unit(5 + 3 / 12, "feet"),
  21725. default: true
  21726. },
  21727. ]
  21728. ))
  21729. characterMakers.push(() => makeCharacter(
  21730. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21731. {
  21732. front: {
  21733. height: math.unit(5 + 4 / 12, "feet"),
  21734. weight: math.unit(145, "lb"),
  21735. name: "Front",
  21736. image: {
  21737. source: "./media/characters/scramble/front.svg",
  21738. extra: 763 / 727,
  21739. bottom: 0.05
  21740. }
  21741. },
  21742. back: {
  21743. height: math.unit(5 + 4 / 12, "feet"),
  21744. weight: math.unit(145, "lb"),
  21745. name: "Back",
  21746. image: {
  21747. source: "./media/characters/scramble/back.svg",
  21748. extra: 826 / 737,
  21749. bottom: 0.002
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(5 + 4 / 12, "feet"),
  21757. default: true
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21763. {
  21764. side: {
  21765. height: math.unit(6 + 2 / 12, "feet"),
  21766. weight: math.unit(190, "lb"),
  21767. name: "Side",
  21768. image: {
  21769. source: "./media/characters/biscuit/side.svg",
  21770. extra: 858 / 791,
  21771. bottom: 0.044
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Normal",
  21778. height: math.unit(6 + 2 / 12, "feet"),
  21779. default: true
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(5 + 2 / 12, "feet"),
  21788. weight: math.unit(120, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/poffin/front.svg",
  21792. extra: 786 / 680,
  21793. bottom: 0.005
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(5 + 2 / 12, "feet"),
  21801. default: true
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21807. {
  21808. front: {
  21809. height: math.unit(6 + 3 / 12, "feet"),
  21810. weight: math.unit(519, "lb"),
  21811. name: "Front",
  21812. image: {
  21813. source: "./media/characters/dhari/front.svg",
  21814. extra: 1048 / 946,
  21815. bottom: 0.015
  21816. }
  21817. },
  21818. back: {
  21819. height: math.unit(6 + 3 / 12, "feet"),
  21820. weight: math.unit(519, "lb"),
  21821. name: "Back",
  21822. image: {
  21823. source: "./media/characters/dhari/back.svg",
  21824. extra: 1048 / 931,
  21825. bottom: 0.005
  21826. }
  21827. },
  21828. frontDressed: {
  21829. height: math.unit(6 + 3 / 12, "feet"),
  21830. weight: math.unit(519, "lb"),
  21831. name: "Front (Dressed)",
  21832. image: {
  21833. source: "./media/characters/dhari/front-dressed.svg",
  21834. extra: 1713 / 1546,
  21835. bottom: 0.02
  21836. }
  21837. },
  21838. backDressed: {
  21839. height: math.unit(6 + 3 / 12, "feet"),
  21840. weight: math.unit(519, "lb"),
  21841. name: "Back (Dressed)",
  21842. image: {
  21843. source: "./media/characters/dhari/back-dressed.svg",
  21844. extra: 1699 / 1537,
  21845. bottom: 0.01
  21846. }
  21847. },
  21848. maw: {
  21849. height: math.unit(0.95, "feet"),
  21850. name: "Maw",
  21851. image: {
  21852. source: "./media/characters/dhari/maw.svg"
  21853. }
  21854. },
  21855. wereFront: {
  21856. height: math.unit(12 + 8 / 12, "feet"),
  21857. weight: math.unit(4000, "lb"),
  21858. name: "Front (Were)",
  21859. image: {
  21860. source: "./media/characters/dhari/were-front.svg",
  21861. extra: 1065 / 969,
  21862. bottom: 0.015
  21863. }
  21864. },
  21865. wereBack: {
  21866. height: math.unit(12 + 8 / 12, "feet"),
  21867. weight: math.unit(4000, "lb"),
  21868. name: "Back (Were)",
  21869. image: {
  21870. source: "./media/characters/dhari/were-back.svg",
  21871. extra: 1065 / 969,
  21872. bottom: 0.012
  21873. }
  21874. },
  21875. wereMaw: {
  21876. height: math.unit(0.625, "meters"),
  21877. name: "Maw (Were)",
  21878. image: {
  21879. source: "./media/characters/dhari/were-maw.svg"
  21880. }
  21881. },
  21882. },
  21883. [
  21884. {
  21885. name: "Normal",
  21886. height: math.unit(6 + 3 / 12, "feet"),
  21887. default: true
  21888. },
  21889. ]
  21890. ))
  21891. characterMakers.push(() => makeCharacter(
  21892. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21893. {
  21894. anthro: {
  21895. height: math.unit(5 + 7 / 12, "feet"),
  21896. weight: math.unit(175, "lb"),
  21897. name: "Anthro",
  21898. image: {
  21899. source: "./media/characters/rena-dyne/anthro.svg",
  21900. extra: 1849 / 1785,
  21901. bottom: 0.005
  21902. }
  21903. },
  21904. taur: {
  21905. height: math.unit(15 + 6 / 12, "feet"),
  21906. weight: math.unit(8000, "lb"),
  21907. name: "Taur",
  21908. image: {
  21909. source: "./media/characters/rena-dyne/taur.svg",
  21910. extra: 2315 / 2234,
  21911. bottom: 0.033
  21912. }
  21913. },
  21914. },
  21915. [
  21916. {
  21917. name: "Normal",
  21918. height: math.unit(5 + 7 / 12, "feet"),
  21919. default: true
  21920. },
  21921. ]
  21922. ))
  21923. characterMakers.push(() => makeCharacter(
  21924. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21925. {
  21926. front: {
  21927. height: math.unit(8, "feet"),
  21928. weight: math.unit(600, "lb"),
  21929. name: "Front",
  21930. image: {
  21931. source: "./media/characters/weremeep/front.svg",
  21932. extra: 970/849,
  21933. bottom: 7/977
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Normal",
  21940. height: math.unit(8, "feet"),
  21941. default: true
  21942. },
  21943. {
  21944. name: "Lorg",
  21945. height: math.unit(12, "feet")
  21946. },
  21947. {
  21948. name: "Oh Lawd She Comin'",
  21949. height: math.unit(20, "feet")
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21955. {
  21956. front: {
  21957. height: math.unit(4, "feet"),
  21958. weight: math.unit(90, "lb"),
  21959. name: "Front",
  21960. image: {
  21961. source: "./media/characters/reza/front.svg",
  21962. extra: 1183 / 1111,
  21963. bottom: 0.017
  21964. }
  21965. },
  21966. back: {
  21967. height: math.unit(4, "feet"),
  21968. weight: math.unit(90, "lb"),
  21969. name: "Back",
  21970. image: {
  21971. source: "./media/characters/reza/back.svg",
  21972. extra: 1183 / 1111,
  21973. bottom: 0.01
  21974. }
  21975. },
  21976. drake: {
  21977. height: math.unit(30, "feet"),
  21978. weight: math.unit(246960, "lb"),
  21979. name: "Drake",
  21980. image: {
  21981. source: "./media/characters/reza/drake.svg",
  21982. extra: 2350 / 2024,
  21983. bottom: 60.7 / 2403
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(4, "feet"),
  21991. default: true
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21997. {
  21998. side: {
  21999. height: math.unit(15, "feet"),
  22000. weight: math.unit(14, "tons"),
  22001. name: "Side",
  22002. image: {
  22003. source: "./media/characters/athea/side.svg",
  22004. extra: 960 / 540,
  22005. bottom: 0.003
  22006. }
  22007. },
  22008. sitting: {
  22009. height: math.unit(6 * 2.85, "feet"),
  22010. weight: math.unit(14, "tons"),
  22011. name: "Sitting",
  22012. image: {
  22013. source: "./media/characters/athea/sitting.svg",
  22014. extra: 621 / 581,
  22015. bottom: 0.075
  22016. }
  22017. },
  22018. maw: {
  22019. height: math.unit(7.59498031496063, "feet"),
  22020. name: "Maw",
  22021. image: {
  22022. source: "./media/characters/athea/maw.svg"
  22023. }
  22024. },
  22025. },
  22026. [
  22027. {
  22028. name: "Lap Cat",
  22029. height: math.unit(2.5, "feet")
  22030. },
  22031. {
  22032. name: "Minimacro",
  22033. height: math.unit(15, "feet"),
  22034. default: true
  22035. },
  22036. {
  22037. name: "Macro",
  22038. height: math.unit(120, "feet")
  22039. },
  22040. {
  22041. name: "Macro+",
  22042. height: math.unit(640, "feet")
  22043. },
  22044. {
  22045. name: "Colossus",
  22046. height: math.unit(2.2, "miles")
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22052. {
  22053. front: {
  22054. height: math.unit(8 + 8 / 12, "feet"),
  22055. weight: math.unit(130, "kg"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/seroko/front.svg",
  22059. extra: 1385 / 1280,
  22060. bottom: 0.025
  22061. }
  22062. },
  22063. back: {
  22064. height: math.unit(8 + 8 / 12, "feet"),
  22065. weight: math.unit(130, "kg"),
  22066. name: "Back",
  22067. image: {
  22068. source: "./media/characters/seroko/back.svg",
  22069. extra: 1369 / 1238,
  22070. bottom: 0.018
  22071. }
  22072. },
  22073. frontDressed: {
  22074. height: math.unit(8 + 8 / 12, "feet"),
  22075. weight: math.unit(130, "kg"),
  22076. name: "Front (Dressed)",
  22077. image: {
  22078. source: "./media/characters/seroko/front-dressed.svg",
  22079. extra: 1366 / 1275,
  22080. bottom: 0.03
  22081. }
  22082. },
  22083. },
  22084. [
  22085. {
  22086. name: "Normal",
  22087. height: math.unit(8 + 8 / 12, "feet"),
  22088. default: true
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22094. {
  22095. front: {
  22096. height: math.unit(5.5, "feet"),
  22097. weight: math.unit(160, "lb"),
  22098. name: "Front",
  22099. image: {
  22100. source: "./media/characters/quatzi/front.svg",
  22101. extra: 2346 / 2242,
  22102. bottom: 0.015
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Normal",
  22109. height: math.unit(5.5, "feet"),
  22110. default: true
  22111. },
  22112. {
  22113. name: "Big",
  22114. height: math.unit(7.7, "feet")
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22120. {
  22121. front: {
  22122. height: math.unit(5 + 11 / 12, "feet"),
  22123. weight: math.unit(180, "lb"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/sen/front.svg",
  22127. extra: 1321 / 1254,
  22128. bottom: 0.015
  22129. }
  22130. },
  22131. side: {
  22132. height: math.unit(5 + 11 / 12, "feet"),
  22133. weight: math.unit(180, "lb"),
  22134. name: "Side",
  22135. image: {
  22136. source: "./media/characters/sen/side.svg",
  22137. extra: 1321 / 1254,
  22138. bottom: 0.007
  22139. }
  22140. },
  22141. back: {
  22142. height: math.unit(5 + 11 / 12, "feet"),
  22143. weight: math.unit(180, "lb"),
  22144. name: "Back",
  22145. image: {
  22146. source: "./media/characters/sen/back.svg",
  22147. extra: 1321 / 1254
  22148. }
  22149. },
  22150. },
  22151. [
  22152. {
  22153. name: "Normal",
  22154. height: math.unit(5 + 11 / 12, "feet"),
  22155. default: true
  22156. },
  22157. ]
  22158. ))
  22159. characterMakers.push(() => makeCharacter(
  22160. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22161. {
  22162. front: {
  22163. height: math.unit(166.6, "cm"),
  22164. weight: math.unit(66.6, "kg"),
  22165. name: "Front",
  22166. image: {
  22167. source: "./media/characters/fruity/front.svg",
  22168. extra: 1510 / 1386,
  22169. bottom: 0.04
  22170. }
  22171. },
  22172. back: {
  22173. height: math.unit(166.6, "cm"),
  22174. weight: math.unit(66.6, "lb"),
  22175. name: "Back",
  22176. image: {
  22177. source: "./media/characters/fruity/back.svg",
  22178. extra: 1563 / 1435,
  22179. bottom: 0.005
  22180. }
  22181. },
  22182. },
  22183. [
  22184. {
  22185. name: "Normal",
  22186. height: math.unit(166.6, "cm"),
  22187. default: true
  22188. },
  22189. {
  22190. name: "Demonic",
  22191. height: math.unit(166.6, "feet")
  22192. },
  22193. ]
  22194. ))
  22195. characterMakers.push(() => makeCharacter(
  22196. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22197. {
  22198. side: {
  22199. height: math.unit(10, "feet"),
  22200. weight: math.unit(500, "lb"),
  22201. name: "Side",
  22202. image: {
  22203. source: "./media/characters/zost/side.svg",
  22204. extra: 2870/2533,
  22205. bottom: 252/3122
  22206. }
  22207. },
  22208. mawFront: {
  22209. height: math.unit(1.08, "meters"),
  22210. name: "Maw (Front)",
  22211. image: {
  22212. source: "./media/characters/zost/maw-front.svg"
  22213. }
  22214. },
  22215. mawSide: {
  22216. height: math.unit(2.66, "feet"),
  22217. name: "Maw (Side)",
  22218. image: {
  22219. source: "./media/characters/zost/maw-side.svg"
  22220. }
  22221. },
  22222. wingspan: {
  22223. height: math.unit(7.4, "feet"),
  22224. name: "Wingspan",
  22225. image: {
  22226. source: "./media/characters/zost/wingspan.svg"
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(10, "feet"),
  22234. default: true
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(5 + 4 / 12, "feet"),
  22243. weight: math.unit(120, "lb"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/luci/front.svg",
  22247. extra: 1985 / 1884,
  22248. bottom: 0.04
  22249. }
  22250. },
  22251. back: {
  22252. height: math.unit(5 + 4 / 12, "feet"),
  22253. weight: math.unit(120, "lb"),
  22254. name: "Back",
  22255. image: {
  22256. source: "./media/characters/luci/back.svg",
  22257. extra: 1892 / 1791,
  22258. bottom: 0.002
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Normal",
  22265. height: math.unit(5 + 4 / 12, "feet"),
  22266. default: true
  22267. },
  22268. ]
  22269. ))
  22270. characterMakers.push(() => makeCharacter(
  22271. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22272. {
  22273. front: {
  22274. height: math.unit(1500, "feet"),
  22275. weight: math.unit(3.8e6, "tons"),
  22276. name: "Front",
  22277. image: {
  22278. source: "./media/characters/2th/front.svg",
  22279. extra: 3489 / 3350,
  22280. bottom: 0.1
  22281. }
  22282. },
  22283. foot: {
  22284. height: math.unit(461, "feet"),
  22285. name: "Foot",
  22286. image: {
  22287. source: "./media/characters/2th/foot.svg"
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "\"Micro\"",
  22294. height: math.unit(15 + 7 / 12, "feet")
  22295. },
  22296. {
  22297. name: "Normal",
  22298. height: math.unit(1500, "feet"),
  22299. default: true
  22300. },
  22301. {
  22302. name: "Macro",
  22303. height: math.unit(5000, "feet")
  22304. },
  22305. {
  22306. name: "Megamacro",
  22307. height: math.unit(15, "miles")
  22308. },
  22309. {
  22310. name: "Gigamacro",
  22311. height: math.unit(4000, "miles")
  22312. },
  22313. {
  22314. name: "Galactic",
  22315. height: math.unit(50, "AU")
  22316. },
  22317. ]
  22318. ))
  22319. characterMakers.push(() => makeCharacter(
  22320. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22321. {
  22322. front: {
  22323. height: math.unit(5 + 6 / 12, "feet"),
  22324. weight: math.unit(220, "lb"),
  22325. name: "Front",
  22326. image: {
  22327. source: "./media/characters/amethyst/front.svg",
  22328. extra: 2078 / 2040,
  22329. bottom: 0.045
  22330. }
  22331. },
  22332. back: {
  22333. height: math.unit(5 + 6 / 12, "feet"),
  22334. weight: math.unit(220, "lb"),
  22335. name: "Back",
  22336. image: {
  22337. source: "./media/characters/amethyst/back.svg",
  22338. extra: 2021 / 1989,
  22339. bottom: 0.02
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Normal",
  22346. height: math.unit(5 + 6 / 12, "feet"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(4 + 11 / 12, "feet"),
  22356. weight: math.unit(120, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/yumi-akiyama/front.svg",
  22360. extra: 1327 / 1235,
  22361. bottom: 0.02
  22362. }
  22363. },
  22364. back: {
  22365. height: math.unit(4 + 11 / 12, "feet"),
  22366. weight: math.unit(120, "lb"),
  22367. name: "Back",
  22368. image: {
  22369. source: "./media/characters/yumi-akiyama/back.svg",
  22370. extra: 1287 / 1245,
  22371. bottom: 0.002
  22372. }
  22373. },
  22374. },
  22375. [
  22376. {
  22377. name: "Galactic",
  22378. height: math.unit(50, "galaxies"),
  22379. default: true
  22380. },
  22381. {
  22382. name: "Universal",
  22383. height: math.unit(100, "universes")
  22384. },
  22385. ]
  22386. ))
  22387. characterMakers.push(() => makeCharacter(
  22388. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22389. {
  22390. front: {
  22391. height: math.unit(8, "feet"),
  22392. weight: math.unit(500, "lb"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/rifter-yrmori/front.svg",
  22396. extra: 1180 / 1125,
  22397. bottom: 0.02
  22398. }
  22399. },
  22400. back: {
  22401. height: math.unit(8, "feet"),
  22402. weight: math.unit(500, "lb"),
  22403. name: "Back",
  22404. image: {
  22405. source: "./media/characters/rifter-yrmori/back.svg",
  22406. extra: 1190 / 1145,
  22407. bottom: 0.001
  22408. }
  22409. },
  22410. wings: {
  22411. height: math.unit(7.75, "feet"),
  22412. weight: math.unit(500, "lb"),
  22413. name: "Wings",
  22414. image: {
  22415. source: "./media/characters/rifter-yrmori/wings.svg",
  22416. extra: 1357 / 1285
  22417. }
  22418. },
  22419. maw: {
  22420. height: math.unit(0.8, "feet"),
  22421. name: "Maw",
  22422. image: {
  22423. source: "./media/characters/rifter-yrmori/maw.svg"
  22424. }
  22425. },
  22426. mawfront: {
  22427. height: math.unit(1.45, "feet"),
  22428. name: "Maw (Front)",
  22429. image: {
  22430. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(8, "feet"),
  22438. default: true
  22439. },
  22440. {
  22441. name: "Macro",
  22442. height: math.unit(42, "meters")
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22448. {
  22449. were: {
  22450. height: math.unit(25 + 6 / 12, "feet"),
  22451. weight: math.unit(10000, "lb"),
  22452. name: "Were",
  22453. image: {
  22454. source: "./media/characters/tahajin/were.svg",
  22455. extra: 801 / 770,
  22456. bottom: 0.042
  22457. }
  22458. },
  22459. aquatic: {
  22460. height: math.unit(6 + 4 / 12, "feet"),
  22461. weight: math.unit(160, "lb"),
  22462. name: "Aquatic",
  22463. image: {
  22464. source: "./media/characters/tahajin/aquatic.svg",
  22465. extra: 572 / 542,
  22466. bottom: 0.04
  22467. }
  22468. },
  22469. chow: {
  22470. height: math.unit(8 + 11 / 12, "feet"),
  22471. weight: math.unit(450, "lb"),
  22472. name: "Chow",
  22473. image: {
  22474. source: "./media/characters/tahajin/chow.svg",
  22475. extra: 660 / 640,
  22476. bottom: 0.015
  22477. }
  22478. },
  22479. demiNaga: {
  22480. height: math.unit(6 + 8 / 12, "feet"),
  22481. weight: math.unit(300, "lb"),
  22482. name: "Demi Naga",
  22483. image: {
  22484. source: "./media/characters/tahajin/demi-naga.svg",
  22485. extra: 643 / 615,
  22486. bottom: 0.1
  22487. }
  22488. },
  22489. data: {
  22490. height: math.unit(5, "inches"),
  22491. weight: math.unit(0.1, "lb"),
  22492. name: "Data",
  22493. image: {
  22494. source: "./media/characters/tahajin/data.svg"
  22495. }
  22496. },
  22497. fluu: {
  22498. height: math.unit(5 + 7 / 12, "feet"),
  22499. weight: math.unit(140, "lb"),
  22500. name: "Fluu",
  22501. image: {
  22502. source: "./media/characters/tahajin/fluu.svg",
  22503. extra: 628 / 592,
  22504. bottom: 0.02
  22505. }
  22506. },
  22507. starWarrior: {
  22508. height: math.unit(4 + 5 / 12, "feet"),
  22509. weight: math.unit(50, "lb"),
  22510. name: "Star Warrior",
  22511. image: {
  22512. source: "./media/characters/tahajin/star-warrior.svg"
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(25 + 6 / 12, "feet"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22526. {
  22527. front: {
  22528. height: math.unit(8, "feet"),
  22529. weight: math.unit(350, "lb"),
  22530. name: "Front",
  22531. image: {
  22532. source: "./media/characters/gabira/front.svg",
  22533. extra: 1261/1154,
  22534. bottom: 51/1312
  22535. }
  22536. },
  22537. back: {
  22538. height: math.unit(8, "feet"),
  22539. weight: math.unit(350, "lb"),
  22540. name: "Back",
  22541. image: {
  22542. source: "./media/characters/gabira/back.svg",
  22543. extra: 1265/1163,
  22544. bottom: 46/1311
  22545. }
  22546. },
  22547. head: {
  22548. height: math.unit(2.85, "feet"),
  22549. name: "Head",
  22550. image: {
  22551. source: "./media/characters/gabira/head.svg"
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Normal",
  22558. height: math.unit(8, "feet"),
  22559. default: true
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22565. {
  22566. front: {
  22567. height: math.unit(5 + 3 / 12, "feet"),
  22568. weight: math.unit(137, "lb"),
  22569. name: "Front",
  22570. image: {
  22571. source: "./media/characters/sasha-katraine/front.svg",
  22572. extra: 1745/1694,
  22573. bottom: 37/1782
  22574. }
  22575. },
  22576. back: {
  22577. height: math.unit(5 + 3 / 12, "feet"),
  22578. weight: math.unit(137, "lb"),
  22579. name: "Back",
  22580. image: {
  22581. source: "./media/characters/sasha-katraine/back.svg",
  22582. extra: 1776/1699,
  22583. bottom: 26/1802
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Micro",
  22590. height: math.unit(5, "inches")
  22591. },
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(5 + 3 / 12, "feet"),
  22595. default: true
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22601. {
  22602. side: {
  22603. height: math.unit(4, "inches"),
  22604. weight: math.unit(200, "grams"),
  22605. name: "Side",
  22606. image: {
  22607. source: "./media/characters/der/side.svg",
  22608. extra: 719 / 400,
  22609. bottom: 30.6 / 749.9187
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Micro",
  22616. height: math.unit(4, "inches"),
  22617. default: true
  22618. },
  22619. ]
  22620. ))
  22621. characterMakers.push(() => makeCharacter(
  22622. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22623. {
  22624. side: {
  22625. height: math.unit(30, "meters"),
  22626. weight: math.unit(700, "tonnes"),
  22627. name: "Side",
  22628. image: {
  22629. source: "./media/characters/fixerdragon/side.svg",
  22630. extra: (1293.0514 - 116.03) / 1106.86,
  22631. bottom: 116.03 / 1293.0514
  22632. }
  22633. },
  22634. },
  22635. [
  22636. {
  22637. name: "Planck",
  22638. height: math.unit(1.6e-35, "meters")
  22639. },
  22640. {
  22641. name: "Micro",
  22642. height: math.unit(0.4, "meters")
  22643. },
  22644. {
  22645. name: "Normal",
  22646. height: math.unit(30, "meters"),
  22647. default: true
  22648. },
  22649. {
  22650. name: "Megamacro",
  22651. height: math.unit(1.2, "megameters")
  22652. },
  22653. {
  22654. name: "Teramacro",
  22655. height: math.unit(130, "terameters")
  22656. },
  22657. {
  22658. name: "Yottamacro",
  22659. height: math.unit(6200, "yottameters")
  22660. },
  22661. ]
  22662. ));
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22665. {
  22666. front: {
  22667. height: math.unit(8, "feet"),
  22668. weight: math.unit(250, "lb"),
  22669. name: "Front",
  22670. image: {
  22671. source: "./media/characters/kite/front.svg",
  22672. extra: 2796 / 2659,
  22673. bottom: 0.002
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Normal",
  22680. height: math.unit(8, "feet"),
  22681. default: true
  22682. },
  22683. {
  22684. name: "Macro",
  22685. height: math.unit(360, "feet")
  22686. },
  22687. {
  22688. name: "Megamacro",
  22689. height: math.unit(1500, "feet")
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22695. {
  22696. front: {
  22697. height: math.unit(5 + 11/12, "feet"),
  22698. weight: math.unit(170, "lb"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/poojawa-vynar/front.svg",
  22702. extra: 1735/1585,
  22703. bottom: 96/1831
  22704. }
  22705. },
  22706. back: {
  22707. height: math.unit(5 + 11/12, "feet"),
  22708. weight: math.unit(170, "lb"),
  22709. name: "Back",
  22710. image: {
  22711. source: "./media/characters/poojawa-vynar/back.svg",
  22712. extra: 1749/1607,
  22713. bottom: 28/1777
  22714. }
  22715. },
  22716. male: {
  22717. height: math.unit(5 + 11/12, "feet"),
  22718. weight: math.unit(170, "lb"),
  22719. name: "Male",
  22720. image: {
  22721. source: "./media/characters/poojawa-vynar/male.svg",
  22722. extra: 1855/1713,
  22723. bottom: 63/1918
  22724. }
  22725. },
  22726. taur: {
  22727. height: math.unit(5 + 11/12, "feet"),
  22728. weight: math.unit(170, "lb"),
  22729. name: "Taur",
  22730. image: {
  22731. source: "./media/characters/poojawa-vynar/taur.svg",
  22732. extra: 1151/1059,
  22733. bottom: 356/1507
  22734. }
  22735. },
  22736. frontDressed: {
  22737. height: math.unit(5 + 11/12, "feet"),
  22738. weight: math.unit(170, "lb"),
  22739. name: "Front (Dressed)",
  22740. image: {
  22741. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22742. extra: 1735/1585,
  22743. bottom: 96/1831
  22744. }
  22745. },
  22746. backDressed: {
  22747. height: math.unit(5 + 11/12, "feet"),
  22748. weight: math.unit(170, "lb"),
  22749. name: "Back (Dressed)",
  22750. image: {
  22751. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22752. extra: 1749/1607,
  22753. bottom: 28/1777
  22754. }
  22755. },
  22756. maleDressed: {
  22757. height: math.unit(5 + 11/12, "feet"),
  22758. weight: math.unit(170, "lb"),
  22759. name: "Male (Dressed)",
  22760. image: {
  22761. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22762. extra: 1855/1713,
  22763. bottom: 63/1918
  22764. }
  22765. },
  22766. taurDressed: {
  22767. height: math.unit(5 + 11/12, "feet"),
  22768. weight: math.unit(170, "lb"),
  22769. name: "Taur (Dressed)",
  22770. image: {
  22771. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22772. extra: 1151/1059,
  22773. bottom: 356/1507
  22774. }
  22775. },
  22776. maw: {
  22777. height: math.unit(1.46, "feet"),
  22778. name: "Maw",
  22779. image: {
  22780. source: "./media/characters/poojawa-vynar/maw.svg"
  22781. }
  22782. },
  22783. head: {
  22784. height: math.unit(2.34, "feet"),
  22785. name: "Head",
  22786. image: {
  22787. source: "./media/characters/poojawa-vynar/head.svg"
  22788. }
  22789. },
  22790. paw: {
  22791. height: math.unit(1.61, "feet"),
  22792. name: "Paw",
  22793. image: {
  22794. source: "./media/characters/poojawa-vynar/paw.svg"
  22795. }
  22796. },
  22797. pawToering: {
  22798. height: math.unit(1.72, "feet"),
  22799. name: "Paw (Toering)",
  22800. image: {
  22801. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22802. }
  22803. },
  22804. toering: {
  22805. height: math.unit(2.9, "inches"),
  22806. name: "Toering",
  22807. image: {
  22808. source: "./media/characters/poojawa-vynar/toering.svg"
  22809. }
  22810. },
  22811. shaft: {
  22812. height: math.unit(0.625, "feet"),
  22813. name: "Shaft",
  22814. image: {
  22815. source: "./media/characters/poojawa-vynar/shaft.svg"
  22816. }
  22817. },
  22818. spade: {
  22819. height: math.unit(0.42, "feet"),
  22820. name: "Spade",
  22821. image: {
  22822. source: "./media/characters/poojawa-vynar/spade.svg"
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Shortstack",
  22829. height: math.unit(4, "feet")
  22830. },
  22831. {
  22832. name: "Normal",
  22833. height: math.unit(5 + 11 / 12, "feet"),
  22834. default: true
  22835. },
  22836. {
  22837. name: "Tauric",
  22838. height: math.unit(4, "meters")
  22839. },
  22840. ]
  22841. ))
  22842. characterMakers.push(() => makeCharacter(
  22843. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22844. {
  22845. front: {
  22846. height: math.unit(293, "meters"),
  22847. weight: math.unit(70400, "tons"),
  22848. name: "Front",
  22849. image: {
  22850. source: "./media/characters/violette/front.svg",
  22851. extra: 1227 / 1180,
  22852. bottom: 0.005
  22853. }
  22854. },
  22855. back: {
  22856. height: math.unit(293, "meters"),
  22857. weight: math.unit(70400, "tons"),
  22858. name: "Back",
  22859. image: {
  22860. source: "./media/characters/violette/back.svg",
  22861. extra: 1227 / 1180,
  22862. bottom: 0.005
  22863. }
  22864. },
  22865. },
  22866. [
  22867. {
  22868. name: "Macro",
  22869. height: math.unit(293, "meters"),
  22870. default: true
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22876. {
  22877. front: {
  22878. height: math.unit(1050, "feet"),
  22879. weight: math.unit(200000, "tons"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/alessandra/front.svg",
  22883. extra: 960 / 912,
  22884. bottom: 0.06
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Macro",
  22891. height: math.unit(1050, "feet")
  22892. },
  22893. {
  22894. name: "Macro+",
  22895. height: math.unit(900, "meters"),
  22896. default: true
  22897. },
  22898. ]
  22899. ))
  22900. characterMakers.push(() => makeCharacter(
  22901. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22902. {
  22903. front: {
  22904. height: math.unit(5, "feet"),
  22905. weight: math.unit(187, "lb"),
  22906. name: "Front",
  22907. image: {
  22908. source: "./media/characters/person/front.svg",
  22909. extra: 3087 / 2945,
  22910. bottom: 91 / 3181
  22911. }
  22912. },
  22913. },
  22914. [
  22915. {
  22916. name: "Micro",
  22917. height: math.unit(3, "inches")
  22918. },
  22919. {
  22920. name: "Normal",
  22921. height: math.unit(5, "feet"),
  22922. default: true
  22923. },
  22924. {
  22925. name: "Macro",
  22926. height: math.unit(90, "feet")
  22927. },
  22928. {
  22929. name: "Max Size",
  22930. height: math.unit(280, "feet")
  22931. },
  22932. ]
  22933. ))
  22934. characterMakers.push(() => makeCharacter(
  22935. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22936. {
  22937. front: {
  22938. height: math.unit(4.5, "meters"),
  22939. weight: math.unit(3200, "lb"),
  22940. name: "Front",
  22941. image: {
  22942. source: "./media/characters/ty/front.svg",
  22943. extra: 1038 / 960,
  22944. bottom: 31.156 / 1068
  22945. }
  22946. },
  22947. back: {
  22948. height: math.unit(4.5, "meters"),
  22949. weight: math.unit(3200, "lb"),
  22950. name: "Back",
  22951. image: {
  22952. source: "./media/characters/ty/back.svg",
  22953. extra: 1044 / 966,
  22954. bottom: 7.48 / 1049
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Normal",
  22961. height: math.unit(4.5, "meters"),
  22962. default: true
  22963. },
  22964. ]
  22965. ))
  22966. characterMakers.push(() => makeCharacter(
  22967. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22968. {
  22969. front: {
  22970. height: math.unit(5 + 4 / 12, "feet"),
  22971. weight: math.unit(115, "lb"),
  22972. name: "Front",
  22973. image: {
  22974. source: "./media/characters/rocky/front.svg",
  22975. extra: 1012 / 975,
  22976. bottom: 54 / 1066
  22977. }
  22978. },
  22979. },
  22980. [
  22981. {
  22982. name: "Normal",
  22983. height: math.unit(5 + 4 / 12, "feet"),
  22984. default: true
  22985. },
  22986. ]
  22987. ))
  22988. characterMakers.push(() => makeCharacter(
  22989. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22990. {
  22991. upright: {
  22992. height: math.unit(6, "meters"),
  22993. weight: math.unit(4000, "kg"),
  22994. name: "Upright",
  22995. image: {
  22996. source: "./media/characters/ruin/upright.svg",
  22997. extra: 668 / 661,
  22998. bottom: 42 / 799.8396
  22999. }
  23000. },
  23001. },
  23002. [
  23003. {
  23004. name: "Normal",
  23005. height: math.unit(6, "meters"),
  23006. default: true
  23007. },
  23008. ]
  23009. ))
  23010. characterMakers.push(() => makeCharacter(
  23011. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23012. {
  23013. front: {
  23014. height: math.unit(5, "feet"),
  23015. weight: math.unit(106, "lb"),
  23016. name: "Front",
  23017. image: {
  23018. source: "./media/characters/robin/front.svg",
  23019. extra: 862 / 799,
  23020. bottom: 42.4 / 914.8856
  23021. }
  23022. },
  23023. },
  23024. [
  23025. {
  23026. name: "Normal",
  23027. height: math.unit(5, "feet"),
  23028. default: true
  23029. },
  23030. ]
  23031. ))
  23032. characterMakers.push(() => makeCharacter(
  23033. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23034. {
  23035. side: {
  23036. height: math.unit(3, "feet"),
  23037. weight: math.unit(225, "lb"),
  23038. name: "Side",
  23039. image: {
  23040. source: "./media/characters/saian/side.svg",
  23041. extra: 566 / 356,
  23042. bottom: 79.7 / 643
  23043. }
  23044. },
  23045. maw: {
  23046. height: math.unit(2.85, "feet"),
  23047. name: "Maw",
  23048. image: {
  23049. source: "./media/characters/saian/maw.svg"
  23050. }
  23051. },
  23052. },
  23053. [
  23054. {
  23055. name: "Normal",
  23056. height: math.unit(3, "feet"),
  23057. default: true
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23063. {
  23064. side: {
  23065. height: math.unit(8, "feet"),
  23066. weight: math.unit(300, "lb"),
  23067. name: "Side",
  23068. image: {
  23069. source: "./media/characters/equus-silvermane/side.svg",
  23070. extra: 2176 / 2050,
  23071. bottom: 65.7 / 2245
  23072. }
  23073. },
  23074. front: {
  23075. height: math.unit(8, "feet"),
  23076. weight: math.unit(300, "lb"),
  23077. name: "Front",
  23078. image: {
  23079. source: "./media/characters/equus-silvermane/front.svg",
  23080. extra: 4633 / 4400,
  23081. bottom: 71.3 / 4706.915
  23082. }
  23083. },
  23084. sideStepping: {
  23085. height: math.unit(8, "feet"),
  23086. weight: math.unit(300, "lb"),
  23087. name: "Side (Stepping)",
  23088. image: {
  23089. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23090. extra: 1968 / 1860,
  23091. bottom: 16.4 / 1989
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Normal",
  23098. height: math.unit(8, "feet")
  23099. },
  23100. {
  23101. name: "Minimacro",
  23102. height: math.unit(75, "feet"),
  23103. default: true
  23104. },
  23105. {
  23106. name: "Macro",
  23107. height: math.unit(150, "feet")
  23108. },
  23109. {
  23110. name: "Macro+",
  23111. height: math.unit(1000, "feet")
  23112. },
  23113. {
  23114. name: "Megamacro",
  23115. height: math.unit(1, "mile")
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23121. {
  23122. side: {
  23123. height: math.unit(20, "feet"),
  23124. weight: math.unit(30000, "kg"),
  23125. name: "Side",
  23126. image: {
  23127. source: "./media/characters/windar/side.svg",
  23128. extra: 1491 / 1248,
  23129. bottom: 82.56 / 1568
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Normal",
  23136. height: math.unit(20, "feet"),
  23137. default: true
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23143. {
  23144. side: {
  23145. height: math.unit(15.66, "feet"),
  23146. weight: math.unit(150, "lb"),
  23147. name: "Side",
  23148. image: {
  23149. source: "./media/characters/melody/side.svg",
  23150. extra: 1097 / 944,
  23151. bottom: 11.8 / 1109
  23152. }
  23153. },
  23154. sideOutfit: {
  23155. height: math.unit(15.66, "feet"),
  23156. weight: math.unit(150, "lb"),
  23157. name: "Side (Outfit)",
  23158. image: {
  23159. source: "./media/characters/melody/side-outfit.svg",
  23160. extra: 1097 / 944,
  23161. bottom: 11.8 / 1109
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(15.66, "feet"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23175. {
  23176. armoredFront: {
  23177. height: math.unit(8, "feet"),
  23178. weight: math.unit(325, "lb"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/windera/armored-front.svg",
  23182. extra: 1830/1598,
  23183. bottom: 151/1981
  23184. },
  23185. form: "armored",
  23186. default: true
  23187. },
  23188. macroFront: {
  23189. height: math.unit(70, "feet"),
  23190. weight: math.unit(315453, "lb"),
  23191. name: "Front",
  23192. image: {
  23193. source: "./media/characters/windera/macro-front.svg",
  23194. extra: 963/883,
  23195. bottom: 23/986
  23196. },
  23197. form: "macro",
  23198. default: true
  23199. },
  23200. },
  23201. [
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(8, "feet"),
  23205. default: true,
  23206. form: "armored"
  23207. },
  23208. {
  23209. name: "Normal",
  23210. height: math.unit(70, "feet"),
  23211. default: true,
  23212. form: "macro"
  23213. },
  23214. ],
  23215. {
  23216. "armored": {
  23217. name: "Armored",
  23218. default: true
  23219. },
  23220. "macro": {
  23221. name: "Macro",
  23222. },
  23223. }
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23227. {
  23228. front: {
  23229. height: math.unit(28.75, "feet"),
  23230. weight: math.unit(2000, "kg"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/sonear/front.svg",
  23234. extra: 1041.1 / 964.9,
  23235. bottom: 53.7 / 1096.6
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(28.75, "feet"),
  23243. default: true
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23249. {
  23250. side: {
  23251. height: math.unit(25.5, "feet"),
  23252. weight: math.unit(23000, "kg"),
  23253. name: "Side",
  23254. image: {
  23255. source: "./media/characters/kanara/side.svg"
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(25.5, "feet"),
  23263. default: true
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23269. {
  23270. side: {
  23271. height: math.unit(10, "feet"),
  23272. weight: math.unit(1000, "kg"),
  23273. name: "Side",
  23274. image: {
  23275. source: "./media/characters/ereus/side.svg",
  23276. extra: 1157 / 959,
  23277. bottom: 153 / 1312.5
  23278. }
  23279. },
  23280. },
  23281. [
  23282. {
  23283. name: "Normal",
  23284. height: math.unit(10, "feet"),
  23285. default: true
  23286. },
  23287. ]
  23288. ))
  23289. characterMakers.push(() => makeCharacter(
  23290. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23291. {
  23292. side: {
  23293. height: math.unit(4.5, "feet"),
  23294. weight: math.unit(500, "lb"),
  23295. name: "Side",
  23296. image: {
  23297. source: "./media/characters/e-ter/side.svg",
  23298. extra: 1550 / 1248,
  23299. bottom: 146 / 1694
  23300. }
  23301. },
  23302. },
  23303. [
  23304. {
  23305. name: "Normal",
  23306. height: math.unit(4.5, "feet"),
  23307. default: true
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23313. {
  23314. side: {
  23315. height: math.unit(9.7, "feet"),
  23316. weight: math.unit(4000, "kg"),
  23317. name: "Side",
  23318. image: {
  23319. source: "./media/characters/yamie/side.svg"
  23320. }
  23321. },
  23322. },
  23323. [
  23324. {
  23325. name: "Normal",
  23326. height: math.unit(9.7, "feet"),
  23327. default: true
  23328. },
  23329. ]
  23330. ))
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23333. {
  23334. front: {
  23335. height: math.unit(50, "feet"),
  23336. weight: math.unit(50000, "kg"),
  23337. name: "Front",
  23338. image: {
  23339. source: "./media/characters/anders/front.svg",
  23340. extra: 570 / 539,
  23341. bottom: 14.7 / 586.7
  23342. }
  23343. },
  23344. },
  23345. [
  23346. {
  23347. name: "Large",
  23348. height: math.unit(50, "feet")
  23349. },
  23350. {
  23351. name: "Macro",
  23352. height: math.unit(2000, "feet"),
  23353. default: true
  23354. },
  23355. {
  23356. name: "Megamacro",
  23357. height: math.unit(12, "miles")
  23358. },
  23359. ]
  23360. ))
  23361. characterMakers.push(() => makeCharacter(
  23362. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23363. {
  23364. front: {
  23365. height: math.unit(7 + 2 / 12, "feet"),
  23366. weight: math.unit(300, "lb"),
  23367. name: "Front",
  23368. image: {
  23369. source: "./media/characters/reban/front.svg",
  23370. extra: 1287/1212,
  23371. bottom: 148/1435
  23372. }
  23373. },
  23374. head: {
  23375. height: math.unit(1.95, "feet"),
  23376. name: "Head",
  23377. image: {
  23378. source: "./media/characters/reban/head.svg"
  23379. }
  23380. },
  23381. maw: {
  23382. height: math.unit(0.95, "feet"),
  23383. name: "Maw",
  23384. image: {
  23385. source: "./media/characters/reban/maw.svg"
  23386. }
  23387. },
  23388. foot: {
  23389. height: math.unit(1.65, "feet"),
  23390. name: "Foot",
  23391. image: {
  23392. source: "./media/characters/reban/foot.svg"
  23393. }
  23394. },
  23395. dick: {
  23396. height: math.unit(7 / 5, "feet"),
  23397. name: "Dick",
  23398. image: {
  23399. source: "./media/characters/reban/dick.svg"
  23400. }
  23401. },
  23402. },
  23403. [
  23404. {
  23405. name: "Natural Height",
  23406. height: math.unit(7 + 2 / 12, "feet")
  23407. },
  23408. {
  23409. name: "Macro",
  23410. height: math.unit(500, "feet"),
  23411. default: true
  23412. },
  23413. {
  23414. name: "Canon Height",
  23415. height: math.unit(50, "AU")
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23421. {
  23422. front: {
  23423. height: math.unit(6, "feet"),
  23424. weight: math.unit(150, "lb"),
  23425. name: "Front",
  23426. image: {
  23427. source: "./media/characters/terrance-keayes/front.svg",
  23428. extra: 1.005,
  23429. bottom: 151 / 1615
  23430. }
  23431. },
  23432. side: {
  23433. height: math.unit(6, "feet"),
  23434. weight: math.unit(150, "lb"),
  23435. name: "Side",
  23436. image: {
  23437. source: "./media/characters/terrance-keayes/side.svg",
  23438. extra: 1.005,
  23439. bottom: 129.4 / 1544
  23440. }
  23441. },
  23442. back: {
  23443. height: math.unit(6, "feet"),
  23444. weight: math.unit(150, "lb"),
  23445. name: "Back",
  23446. image: {
  23447. source: "./media/characters/terrance-keayes/back.svg",
  23448. extra: 1.005,
  23449. bottom: 58.4 / 1557.3
  23450. }
  23451. },
  23452. dick: {
  23453. height: math.unit(6 * 0.208, "feet"),
  23454. name: "Dick",
  23455. image: {
  23456. source: "./media/characters/terrance-keayes/dick.svg"
  23457. }
  23458. },
  23459. },
  23460. [
  23461. {
  23462. name: "Canon Height",
  23463. height: math.unit(35, "miles"),
  23464. default: true
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23470. {
  23471. front: {
  23472. height: math.unit(6, "feet"),
  23473. weight: math.unit(150, "lb"),
  23474. name: "Front",
  23475. image: {
  23476. source: "./media/characters/ofelia/front.svg",
  23477. extra: 1130/1117,
  23478. bottom: 91/1221
  23479. }
  23480. },
  23481. back: {
  23482. height: math.unit(6, "feet"),
  23483. weight: math.unit(150, "lb"),
  23484. name: "Back",
  23485. image: {
  23486. source: "./media/characters/ofelia/back.svg",
  23487. extra: 1172/1159,
  23488. bottom: 28/1200
  23489. }
  23490. },
  23491. maw: {
  23492. height: math.unit(1, "feet"),
  23493. name: "Maw",
  23494. image: {
  23495. source: "./media/characters/ofelia/maw.svg"
  23496. }
  23497. },
  23498. foot: {
  23499. height: math.unit(1.949, "feet"),
  23500. name: "Foot",
  23501. image: {
  23502. source: "./media/characters/ofelia/foot.svg"
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Canon Height",
  23509. height: math.unit(2000, "miles"),
  23510. default: true
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(6, "feet"),
  23519. weight: math.unit(150, "lb"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/samuel/front.svg",
  23523. extra: 265 / 258,
  23524. bottom: 2 / 266.1566
  23525. }
  23526. },
  23527. },
  23528. [
  23529. {
  23530. name: "Macro",
  23531. height: math.unit(100, "feet"),
  23532. default: true
  23533. },
  23534. {
  23535. name: "Full Size",
  23536. height: math.unit(1000, "miles")
  23537. },
  23538. ]
  23539. ))
  23540. characterMakers.push(() => makeCharacter(
  23541. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23542. {
  23543. front: {
  23544. height: math.unit(6, "feet"),
  23545. weight: math.unit(300, "lb"),
  23546. name: "Front",
  23547. image: {
  23548. source: "./media/characters/beishir-kiel/front.svg",
  23549. extra: 569 / 547,
  23550. bottom: 41.9 / 609
  23551. }
  23552. },
  23553. maw: {
  23554. height: math.unit(6 * 0.202, "feet"),
  23555. name: "Maw",
  23556. image: {
  23557. source: "./media/characters/beishir-kiel/maw.svg"
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Macro",
  23564. height: math.unit(300, "feet"),
  23565. default: true
  23566. },
  23567. ]
  23568. ))
  23569. characterMakers.push(() => makeCharacter(
  23570. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23571. {
  23572. front: {
  23573. height: math.unit(5 + 7/12, "feet"),
  23574. weight: math.unit(120, "lb"),
  23575. name: "Front",
  23576. image: {
  23577. source: "./media/characters/logan-grey/front.svg",
  23578. extra: 1836/1738,
  23579. bottom: 108/1944
  23580. }
  23581. },
  23582. back: {
  23583. height: math.unit(5 + 7/12, "feet"),
  23584. weight: math.unit(120, "lb"),
  23585. name: "Back",
  23586. image: {
  23587. source: "./media/characters/logan-grey/back.svg",
  23588. extra: 1880/1794,
  23589. bottom: 24/1904
  23590. }
  23591. },
  23592. frontSfw: {
  23593. height: math.unit(5 + 7/12, "feet"),
  23594. weight: math.unit(120, "lb"),
  23595. name: "Front (SFW)",
  23596. image: {
  23597. source: "./media/characters/logan-grey/front-sfw.svg",
  23598. extra: 1836/1738,
  23599. bottom: 108/1944
  23600. }
  23601. },
  23602. backSfw: {
  23603. height: math.unit(5 + 7/12, "feet"),
  23604. weight: math.unit(120, "lb"),
  23605. name: "Back (SFW)",
  23606. image: {
  23607. source: "./media/characters/logan-grey/back-sfw.svg",
  23608. extra: 1880/1794,
  23609. bottom: 24/1904
  23610. }
  23611. },
  23612. hands: {
  23613. height: math.unit(0.84, "feet"),
  23614. name: "Hands",
  23615. image: {
  23616. source: "./media/characters/logan-grey/hands.svg"
  23617. }
  23618. },
  23619. paws: {
  23620. height: math.unit(0.72, "feet"),
  23621. name: "Paws",
  23622. image: {
  23623. source: "./media/characters/logan-grey/paws.svg"
  23624. }
  23625. },
  23626. cock: {
  23627. height: math.unit(1.45, "feet"),
  23628. name: "Cock",
  23629. image: {
  23630. source: "./media/characters/logan-grey/cock.svg"
  23631. }
  23632. },
  23633. cockAlt: {
  23634. height: math.unit(1.437, "feet"),
  23635. name: "Cock (alt)",
  23636. image: {
  23637. source: "./media/characters/logan-grey/cock-alt.svg"
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Normal",
  23644. height: math.unit(5 + 8 / 12, "feet")
  23645. },
  23646. {
  23647. name: "The 500 Foot Femboy",
  23648. height: math.unit(500, "feet"),
  23649. default: true
  23650. },
  23651. {
  23652. name: "Megmacro",
  23653. height: math.unit(20, "miles")
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23659. {
  23660. front: {
  23661. height: math.unit(8 + 2 / 12, "feet"),
  23662. weight: math.unit(275, "lb"),
  23663. name: "Front",
  23664. image: {
  23665. source: "./media/characters/draganta/front.svg",
  23666. extra: 1177 / 1135,
  23667. bottom: 33.46 / 1212.1
  23668. }
  23669. },
  23670. },
  23671. [
  23672. {
  23673. name: "Normal",
  23674. height: math.unit(8 + 6 / 12, "feet"),
  23675. default: true
  23676. },
  23677. {
  23678. name: "Macro",
  23679. height: math.unit(150, "feet")
  23680. },
  23681. {
  23682. name: "Megamacro",
  23683. height: math.unit(1000, "miles")
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(1.72, "m"),
  23692. weight: math.unit(80, "lb"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/voski/front.svg",
  23696. extra: 2076.22 / 2022.4,
  23697. bottom: 102.7 / 2177.3866
  23698. }
  23699. },
  23700. frontFlaccid: {
  23701. height: math.unit(1.72, "m"),
  23702. weight: math.unit(80, "lb"),
  23703. name: "Front (Flaccid)",
  23704. image: {
  23705. source: "./media/characters/voski/front-flaccid.svg",
  23706. extra: 2076.22 / 2022.4,
  23707. bottom: 102.7 / 2177.3866
  23708. }
  23709. },
  23710. frontErect: {
  23711. height: math.unit(1.72, "m"),
  23712. weight: math.unit(80, "lb"),
  23713. name: "Front (Erect)",
  23714. image: {
  23715. source: "./media/characters/voski/front-erect.svg",
  23716. extra: 2076.22 / 2022.4,
  23717. bottom: 102.7 / 2177.3866
  23718. }
  23719. },
  23720. back: {
  23721. height: math.unit(1.72, "m"),
  23722. weight: math.unit(80, "lb"),
  23723. name: "Back",
  23724. image: {
  23725. source: "./media/characters/voski/back.svg",
  23726. extra: 2104 / 2051,
  23727. bottom: 10.45 / 2113.63
  23728. }
  23729. },
  23730. },
  23731. [
  23732. {
  23733. name: "Normal",
  23734. height: math.unit(1.72, "m")
  23735. },
  23736. {
  23737. name: "Macro",
  23738. height: math.unit(55, "m"),
  23739. default: true
  23740. },
  23741. {
  23742. name: "Macro+",
  23743. height: math.unit(300, "m")
  23744. },
  23745. {
  23746. name: "Macro++",
  23747. height: math.unit(700, "m")
  23748. },
  23749. {
  23750. name: "Macro+++",
  23751. height: math.unit(4500, "m")
  23752. },
  23753. {
  23754. name: "Macro++++",
  23755. height: math.unit(45, "km")
  23756. },
  23757. {
  23758. name: "Macro+++++",
  23759. height: math.unit(1220, "km")
  23760. },
  23761. ]
  23762. ))
  23763. characterMakers.push(() => makeCharacter(
  23764. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23765. {
  23766. front: {
  23767. height: math.unit(2.3, "m"),
  23768. weight: math.unit(304, "kg"),
  23769. name: "Front",
  23770. image: {
  23771. source: "./media/characters/icowom-lee/front.svg",
  23772. extra: 985 / 955,
  23773. bottom: 25.4 / 1012
  23774. }
  23775. },
  23776. fronttentacles: {
  23777. height: math.unit(2.3, "m"),
  23778. weight: math.unit(304, "kg"),
  23779. name: "Front-tentacles",
  23780. image: {
  23781. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23782. extra: 985 / 955,
  23783. bottom: 25.4 / 1012
  23784. }
  23785. },
  23786. back: {
  23787. height: math.unit(2.3, "m"),
  23788. weight: math.unit(304, "kg"),
  23789. name: "Back",
  23790. image: {
  23791. source: "./media/characters/icowom-lee/back.svg",
  23792. extra: 975 / 954,
  23793. bottom: 9.5 / 985
  23794. }
  23795. },
  23796. backtentacles: {
  23797. height: math.unit(2.3, "m"),
  23798. weight: math.unit(304, "kg"),
  23799. name: "Back-tentacles",
  23800. image: {
  23801. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23802. extra: 975 / 954,
  23803. bottom: 9.5 / 985
  23804. }
  23805. },
  23806. frontDressed: {
  23807. height: math.unit(2.3, "m"),
  23808. weight: math.unit(304, "kg"),
  23809. name: "Front (Dressed)",
  23810. image: {
  23811. source: "./media/characters/icowom-lee/front-dressed.svg",
  23812. extra: 3076 / 2933,
  23813. bottom: 51.4 / 3125.1889
  23814. }
  23815. },
  23816. rump: {
  23817. height: math.unit(0.776, "meters"),
  23818. name: "Rump",
  23819. image: {
  23820. source: "./media/characters/icowom-lee/rump.svg"
  23821. }
  23822. },
  23823. genitals: {
  23824. height: math.unit(0.78, "meters"),
  23825. name: "Genitals",
  23826. image: {
  23827. source: "./media/characters/icowom-lee/genitals.svg"
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "Normal",
  23834. height: math.unit(2.3, "meters"),
  23835. default: true
  23836. },
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(94, "meters"),
  23840. default: true
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23846. {
  23847. front: {
  23848. height: math.unit(22, "meters"),
  23849. weight: math.unit(21000, "kg"),
  23850. name: "Front",
  23851. image: {
  23852. source: "./media/characters/shock-diamond/front.svg",
  23853. extra: 2204 / 2053,
  23854. bottom: 65 / 2239.47
  23855. }
  23856. },
  23857. frontNude: {
  23858. height: math.unit(22, "meters"),
  23859. weight: math.unit(21000, "kg"),
  23860. name: "Front (Nude)",
  23861. image: {
  23862. source: "./media/characters/shock-diamond/front-nude.svg",
  23863. extra: 2514 / 2285,
  23864. bottom: 13 / 2527.56
  23865. }
  23866. },
  23867. },
  23868. [
  23869. {
  23870. name: "Normal",
  23871. height: math.unit(3, "meters")
  23872. },
  23873. {
  23874. name: "Macro",
  23875. height: math.unit(22, "meters"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23882. {
  23883. front: {
  23884. height: math.unit(5 + 4 / 12, "feet"),
  23885. weight: math.unit(120, "lb"),
  23886. name: "Front",
  23887. image: {
  23888. source: "./media/characters/rory/front.svg",
  23889. extra: 1318/1241,
  23890. bottom: 42/1360
  23891. }
  23892. },
  23893. back: {
  23894. height: math.unit(5 + 4 / 12, "feet"),
  23895. weight: math.unit(120, "lb"),
  23896. name: "Back",
  23897. image: {
  23898. source: "./media/characters/rory/back.svg",
  23899. extra: 1318/1241,
  23900. bottom: 42/1360
  23901. }
  23902. },
  23903. butt: {
  23904. height: math.unit(1.74, "feet"),
  23905. name: "Butt",
  23906. image: {
  23907. source: "./media/characters/rory/butt.svg"
  23908. }
  23909. },
  23910. dick: {
  23911. height: math.unit(1.02, "feet"),
  23912. name: "Dick",
  23913. image: {
  23914. source: "./media/characters/rory/dick.svg"
  23915. }
  23916. },
  23917. paws: {
  23918. height: math.unit(1, "feet"),
  23919. name: "Paws",
  23920. image: {
  23921. source: "./media/characters/rory/paws.svg"
  23922. }
  23923. },
  23924. frontAlt: {
  23925. height: math.unit(5 + 4 / 12, "feet"),
  23926. weight: math.unit(120, "lb"),
  23927. name: "Front (Alt)",
  23928. image: {
  23929. source: "./media/characters/rory/front-alt.svg",
  23930. extra: 589 / 556,
  23931. bottom: 45.7 / 635.76
  23932. }
  23933. },
  23934. frontAltNude: {
  23935. height: math.unit(5 + 4 / 12, "feet"),
  23936. weight: math.unit(120, "lb"),
  23937. name: "Front (Alt, Nude)",
  23938. image: {
  23939. source: "./media/characters/rory/front-alt-nude.svg",
  23940. extra: 589 / 556,
  23941. bottom: 45.7 / 635.76
  23942. }
  23943. },
  23944. side: {
  23945. height: math.unit(5 + 4 / 12, "feet"),
  23946. weight: math.unit(120, "lb"),
  23947. name: "Side",
  23948. image: {
  23949. source: "./media/characters/rory/side.svg",
  23950. extra: 597 / 564,
  23951. bottom: 55 / 653
  23952. }
  23953. },
  23954. backAlt: {
  23955. height: math.unit(5 + 4 / 12, "feet"),
  23956. weight: math.unit(120, "lb"),
  23957. name: "Back (Alt)",
  23958. image: {
  23959. source: "./media/characters/rory/back-alt.svg",
  23960. extra: 620 / 585,
  23961. bottom: 8.86 / 630.43
  23962. }
  23963. },
  23964. dickAlt: {
  23965. height: math.unit(0.86, "feet"),
  23966. name: "Dick (Alt)",
  23967. image: {
  23968. source: "./media/characters/rory/dick-alt.svg"
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Normal",
  23975. height: math.unit(5 + 4 / 12, "feet"),
  23976. default: true
  23977. },
  23978. {
  23979. name: "Macro",
  23980. height: math.unit(100, "feet")
  23981. },
  23982. {
  23983. name: "Macro+",
  23984. height: math.unit(140, "feet")
  23985. },
  23986. {
  23987. name: "Macro++",
  23988. height: math.unit(300, "feet")
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(5 + 9 / 12, "feet"),
  23997. weight: math.unit(190, "lb"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/sprisk/front.svg",
  24001. extra: 1225 / 1180,
  24002. bottom: 42.7 / 1266.4
  24003. }
  24004. },
  24005. frontNsfw: {
  24006. height: math.unit(5 + 9 / 12, "feet"),
  24007. weight: math.unit(190, "lb"),
  24008. name: "Front (NSFW)",
  24009. image: {
  24010. source: "./media/characters/sprisk/front-nsfw.svg",
  24011. extra: 1225 / 1180,
  24012. bottom: 42.7 / 1266.4
  24013. }
  24014. },
  24015. back: {
  24016. height: math.unit(5 + 9 / 12, "feet"),
  24017. weight: math.unit(190, "lb"),
  24018. name: "Back",
  24019. image: {
  24020. source: "./media/characters/sprisk/back.svg",
  24021. extra: 1247 / 1200,
  24022. bottom: 5.6 / 1253.04
  24023. }
  24024. },
  24025. },
  24026. [
  24027. {
  24028. name: "Tiny",
  24029. height: math.unit(2, "inches")
  24030. },
  24031. {
  24032. name: "Normal",
  24033. height: math.unit(5 + 9 / 12, "feet"),
  24034. default: true
  24035. },
  24036. {
  24037. name: "Mini Macro",
  24038. height: math.unit(18, "feet")
  24039. },
  24040. {
  24041. name: "Macro",
  24042. height: math.unit(100, "feet")
  24043. },
  24044. {
  24045. name: "MACRO",
  24046. height: math.unit(50, "miles")
  24047. },
  24048. {
  24049. name: "M A C R O",
  24050. height: math.unit(300, "miles")
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24056. {
  24057. side: {
  24058. height: math.unit(15.6, "meters"),
  24059. weight: math.unit(700000, "kg"),
  24060. name: "Side",
  24061. image: {
  24062. source: "./media/characters/bunsen/side.svg",
  24063. extra: 1644 / 358
  24064. }
  24065. },
  24066. foot: {
  24067. height: math.unit(1.611 * 1644 / 358, "meter"),
  24068. name: "Foot",
  24069. image: {
  24070. source: "./media/characters/bunsen/foot.svg"
  24071. }
  24072. },
  24073. },
  24074. [
  24075. {
  24076. name: "Small",
  24077. height: math.unit(10, "feet")
  24078. },
  24079. {
  24080. name: "Normal",
  24081. height: math.unit(15.6, "meters"),
  24082. default: true
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24088. {
  24089. front: {
  24090. height: math.unit(4 + 11 / 12, "feet"),
  24091. weight: math.unit(140, "lb"),
  24092. name: "Front",
  24093. image: {
  24094. source: "./media/characters/sesh/front.svg",
  24095. extra: 3420 / 3231,
  24096. bottom: 72 / 3949.5
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(4 + 11 / 12, "feet")
  24104. },
  24105. {
  24106. name: "Grown",
  24107. height: math.unit(15, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Macro",
  24112. height: math.unit(1500, "feet")
  24113. },
  24114. {
  24115. name: "Megamacro",
  24116. height: math.unit(30, "miles")
  24117. },
  24118. {
  24119. name: "Continental",
  24120. height: math.unit(3000, "miles")
  24121. },
  24122. {
  24123. name: "Gravity Mass",
  24124. height: math.unit(300000, "miles")
  24125. },
  24126. {
  24127. name: "Planet Buster",
  24128. height: math.unit(30000000, "miles")
  24129. },
  24130. {
  24131. name: "Big",
  24132. height: math.unit(3000000000, "miles")
  24133. },
  24134. ]
  24135. ))
  24136. characterMakers.push(() => makeCharacter(
  24137. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24138. {
  24139. front: {
  24140. height: math.unit(9, "feet"),
  24141. weight: math.unit(350, "lb"),
  24142. name: "Front",
  24143. image: {
  24144. source: "./media/characters/pepper/front.svg",
  24145. extra: 1448 / 1312,
  24146. bottom: 9.4 / 1457.88
  24147. }
  24148. },
  24149. back: {
  24150. height: math.unit(9, "feet"),
  24151. weight: math.unit(350, "lb"),
  24152. name: "Back",
  24153. image: {
  24154. source: "./media/characters/pepper/back.svg",
  24155. extra: 1423 / 1300,
  24156. bottom: 4.6 / 1429
  24157. }
  24158. },
  24159. maw: {
  24160. height: math.unit(0.932, "feet"),
  24161. name: "Maw",
  24162. image: {
  24163. source: "./media/characters/pepper/maw.svg"
  24164. }
  24165. },
  24166. },
  24167. [
  24168. {
  24169. name: "Normal",
  24170. height: math.unit(9, "feet"),
  24171. default: true
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24177. {
  24178. front: {
  24179. height: math.unit(6, "feet"),
  24180. weight: math.unit(150, "lb"),
  24181. name: "Front",
  24182. image: {
  24183. source: "./media/characters/maelstrom/front.svg",
  24184. extra: 2100 / 1883,
  24185. bottom: 94 / 2196.7
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Less Kaiju",
  24192. height: math.unit(200, "feet")
  24193. },
  24194. {
  24195. name: "Kaiju",
  24196. height: math.unit(400, "feet"),
  24197. default: true
  24198. },
  24199. {
  24200. name: "Kaiju-er",
  24201. height: math.unit(600, "feet")
  24202. },
  24203. ]
  24204. ))
  24205. characterMakers.push(() => makeCharacter(
  24206. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24207. {
  24208. front: {
  24209. height: math.unit(6 + 5 / 12, "feet"),
  24210. weight: math.unit(180, "lb"),
  24211. name: "Front",
  24212. image: {
  24213. source: "./media/characters/lexir/front.svg",
  24214. extra: 180 / 172,
  24215. bottom: 12 / 192
  24216. }
  24217. },
  24218. back: {
  24219. height: math.unit(6 + 5 / 12, "feet"),
  24220. weight: math.unit(180, "lb"),
  24221. name: "Back",
  24222. image: {
  24223. source: "./media/characters/lexir/back.svg",
  24224. extra: 1273/1201,
  24225. bottom: 39/1312
  24226. }
  24227. },
  24228. },
  24229. [
  24230. {
  24231. name: "Very Smal",
  24232. height: math.unit(1, "nm")
  24233. },
  24234. {
  24235. name: "Normal",
  24236. height: math.unit(6 + 5 / 12, "feet"),
  24237. default: true
  24238. },
  24239. {
  24240. name: "Macro",
  24241. height: math.unit(1, "mile")
  24242. },
  24243. {
  24244. name: "Megamacro",
  24245. height: math.unit(50, "miles")
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24251. {
  24252. front: {
  24253. height: math.unit(1.5, "meters"),
  24254. weight: math.unit(100, "lb"),
  24255. name: "Front",
  24256. image: {
  24257. source: "./media/characters/maksio/front.svg",
  24258. extra: 1549 / 1531,
  24259. bottom: 123.7 / 1674.5429
  24260. }
  24261. },
  24262. back: {
  24263. height: math.unit(1.5, "meters"),
  24264. weight: math.unit(100, "lb"),
  24265. name: "Back",
  24266. image: {
  24267. source: "./media/characters/maksio/back.svg",
  24268. extra: 1541 / 1509,
  24269. bottom: 97 / 1639
  24270. }
  24271. },
  24272. hand: {
  24273. height: math.unit(0.621, "feet"),
  24274. name: "Hand",
  24275. image: {
  24276. source: "./media/characters/maksio/hand.svg"
  24277. }
  24278. },
  24279. foot: {
  24280. height: math.unit(1.611, "feet"),
  24281. name: "Foot",
  24282. image: {
  24283. source: "./media/characters/maksio/foot.svg"
  24284. }
  24285. },
  24286. },
  24287. [
  24288. {
  24289. name: "Shrunken",
  24290. height: math.unit(10, "cm")
  24291. },
  24292. {
  24293. name: "Normal",
  24294. height: math.unit(150, "cm"),
  24295. default: true
  24296. },
  24297. ]
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24301. {
  24302. front: {
  24303. height: math.unit(100, "feet"),
  24304. name: "Front",
  24305. image: {
  24306. source: "./media/characters/erza-bear/front.svg",
  24307. extra: 2449 / 2390,
  24308. bottom: 46 / 2494
  24309. }
  24310. },
  24311. back: {
  24312. height: math.unit(100, "feet"),
  24313. name: "Back",
  24314. image: {
  24315. source: "./media/characters/erza-bear/back.svg",
  24316. extra: 2489 / 2430,
  24317. bottom: 85.4 / 2480
  24318. }
  24319. },
  24320. tail: {
  24321. height: math.unit(42, "feet"),
  24322. name: "Tail",
  24323. image: {
  24324. source: "./media/characters/erza-bear/tail.svg"
  24325. }
  24326. },
  24327. tongue: {
  24328. height: math.unit(8, "feet"),
  24329. name: "Tongue",
  24330. image: {
  24331. source: "./media/characters/erza-bear/tongue.svg"
  24332. }
  24333. },
  24334. dick: {
  24335. height: math.unit(10.5, "feet"),
  24336. name: "Dick",
  24337. image: {
  24338. source: "./media/characters/erza-bear/dick.svg"
  24339. }
  24340. },
  24341. dickVertical: {
  24342. height: math.unit(16.9, "feet"),
  24343. name: "Dick (Vertical)",
  24344. image: {
  24345. source: "./media/characters/erza-bear/dick-vertical.svg"
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Macro",
  24352. height: math.unit(100, "feet"),
  24353. default: true
  24354. },
  24355. ]
  24356. ))
  24357. characterMakers.push(() => makeCharacter(
  24358. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24359. {
  24360. front: {
  24361. height: math.unit(172, "cm"),
  24362. weight: math.unit(73, "kg"),
  24363. name: "Front",
  24364. image: {
  24365. source: "./media/characters/violet-flor/front.svg",
  24366. extra: 1530 / 1442,
  24367. bottom: 61.9 / 1588.8
  24368. }
  24369. },
  24370. back: {
  24371. height: math.unit(180, "cm"),
  24372. weight: math.unit(73, "kg"),
  24373. name: "Back",
  24374. image: {
  24375. source: "./media/characters/violet-flor/back.svg",
  24376. extra: 1692 / 1630,
  24377. bottom: 20 / 1712
  24378. }
  24379. },
  24380. },
  24381. [
  24382. {
  24383. name: "Normal",
  24384. height: math.unit(172, "cm"),
  24385. default: true
  24386. },
  24387. ]
  24388. ))
  24389. characterMakers.push(() => makeCharacter(
  24390. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24391. {
  24392. front: {
  24393. height: math.unit(6, "feet"),
  24394. weight: math.unit(220, "lb"),
  24395. name: "Front",
  24396. image: {
  24397. source: "./media/characters/lynn-rhea/front.svg",
  24398. extra: 310 / 273
  24399. }
  24400. },
  24401. back: {
  24402. height: math.unit(6, "feet"),
  24403. weight: math.unit(220, "lb"),
  24404. name: "Back",
  24405. image: {
  24406. source: "./media/characters/lynn-rhea/back.svg",
  24407. extra: 310 / 273
  24408. }
  24409. },
  24410. dicks: {
  24411. height: math.unit(0.9, "feet"),
  24412. name: "Dicks",
  24413. image: {
  24414. source: "./media/characters/lynn-rhea/dicks.svg"
  24415. }
  24416. },
  24417. slit: {
  24418. height: math.unit(0.4, "feet"),
  24419. name: "Slit",
  24420. image: {
  24421. source: "./media/characters/lynn-rhea/slit.svg"
  24422. }
  24423. },
  24424. },
  24425. [
  24426. {
  24427. name: "Micro",
  24428. height: math.unit(1, "inch")
  24429. },
  24430. {
  24431. name: "Macro",
  24432. height: math.unit(60, "feet"),
  24433. default: true
  24434. },
  24435. {
  24436. name: "Megamacro",
  24437. height: math.unit(2, "miles")
  24438. },
  24439. {
  24440. name: "Gigamacro",
  24441. height: math.unit(3, "earths")
  24442. },
  24443. {
  24444. name: "Galactic",
  24445. height: math.unit(0.8, "galaxies")
  24446. },
  24447. ]
  24448. ))
  24449. characterMakers.push(() => makeCharacter(
  24450. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24451. {
  24452. front: {
  24453. height: math.unit(1600, "feet"),
  24454. weight: math.unit(85758785169, "kg"),
  24455. name: "Front",
  24456. image: {
  24457. source: "./media/characters/valathos/front.svg",
  24458. extra: 1451 / 1339
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Macro",
  24465. height: math.unit(1600, "feet"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24472. {
  24473. front: {
  24474. height: math.unit(7 + 5 / 12, "feet"),
  24475. weight: math.unit(300, "lb"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/azula/front.svg",
  24479. extra: 3208 / 2880,
  24480. bottom: 80.2 / 3277
  24481. }
  24482. },
  24483. back: {
  24484. height: math.unit(7 + 5 / 12, "feet"),
  24485. weight: math.unit(300, "lb"),
  24486. name: "Back",
  24487. image: {
  24488. source: "./media/characters/azula/back.svg",
  24489. extra: 3169 / 2822,
  24490. bottom: 150.6 / 3321
  24491. }
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Normal",
  24497. height: math.unit(7 + 5 / 12, "feet"),
  24498. default: true
  24499. },
  24500. {
  24501. name: "Big",
  24502. height: math.unit(20, "feet")
  24503. },
  24504. ]
  24505. ))
  24506. characterMakers.push(() => makeCharacter(
  24507. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24508. {
  24509. front: {
  24510. height: math.unit(5 + 1 / 12, "feet"),
  24511. weight: math.unit(110, "lb"),
  24512. name: "Front",
  24513. image: {
  24514. source: "./media/characters/rupert/front.svg",
  24515. extra: 1549 / 1495,
  24516. bottom: 54.2 / 1604.4
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "Normal",
  24523. height: math.unit(5 + 1 / 12, "feet"),
  24524. default: true
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24530. {
  24531. front: {
  24532. height: math.unit(8 + 4 / 12, "feet"),
  24533. weight: math.unit(350, "lb"),
  24534. name: "Front",
  24535. image: {
  24536. source: "./media/characters/sheera-castellar/front.svg",
  24537. extra: 1957 / 1894,
  24538. bottom: 26.97 / 1975.017
  24539. }
  24540. },
  24541. side: {
  24542. height: math.unit(8 + 4 / 12, "feet"),
  24543. weight: math.unit(350, "lb"),
  24544. name: "Side",
  24545. image: {
  24546. source: "./media/characters/sheera-castellar/side.svg",
  24547. extra: 1957 / 1894
  24548. }
  24549. },
  24550. back: {
  24551. height: math.unit(8 + 4 / 12, "feet"),
  24552. weight: math.unit(350, "lb"),
  24553. name: "Back",
  24554. image: {
  24555. source: "./media/characters/sheera-castellar/back.svg",
  24556. extra: 1957 / 1894
  24557. }
  24558. },
  24559. angled: {
  24560. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24561. weight: math.unit(350, "lb"),
  24562. name: "Angled",
  24563. image: {
  24564. source: "./media/characters/sheera-castellar/angled.svg",
  24565. extra: 1807 / 1707,
  24566. bottom: 68 / 1875
  24567. }
  24568. },
  24569. genitals: {
  24570. height: math.unit(2.2, "feet"),
  24571. name: "Genitals",
  24572. image: {
  24573. source: "./media/characters/sheera-castellar/genitals.svg"
  24574. }
  24575. },
  24576. taur: {
  24577. height: math.unit(10 + 6/12, "feet"),
  24578. name: "Taur",
  24579. image: {
  24580. source: "./media/characters/sheera-castellar/taur.svg",
  24581. extra: 2017/1909,
  24582. bottom: 185/2202
  24583. }
  24584. },
  24585. },
  24586. [
  24587. {
  24588. name: "Normal",
  24589. height: math.unit(8 + 4 / 12, "feet")
  24590. },
  24591. {
  24592. name: "Macro",
  24593. height: math.unit(150, "feet"),
  24594. default: true
  24595. },
  24596. {
  24597. name: "Macro+",
  24598. height: math.unit(800, "feet")
  24599. },
  24600. ]
  24601. ))
  24602. characterMakers.push(() => makeCharacter(
  24603. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24604. {
  24605. front: {
  24606. height: math.unit(6, "feet"),
  24607. weight: math.unit(150, "lb"),
  24608. name: "Front",
  24609. image: {
  24610. source: "./media/characters/jaipur/front.svg",
  24611. extra: 3860 / 3731,
  24612. bottom: 287 / 4140
  24613. }
  24614. },
  24615. back: {
  24616. height: math.unit(6, "feet"),
  24617. weight: math.unit(150, "lb"),
  24618. name: "Back",
  24619. image: {
  24620. source: "./media/characters/jaipur/back.svg",
  24621. extra: 1637/1561,
  24622. bottom: 154/1791
  24623. }
  24624. },
  24625. },
  24626. [
  24627. {
  24628. name: "Normal",
  24629. height: math.unit(1.85, "meters"),
  24630. default: true
  24631. },
  24632. {
  24633. name: "Macro",
  24634. height: math.unit(150, "meters")
  24635. },
  24636. {
  24637. name: "Macro+",
  24638. height: math.unit(0.5, "miles")
  24639. },
  24640. {
  24641. name: "Macro++",
  24642. height: math.unit(2.5, "miles")
  24643. },
  24644. {
  24645. name: "Macro+++",
  24646. height: math.unit(12, "miles")
  24647. },
  24648. {
  24649. name: "Macro++++",
  24650. height: math.unit(120, "miles")
  24651. },
  24652. {
  24653. name: "Macro+++++",
  24654. height: math.unit(1200, "miles")
  24655. },
  24656. ]
  24657. ))
  24658. characterMakers.push(() => makeCharacter(
  24659. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24660. {
  24661. front: {
  24662. height: math.unit(6, "feet"),
  24663. weight: math.unit(150, "lb"),
  24664. name: "Front",
  24665. image: {
  24666. source: "./media/characters/sheila-wolf/front.svg",
  24667. extra: 1931 / 1808,
  24668. bottom: 29.5 / 1960
  24669. }
  24670. },
  24671. dick: {
  24672. height: math.unit(1.464, "feet"),
  24673. name: "Dick",
  24674. image: {
  24675. source: "./media/characters/sheila-wolf/dick.svg"
  24676. }
  24677. },
  24678. muzzle: {
  24679. height: math.unit(0.513, "feet"),
  24680. name: "Muzzle",
  24681. image: {
  24682. source: "./media/characters/sheila-wolf/muzzle.svg"
  24683. }
  24684. },
  24685. },
  24686. [
  24687. {
  24688. name: "Macro",
  24689. height: math.unit(70, "feet"),
  24690. default: true
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24696. {
  24697. front: {
  24698. height: math.unit(32, "meters"),
  24699. weight: math.unit(300000, "kg"),
  24700. name: "Front",
  24701. image: {
  24702. source: "./media/characters/almor/front.svg",
  24703. extra: 1408 / 1322,
  24704. bottom: 94.6 / 1506.5
  24705. }
  24706. },
  24707. },
  24708. [
  24709. {
  24710. name: "Macro",
  24711. height: math.unit(32, "meters"),
  24712. default: true
  24713. },
  24714. ]
  24715. ))
  24716. characterMakers.push(() => makeCharacter(
  24717. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24718. {
  24719. front: {
  24720. height: math.unit(7, "feet"),
  24721. weight: math.unit(200, "lb"),
  24722. name: "Front",
  24723. image: {
  24724. source: "./media/characters/silver/front.svg",
  24725. extra: 472.1 / 450.5,
  24726. bottom: 26.5 / 499.424
  24727. }
  24728. },
  24729. },
  24730. [
  24731. {
  24732. name: "Normal",
  24733. height: math.unit(7, "feet"),
  24734. default: true
  24735. },
  24736. {
  24737. name: "Macro",
  24738. height: math.unit(800, "feet")
  24739. },
  24740. {
  24741. name: "Megamacro",
  24742. height: math.unit(250, "miles")
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24748. {
  24749. front: {
  24750. height: math.unit(6, "feet"),
  24751. weight: math.unit(150, "lb"),
  24752. name: "Front",
  24753. image: {
  24754. source: "./media/characters/pliskin/front.svg",
  24755. extra: 1469 / 1359,
  24756. bottom: 70 / 1540
  24757. }
  24758. },
  24759. },
  24760. [
  24761. {
  24762. name: "Micro",
  24763. height: math.unit(3, "inches")
  24764. },
  24765. {
  24766. name: "Normal",
  24767. height: math.unit(5 + 11 / 12, "feet"),
  24768. default: true
  24769. },
  24770. {
  24771. name: "Macro",
  24772. height: math.unit(120, "feet")
  24773. },
  24774. ]
  24775. ))
  24776. characterMakers.push(() => makeCharacter(
  24777. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24778. {
  24779. front: {
  24780. height: math.unit(6, "feet"),
  24781. weight: math.unit(150, "lb"),
  24782. name: "Front",
  24783. image: {
  24784. source: "./media/characters/sammy/front.svg",
  24785. extra: 1193 / 1089,
  24786. bottom: 30.5 / 1226
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Macro",
  24793. height: math.unit(1700, "feet"),
  24794. default: true
  24795. },
  24796. {
  24797. name: "Examacro",
  24798. height: math.unit(2.5e9, "lightyears")
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(21, "meters"),
  24807. weight: math.unit(12, "tonnes"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/kuru/front.svg",
  24811. extra: 4301 / 3785,
  24812. bottom: 371.3 / 4691
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Macro",
  24819. height: math.unit(21, "meters"),
  24820. default: true
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24826. {
  24827. front: {
  24828. height: math.unit(23, "meters"),
  24829. weight: math.unit(12.2, "tonnes"),
  24830. name: "Front",
  24831. image: {
  24832. source: "./media/characters/rakka/front.svg",
  24833. extra: 4670 / 4169,
  24834. bottom: 301 / 4968.7
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Macro",
  24841. height: math.unit(23, "meters"),
  24842. default: true
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24848. {
  24849. front: {
  24850. height: math.unit(6, "feet"),
  24851. weight: math.unit(150, "lb"),
  24852. name: "Front",
  24853. image: {
  24854. source: "./media/characters/rhys-feline/front.svg",
  24855. extra: 2488 / 2308,
  24856. bottom: 35.67 / 2519.19
  24857. }
  24858. },
  24859. },
  24860. [
  24861. {
  24862. name: "Really Small",
  24863. height: math.unit(1, "nm")
  24864. },
  24865. {
  24866. name: "Micro",
  24867. height: math.unit(4, "inches")
  24868. },
  24869. {
  24870. name: "Normal",
  24871. height: math.unit(4 + 10 / 12, "feet"),
  24872. default: true
  24873. },
  24874. {
  24875. name: "Macro",
  24876. height: math.unit(100, "feet")
  24877. },
  24878. {
  24879. name: "Megamacto",
  24880. height: math.unit(50, "miles")
  24881. },
  24882. ]
  24883. ))
  24884. characterMakers.push(() => makeCharacter(
  24885. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24886. {
  24887. side: {
  24888. height: math.unit(30, "feet"),
  24889. weight: math.unit(35000, "kg"),
  24890. name: "Side",
  24891. image: {
  24892. source: "./media/characters/alydar/side.svg",
  24893. extra: 234 / 222,
  24894. bottom: 6.5 / 241
  24895. }
  24896. },
  24897. front: {
  24898. height: math.unit(30, "feet"),
  24899. weight: math.unit(35000, "kg"),
  24900. name: "Front",
  24901. image: {
  24902. source: "./media/characters/alydar/front.svg",
  24903. extra: 223.37 / 210.2,
  24904. bottom: 22.3 / 246.76
  24905. }
  24906. },
  24907. top: {
  24908. height: math.unit(64.54, "feet"),
  24909. weight: math.unit(35000, "kg"),
  24910. name: "Top",
  24911. image: {
  24912. source: "./media/characters/alydar/top.svg"
  24913. }
  24914. },
  24915. anthro: {
  24916. height: math.unit(30, "feet"),
  24917. weight: math.unit(9000, "kg"),
  24918. name: "Anthro",
  24919. image: {
  24920. source: "./media/characters/alydar/anthro.svg",
  24921. extra: 432 / 421,
  24922. bottom: 7.18 / 440
  24923. }
  24924. },
  24925. maw: {
  24926. height: math.unit(11.693, "feet"),
  24927. name: "Maw",
  24928. image: {
  24929. source: "./media/characters/alydar/maw.svg"
  24930. }
  24931. },
  24932. head: {
  24933. height: math.unit(11.693, "feet"),
  24934. name: "Head",
  24935. image: {
  24936. source: "./media/characters/alydar/head.svg"
  24937. }
  24938. },
  24939. headAlt: {
  24940. height: math.unit(12.861, "feet"),
  24941. name: "Head (Alt)",
  24942. image: {
  24943. source: "./media/characters/alydar/head-alt.svg"
  24944. }
  24945. },
  24946. wing: {
  24947. height: math.unit(20.712, "feet"),
  24948. name: "Wing",
  24949. image: {
  24950. source: "./media/characters/alydar/wing.svg"
  24951. }
  24952. },
  24953. wingFeather: {
  24954. height: math.unit(9.662, "feet"),
  24955. name: "Wing Feather",
  24956. image: {
  24957. source: "./media/characters/alydar/wing-feather.svg"
  24958. }
  24959. },
  24960. countourFeather: {
  24961. height: math.unit(4.154, "feet"),
  24962. name: "Contour Feather",
  24963. image: {
  24964. source: "./media/characters/alydar/contour-feather.svg"
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Diplomatic",
  24971. height: math.unit(13, "feet"),
  24972. default: true
  24973. },
  24974. {
  24975. name: "Small",
  24976. height: math.unit(30, "feet")
  24977. },
  24978. {
  24979. name: "Normal",
  24980. height: math.unit(95, "feet"),
  24981. default: true
  24982. },
  24983. {
  24984. name: "Large",
  24985. height: math.unit(285, "feet")
  24986. },
  24987. {
  24988. name: "Incomprehensible",
  24989. height: math.unit(450, "megameters")
  24990. },
  24991. ]
  24992. ))
  24993. characterMakers.push(() => makeCharacter(
  24994. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24995. {
  24996. side: {
  24997. height: math.unit(11, "feet"),
  24998. weight: math.unit(1750, "kg"),
  24999. name: "Side",
  25000. image: {
  25001. source: "./media/characters/selicia/side.svg",
  25002. extra: 440 / 396,
  25003. bottom: 24.8 / 465.979
  25004. }
  25005. },
  25006. maw: {
  25007. height: math.unit(4.665, "feet"),
  25008. name: "Maw",
  25009. image: {
  25010. source: "./media/characters/selicia/maw.svg"
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Normal",
  25017. height: math.unit(11, "feet"),
  25018. default: true
  25019. },
  25020. ]
  25021. ))
  25022. characterMakers.push(() => makeCharacter(
  25023. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25024. {
  25025. side: {
  25026. height: math.unit(2 + 6 / 12, "feet"),
  25027. weight: math.unit(30, "lb"),
  25028. name: "Side",
  25029. image: {
  25030. source: "./media/characters/layla/side.svg",
  25031. extra: 244 / 188,
  25032. bottom: 18.2 / 262.1
  25033. }
  25034. },
  25035. back: {
  25036. height: math.unit(2 + 6 / 12, "feet"),
  25037. weight: math.unit(30, "lb"),
  25038. name: "Back",
  25039. image: {
  25040. source: "./media/characters/layla/back.svg",
  25041. extra: 308 / 241.5,
  25042. bottom: 8.9 / 316.8
  25043. }
  25044. },
  25045. cumming: {
  25046. height: math.unit(2 + 6 / 12, "feet"),
  25047. weight: math.unit(30, "lb"),
  25048. name: "Cumming",
  25049. image: {
  25050. source: "./media/characters/layla/cumming.svg",
  25051. extra: 342 / 279,
  25052. bottom: 595 / 938
  25053. }
  25054. },
  25055. dickFlaccid: {
  25056. height: math.unit(2.595, "feet"),
  25057. name: "Flaccid Genitals",
  25058. image: {
  25059. source: "./media/characters/layla/dick-flaccid.svg"
  25060. }
  25061. },
  25062. dickErect: {
  25063. height: math.unit(2.359, "feet"),
  25064. name: "Erect Genitals",
  25065. image: {
  25066. source: "./media/characters/layla/dick-erect.svg"
  25067. }
  25068. },
  25069. dragon: {
  25070. height: math.unit(40, "feet"),
  25071. name: "Dragon",
  25072. image: {
  25073. source: "./media/characters/layla/dragon.svg",
  25074. extra: 610/535,
  25075. bottom: 367/977
  25076. }
  25077. },
  25078. taur: {
  25079. height: math.unit(30, "feet"),
  25080. name: "Taur",
  25081. image: {
  25082. source: "./media/characters/layla/taur.svg",
  25083. extra: 1268/1199,
  25084. bottom: 112/1380
  25085. }
  25086. },
  25087. },
  25088. [
  25089. {
  25090. name: "Micro",
  25091. height: math.unit(1, "inch")
  25092. },
  25093. {
  25094. name: "Small",
  25095. height: math.unit(1, "foot")
  25096. },
  25097. {
  25098. name: "Normal",
  25099. height: math.unit(2 + 6 / 12, "feet"),
  25100. default: true
  25101. },
  25102. {
  25103. name: "Macro",
  25104. height: math.unit(200, "feet")
  25105. },
  25106. {
  25107. name: "Megamacro",
  25108. height: math.unit(1000, "miles")
  25109. },
  25110. {
  25111. name: "Planetary",
  25112. height: math.unit(8000, "miles")
  25113. },
  25114. {
  25115. name: "True Layla",
  25116. height: math.unit(200000 * 7, "multiverses")
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25122. {
  25123. back: {
  25124. height: math.unit(10.5, "feet"),
  25125. weight: math.unit(800, "lb"),
  25126. name: "Back",
  25127. image: {
  25128. source: "./media/characters/knox/back.svg",
  25129. extra: 1486 / 1089,
  25130. bottom: 107 / 1601.4
  25131. }
  25132. },
  25133. side: {
  25134. height: math.unit(10.5, "feet"),
  25135. weight: math.unit(800, "lb"),
  25136. name: "Side",
  25137. image: {
  25138. source: "./media/characters/knox/side.svg",
  25139. extra: 244 / 218,
  25140. bottom: 14 / 260
  25141. }
  25142. },
  25143. },
  25144. [
  25145. {
  25146. name: "Compact",
  25147. height: math.unit(10.5, "feet"),
  25148. default: true
  25149. },
  25150. {
  25151. name: "Dynamax",
  25152. height: math.unit(210, "feet")
  25153. },
  25154. {
  25155. name: "Full Macro",
  25156. height: math.unit(850, "feet")
  25157. },
  25158. ]
  25159. ))
  25160. characterMakers.push(() => makeCharacter(
  25161. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25162. {
  25163. front: {
  25164. height: math.unit(28, "feet"),
  25165. weight: math.unit(10500, "lb"),
  25166. name: "Front",
  25167. image: {
  25168. source: "./media/characters/kayda/front.svg",
  25169. extra: 1536 / 1428,
  25170. bottom: 68.7 / 1603
  25171. }
  25172. },
  25173. back: {
  25174. height: math.unit(28, "feet"),
  25175. weight: math.unit(10500, "lb"),
  25176. name: "Back",
  25177. image: {
  25178. source: "./media/characters/kayda/back.svg",
  25179. extra: 1557 / 1464,
  25180. bottom: 39.5 / 1597.49
  25181. }
  25182. },
  25183. dick: {
  25184. height: math.unit(3.858, "feet"),
  25185. name: "Dick",
  25186. image: {
  25187. source: "./media/characters/kayda/dick.svg"
  25188. }
  25189. },
  25190. },
  25191. [
  25192. {
  25193. name: "Macro",
  25194. height: math.unit(28, "feet"),
  25195. default: true
  25196. },
  25197. ]
  25198. ))
  25199. characterMakers.push(() => makeCharacter(
  25200. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25201. {
  25202. front: {
  25203. height: math.unit(10 + 11 / 12, "feet"),
  25204. weight: math.unit(1400, "lb"),
  25205. name: "Front",
  25206. image: {
  25207. source: "./media/characters/brian/front.svg",
  25208. extra: 737 / 692,
  25209. bottom: 55.4 / 785
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Normal",
  25216. height: math.unit(10 + 11 / 12, "feet"),
  25217. default: true
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(5 + 8 / 12, "feet"),
  25226. weight: math.unit(140, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/khemri/front.svg",
  25230. extra: 4780 / 4059,
  25231. bottom: 80.1 / 4859.25
  25232. }
  25233. },
  25234. },
  25235. [
  25236. {
  25237. name: "Micro",
  25238. height: math.unit(6, "inches")
  25239. },
  25240. {
  25241. name: "Normal",
  25242. height: math.unit(5 + 8 / 12, "feet"),
  25243. default: true
  25244. },
  25245. ]
  25246. ))
  25247. characterMakers.push(() => makeCharacter(
  25248. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25249. {
  25250. front: {
  25251. height: math.unit(13, "feet"),
  25252. weight: math.unit(1700, "lb"),
  25253. name: "Front",
  25254. image: {
  25255. source: "./media/characters/felix-braveheart/front.svg",
  25256. extra: 1222 / 1157,
  25257. bottom: 53.2 / 1280
  25258. }
  25259. },
  25260. back: {
  25261. height: math.unit(13, "feet"),
  25262. weight: math.unit(1700, "lb"),
  25263. name: "Back",
  25264. image: {
  25265. source: "./media/characters/felix-braveheart/back.svg",
  25266. extra: 1277 / 1203,
  25267. bottom: 50.2 / 1327
  25268. }
  25269. },
  25270. feral: {
  25271. height: math.unit(6, "feet"),
  25272. weight: math.unit(400, "lb"),
  25273. name: "Feral",
  25274. image: {
  25275. source: "./media/characters/felix-braveheart/feral.svg",
  25276. extra: 682 / 625,
  25277. bottom: 6.9 / 688
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Normal",
  25284. height: math.unit(13, "feet"),
  25285. default: true
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25291. {
  25292. side: {
  25293. height: math.unit(5 + 11 / 12, "feet"),
  25294. weight: math.unit(1400, "lb"),
  25295. name: "Side",
  25296. image: {
  25297. source: "./media/characters/shadow-blade/side.svg",
  25298. extra: 1726 / 1267,
  25299. bottom: 58.4 / 1785
  25300. }
  25301. },
  25302. },
  25303. [
  25304. {
  25305. name: "Normal",
  25306. height: math.unit(5 + 11 / 12, "feet"),
  25307. default: true
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25313. {
  25314. front: {
  25315. height: math.unit(1 + 6 / 12, "feet"),
  25316. weight: math.unit(25, "lb"),
  25317. name: "Front",
  25318. image: {
  25319. source: "./media/characters/karla-halldor/front.svg",
  25320. extra: 1459 / 1383,
  25321. bottom: 12 / 1472
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Normal",
  25328. height: math.unit(1 + 6 / 12, "feet"),
  25329. default: true
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25335. {
  25336. front: {
  25337. height: math.unit(6 + 2 / 12, "feet"),
  25338. weight: math.unit(160, "lb"),
  25339. name: "Front",
  25340. image: {
  25341. source: "./media/characters/ariam/front.svg",
  25342. extra: 1073/976,
  25343. bottom: 52/1125
  25344. }
  25345. },
  25346. back: {
  25347. height: math.unit(6 + 2/12, "feet"),
  25348. weight: math.unit(160, "lb"),
  25349. name: "Back",
  25350. image: {
  25351. source: "./media/characters/ariam/back.svg",
  25352. extra: 1103/1023,
  25353. bottom: 9/1112
  25354. }
  25355. },
  25356. dressed: {
  25357. height: math.unit(6 + 2/12, "feet"),
  25358. weight: math.unit(160, "lb"),
  25359. name: "Dressed",
  25360. image: {
  25361. source: "./media/characters/ariam/dressed.svg",
  25362. extra: 1099/1009,
  25363. bottom: 25/1124
  25364. }
  25365. },
  25366. squatting: {
  25367. height: math.unit(4.1, "feet"),
  25368. weight: math.unit(160, "lb"),
  25369. name: "Squatting",
  25370. image: {
  25371. source: "./media/characters/ariam/squatting.svg",
  25372. extra: 2617 / 2112,
  25373. bottom: 61.2 / 2681,
  25374. }
  25375. },
  25376. },
  25377. [
  25378. {
  25379. name: "Normal",
  25380. height: math.unit(6 + 2 / 12, "feet"),
  25381. default: true
  25382. },
  25383. {
  25384. name: "Normal+",
  25385. height: math.unit(4, "meters")
  25386. },
  25387. {
  25388. name: "Macro",
  25389. height: math.unit(50, "meters")
  25390. },
  25391. {
  25392. name: "Macro+",
  25393. height: math.unit(100, "meters")
  25394. },
  25395. {
  25396. name: "Megamacro",
  25397. height: math.unit(20, "km")
  25398. },
  25399. {
  25400. name: "Caretaker",
  25401. height: math.unit(444, "megameters")
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25407. {
  25408. front: {
  25409. height: math.unit(1.67, "meters"),
  25410. weight: math.unit(140, "lb"),
  25411. name: "Front",
  25412. image: {
  25413. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25414. extra: 438 / 410,
  25415. bottom: 0.75 / 439
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Shrunken",
  25422. height: math.unit(7.6, "cm")
  25423. },
  25424. {
  25425. name: "Human Scale",
  25426. height: math.unit(1.67, "meters")
  25427. },
  25428. {
  25429. name: "Wolxi Scale",
  25430. height: math.unit(36.7, "meters"),
  25431. default: true
  25432. },
  25433. ]
  25434. ))
  25435. characterMakers.push(() => makeCharacter(
  25436. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25437. {
  25438. front: {
  25439. height: math.unit(1.73, "meters"),
  25440. weight: math.unit(240, "lb"),
  25441. name: "Front",
  25442. image: {
  25443. source: "./media/characters/izue-two-mothers/front.svg",
  25444. extra: 469 / 437,
  25445. bottom: 1.24 / 470.6
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Shrunken",
  25452. height: math.unit(7.86, "cm")
  25453. },
  25454. {
  25455. name: "Human Scale",
  25456. height: math.unit(1.73, "meters")
  25457. },
  25458. {
  25459. name: "Wolxi Scale",
  25460. height: math.unit(38, "meters"),
  25461. default: true
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25467. {
  25468. front: {
  25469. height: math.unit(1.55, "meters"),
  25470. weight: math.unit(120, "lb"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/teeku-love-shack/front.svg",
  25474. extra: 387 / 362,
  25475. bottom: 1.51 / 388
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Shrunken",
  25482. height: math.unit(7, "cm")
  25483. },
  25484. {
  25485. name: "Human Scale",
  25486. height: math.unit(1.55, "meters")
  25487. },
  25488. {
  25489. name: "Wolxi Scale",
  25490. height: math.unit(34.1, "meters"),
  25491. default: true
  25492. },
  25493. ]
  25494. ))
  25495. characterMakers.push(() => makeCharacter(
  25496. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25497. {
  25498. front: {
  25499. height: math.unit(1.83, "meters"),
  25500. weight: math.unit(135, "lb"),
  25501. name: "Front",
  25502. image: {
  25503. source: "./media/characters/dejma-the-red/front.svg",
  25504. extra: 480 / 458,
  25505. bottom: 1.8 / 482
  25506. }
  25507. },
  25508. },
  25509. [
  25510. {
  25511. name: "Shrunken",
  25512. height: math.unit(8.3, "cm")
  25513. },
  25514. {
  25515. name: "Human Scale",
  25516. height: math.unit(1.83, "meters")
  25517. },
  25518. {
  25519. name: "Wolxi Scale",
  25520. height: math.unit(40, "meters"),
  25521. default: true
  25522. },
  25523. ]
  25524. ))
  25525. characterMakers.push(() => makeCharacter(
  25526. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25527. {
  25528. front: {
  25529. height: math.unit(1.78, "meters"),
  25530. weight: math.unit(65, "kg"),
  25531. name: "Front",
  25532. image: {
  25533. source: "./media/characters/aki/front.svg",
  25534. extra: 452 / 415
  25535. }
  25536. },
  25537. frontNsfw: {
  25538. height: math.unit(1.78, "meters"),
  25539. weight: math.unit(65, "kg"),
  25540. name: "Front (NSFW)",
  25541. image: {
  25542. source: "./media/characters/aki/front-nsfw.svg",
  25543. extra: 452 / 415
  25544. }
  25545. },
  25546. back: {
  25547. height: math.unit(1.78, "meters"),
  25548. weight: math.unit(65, "kg"),
  25549. name: "Back",
  25550. image: {
  25551. source: "./media/characters/aki/back.svg",
  25552. extra: 452 / 415
  25553. }
  25554. },
  25555. rump: {
  25556. height: math.unit(2.05, "feet"),
  25557. name: "Rump",
  25558. image: {
  25559. source: "./media/characters/aki/rump.svg"
  25560. }
  25561. },
  25562. dick: {
  25563. height: math.unit(0.95, "feet"),
  25564. name: "Dick",
  25565. image: {
  25566. source: "./media/characters/aki/dick.svg"
  25567. }
  25568. },
  25569. },
  25570. [
  25571. {
  25572. name: "Micro",
  25573. height: math.unit(15, "cm")
  25574. },
  25575. {
  25576. name: "Normal",
  25577. height: math.unit(178, "cm"),
  25578. default: true
  25579. },
  25580. {
  25581. name: "Macro",
  25582. height: math.unit(214, "m")
  25583. },
  25584. {
  25585. name: "Macro+",
  25586. height: math.unit(534, "m")
  25587. },
  25588. ]
  25589. ))
  25590. characterMakers.push(() => makeCharacter(
  25591. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25592. {
  25593. front: {
  25594. height: math.unit(5 + 5 / 12, "feet"),
  25595. weight: math.unit(120, "lb"),
  25596. name: "Front",
  25597. image: {
  25598. source: "./media/characters/ari/front.svg",
  25599. extra: 1550/1471,
  25600. bottom: 39/1589
  25601. }
  25602. },
  25603. },
  25604. [
  25605. {
  25606. name: "Normal",
  25607. height: math.unit(5 + 5 / 12, "feet")
  25608. },
  25609. {
  25610. name: "Macro",
  25611. height: math.unit(100, "feet"),
  25612. default: true
  25613. },
  25614. {
  25615. name: "Megamacro",
  25616. height: math.unit(100, "miles")
  25617. },
  25618. {
  25619. name: "Gigamacro",
  25620. height: math.unit(80000, "miles")
  25621. },
  25622. ]
  25623. ))
  25624. characterMakers.push(() => makeCharacter(
  25625. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25626. {
  25627. side: {
  25628. height: math.unit(9, "feet"),
  25629. weight: math.unit(400, "kg"),
  25630. name: "Side",
  25631. image: {
  25632. source: "./media/characters/bolt/side.svg",
  25633. extra: 1126 / 896,
  25634. bottom: 60 / 1187.3,
  25635. }
  25636. },
  25637. },
  25638. [
  25639. {
  25640. name: "Micro",
  25641. height: math.unit(5, "inches")
  25642. },
  25643. {
  25644. name: "Normal",
  25645. height: math.unit(9, "feet"),
  25646. default: true
  25647. },
  25648. {
  25649. name: "Macro",
  25650. height: math.unit(700, "feet")
  25651. },
  25652. {
  25653. name: "Max Size",
  25654. height: math.unit(1.52e22, "yottameters")
  25655. },
  25656. ]
  25657. ))
  25658. characterMakers.push(() => makeCharacter(
  25659. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25660. {
  25661. front: {
  25662. height: math.unit(4.3, "meters"),
  25663. weight: math.unit(3, "tons"),
  25664. name: "Front",
  25665. image: {
  25666. source: "./media/characters/draekon-sylviar/front.svg",
  25667. extra: 2072/1512,
  25668. bottom: 74/2146
  25669. }
  25670. },
  25671. back: {
  25672. height: math.unit(4.3, "meters"),
  25673. weight: math.unit(3, "tons"),
  25674. name: "Back",
  25675. image: {
  25676. source: "./media/characters/draekon-sylviar/back.svg",
  25677. extra: 1639/1483,
  25678. bottom: 41/1680
  25679. }
  25680. },
  25681. feral: {
  25682. height: math.unit(1.15, "meters"),
  25683. weight: math.unit(3, "tons"),
  25684. name: "Feral",
  25685. image: {
  25686. source: "./media/characters/draekon-sylviar/feral.svg",
  25687. extra: 1033/395,
  25688. bottom: 130/1163
  25689. }
  25690. },
  25691. maw: {
  25692. height: math.unit(1.3, "meters"),
  25693. name: "Maw",
  25694. image: {
  25695. source: "./media/characters/draekon-sylviar/maw.svg"
  25696. }
  25697. },
  25698. mawSeparated: {
  25699. height: math.unit(1.53, "meters"),
  25700. name: "Separated Maw",
  25701. image: {
  25702. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25703. }
  25704. },
  25705. tail: {
  25706. height: math.unit(1.15, "meters"),
  25707. name: "Tail",
  25708. image: {
  25709. source: "./media/characters/draekon-sylviar/tail.svg"
  25710. }
  25711. },
  25712. tailDick: {
  25713. height: math.unit(1.15, "meters"),
  25714. name: "Tail (Dick)",
  25715. image: {
  25716. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25717. }
  25718. },
  25719. tailDickSeparated: {
  25720. height: math.unit(1.19, "meters"),
  25721. name: "Tail (Separated Dick)",
  25722. image: {
  25723. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25724. }
  25725. },
  25726. slit: {
  25727. height: math.unit(1, "meters"),
  25728. name: "Slit",
  25729. image: {
  25730. source: "./media/characters/draekon-sylviar/slit.svg"
  25731. }
  25732. },
  25733. dick: {
  25734. height: math.unit(1.15, "meters"),
  25735. name: "Dick",
  25736. image: {
  25737. source: "./media/characters/draekon-sylviar/dick.svg"
  25738. }
  25739. },
  25740. dickSeparated: {
  25741. height: math.unit(1.1, "meters"),
  25742. name: "Separated Dick",
  25743. image: {
  25744. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25745. }
  25746. },
  25747. sheath: {
  25748. height: math.unit(1.15, "meters"),
  25749. name: "Sheath",
  25750. image: {
  25751. source: "./media/characters/draekon-sylviar/sheath.svg"
  25752. }
  25753. },
  25754. },
  25755. [
  25756. {
  25757. name: "Small",
  25758. height: math.unit(4.53 / 2, "meters"),
  25759. default: true
  25760. },
  25761. {
  25762. name: "Normal",
  25763. height: math.unit(4.53, "meters"),
  25764. default: true
  25765. },
  25766. {
  25767. name: "Large",
  25768. height: math.unit(4.53 * 2, "meters"),
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25774. {
  25775. front: {
  25776. height: math.unit(6 + 2 / 12, "feet"),
  25777. weight: math.unit(180, "lb"),
  25778. name: "Front",
  25779. image: {
  25780. source: "./media/characters/brawler/front.svg",
  25781. extra: 3301 / 3027,
  25782. bottom: 138 / 3439
  25783. }
  25784. },
  25785. },
  25786. [
  25787. {
  25788. name: "Normal",
  25789. height: math.unit(6 + 2 / 12, "feet"),
  25790. default: true
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25796. {
  25797. front: {
  25798. height: math.unit(11, "feet"),
  25799. weight: math.unit(1000, "lb"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/alex/front.svg",
  25803. bottom: 44.5 / 620
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Micro",
  25810. height: math.unit(5, "inches")
  25811. },
  25812. {
  25813. name: "Normal",
  25814. height: math.unit(11, "feet"),
  25815. default: true
  25816. },
  25817. {
  25818. name: "Macro",
  25819. height: math.unit(9.5e9, "feet")
  25820. },
  25821. {
  25822. name: "Max Size",
  25823. height: math.unit(1.4e283, "yottameters")
  25824. },
  25825. ]
  25826. ))
  25827. characterMakers.push(() => makeCharacter(
  25828. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25829. {
  25830. female: {
  25831. height: math.unit(29.9, "m"),
  25832. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25833. name: "Female",
  25834. image: {
  25835. source: "./media/characters/zenari/female.svg",
  25836. extra: 3281.6 / 3217,
  25837. bottom: 72.2 / 3353
  25838. }
  25839. },
  25840. male: {
  25841. height: math.unit(27.7, "m"),
  25842. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25843. name: "Male",
  25844. image: {
  25845. source: "./media/characters/zenari/male.svg",
  25846. extra: 3008 / 2991,
  25847. bottom: 54.6 / 3069
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Macro",
  25854. height: math.unit(29.7, "meters"),
  25855. default: true
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25861. {
  25862. female: {
  25863. height: math.unit(23.8, "m"),
  25864. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25865. name: "Female",
  25866. image: {
  25867. source: "./media/characters/mactarian/female.svg",
  25868. extra: 2662 / 2569,
  25869. bottom: 73 / 2736
  25870. }
  25871. },
  25872. male: {
  25873. height: math.unit(23.8, "m"),
  25874. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25875. name: "Male",
  25876. image: {
  25877. source: "./media/characters/mactarian/male.svg",
  25878. extra: 2673 / 2600,
  25879. bottom: 76 / 2750
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Macro",
  25886. height: math.unit(23.8, "meters"),
  25887. default: true
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25893. {
  25894. female: {
  25895. height: math.unit(19.3, "m"),
  25896. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25897. name: "Female",
  25898. image: {
  25899. source: "./media/characters/umok/female.svg",
  25900. extra: 2186 / 2078,
  25901. bottom: 87 / 2277
  25902. }
  25903. },
  25904. male: {
  25905. height: math.unit(19.5, "m"),
  25906. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25907. name: "Male",
  25908. image: {
  25909. source: "./media/characters/umok/male.svg",
  25910. extra: 2233 / 2140,
  25911. bottom: 24.4 / 2258
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Macro",
  25918. height: math.unit(19.3, "meters"),
  25919. default: true
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25925. {
  25926. female: {
  25927. height: math.unit(26.15, "m"),
  25928. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25929. name: "Female",
  25930. image: {
  25931. source: "./media/characters/joraxian/female.svg",
  25932. extra: 2912 / 2824,
  25933. bottom: 36 / 2956
  25934. }
  25935. },
  25936. male: {
  25937. height: math.unit(25.4, "m"),
  25938. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25939. name: "Male",
  25940. image: {
  25941. source: "./media/characters/joraxian/male.svg",
  25942. extra: 2877 / 2721,
  25943. bottom: 82 / 2967
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Macro",
  25950. height: math.unit(26.15, "meters"),
  25951. default: true
  25952. },
  25953. ]
  25954. ))
  25955. characterMakers.push(() => makeCharacter(
  25956. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25957. {
  25958. female: {
  25959. height: math.unit(21.6, "m"),
  25960. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25961. name: "Female",
  25962. image: {
  25963. source: "./media/characters/sthara/female.svg",
  25964. extra: 2516 / 2347,
  25965. bottom: 21.5 / 2537
  25966. }
  25967. },
  25968. male: {
  25969. height: math.unit(24, "m"),
  25970. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25971. name: "Male",
  25972. image: {
  25973. source: "./media/characters/sthara/male.svg",
  25974. extra: 2732 / 2607,
  25975. bottom: 23 / 2732
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Macro",
  25982. height: math.unit(21.6, "meters"),
  25983. default: true
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(6 + 4 / 12, "feet"),
  25992. weight: math.unit(175, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/luka-bryzant/front.svg",
  25996. extra: 311 / 289,
  25997. bottom: 4 / 315
  25998. }
  25999. },
  26000. back: {
  26001. height: math.unit(6 + 4 / 12, "feet"),
  26002. weight: math.unit(175, "lb"),
  26003. name: "Back",
  26004. image: {
  26005. source: "./media/characters/luka-bryzant/back.svg",
  26006. extra: 311 / 289,
  26007. bottom: 3.8 / 313.7
  26008. }
  26009. },
  26010. },
  26011. [
  26012. {
  26013. name: "Micro",
  26014. height: math.unit(10, "inches")
  26015. },
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(6 + 4 / 12, "feet"),
  26019. default: true
  26020. },
  26021. {
  26022. name: "Large",
  26023. height: math.unit(12, "feet")
  26024. },
  26025. ]
  26026. ))
  26027. characterMakers.push(() => makeCharacter(
  26028. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26029. {
  26030. front: {
  26031. height: math.unit(5 + 7 / 12, "feet"),
  26032. weight: math.unit(185, "lb"),
  26033. name: "Front",
  26034. image: {
  26035. source: "./media/characters/aman-aquila/front.svg",
  26036. extra: 1013 / 976,
  26037. bottom: 45.6 / 1057
  26038. }
  26039. },
  26040. side: {
  26041. height: math.unit(5 + 7 / 12, "feet"),
  26042. weight: math.unit(185, "lb"),
  26043. name: "Side",
  26044. image: {
  26045. source: "./media/characters/aman-aquila/side.svg",
  26046. extra: 1054 / 1011,
  26047. bottom: 15 / 1070
  26048. }
  26049. },
  26050. back: {
  26051. height: math.unit(5 + 7 / 12, "feet"),
  26052. weight: math.unit(185, "lb"),
  26053. name: "Back",
  26054. image: {
  26055. source: "./media/characters/aman-aquila/back.svg",
  26056. extra: 1026 / 970,
  26057. bottom: 12 / 1039
  26058. }
  26059. },
  26060. head: {
  26061. height: math.unit(1.211, "feet"),
  26062. name: "Head",
  26063. image: {
  26064. source: "./media/characters/aman-aquila/head.svg",
  26065. }
  26066. },
  26067. },
  26068. [
  26069. {
  26070. name: "Minimicro",
  26071. height: math.unit(0.057, "inches")
  26072. },
  26073. {
  26074. name: "Micro",
  26075. height: math.unit(7, "inches")
  26076. },
  26077. {
  26078. name: "Mini",
  26079. height: math.unit(3 + 7 / 12, "feet")
  26080. },
  26081. {
  26082. name: "Normal",
  26083. height: math.unit(5 + 7 / 12, "feet"),
  26084. default: true
  26085. },
  26086. {
  26087. name: "Macro",
  26088. height: math.unit(157 + 7 / 12, "feet")
  26089. },
  26090. {
  26091. name: "Megamacro",
  26092. height: math.unit(1557 + 7 / 12, "feet")
  26093. },
  26094. {
  26095. name: "Gigamacro",
  26096. height: math.unit(15557 + 7 / 12, "feet")
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26102. {
  26103. front: {
  26104. height: math.unit(3 + 2 / 12, "inches"),
  26105. weight: math.unit(0.3, "ounces"),
  26106. name: "Front",
  26107. image: {
  26108. source: "./media/characters/hiphae/front.svg",
  26109. extra: 1931 / 1683,
  26110. bottom: 24 / 1955
  26111. }
  26112. },
  26113. },
  26114. [
  26115. {
  26116. name: "Normal",
  26117. height: math.unit(3 + 1 / 2, "inches"),
  26118. default: true
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26124. {
  26125. front: {
  26126. height: math.unit(5 + 10 / 12, "feet"),
  26127. weight: math.unit(165, "lb"),
  26128. name: "Front",
  26129. image: {
  26130. source: "./media/characters/nicky/front.svg",
  26131. extra: 3144 / 2886,
  26132. bottom: 45.6 / 3192
  26133. }
  26134. },
  26135. back: {
  26136. height: math.unit(5 + 10 / 12, "feet"),
  26137. weight: math.unit(165, "lb"),
  26138. name: "Back",
  26139. image: {
  26140. source: "./media/characters/nicky/back.svg",
  26141. extra: 3055 / 2804,
  26142. bottom: 28.4 / 3087
  26143. }
  26144. },
  26145. frontclothed: {
  26146. height: math.unit(5 + 10 / 12, "feet"),
  26147. weight: math.unit(165, "lb"),
  26148. name: "Front-clothed",
  26149. image: {
  26150. source: "./media/characters/nicky/front-clothed.svg",
  26151. extra: 3184.9 / 2926.9,
  26152. bottom: 86.5 / 3239.9
  26153. }
  26154. },
  26155. foot: {
  26156. height: math.unit(1.16, "feet"),
  26157. name: "Foot",
  26158. image: {
  26159. source: "./media/characters/nicky/foot.svg"
  26160. }
  26161. },
  26162. feet: {
  26163. height: math.unit(1.34, "feet"),
  26164. name: "Feet",
  26165. image: {
  26166. source: "./media/characters/nicky/feet.svg"
  26167. }
  26168. },
  26169. maw: {
  26170. height: math.unit(0.9, "feet"),
  26171. name: "Maw",
  26172. image: {
  26173. source: "./media/characters/nicky/maw.svg"
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Normal",
  26180. height: math.unit(5 + 10 / 12, "feet"),
  26181. default: true
  26182. },
  26183. {
  26184. name: "Macro",
  26185. height: math.unit(60, "feet")
  26186. },
  26187. {
  26188. name: "Megamacro",
  26189. height: math.unit(1, "mile")
  26190. },
  26191. ]
  26192. ))
  26193. characterMakers.push(() => makeCharacter(
  26194. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26195. {
  26196. side: {
  26197. height: math.unit(10, "feet"),
  26198. weight: math.unit(600, "lb"),
  26199. name: "Side",
  26200. image: {
  26201. source: "./media/characters/blair/side.svg",
  26202. bottom: 16.6 / 475,
  26203. extra: 458 / 431
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Micro",
  26210. height: math.unit(8, "inches")
  26211. },
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(10, "feet"),
  26215. default: true
  26216. },
  26217. {
  26218. name: "Macro",
  26219. height: math.unit(180, "feet")
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26225. {
  26226. front: {
  26227. height: math.unit(5 + 4 / 12, "feet"),
  26228. weight: math.unit(125, "lb"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/fisher/front.svg",
  26232. extra: 444 / 390,
  26233. bottom: 2 / 444.8
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Micro",
  26240. height: math.unit(4, "inches")
  26241. },
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(5 + 4 / 12, "feet"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "Macro",
  26249. height: math.unit(100, "feet")
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26255. {
  26256. front: {
  26257. height: math.unit(6.71, "feet"),
  26258. weight: math.unit(200, "lb"),
  26259. preyCapacity: math.unit(1000000, "people"),
  26260. name: "Front",
  26261. image: {
  26262. source: "./media/characters/gliss/front.svg",
  26263. extra: 2347 / 2231,
  26264. bottom: 113 / 2462
  26265. }
  26266. },
  26267. hammerspaceSize: {
  26268. height: math.unit(6.71 * 717, "feet"),
  26269. weight: math.unit(200, "lb"),
  26270. preyCapacity: math.unit(1000000, "people"),
  26271. name: "Hammerspace Size",
  26272. image: {
  26273. source: "./media/characters/gliss/front.svg",
  26274. extra: 2347 / 2231,
  26275. bottom: 113 / 2462
  26276. }
  26277. },
  26278. },
  26279. [
  26280. {
  26281. name: "Normal",
  26282. height: math.unit(6.71, "feet"),
  26283. default: true
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26289. {
  26290. side: {
  26291. height: math.unit(1.44, "m"),
  26292. weight: math.unit(80, "kg"),
  26293. name: "Side",
  26294. image: {
  26295. source: "./media/characters/dune-anderson/side.svg",
  26296. bottom: 49 / 1426
  26297. }
  26298. },
  26299. },
  26300. [
  26301. {
  26302. name: "Wolf-sized",
  26303. height: math.unit(1.44, "meters")
  26304. },
  26305. {
  26306. name: "Normal",
  26307. height: math.unit(5.05, "meters"),
  26308. default: true
  26309. },
  26310. {
  26311. name: "Big",
  26312. height: math.unit(14.4, "meters")
  26313. },
  26314. {
  26315. name: "Huge",
  26316. height: math.unit(144, "meters")
  26317. },
  26318. ]
  26319. ))
  26320. characterMakers.push(() => makeCharacter(
  26321. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26322. {
  26323. front: {
  26324. height: math.unit(7, "feet"),
  26325. weight: math.unit(425, "lb"),
  26326. name: "Front",
  26327. image: {
  26328. source: "./media/characters/hind/front.svg",
  26329. extra: 2091 / 1860,
  26330. bottom: 129 / 2220
  26331. }
  26332. },
  26333. back: {
  26334. height: math.unit(7, "feet"),
  26335. weight: math.unit(425, "lb"),
  26336. name: "Back",
  26337. image: {
  26338. source: "./media/characters/hind/back.svg",
  26339. extra: 2091 / 1860,
  26340. bottom: 24.6 / 2309
  26341. }
  26342. },
  26343. tail: {
  26344. height: math.unit(2.8, "feet"),
  26345. name: "Tail",
  26346. image: {
  26347. source: "./media/characters/hind/tail.svg"
  26348. }
  26349. },
  26350. head: {
  26351. height: math.unit(2.55, "feet"),
  26352. name: "Head",
  26353. image: {
  26354. source: "./media/characters/hind/head.svg"
  26355. }
  26356. },
  26357. },
  26358. [
  26359. {
  26360. name: "XS",
  26361. height: math.unit(0.7, "feet")
  26362. },
  26363. {
  26364. name: "Normal",
  26365. height: math.unit(7, "feet"),
  26366. default: true
  26367. },
  26368. {
  26369. name: "XL",
  26370. height: math.unit(70, "feet")
  26371. },
  26372. ]
  26373. ))
  26374. characterMakers.push(() => makeCharacter(
  26375. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26376. {
  26377. front: {
  26378. height: math.unit(2.1, "meters"),
  26379. weight: math.unit(150, "lb"),
  26380. name: "Front",
  26381. image: {
  26382. source: "./media/characters/tharquench-sizestealer/front.svg",
  26383. extra: 1605/1470,
  26384. bottom: 36/1641
  26385. }
  26386. },
  26387. frontAlt: {
  26388. height: math.unit(2.1, "meters"),
  26389. weight: math.unit(150, "lb"),
  26390. name: "Front (Alt)",
  26391. image: {
  26392. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26393. extra: 2318 / 2063,
  26394. bottom: 93.4 / 2410
  26395. }
  26396. },
  26397. },
  26398. [
  26399. {
  26400. name: "Nano",
  26401. height: math.unit(1, "mm")
  26402. },
  26403. {
  26404. name: "Micro",
  26405. height: math.unit(1, "cm")
  26406. },
  26407. {
  26408. name: "Normal",
  26409. height: math.unit(2.1, "meters"),
  26410. default: true
  26411. },
  26412. ]
  26413. ))
  26414. characterMakers.push(() => makeCharacter(
  26415. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26416. {
  26417. front: {
  26418. height: math.unit(7 + 5 / 12, "feet"),
  26419. weight: math.unit(357, "lb"),
  26420. name: "Front",
  26421. image: {
  26422. source: "./media/characters/solex-draconov/front.svg",
  26423. extra: 1993 / 1865,
  26424. bottom: 117 / 2111
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Natural Height",
  26431. height: math.unit(7 + 5 / 12, "feet"),
  26432. default: true
  26433. },
  26434. {
  26435. name: "Macro",
  26436. height: math.unit(350, "feet")
  26437. },
  26438. {
  26439. name: "Macro+",
  26440. height: math.unit(1000, "feet")
  26441. },
  26442. {
  26443. name: "Megamacro",
  26444. height: math.unit(20, "km")
  26445. },
  26446. {
  26447. name: "Megamacro+",
  26448. height: math.unit(1000, "km")
  26449. },
  26450. {
  26451. name: "Gigamacro",
  26452. height: math.unit(2.5, "Gm")
  26453. },
  26454. {
  26455. name: "Teramacro",
  26456. height: math.unit(15, "Tm")
  26457. },
  26458. {
  26459. name: "Galactic",
  26460. height: math.unit(30, "Zm")
  26461. },
  26462. {
  26463. name: "Universal",
  26464. height: math.unit(21000, "Ym")
  26465. },
  26466. {
  26467. name: "Omniversal",
  26468. height: math.unit(9.861e50, "Ym")
  26469. },
  26470. {
  26471. name: "Existential",
  26472. height: math.unit(1e300, "meters")
  26473. },
  26474. ]
  26475. ))
  26476. characterMakers.push(() => makeCharacter(
  26477. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26478. {
  26479. side: {
  26480. height: math.unit(25, "feet"),
  26481. weight: math.unit(90000, "lb"),
  26482. name: "Side",
  26483. image: {
  26484. source: "./media/characters/mandarax/side.svg",
  26485. extra: 614 / 332,
  26486. bottom: 55 / 630
  26487. }
  26488. },
  26489. lounging: {
  26490. height: math.unit(15.4, "feet"),
  26491. weight: math.unit(90000, "lb"),
  26492. name: "Lounging",
  26493. image: {
  26494. source: "./media/characters/mandarax/lounging.svg",
  26495. extra: 817/609,
  26496. bottom: 685/1502
  26497. }
  26498. },
  26499. head: {
  26500. height: math.unit(11.4, "feet"),
  26501. name: "Head",
  26502. image: {
  26503. source: "./media/characters/mandarax/head.svg"
  26504. }
  26505. },
  26506. belly: {
  26507. height: math.unit(33, "feet"),
  26508. name: "Belly",
  26509. preyCapacity: math.unit(500, "people"),
  26510. image: {
  26511. source: "./media/characters/mandarax/belly.svg"
  26512. }
  26513. },
  26514. dick: {
  26515. height: math.unit(8.46, "feet"),
  26516. name: "Dick",
  26517. image: {
  26518. source: "./media/characters/mandarax/dick.svg"
  26519. }
  26520. },
  26521. top: {
  26522. height: math.unit(28, "meters"),
  26523. name: "Top",
  26524. image: {
  26525. source: "./media/characters/mandarax/top.svg"
  26526. }
  26527. },
  26528. },
  26529. [
  26530. {
  26531. name: "Normal",
  26532. height: math.unit(25, "feet"),
  26533. default: true
  26534. },
  26535. ]
  26536. ))
  26537. characterMakers.push(() => makeCharacter(
  26538. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26539. {
  26540. front: {
  26541. height: math.unit(5, "feet"),
  26542. weight: math.unit(90, "lb"),
  26543. name: "Front",
  26544. image: {
  26545. source: "./media/characters/pixil/front.svg",
  26546. extra: 2000 / 1618,
  26547. bottom: 12.3 / 2011
  26548. }
  26549. },
  26550. },
  26551. [
  26552. {
  26553. name: "Normal",
  26554. height: math.unit(5, "feet"),
  26555. default: true
  26556. },
  26557. {
  26558. name: "Megamacro",
  26559. height: math.unit(10, "miles"),
  26560. },
  26561. ]
  26562. ))
  26563. characterMakers.push(() => makeCharacter(
  26564. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26565. {
  26566. front: {
  26567. height: math.unit(7 + 2 / 12, "feet"),
  26568. weight: math.unit(200, "lb"),
  26569. name: "Front",
  26570. image: {
  26571. source: "./media/characters/angel/front.svg",
  26572. extra: 1830 / 1737,
  26573. bottom: 22.6 / 1854,
  26574. }
  26575. },
  26576. },
  26577. [
  26578. {
  26579. name: "Normal",
  26580. height: math.unit(7 + 2 / 12, "feet"),
  26581. default: true
  26582. },
  26583. {
  26584. name: "Macro",
  26585. height: math.unit(1000, "feet")
  26586. },
  26587. {
  26588. name: "Megamacro",
  26589. height: math.unit(2, "miles")
  26590. },
  26591. {
  26592. name: "Gigamacro",
  26593. height: math.unit(20, "earths")
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26599. {
  26600. front: {
  26601. height: math.unit(5, "feet"),
  26602. weight: math.unit(180, "lb"),
  26603. name: "Front",
  26604. image: {
  26605. source: "./media/characters/mekana/front.svg",
  26606. extra: 1671 / 1605,
  26607. bottom: 3.5 / 1691
  26608. }
  26609. },
  26610. side: {
  26611. height: math.unit(5, "feet"),
  26612. weight: math.unit(180, "lb"),
  26613. name: "Side",
  26614. image: {
  26615. source: "./media/characters/mekana/side.svg",
  26616. extra: 1671 / 1605,
  26617. bottom: 3.5 / 1691
  26618. }
  26619. },
  26620. back: {
  26621. height: math.unit(5, "feet"),
  26622. weight: math.unit(180, "lb"),
  26623. name: "Back",
  26624. image: {
  26625. source: "./media/characters/mekana/back.svg",
  26626. extra: 1671 / 1605,
  26627. bottom: 3.5 / 1691
  26628. }
  26629. },
  26630. },
  26631. [
  26632. {
  26633. name: "Normal",
  26634. height: math.unit(5, "feet"),
  26635. default: true
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26641. {
  26642. front: {
  26643. height: math.unit(4 + 6 / 12, "feet"),
  26644. weight: math.unit(80, "lb"),
  26645. name: "Front",
  26646. image: {
  26647. source: "./media/characters/pixie/front.svg",
  26648. extra: 1924 / 1825,
  26649. bottom: 22.4 / 1946
  26650. }
  26651. },
  26652. },
  26653. [
  26654. {
  26655. name: "Normal",
  26656. height: math.unit(4 + 6 / 12, "feet"),
  26657. default: true
  26658. },
  26659. {
  26660. name: "Macro",
  26661. height: math.unit(40, "feet")
  26662. },
  26663. ]
  26664. ))
  26665. characterMakers.push(() => makeCharacter(
  26666. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26667. {
  26668. front: {
  26669. height: math.unit(2.1, "meters"),
  26670. weight: math.unit(200, "lb"),
  26671. name: "Front",
  26672. image: {
  26673. source: "./media/characters/the-lascivious/front.svg",
  26674. extra: 1 / 0.893,
  26675. bottom: 3.5 / 573.7
  26676. }
  26677. },
  26678. },
  26679. [
  26680. {
  26681. name: "Human Scale",
  26682. height: math.unit(2.1, "meters")
  26683. },
  26684. {
  26685. name: "Wolxi Scale",
  26686. height: math.unit(46.2, "m"),
  26687. default: true
  26688. },
  26689. {
  26690. name: "Boinker of Buildings",
  26691. height: math.unit(10, "km")
  26692. },
  26693. {
  26694. name: "Shagger of Skyscrapers",
  26695. height: math.unit(40, "km")
  26696. },
  26697. {
  26698. name: "Banger of Boroughs",
  26699. height: math.unit(4000, "km")
  26700. },
  26701. {
  26702. name: "Screwer of States",
  26703. height: math.unit(100000, "km")
  26704. },
  26705. {
  26706. name: "Pounder of Planets",
  26707. height: math.unit(2000000, "km")
  26708. },
  26709. ]
  26710. ))
  26711. characterMakers.push(() => makeCharacter(
  26712. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26713. {
  26714. front: {
  26715. height: math.unit(6, "feet"),
  26716. weight: math.unit(150, "lb"),
  26717. name: "Front",
  26718. image: {
  26719. source: "./media/characters/aj/front.svg",
  26720. extra: 2039 / 1562,
  26721. bottom: 40 / 2079
  26722. }
  26723. },
  26724. },
  26725. [
  26726. {
  26727. name: "Normal",
  26728. height: math.unit(11 + 6 / 12, "feet"),
  26729. default: true
  26730. },
  26731. {
  26732. name: "Megamacro",
  26733. height: math.unit(60, "megameters")
  26734. },
  26735. ]
  26736. ))
  26737. characterMakers.push(() => makeCharacter(
  26738. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26739. {
  26740. side: {
  26741. height: math.unit(31 + 8 / 12, "feet"),
  26742. weight: math.unit(75000, "kg"),
  26743. name: "Side",
  26744. image: {
  26745. source: "./media/characters/koros/side.svg",
  26746. extra: 1442 / 1297,
  26747. bottom: 122.7 / 1562
  26748. }
  26749. },
  26750. dicksKingsCrown: {
  26751. height: math.unit(6, "feet"),
  26752. name: "Dicks (King's Crown)",
  26753. image: {
  26754. source: "./media/characters/koros/dicks-kings-crown.svg"
  26755. }
  26756. },
  26757. dicksTailSet: {
  26758. height: math.unit(3, "feet"),
  26759. name: "Dicks (Tail Set)",
  26760. image: {
  26761. source: "./media/characters/koros/dicks-tail-set.svg"
  26762. }
  26763. },
  26764. dickCumming: {
  26765. height: math.unit(7.98, "feet"),
  26766. name: "Dick (Cumming)",
  26767. image: {
  26768. source: "./media/characters/koros/dick-cumming.svg"
  26769. }
  26770. },
  26771. dicksBack: {
  26772. height: math.unit(5.9, "feet"),
  26773. name: "Dicks (Back)",
  26774. image: {
  26775. source: "./media/characters/koros/dicks-back.svg"
  26776. }
  26777. },
  26778. dicksFront: {
  26779. height: math.unit(3.72, "feet"),
  26780. name: "Dicks (Front)",
  26781. image: {
  26782. source: "./media/characters/koros/dicks-front.svg"
  26783. }
  26784. },
  26785. dicksPeeking: {
  26786. height: math.unit(3.0, "feet"),
  26787. name: "Dicks (Peeking)",
  26788. image: {
  26789. source: "./media/characters/koros/dicks-peeking.svg"
  26790. }
  26791. },
  26792. eye: {
  26793. height: math.unit(1.7, "feet"),
  26794. name: "Eye",
  26795. image: {
  26796. source: "./media/characters/koros/eye.svg"
  26797. }
  26798. },
  26799. headFront: {
  26800. height: math.unit(11.69, "feet"),
  26801. name: "Head (Front)",
  26802. image: {
  26803. source: "./media/characters/koros/head-front.svg"
  26804. }
  26805. },
  26806. headSide: {
  26807. height: math.unit(14, "feet"),
  26808. name: "Head (Side)",
  26809. image: {
  26810. source: "./media/characters/koros/head-side.svg"
  26811. }
  26812. },
  26813. leg: {
  26814. height: math.unit(17, "feet"),
  26815. name: "Leg",
  26816. image: {
  26817. source: "./media/characters/koros/leg.svg"
  26818. }
  26819. },
  26820. mawSide: {
  26821. height: math.unit(12.8, "feet"),
  26822. name: "Maw (Side)",
  26823. image: {
  26824. source: "./media/characters/koros/maw-side.svg"
  26825. }
  26826. },
  26827. mawSpitting: {
  26828. height: math.unit(17, "feet"),
  26829. name: "Maw (Spitting)",
  26830. image: {
  26831. source: "./media/characters/koros/maw-spitting.svg"
  26832. }
  26833. },
  26834. slit: {
  26835. height: math.unit(2.8, "feet"),
  26836. name: "Slit",
  26837. image: {
  26838. source: "./media/characters/koros/slit.svg"
  26839. }
  26840. },
  26841. stomach: {
  26842. height: math.unit(6.8, "feet"),
  26843. preyCapacity: math.unit(20, "people"),
  26844. name: "Stomach",
  26845. image: {
  26846. source: "./media/characters/koros/stomach.svg"
  26847. }
  26848. },
  26849. wingspanBottom: {
  26850. height: math.unit(114, "feet"),
  26851. name: "Wingspan (Bottom)",
  26852. image: {
  26853. source: "./media/characters/koros/wingspan-bottom.svg"
  26854. }
  26855. },
  26856. wingspanTop: {
  26857. height: math.unit(104, "feet"),
  26858. name: "Wingspan (Top)",
  26859. image: {
  26860. source: "./media/characters/koros/wingspan-top.svg"
  26861. }
  26862. },
  26863. },
  26864. [
  26865. {
  26866. name: "Normal",
  26867. height: math.unit(31 + 8 / 12, "feet"),
  26868. default: true
  26869. },
  26870. ]
  26871. ))
  26872. characterMakers.push(() => makeCharacter(
  26873. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26874. {
  26875. front: {
  26876. height: math.unit(18 + 5 / 12, "feet"),
  26877. weight: math.unit(3750, "kg"),
  26878. name: "Front",
  26879. image: {
  26880. source: "./media/characters/vexx/front.svg",
  26881. extra: 426 / 396,
  26882. bottom: 31.5 / 458
  26883. }
  26884. },
  26885. maw: {
  26886. height: math.unit(6, "feet"),
  26887. name: "Maw",
  26888. image: {
  26889. source: "./media/characters/vexx/maw.svg"
  26890. }
  26891. },
  26892. },
  26893. [
  26894. {
  26895. name: "Normal",
  26896. height: math.unit(18 + 5 / 12, "feet"),
  26897. default: true
  26898. },
  26899. ]
  26900. ))
  26901. characterMakers.push(() => makeCharacter(
  26902. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26903. {
  26904. front: {
  26905. height: math.unit(17 + 6 / 12, "feet"),
  26906. weight: math.unit(150, "lb"),
  26907. name: "Front",
  26908. image: {
  26909. source: "./media/characters/baadra/front.svg",
  26910. extra: 1694/1553,
  26911. bottom: 179/1873
  26912. }
  26913. },
  26914. frontAlt: {
  26915. height: math.unit(17 + 6 / 12, "feet"),
  26916. weight: math.unit(150, "lb"),
  26917. name: "Front (Alt)",
  26918. image: {
  26919. source: "./media/characters/baadra/front-alt.svg",
  26920. extra: 3137 / 2890,
  26921. bottom: 168.4 / 3305
  26922. }
  26923. },
  26924. back: {
  26925. height: math.unit(17 + 6 / 12, "feet"),
  26926. weight: math.unit(150, "lb"),
  26927. name: "Back",
  26928. image: {
  26929. source: "./media/characters/baadra/back.svg",
  26930. extra: 3142 / 2890,
  26931. bottom: 220 / 3371
  26932. }
  26933. },
  26934. head: {
  26935. height: math.unit(5.45, "feet"),
  26936. name: "Head",
  26937. image: {
  26938. source: "./media/characters/baadra/head.svg"
  26939. }
  26940. },
  26941. headAngry: {
  26942. height: math.unit(4.95, "feet"),
  26943. name: "Head (Angry)",
  26944. image: {
  26945. source: "./media/characters/baadra/head-angry.svg"
  26946. }
  26947. },
  26948. headOpen: {
  26949. height: math.unit(6, "feet"),
  26950. name: "Head (Open)",
  26951. image: {
  26952. source: "./media/characters/baadra/head-open.svg"
  26953. }
  26954. },
  26955. },
  26956. [
  26957. {
  26958. name: "Normal",
  26959. height: math.unit(17 + 6 / 12, "feet"),
  26960. default: true
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(7 + 3 / 12, "feet"),
  26969. weight: math.unit(180, "lb"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/juri/front.svg",
  26973. extra: 1401 / 1237,
  26974. bottom: 18.5 / 1418
  26975. }
  26976. },
  26977. side: {
  26978. height: math.unit(7 + 3 / 12, "feet"),
  26979. weight: math.unit(180, "lb"),
  26980. name: "Side",
  26981. image: {
  26982. source: "./media/characters/juri/side.svg",
  26983. extra: 1424 / 1242,
  26984. bottom: 18.5 / 1447
  26985. }
  26986. },
  26987. sitting: {
  26988. height: math.unit(6, "feet"),
  26989. weight: math.unit(180, "lb"),
  26990. name: "Sitting",
  26991. image: {
  26992. source: "./media/characters/juri/sitting.svg",
  26993. extra: 1270 / 1143,
  26994. bottom: 100 / 1343
  26995. }
  26996. },
  26997. back: {
  26998. height: math.unit(7 + 3 / 12, "feet"),
  26999. weight: math.unit(180, "lb"),
  27000. name: "Back",
  27001. image: {
  27002. source: "./media/characters/juri/back.svg",
  27003. extra: 1377 / 1240,
  27004. bottom: 23.7 / 1405
  27005. }
  27006. },
  27007. maw: {
  27008. height: math.unit(2.8, "feet"),
  27009. name: "Maw",
  27010. image: {
  27011. source: "./media/characters/juri/maw.svg"
  27012. }
  27013. },
  27014. stomach: {
  27015. height: math.unit(0.89, "feet"),
  27016. preyCapacity: math.unit(4, "liters"),
  27017. name: "Stomach",
  27018. image: {
  27019. source: "./media/characters/juri/stomach.svg"
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Normal",
  27026. height: math.unit(7 + 3 / 12, "feet"),
  27027. default: true
  27028. },
  27029. ]
  27030. ))
  27031. characterMakers.push(() => makeCharacter(
  27032. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27033. {
  27034. fox: {
  27035. height: math.unit(5 + 6 / 12, "feet"),
  27036. weight: math.unit(140, "lb"),
  27037. name: "Fox",
  27038. image: {
  27039. source: "./media/characters/maxene-sita/fox.svg",
  27040. extra: 146 / 138,
  27041. bottom: 2.1 / 148.19
  27042. }
  27043. },
  27044. foxLaying: {
  27045. height: math.unit(1.70, "feet"),
  27046. weight: math.unit(140, "lb"),
  27047. name: "Fox (Laying)",
  27048. image: {
  27049. source: "./media/characters/maxene-sita/fox-laying.svg",
  27050. extra: 910 / 572,
  27051. bottom: 71 / 981
  27052. }
  27053. },
  27054. kitsune: {
  27055. height: math.unit(10, "feet"),
  27056. weight: math.unit(800, "lb"),
  27057. name: "Kitsune",
  27058. image: {
  27059. source: "./media/characters/maxene-sita/kitsune.svg",
  27060. extra: 185 / 176,
  27061. bottom: 4.7 / 189.9
  27062. }
  27063. },
  27064. hellhound: {
  27065. height: math.unit(10, "feet"),
  27066. weight: math.unit(700, "lb"),
  27067. name: "Hellhound",
  27068. image: {
  27069. source: "./media/characters/maxene-sita/hellhound.svg",
  27070. extra: 1600 / 1545,
  27071. bottom: 81 / 1681
  27072. }
  27073. },
  27074. },
  27075. [
  27076. {
  27077. name: "Normal",
  27078. height: math.unit(5 + 6 / 12, "feet"),
  27079. default: true
  27080. },
  27081. ]
  27082. ))
  27083. characterMakers.push(() => makeCharacter(
  27084. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27085. {
  27086. front: {
  27087. height: math.unit(3 + 4 / 12, "feet"),
  27088. weight: math.unit(70, "lb"),
  27089. name: "Front",
  27090. image: {
  27091. source: "./media/characters/maia/front.svg",
  27092. extra: 227 / 219.5,
  27093. bottom: 40 / 267
  27094. }
  27095. },
  27096. back: {
  27097. height: math.unit(3 + 4 / 12, "feet"),
  27098. weight: math.unit(70, "lb"),
  27099. name: "Back",
  27100. image: {
  27101. source: "./media/characters/maia/back.svg",
  27102. extra: 237 / 225
  27103. }
  27104. },
  27105. },
  27106. [
  27107. {
  27108. name: "Normal",
  27109. height: math.unit(3 + 4 / 12, "feet"),
  27110. default: true
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27116. {
  27117. front: {
  27118. height: math.unit(5 + 10 / 12, "feet"),
  27119. weight: math.unit(197, "lb"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/jabaro/front.svg",
  27123. extra: 225 / 216,
  27124. bottom: 5.06 / 230
  27125. }
  27126. },
  27127. back: {
  27128. height: math.unit(5 + 10 / 12, "feet"),
  27129. weight: math.unit(197, "lb"),
  27130. name: "Back",
  27131. image: {
  27132. source: "./media/characters/jabaro/back.svg",
  27133. extra: 225 / 219,
  27134. bottom: 1.9 / 227
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Normal",
  27141. height: math.unit(5 + 10 / 12, "feet"),
  27142. default: true
  27143. },
  27144. ]
  27145. ))
  27146. characterMakers.push(() => makeCharacter(
  27147. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27148. {
  27149. front: {
  27150. height: math.unit(5 + 8 / 12, "feet"),
  27151. weight: math.unit(139, "lb"),
  27152. name: "Front",
  27153. image: {
  27154. source: "./media/characters/risa/front.svg",
  27155. extra: 270 / 260,
  27156. bottom: 11.2 / 282
  27157. }
  27158. },
  27159. back: {
  27160. height: math.unit(5 + 8 / 12, "feet"),
  27161. weight: math.unit(139, "lb"),
  27162. name: "Back",
  27163. image: {
  27164. source: "./media/characters/risa/back.svg",
  27165. extra: 264 / 255,
  27166. bottom: 4 / 268
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Normal",
  27173. height: math.unit(5 + 8 / 12, "feet"),
  27174. default: true
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(2 + 11 / 12, "feet"),
  27183. weight: math.unit(30, "lb"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/weatley/front.svg",
  27187. bottom: 10.7 / 414,
  27188. extra: 403.5 / 362
  27189. }
  27190. },
  27191. back: {
  27192. height: math.unit(2 + 11 / 12, "feet"),
  27193. weight: math.unit(30, "lb"),
  27194. name: "Back",
  27195. image: {
  27196. source: "./media/characters/weatley/back.svg",
  27197. bottom: 10.7 / 414,
  27198. extra: 403.5 / 362
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(2 + 11 / 12, "feet"),
  27206. default: true
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(5 + 2 / 12, "feet"),
  27215. weight: math.unit(50, "kg"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/mercury-crescent/front.svg",
  27219. extra: 1088 / 1033,
  27220. bottom: 18.9 / 1109
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Normal",
  27227. height: math.unit(5 + 2 / 12, "feet"),
  27228. default: true
  27229. },
  27230. ]
  27231. ))
  27232. characterMakers.push(() => makeCharacter(
  27233. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27234. {
  27235. front: {
  27236. height: math.unit(2, "feet"),
  27237. weight: math.unit(15, "kg"),
  27238. name: "Front",
  27239. image: {
  27240. source: "./media/characters/diamond-jones/front.svg",
  27241. extra: 727/723,
  27242. bottom: 46/773
  27243. }
  27244. },
  27245. },
  27246. [
  27247. {
  27248. name: "Normal",
  27249. height: math.unit(2, "feet"),
  27250. default: true
  27251. },
  27252. ]
  27253. ))
  27254. characterMakers.push(() => makeCharacter(
  27255. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27256. {
  27257. front: {
  27258. height: math.unit(3, "feet"),
  27259. weight: math.unit(30, "kg"),
  27260. name: "Front",
  27261. image: {
  27262. source: "./media/characters/sweet-bit/front.svg",
  27263. extra: 675 / 567,
  27264. bottom: 27.7 / 703
  27265. }
  27266. },
  27267. },
  27268. [
  27269. {
  27270. name: "Normal",
  27271. height: math.unit(3, "feet"),
  27272. default: true
  27273. },
  27274. ]
  27275. ))
  27276. characterMakers.push(() => makeCharacter(
  27277. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27278. {
  27279. side: {
  27280. height: math.unit(9.178, "feet"),
  27281. weight: math.unit(500, "lb"),
  27282. name: "Side",
  27283. image: {
  27284. source: "./media/characters/umbrazen/side.svg",
  27285. extra: 1730 / 1473,
  27286. bottom: 34.6 / 1765
  27287. }
  27288. },
  27289. },
  27290. [
  27291. {
  27292. name: "Normal",
  27293. height: math.unit(9.178, "feet"),
  27294. default: true
  27295. },
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27300. {
  27301. front: {
  27302. height: math.unit(10, "feet"),
  27303. weight: math.unit(750, "lb"),
  27304. name: "Front",
  27305. image: {
  27306. source: "./media/characters/arlist/front.svg",
  27307. extra: 961 / 778,
  27308. bottom: 6.2 / 986
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Normal",
  27315. height: math.unit(10, "feet"),
  27316. default: true
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27322. {
  27323. front: {
  27324. height: math.unit(5 + 1 / 12, "feet"),
  27325. weight: math.unit(110, "lb"),
  27326. name: "Front",
  27327. image: {
  27328. source: "./media/characters/aradel/front.svg",
  27329. extra: 324 / 303,
  27330. bottom: 3.6 / 329.4
  27331. }
  27332. },
  27333. },
  27334. [
  27335. {
  27336. name: "Normal",
  27337. height: math.unit(5 + 1 / 12, "feet"),
  27338. default: true
  27339. },
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27344. {
  27345. dressed: {
  27346. height: math.unit(3 + 8 / 12, "feet"),
  27347. weight: math.unit(50, "lb"),
  27348. name: "Dressed",
  27349. image: {
  27350. source: "./media/characters/serryn/dressed.svg",
  27351. extra: 1792 / 1656,
  27352. bottom: 43.5 / 1840
  27353. }
  27354. },
  27355. nude: {
  27356. height: math.unit(3 + 8 / 12, "feet"),
  27357. weight: math.unit(50, "lb"),
  27358. name: "Nude",
  27359. image: {
  27360. source: "./media/characters/serryn/nude.svg",
  27361. extra: 1792 / 1656,
  27362. bottom: 43.5 / 1840
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(3 + 8 / 12, "feet"),
  27370. default: true
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27376. {
  27377. front: {
  27378. height: math.unit(7 + 10 / 12, "feet"),
  27379. weight: math.unit(255, "lb"),
  27380. name: "Front",
  27381. image: {
  27382. source: "./media/characters/xavier-thyme/front.svg",
  27383. extra: 3733 / 3642,
  27384. bottom: 131 / 3869
  27385. }
  27386. },
  27387. frontRaven: {
  27388. height: math.unit(7 + 10 / 12, "feet"),
  27389. weight: math.unit(255, "lb"),
  27390. name: "Front (Raven)",
  27391. image: {
  27392. source: "./media/characters/xavier-thyme/front-raven.svg",
  27393. extra: 4385 / 3642,
  27394. bottom: 131 / 4517
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Normal",
  27401. height: math.unit(7 + 10 / 12, "feet"),
  27402. default: true
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27408. {
  27409. front: {
  27410. height: math.unit(1.6, "m"),
  27411. weight: math.unit(50, "kg"),
  27412. name: "Front",
  27413. image: {
  27414. source: "./media/characters/kiki/front.svg",
  27415. extra: 4682 / 3610,
  27416. bottom: 115 / 4777
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(1.6, "meters"),
  27424. default: true
  27425. },
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27430. {
  27431. front: {
  27432. height: math.unit(50, "m"),
  27433. weight: math.unit(500, "tonnes"),
  27434. name: "Front",
  27435. image: {
  27436. source: "./media/characters/ryoko/front.svg",
  27437. extra: 4632 / 3926,
  27438. bottom: 193 / 4823
  27439. }
  27440. },
  27441. },
  27442. [
  27443. {
  27444. name: "Normal",
  27445. height: math.unit(50, "meters"),
  27446. default: true
  27447. },
  27448. ]
  27449. ))
  27450. characterMakers.push(() => makeCharacter(
  27451. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27452. {
  27453. front: {
  27454. height: math.unit(30, "m"),
  27455. weight: math.unit(22, "tonnes"),
  27456. name: "Front",
  27457. image: {
  27458. source: "./media/characters/elio/front.svg",
  27459. extra: 4582 / 3720,
  27460. bottom: 236 / 4828
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Normal",
  27467. height: math.unit(30, "meters"),
  27468. default: true
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27474. {
  27475. front: {
  27476. height: math.unit(6 + 3 / 12, "feet"),
  27477. weight: math.unit(120, "lb"),
  27478. name: "Front",
  27479. image: {
  27480. source: "./media/characters/azura/front.svg",
  27481. extra: 1149 / 1135,
  27482. bottom: 45 / 1194
  27483. }
  27484. },
  27485. frontClothed: {
  27486. height: math.unit(6 + 3 / 12, "feet"),
  27487. weight: math.unit(120, "lb"),
  27488. name: "Front (Clothed)",
  27489. image: {
  27490. source: "./media/characters/azura/front-clothed.svg",
  27491. extra: 1149 / 1135,
  27492. bottom: 45 / 1194
  27493. }
  27494. },
  27495. },
  27496. [
  27497. {
  27498. name: "Normal",
  27499. height: math.unit(6 + 3 / 12, "feet"),
  27500. default: true
  27501. },
  27502. {
  27503. name: "Macro",
  27504. height: math.unit(20 + 6 / 12, "feet")
  27505. },
  27506. {
  27507. name: "Megamacro",
  27508. height: math.unit(12, "miles")
  27509. },
  27510. {
  27511. name: "Gigamacro",
  27512. height: math.unit(10000, "miles")
  27513. },
  27514. {
  27515. name: "Teramacro",
  27516. height: math.unit(900000, "miles")
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27522. {
  27523. front: {
  27524. height: math.unit(12, "feet"),
  27525. weight: math.unit(1, "ton"),
  27526. capacity: math.unit(660000, "gallons"),
  27527. name: "Front",
  27528. image: {
  27529. source: "./media/characters/zeus/front.svg",
  27530. extra: 5005 / 4717,
  27531. bottom: 363 / 5388
  27532. }
  27533. },
  27534. },
  27535. [
  27536. {
  27537. name: "Normal",
  27538. height: math.unit(12, "feet")
  27539. },
  27540. {
  27541. name: "Preferred Size",
  27542. height: math.unit(0.5, "miles"),
  27543. default: true
  27544. },
  27545. {
  27546. name: "Giga Horse",
  27547. height: math.unit(300, "miles")
  27548. },
  27549. {
  27550. name: "Riding Planets",
  27551. height: math.unit(30, "megameters")
  27552. },
  27553. {
  27554. name: "Cosmic Giant",
  27555. height: math.unit(3, "zettameters")
  27556. },
  27557. {
  27558. name: "Breeding God",
  27559. height: math.unit(9.92e22, "yottameters")
  27560. },
  27561. ]
  27562. ))
  27563. characterMakers.push(() => makeCharacter(
  27564. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27565. {
  27566. side: {
  27567. height: math.unit(9, "feet"),
  27568. weight: math.unit(1500, "kg"),
  27569. name: "Side",
  27570. image: {
  27571. source: "./media/characters/fang/side.svg",
  27572. extra: 924 / 866,
  27573. bottom: 47.5 / 972.3
  27574. }
  27575. },
  27576. },
  27577. [
  27578. {
  27579. name: "Normal",
  27580. height: math.unit(9, "feet"),
  27581. default: true
  27582. },
  27583. {
  27584. name: "Macro",
  27585. height: math.unit(75 + 6 / 12, "feet")
  27586. },
  27587. {
  27588. name: "Teramacro",
  27589. height: math.unit(50000, "miles")
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(10, "feet"),
  27598. weight: math.unit(2, "tons"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/rekhit/front.svg",
  27602. extra: 2796 / 2590,
  27603. bottom: 225 / 3022
  27604. }
  27605. },
  27606. },
  27607. [
  27608. {
  27609. name: "Normal",
  27610. height: math.unit(10, "feet"),
  27611. default: true
  27612. },
  27613. {
  27614. name: "Macro",
  27615. height: math.unit(500, "feet")
  27616. },
  27617. ]
  27618. ))
  27619. characterMakers.push(() => makeCharacter(
  27620. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27621. {
  27622. front: {
  27623. height: math.unit(7 + 6.451 / 12, "feet"),
  27624. weight: math.unit(310, "lb"),
  27625. name: "Front",
  27626. image: {
  27627. source: "./media/characters/dahlia-verrick/front.svg",
  27628. extra: 1488 / 1365,
  27629. bottom: 6.2 / 1495
  27630. }
  27631. },
  27632. back: {
  27633. height: math.unit(7 + 6.451 / 12, "feet"),
  27634. weight: math.unit(310, "lb"),
  27635. name: "Back",
  27636. image: {
  27637. source: "./media/characters/dahlia-verrick/back.svg",
  27638. extra: 1472 / 1351,
  27639. bottom: 5.28 / 1477
  27640. }
  27641. },
  27642. frontBusiness: {
  27643. height: math.unit(7 + 6.451 / 12, "feet"),
  27644. weight: math.unit(200, "lb"),
  27645. name: "Front (Business)",
  27646. image: {
  27647. source: "./media/characters/dahlia-verrick/front-business.svg",
  27648. extra: 1478 / 1381,
  27649. bottom: 5.5 / 1484
  27650. }
  27651. },
  27652. frontCasual: {
  27653. height: math.unit(7 + 6.451 / 12, "feet"),
  27654. weight: math.unit(200, "lb"),
  27655. name: "Front (Casual)",
  27656. image: {
  27657. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27658. extra: 1478 / 1381,
  27659. bottom: 5.5 / 1484
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Travel-Sized",
  27666. height: math.unit(7.45, "inches")
  27667. },
  27668. {
  27669. name: "Normal",
  27670. height: math.unit(7 + 6.451 / 12, "feet"),
  27671. default: true
  27672. },
  27673. {
  27674. name: "Hitting the Town",
  27675. height: math.unit(37 + 8 / 12, "feet")
  27676. },
  27677. {
  27678. name: "Stomp in the Suburbs",
  27679. height: math.unit(964 + 9.728 / 12, "feet")
  27680. },
  27681. {
  27682. name: "Sit on the City",
  27683. height: math.unit(61747 + 10.592 / 12, "feet")
  27684. },
  27685. {
  27686. name: "Glomp the Globe",
  27687. height: math.unit(252919327 + 4.832 / 12, "feet")
  27688. },
  27689. ]
  27690. ))
  27691. characterMakers.push(() => makeCharacter(
  27692. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27693. {
  27694. front: {
  27695. height: math.unit(6 + 4 / 12, "feet"),
  27696. weight: math.unit(320, "lb"),
  27697. name: "Front",
  27698. image: {
  27699. source: "./media/characters/balina-mahigan/front.svg",
  27700. extra: 447 / 428,
  27701. bottom: 18 / 466
  27702. }
  27703. },
  27704. back: {
  27705. height: math.unit(6 + 4 / 12, "feet"),
  27706. weight: math.unit(320, "lb"),
  27707. name: "Back",
  27708. image: {
  27709. source: "./media/characters/balina-mahigan/back.svg",
  27710. extra: 445 / 428,
  27711. bottom: 4.07 / 448
  27712. }
  27713. },
  27714. arm: {
  27715. height: math.unit(1.88, "feet"),
  27716. name: "Arm",
  27717. image: {
  27718. source: "./media/characters/balina-mahigan/arm.svg"
  27719. }
  27720. },
  27721. backPort: {
  27722. height: math.unit(0.685, "feet"),
  27723. name: "Back Port",
  27724. image: {
  27725. source: "./media/characters/balina-mahigan/back-port.svg"
  27726. }
  27727. },
  27728. hoofpaw: {
  27729. height: math.unit(1.41, "feet"),
  27730. name: "Hoofpaw",
  27731. image: {
  27732. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27733. }
  27734. },
  27735. leftHandBack: {
  27736. height: math.unit(0.938, "feet"),
  27737. name: "Left Hand (Back)",
  27738. image: {
  27739. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27740. }
  27741. },
  27742. leftHandFront: {
  27743. height: math.unit(0.938, "feet"),
  27744. name: "Left Hand (Front)",
  27745. image: {
  27746. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27747. }
  27748. },
  27749. rightHandBack: {
  27750. height: math.unit(0.95, "feet"),
  27751. name: "Right Hand (Back)",
  27752. image: {
  27753. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27754. }
  27755. },
  27756. rightHandFront: {
  27757. height: math.unit(0.95, "feet"),
  27758. name: "Right Hand (Front)",
  27759. image: {
  27760. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27761. }
  27762. },
  27763. },
  27764. [
  27765. {
  27766. name: "Normal",
  27767. height: math.unit(6 + 4 / 12, "feet"),
  27768. default: true
  27769. },
  27770. ]
  27771. ))
  27772. characterMakers.push(() => makeCharacter(
  27773. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27774. {
  27775. front: {
  27776. height: math.unit(6, "feet"),
  27777. weight: math.unit(320, "lb"),
  27778. name: "Front",
  27779. image: {
  27780. source: "./media/characters/balina-mejeri/front.svg",
  27781. extra: 517 / 488,
  27782. bottom: 44.2 / 561
  27783. }
  27784. },
  27785. },
  27786. [
  27787. {
  27788. name: "Normal",
  27789. height: math.unit(6 + 4 / 12, "feet")
  27790. },
  27791. {
  27792. name: "Business",
  27793. height: math.unit(155, "feet"),
  27794. default: true
  27795. },
  27796. ]
  27797. ))
  27798. characterMakers.push(() => makeCharacter(
  27799. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27800. {
  27801. kneeling: {
  27802. height: math.unit(6 + 4 / 12, "feet"),
  27803. weight: math.unit(300 * 20, "lb"),
  27804. name: "Kneeling",
  27805. image: {
  27806. source: "./media/characters/balbarian/kneeling.svg",
  27807. extra: 922 / 862,
  27808. bottom: 42.4 / 965
  27809. }
  27810. },
  27811. },
  27812. [
  27813. {
  27814. name: "Normal",
  27815. height: math.unit(6 + 4 / 12, "feet")
  27816. },
  27817. {
  27818. name: "Treasured",
  27819. height: math.unit(18 + 9 / 12, "feet"),
  27820. default: true
  27821. },
  27822. {
  27823. name: "Macro",
  27824. height: math.unit(900, "feet")
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27830. {
  27831. front: {
  27832. height: math.unit(6 + 4 / 12, "feet"),
  27833. weight: math.unit(325, "lb"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/balina-amarini/front.svg",
  27837. extra: 415 / 403,
  27838. bottom: 19 / 433.4
  27839. }
  27840. },
  27841. back: {
  27842. height: math.unit(6 + 4 / 12, "feet"),
  27843. weight: math.unit(325, "lb"),
  27844. name: "Back",
  27845. image: {
  27846. source: "./media/characters/balina-amarini/back.svg",
  27847. extra: 415 / 403,
  27848. bottom: 13.5 / 432
  27849. }
  27850. },
  27851. overdrive: {
  27852. height: math.unit(6 + 4 / 12, "feet"),
  27853. weight: math.unit(400, "lb"),
  27854. name: "Overdrive",
  27855. image: {
  27856. source: "./media/characters/balina-amarini/overdrive.svg",
  27857. extra: 269 / 259,
  27858. bottom: 12 / 282
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Boom",
  27865. height: math.unit(9 + 10 / 12, "feet"),
  27866. default: true
  27867. },
  27868. {
  27869. name: "Macro",
  27870. height: math.unit(280, "feet")
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27876. {
  27877. goddess: {
  27878. height: math.unit(600, "feet"),
  27879. weight: math.unit(2000000, "tons"),
  27880. name: "Goddess",
  27881. image: {
  27882. source: "./media/characters/lady-kubwa/goddess.svg",
  27883. extra: 1240.5 / 1223,
  27884. bottom: 22 / 1263
  27885. }
  27886. },
  27887. goddesser: {
  27888. height: math.unit(900, "feet"),
  27889. weight: math.unit(20000000, "lb"),
  27890. name: "Goddess-er",
  27891. image: {
  27892. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27893. extra: 899 / 888,
  27894. bottom: 12.6 / 912
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Macro",
  27901. height: math.unit(600, "feet"),
  27902. default: true
  27903. },
  27904. {
  27905. name: "Megamacro",
  27906. height: math.unit(250, "miles")
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(7 + 7 / 12, "feet"),
  27915. weight: math.unit(250, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/tala-grovehorn/front.svg",
  27919. extra: 2636 / 2525,
  27920. bottom: 147 / 2781
  27921. }
  27922. },
  27923. back: {
  27924. height: math.unit(7 + 7 / 12, "feet"),
  27925. weight: math.unit(250, "lb"),
  27926. name: "Back",
  27927. image: {
  27928. source: "./media/characters/tala-grovehorn/back.svg",
  27929. extra: 2635 / 2539,
  27930. bottom: 100 / 2732.8
  27931. }
  27932. },
  27933. mouth: {
  27934. height: math.unit(1.15, "feet"),
  27935. name: "Mouth",
  27936. image: {
  27937. source: "./media/characters/tala-grovehorn/mouth.svg"
  27938. }
  27939. },
  27940. dick: {
  27941. height: math.unit(2.36, "feet"),
  27942. name: "Dick",
  27943. image: {
  27944. source: "./media/characters/tala-grovehorn/dick.svg"
  27945. }
  27946. },
  27947. slit: {
  27948. height: math.unit(0.61, "feet"),
  27949. name: "Slit",
  27950. image: {
  27951. source: "./media/characters/tala-grovehorn/slit.svg"
  27952. }
  27953. },
  27954. },
  27955. [
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(7 + 7 / 12, "feet"),
  27963. weight: math.unit(225, "lb"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/epona/front.svg",
  27967. extra: 2445 / 2290,
  27968. bottom: 251 / 2696
  27969. }
  27970. },
  27971. back: {
  27972. height: math.unit(7 + 7 / 12, "feet"),
  27973. weight: math.unit(225, "lb"),
  27974. name: "Back",
  27975. image: {
  27976. source: "./media/characters/epona/back.svg",
  27977. extra: 2546 / 2408,
  27978. bottom: 44 / 2589
  27979. }
  27980. },
  27981. genitals: {
  27982. height: math.unit(1.5, "feet"),
  27983. name: "Genitals",
  27984. image: {
  27985. source: "./media/characters/epona/genitals.svg"
  27986. }
  27987. },
  27988. },
  27989. [
  27990. {
  27991. name: "Normal",
  27992. height: math.unit(7 + 7 / 12, "feet"),
  27993. default: true
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27999. {
  28000. front: {
  28001. height: math.unit(7, "feet"),
  28002. weight: math.unit(518, "lb"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/avia-bloodbourn/front.svg",
  28006. extra: 1466 / 1350,
  28007. bottom: 65 / 1527
  28008. }
  28009. },
  28010. },
  28011. [
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28016. {
  28017. front: {
  28018. height: math.unit(9.35, "feet"),
  28019. weight: math.unit(600, "lb"),
  28020. name: "Front",
  28021. image: {
  28022. source: "./media/characters/amera/front.svg",
  28023. extra: 891 / 818,
  28024. bottom: 30 / 922.7
  28025. }
  28026. },
  28027. back: {
  28028. height: math.unit(9.35, "feet"),
  28029. weight: math.unit(600, "lb"),
  28030. name: "Back",
  28031. image: {
  28032. source: "./media/characters/amera/back.svg",
  28033. extra: 876 / 824,
  28034. bottom: 6.8 / 884
  28035. }
  28036. },
  28037. dick: {
  28038. height: math.unit(2.14, "feet"),
  28039. name: "Dick",
  28040. image: {
  28041. source: "./media/characters/amera/dick.svg"
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(9.35, "feet"),
  28049. default: true
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28055. {
  28056. kneeling: {
  28057. height: math.unit(3 + 4 / 12, "feet"),
  28058. weight: math.unit(90, "lb"),
  28059. name: "Kneeling",
  28060. image: {
  28061. source: "./media/characters/rosewen/kneeling.svg",
  28062. extra: 1835 / 1571,
  28063. bottom: 27.7 / 1862
  28064. }
  28065. },
  28066. },
  28067. [
  28068. {
  28069. name: "Normal",
  28070. height: math.unit(3 + 4 / 12, "feet"),
  28071. default: true
  28072. },
  28073. ]
  28074. ))
  28075. characterMakers.push(() => makeCharacter(
  28076. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28077. {
  28078. front: {
  28079. height: math.unit(5 + 10 / 12, "feet"),
  28080. weight: math.unit(200, "lb"),
  28081. name: "Front",
  28082. image: {
  28083. source: "./media/characters/sabah/front.svg",
  28084. extra: 849 / 763,
  28085. bottom: 33.9 / 881
  28086. }
  28087. },
  28088. },
  28089. [
  28090. {
  28091. name: "Normal",
  28092. height: math.unit(5 + 10 / 12, "feet"),
  28093. default: true
  28094. },
  28095. ]
  28096. ))
  28097. characterMakers.push(() => makeCharacter(
  28098. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28099. {
  28100. front: {
  28101. height: math.unit(3 + 5 / 12, "feet"),
  28102. weight: math.unit(40, "kg"),
  28103. name: "Front",
  28104. image: {
  28105. source: "./media/characters/purple-flame/front.svg",
  28106. extra: 1577 / 1412,
  28107. bottom: 97 / 1694
  28108. }
  28109. },
  28110. frontDressed: {
  28111. height: math.unit(3 + 5 / 12, "feet"),
  28112. weight: math.unit(40, "kg"),
  28113. name: "Front (Dressed)",
  28114. image: {
  28115. source: "./media/characters/purple-flame/front-dressed.svg",
  28116. extra: 1577 / 1412,
  28117. bottom: 97 / 1694
  28118. }
  28119. },
  28120. headphones: {
  28121. height: math.unit(0.85, "feet"),
  28122. name: "Headphones",
  28123. image: {
  28124. source: "./media/characters/purple-flame/headphones.svg"
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Really Small",
  28131. height: math.unit(5, "cm")
  28132. },
  28133. {
  28134. name: "Micro",
  28135. height: math.unit(1 + 5 / 12, "feet")
  28136. },
  28137. {
  28138. name: "Normal",
  28139. height: math.unit(3 + 5 / 12, "feet"),
  28140. default: true
  28141. },
  28142. {
  28143. name: "Minimacro",
  28144. height: math.unit(125, "feet")
  28145. },
  28146. {
  28147. name: "Macro",
  28148. height: math.unit(0.5, "miles")
  28149. },
  28150. {
  28151. name: "Megamacro",
  28152. height: math.unit(50, "miles")
  28153. },
  28154. {
  28155. name: "Gigantic",
  28156. height: math.unit(750, "miles")
  28157. },
  28158. {
  28159. name: "Planetary",
  28160. height: math.unit(15000, "miles")
  28161. },
  28162. ]
  28163. ))
  28164. characterMakers.push(() => makeCharacter(
  28165. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28166. {
  28167. front: {
  28168. height: math.unit(14, "feet"),
  28169. weight: math.unit(959, "lb"),
  28170. name: "Front",
  28171. image: {
  28172. source: "./media/characters/arsenal/front.svg",
  28173. extra: 2357 / 2157,
  28174. bottom: 93 / 2458
  28175. }
  28176. },
  28177. },
  28178. [
  28179. {
  28180. name: "Normal",
  28181. height: math.unit(14, "feet"),
  28182. default: true
  28183. },
  28184. ]
  28185. ))
  28186. characterMakers.push(() => makeCharacter(
  28187. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28188. {
  28189. front: {
  28190. height: math.unit(6, "feet"),
  28191. weight: math.unit(150, "lb"),
  28192. name: "Front",
  28193. image: {
  28194. source: "./media/characters/adira/front.svg",
  28195. extra: 1078 / 1029,
  28196. bottom: 87 / 1166
  28197. }
  28198. },
  28199. },
  28200. [
  28201. {
  28202. name: "Micro",
  28203. height: math.unit(4, "inches"),
  28204. default: true
  28205. },
  28206. {
  28207. name: "Macro",
  28208. height: math.unit(50, "feet")
  28209. },
  28210. ]
  28211. ))
  28212. characterMakers.push(() => makeCharacter(
  28213. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28214. {
  28215. front: {
  28216. height: math.unit(16, "feet"),
  28217. weight: math.unit(1000, "lb"),
  28218. name: "Front",
  28219. image: {
  28220. source: "./media/characters/grim/front.svg",
  28221. extra: 622 / 614,
  28222. bottom: 18.1 / 642
  28223. }
  28224. },
  28225. back: {
  28226. height: math.unit(16, "feet"),
  28227. weight: math.unit(1000, "lb"),
  28228. name: "Back",
  28229. image: {
  28230. source: "./media/characters/grim/back.svg",
  28231. extra: 610.6 / 602,
  28232. bottom: 40.8 / 652
  28233. }
  28234. },
  28235. hunched: {
  28236. height: math.unit(9.75, "feet"),
  28237. weight: math.unit(1000, "lb"),
  28238. name: "Hunched",
  28239. image: {
  28240. source: "./media/characters/grim/hunched.svg",
  28241. extra: 304 / 297,
  28242. bottom: 35.4 / 394
  28243. }
  28244. },
  28245. },
  28246. [
  28247. {
  28248. name: "Normal",
  28249. height: math.unit(16, "feet"),
  28250. default: true
  28251. },
  28252. ]
  28253. ))
  28254. characterMakers.push(() => makeCharacter(
  28255. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28256. {
  28257. front: {
  28258. height: math.unit(2.3, "meters"),
  28259. weight: math.unit(300, "lb"),
  28260. name: "Front",
  28261. image: {
  28262. source: "./media/characters/sinja/front-sfw.svg",
  28263. extra: 1393 / 1294,
  28264. bottom: 70 / 1463
  28265. }
  28266. },
  28267. frontNsfw: {
  28268. height: math.unit(2.3, "meters"),
  28269. weight: math.unit(300, "lb"),
  28270. name: "Front (NSFW)",
  28271. image: {
  28272. source: "./media/characters/sinja/front-nsfw.svg",
  28273. extra: 1393 / 1294,
  28274. bottom: 70 / 1463
  28275. }
  28276. },
  28277. back: {
  28278. height: math.unit(2.3, "meters"),
  28279. weight: math.unit(300, "lb"),
  28280. name: "Back",
  28281. image: {
  28282. source: "./media/characters/sinja/back.svg",
  28283. extra: 1393 / 1294,
  28284. bottom: 70 / 1463
  28285. }
  28286. },
  28287. head: {
  28288. height: math.unit(1.771, "feet"),
  28289. name: "Head",
  28290. image: {
  28291. source: "./media/characters/sinja/head.svg"
  28292. }
  28293. },
  28294. slit: {
  28295. height: math.unit(0.8, "feet"),
  28296. name: "Slit",
  28297. image: {
  28298. source: "./media/characters/sinja/slit.svg"
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(2.3, "meters")
  28306. },
  28307. {
  28308. name: "Macro",
  28309. height: math.unit(91, "meters"),
  28310. default: true
  28311. },
  28312. {
  28313. name: "Megamacro",
  28314. height: math.unit(91440, "meters")
  28315. },
  28316. {
  28317. name: "Gigamacro",
  28318. height: math.unit(60960000, "meters")
  28319. },
  28320. {
  28321. name: "Teramacro",
  28322. height: math.unit(9144000000, "meters")
  28323. },
  28324. ]
  28325. ))
  28326. characterMakers.push(() => makeCharacter(
  28327. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28328. {
  28329. front: {
  28330. height: math.unit(1.7, "meters"),
  28331. weight: math.unit(130, "lb"),
  28332. name: "Front",
  28333. image: {
  28334. source: "./media/characters/kyu/front.svg",
  28335. extra: 415 / 395,
  28336. bottom: 5 / 420
  28337. }
  28338. },
  28339. head: {
  28340. height: math.unit(1.75, "feet"),
  28341. name: "Head",
  28342. image: {
  28343. source: "./media/characters/kyu/head.svg"
  28344. }
  28345. },
  28346. foot: {
  28347. height: math.unit(0.81, "feet"),
  28348. name: "Foot",
  28349. image: {
  28350. source: "./media/characters/kyu/foot.svg"
  28351. }
  28352. },
  28353. },
  28354. [
  28355. {
  28356. name: "Normal",
  28357. height: math.unit(1.7, "meters")
  28358. },
  28359. {
  28360. name: "Macro",
  28361. height: math.unit(131, "feet"),
  28362. default: true
  28363. },
  28364. {
  28365. name: "Megamacro",
  28366. height: math.unit(91440, "meters")
  28367. },
  28368. {
  28369. name: "Gigamacro",
  28370. height: math.unit(60960000, "meters")
  28371. },
  28372. {
  28373. name: "Teramacro",
  28374. height: math.unit(9144000000, "meters")
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(7 + 1 / 12, "feet"),
  28383. weight: math.unit(250, "lb"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/joey/front.svg",
  28387. extra: 1791 / 1537,
  28388. bottom: 28 / 1816
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Micro",
  28395. height: math.unit(3, "inches")
  28396. },
  28397. {
  28398. name: "Normal",
  28399. height: math.unit(7 + 1 / 12, "feet"),
  28400. default: true
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28406. {
  28407. front: {
  28408. height: math.unit(165, "cm"),
  28409. weight: math.unit(140, "lb"),
  28410. name: "Front",
  28411. image: {
  28412. source: "./media/characters/sam-evans/front.svg",
  28413. extra: 3417 / 3230,
  28414. bottom: 41.3 / 3417
  28415. }
  28416. },
  28417. frontSixTails: {
  28418. height: math.unit(165, "cm"),
  28419. weight: math.unit(140, "lb"),
  28420. name: "Front-six-tails",
  28421. image: {
  28422. source: "./media/characters/sam-evans/front-six-tails.svg",
  28423. extra: 3417 / 3230,
  28424. bottom: 41.3 / 3417
  28425. }
  28426. },
  28427. back: {
  28428. height: math.unit(165, "cm"),
  28429. weight: math.unit(140, "lb"),
  28430. name: "Back",
  28431. image: {
  28432. source: "./media/characters/sam-evans/back.svg",
  28433. extra: 3227 / 3032,
  28434. bottom: 6.8 / 3234
  28435. }
  28436. },
  28437. face: {
  28438. height: math.unit(0.68, "feet"),
  28439. name: "Face",
  28440. image: {
  28441. source: "./media/characters/sam-evans/face.svg"
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Normal",
  28448. height: math.unit(165, "cm"),
  28449. default: true
  28450. },
  28451. {
  28452. name: "Macro",
  28453. height: math.unit(100, "meters")
  28454. },
  28455. {
  28456. name: "Macro+",
  28457. height: math.unit(800, "meters")
  28458. },
  28459. {
  28460. name: "Macro++",
  28461. height: math.unit(3, "km")
  28462. },
  28463. {
  28464. name: "Macro+++",
  28465. height: math.unit(30, "km")
  28466. },
  28467. ]
  28468. ))
  28469. characterMakers.push(() => makeCharacter(
  28470. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28471. {
  28472. front: {
  28473. height: math.unit(10, "feet"),
  28474. weight: math.unit(750, "lb"),
  28475. name: "Front",
  28476. image: {
  28477. source: "./media/characters/juliet-a/front.svg",
  28478. extra: 1766 / 1720,
  28479. bottom: 43 / 1809
  28480. }
  28481. },
  28482. back: {
  28483. height: math.unit(10, "feet"),
  28484. weight: math.unit(750, "lb"),
  28485. name: "Back",
  28486. image: {
  28487. source: "./media/characters/juliet-a/back.svg",
  28488. extra: 1781 / 1734,
  28489. bottom: 35 / 1810,
  28490. }
  28491. },
  28492. },
  28493. [
  28494. {
  28495. name: "Normal",
  28496. height: math.unit(10, "feet"),
  28497. default: true
  28498. },
  28499. {
  28500. name: "Dragon Form",
  28501. height: math.unit(250, "feet")
  28502. },
  28503. {
  28504. name: "Macro",
  28505. height: math.unit(1000, "feet")
  28506. },
  28507. {
  28508. name: "Megamacro",
  28509. height: math.unit(10000, "feet")
  28510. }
  28511. ]
  28512. ))
  28513. characterMakers.push(() => makeCharacter(
  28514. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28515. {
  28516. regular: {
  28517. height: math.unit(7 + 3 / 12, "feet"),
  28518. weight: math.unit(260, "lb"),
  28519. name: "Regular",
  28520. image: {
  28521. source: "./media/characters/wild/regular.svg",
  28522. extra: 97.45 / 92,
  28523. bottom: 6.8 / 104.3
  28524. }
  28525. },
  28526. biggums: {
  28527. height: math.unit(8 + 6 / 12, "feet"),
  28528. weight: math.unit(425, "lb"),
  28529. name: "Biggums",
  28530. image: {
  28531. source: "./media/characters/wild/biggums.svg",
  28532. extra: 97.45 / 92,
  28533. bottom: 7.5 / 132.34
  28534. }
  28535. },
  28536. mawRegular: {
  28537. height: math.unit(1.24, "feet"),
  28538. name: "Maw (Regular)",
  28539. image: {
  28540. source: "./media/characters/wild/maw.svg"
  28541. }
  28542. },
  28543. mawBiggums: {
  28544. height: math.unit(1.47, "feet"),
  28545. name: "Maw (Biggums)",
  28546. image: {
  28547. source: "./media/characters/wild/maw.svg"
  28548. }
  28549. },
  28550. },
  28551. [
  28552. {
  28553. name: "Normal",
  28554. height: math.unit(7 + 3 / 12, "feet"),
  28555. default: true
  28556. },
  28557. ]
  28558. ))
  28559. characterMakers.push(() => makeCharacter(
  28560. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28561. {
  28562. front: {
  28563. height: math.unit(2.5, "meters"),
  28564. weight: math.unit(200, "kg"),
  28565. name: "Front",
  28566. image: {
  28567. source: "./media/characters/vidar/front.svg",
  28568. extra: 2994 / 2795,
  28569. bottom: 56 / 3061
  28570. }
  28571. },
  28572. back: {
  28573. height: math.unit(2.5, "meters"),
  28574. weight: math.unit(200, "kg"),
  28575. name: "Back",
  28576. image: {
  28577. source: "./media/characters/vidar/back.svg",
  28578. extra: 3131 / 2928,
  28579. bottom: 13.5 / 3141.5
  28580. }
  28581. },
  28582. feral: {
  28583. height: math.unit(2.5, "meters"),
  28584. weight: math.unit(2000, "kg"),
  28585. name: "Feral",
  28586. image: {
  28587. source: "./media/characters/vidar/feral.svg",
  28588. extra: 2790 / 1765,
  28589. bottom: 6 / 2796
  28590. }
  28591. },
  28592. },
  28593. [
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(2.5, "meters"),
  28597. default: true
  28598. },
  28599. {
  28600. name: "Macro",
  28601. height: math.unit(100, "meters")
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(5 + 9 / 12, "feet"),
  28610. weight: math.unit(120, "lb"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/ash/front.svg",
  28614. extra: 2189 / 1961,
  28615. bottom: 5.2 / 2194
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(5 + 9 / 12, "feet"),
  28623. default: true
  28624. },
  28625. ]
  28626. ))
  28627. characterMakers.push(() => makeCharacter(
  28628. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28629. {
  28630. front: {
  28631. height: math.unit(9, "feet"),
  28632. weight: math.unit(10000, "lb"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/gygabite/front.svg",
  28636. bottom: 31.7 / 537.8,
  28637. extra: 505 / 370
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Normal",
  28644. height: math.unit(9, "feet"),
  28645. default: true
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28651. {
  28652. front: {
  28653. height: math.unit(12, "feet"),
  28654. weight: math.unit(4000, "lb"),
  28655. name: "Front",
  28656. image: {
  28657. source: "./media/characters/p0tat0/front.svg",
  28658. extra: 1065 / 921,
  28659. bottom: 55.7 / 1121.25
  28660. }
  28661. },
  28662. },
  28663. [
  28664. {
  28665. name: "Normal",
  28666. height: math.unit(12, "feet"),
  28667. default: true
  28668. },
  28669. ]
  28670. ))
  28671. characterMakers.push(() => makeCharacter(
  28672. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28673. {
  28674. side: {
  28675. height: math.unit(6.5, "feet"),
  28676. weight: math.unit(800, "lb"),
  28677. name: "Side",
  28678. image: {
  28679. source: "./media/characters/dusk/side.svg",
  28680. extra: 615 / 373,
  28681. bottom: 53 / 664
  28682. }
  28683. },
  28684. sitting: {
  28685. height: math.unit(7, "feet"),
  28686. weight: math.unit(800, "lb"),
  28687. name: "Sitting",
  28688. image: {
  28689. source: "./media/characters/dusk/sitting.svg",
  28690. extra: 753 / 425,
  28691. bottom: 33 / 774
  28692. }
  28693. },
  28694. head: {
  28695. height: math.unit(6.1, "feet"),
  28696. name: "Head",
  28697. image: {
  28698. source: "./media/characters/dusk/head.svg"
  28699. }
  28700. },
  28701. },
  28702. [
  28703. {
  28704. name: "Normal",
  28705. height: math.unit(7, "feet"),
  28706. default: true
  28707. },
  28708. ]
  28709. ))
  28710. characterMakers.push(() => makeCharacter(
  28711. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28712. {
  28713. front: {
  28714. height: math.unit(15, "feet"),
  28715. weight: math.unit(7000, "lb"),
  28716. name: "Front",
  28717. image: {
  28718. source: "./media/characters/jay-direwolf/front.svg",
  28719. extra: 1810 / 1732,
  28720. bottom: 66 / 1892
  28721. }
  28722. },
  28723. },
  28724. [
  28725. {
  28726. name: "Normal",
  28727. height: math.unit(15, "feet"),
  28728. default: true
  28729. },
  28730. ]
  28731. ))
  28732. characterMakers.push(() => makeCharacter(
  28733. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28734. {
  28735. front: {
  28736. height: math.unit(4 + 9 / 12, "feet"),
  28737. weight: math.unit(130, "lb"),
  28738. name: "Front",
  28739. image: {
  28740. source: "./media/characters/anchovie/front.svg",
  28741. extra: 382 / 350,
  28742. bottom: 25 / 409
  28743. }
  28744. },
  28745. back: {
  28746. height: math.unit(4 + 9 / 12, "feet"),
  28747. weight: math.unit(130, "lb"),
  28748. name: "Back",
  28749. image: {
  28750. source: "./media/characters/anchovie/back.svg",
  28751. extra: 385 / 352,
  28752. bottom: 16.6 / 402
  28753. }
  28754. },
  28755. frontDressed: {
  28756. height: math.unit(4 + 9 / 12, "feet"),
  28757. weight: math.unit(130, "lb"),
  28758. name: "Front (Dressed)",
  28759. image: {
  28760. source: "./media/characters/anchovie/front-dressed.svg",
  28761. extra: 382 / 350,
  28762. bottom: 25 / 409
  28763. }
  28764. },
  28765. backDressed: {
  28766. height: math.unit(4 + 9 / 12, "feet"),
  28767. weight: math.unit(130, "lb"),
  28768. name: "Back (Dressed)",
  28769. image: {
  28770. source: "./media/characters/anchovie/back-dressed.svg",
  28771. extra: 385 / 352,
  28772. bottom: 16.6 / 402
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Micro",
  28779. height: math.unit(6.4, "inches")
  28780. },
  28781. {
  28782. name: "Normal",
  28783. height: math.unit(4 + 9 / 12, "feet"),
  28784. default: true
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(2, "meters"),
  28793. weight: math.unit(180, "lb"),
  28794. name: "Front",
  28795. image: {
  28796. source: "./media/characters/acidrenamon/front.svg",
  28797. extra: 987 / 890,
  28798. bottom: 22.8 / 1009
  28799. }
  28800. },
  28801. back: {
  28802. height: math.unit(2, "meters"),
  28803. weight: math.unit(180, "lb"),
  28804. name: "Back",
  28805. image: {
  28806. source: "./media/characters/acidrenamon/back.svg",
  28807. extra: 983 / 891,
  28808. bottom: 8.4 / 992
  28809. }
  28810. },
  28811. head: {
  28812. height: math.unit(1.92, "feet"),
  28813. name: "Head",
  28814. image: {
  28815. source: "./media/characters/acidrenamon/head.svg"
  28816. }
  28817. },
  28818. rump: {
  28819. height: math.unit(1.72, "feet"),
  28820. name: "Rump",
  28821. image: {
  28822. source: "./media/characters/acidrenamon/rump.svg"
  28823. }
  28824. },
  28825. tail: {
  28826. height: math.unit(4.2, "feet"),
  28827. name: "Tail",
  28828. image: {
  28829. source: "./media/characters/acidrenamon/tail.svg"
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Normal",
  28836. height: math.unit(2, "meters"),
  28837. default: true
  28838. },
  28839. {
  28840. name: "Minimacro",
  28841. height: math.unit(7, "meters")
  28842. },
  28843. {
  28844. name: "Macro",
  28845. height: math.unit(200, "meters")
  28846. },
  28847. {
  28848. name: "Gigamacro",
  28849. height: math.unit(0.2, "earths")
  28850. },
  28851. ]
  28852. ))
  28853. characterMakers.push(() => makeCharacter(
  28854. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28855. {
  28856. front: {
  28857. height: math.unit(152, "feet"),
  28858. name: "Front",
  28859. image: {
  28860. source: "./media/characters/kenzie-lee/front.svg",
  28861. extra: 1869/1774,
  28862. bottom: 128/1997
  28863. }
  28864. },
  28865. side: {
  28866. height: math.unit(86, "feet"),
  28867. name: "Side",
  28868. image: {
  28869. source: "./media/characters/kenzie-lee/side.svg",
  28870. extra: 930/815,
  28871. bottom: 177/1107
  28872. }
  28873. },
  28874. paw: {
  28875. height: math.unit(15, "feet"),
  28876. name: "Paw",
  28877. image: {
  28878. source: "./media/characters/kenzie-lee/paw.svg"
  28879. }
  28880. },
  28881. },
  28882. [
  28883. {
  28884. name: "Kenzie Flea",
  28885. height: math.unit(2, "mm"),
  28886. default: true
  28887. },
  28888. {
  28889. name: "Micro",
  28890. height: math.unit(2, "inches")
  28891. },
  28892. {
  28893. name: "Normal",
  28894. height: math.unit(152, "feet")
  28895. },
  28896. {
  28897. name: "Megamacro",
  28898. height: math.unit(7, "miles")
  28899. },
  28900. {
  28901. name: "Gigamacro",
  28902. height: math.unit(8000, "miles")
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28908. {
  28909. front: {
  28910. height: math.unit(6, "feet"),
  28911. name: "Front",
  28912. image: {
  28913. source: "./media/characters/withers/front.svg",
  28914. extra: 1935/1760,
  28915. bottom: 72/2007
  28916. }
  28917. },
  28918. back: {
  28919. height: math.unit(6, "feet"),
  28920. name: "Back",
  28921. image: {
  28922. source: "./media/characters/withers/back.svg",
  28923. extra: 1944/1792,
  28924. bottom: 12/1956
  28925. }
  28926. },
  28927. dressed: {
  28928. height: math.unit(6, "feet"),
  28929. name: "Dressed",
  28930. image: {
  28931. source: "./media/characters/withers/dressed.svg",
  28932. extra: 1937/1765,
  28933. bottom: 73/2010
  28934. }
  28935. },
  28936. phase1: {
  28937. height: math.unit(1.1, "feet"),
  28938. name: "Phase 1",
  28939. image: {
  28940. source: "./media/characters/withers/phase-1.svg",
  28941. extra: 1885/1232,
  28942. bottom: 0/1885
  28943. }
  28944. },
  28945. phase2: {
  28946. height: math.unit(1.05, "feet"),
  28947. name: "Phase 2",
  28948. image: {
  28949. source: "./media/characters/withers/phase-2.svg",
  28950. extra: 1792/1090,
  28951. bottom: 0/1792
  28952. }
  28953. },
  28954. partyWipe: {
  28955. height: math.unit(1.1, "feet"),
  28956. name: "Party Wipe",
  28957. image: {
  28958. source: "./media/characters/withers/party-wipe.svg",
  28959. extra: 1864/1207,
  28960. bottom: 0/1864
  28961. }
  28962. },
  28963. },
  28964. [
  28965. {
  28966. name: "Macro",
  28967. height: math.unit(167, "feet"),
  28968. default: true
  28969. },
  28970. {
  28971. name: "Megamacro",
  28972. height: math.unit(15, "miles")
  28973. }
  28974. ]
  28975. ))
  28976. characterMakers.push(() => makeCharacter(
  28977. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28978. {
  28979. front: {
  28980. height: math.unit(6 + 7 / 12, "feet"),
  28981. weight: math.unit(250, "lb"),
  28982. name: "Front",
  28983. image: {
  28984. source: "./media/characters/nemoskii/front.svg",
  28985. extra: 2270 / 1734,
  28986. bottom: 86 / 2354
  28987. }
  28988. },
  28989. back: {
  28990. height: math.unit(6 + 7 / 12, "feet"),
  28991. weight: math.unit(250, "lb"),
  28992. name: "Back",
  28993. image: {
  28994. source: "./media/characters/nemoskii/back.svg",
  28995. extra: 1845 / 1788,
  28996. bottom: 10.5 / 1852
  28997. }
  28998. },
  28999. head: {
  29000. height: math.unit(1.31, "feet"),
  29001. name: "Head",
  29002. image: {
  29003. source: "./media/characters/nemoskii/head.svg"
  29004. }
  29005. },
  29006. },
  29007. [
  29008. {
  29009. name: "Micro",
  29010. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29011. },
  29012. {
  29013. name: "Normal",
  29014. height: math.unit(6 + 7 / 12, "feet"),
  29015. default: true
  29016. },
  29017. {
  29018. name: "Macro",
  29019. height: math.unit((6 + 7 / 12) * 150, "feet")
  29020. },
  29021. {
  29022. name: "Macro+",
  29023. height: math.unit((6 + 7 / 12) * 500, "feet")
  29024. },
  29025. {
  29026. name: "Megamacro",
  29027. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29028. },
  29029. ]
  29030. ))
  29031. characterMakers.push(() => makeCharacter(
  29032. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29033. {
  29034. front: {
  29035. height: math.unit(1, "mile"),
  29036. weight: math.unit(265261.9, "lb"),
  29037. name: "Front",
  29038. image: {
  29039. source: "./media/characters/shui/front.svg",
  29040. extra: 1633 / 1564,
  29041. bottom: 91.5 / 1726
  29042. }
  29043. },
  29044. },
  29045. [
  29046. {
  29047. name: "Macro",
  29048. height: math.unit(1, "mile"),
  29049. default: true
  29050. },
  29051. ]
  29052. ))
  29053. characterMakers.push(() => makeCharacter(
  29054. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29055. {
  29056. front: {
  29057. height: math.unit(12 + 6 / 12, "feet"),
  29058. weight: math.unit(1342, "lb"),
  29059. name: "Front",
  29060. image: {
  29061. source: "./media/characters/arokh-takakura/front.svg",
  29062. extra: 1089 / 1043,
  29063. bottom: 77.4 / 1176.7
  29064. }
  29065. },
  29066. back: {
  29067. height: math.unit(12 + 6 / 12, "feet"),
  29068. weight: math.unit(1342, "lb"),
  29069. name: "Back",
  29070. image: {
  29071. source: "./media/characters/arokh-takakura/back.svg",
  29072. extra: 1046 / 1019,
  29073. bottom: 102 / 1150
  29074. }
  29075. },
  29076. },
  29077. [
  29078. {
  29079. name: "Big",
  29080. height: math.unit(12 + 6 / 12, "feet"),
  29081. default: true
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29087. {
  29088. front: {
  29089. height: math.unit(5 + 6 / 12, "feet"),
  29090. weight: math.unit(150, "lb"),
  29091. name: "Front",
  29092. image: {
  29093. source: "./media/characters/theo/front.svg",
  29094. extra: 1184 / 1131,
  29095. bottom: 7.4 / 1191
  29096. }
  29097. },
  29098. },
  29099. [
  29100. {
  29101. name: "Micro",
  29102. height: math.unit(5, "inches")
  29103. },
  29104. {
  29105. name: "Normal",
  29106. height: math.unit(5 + 6 / 12, "feet"),
  29107. default: true
  29108. },
  29109. ]
  29110. ))
  29111. characterMakers.push(() => makeCharacter(
  29112. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29113. {
  29114. front: {
  29115. height: math.unit(5 + 9 / 12, "feet"),
  29116. weight: math.unit(130, "lb"),
  29117. name: "Front",
  29118. image: {
  29119. source: "./media/characters/cecelia-swift/front.svg",
  29120. extra: 502 / 484,
  29121. bottom: 23 / 523
  29122. }
  29123. },
  29124. back: {
  29125. height: math.unit(5 + 9 / 12, "feet"),
  29126. weight: math.unit(130, "lb"),
  29127. name: "Back",
  29128. image: {
  29129. source: "./media/characters/cecelia-swift/back.svg",
  29130. extra: 499 / 485,
  29131. bottom: 12 / 511
  29132. }
  29133. },
  29134. head: {
  29135. height: math.unit(0.90, "feet"),
  29136. name: "Head",
  29137. image: {
  29138. source: "./media/characters/cecelia-swift/head.svg"
  29139. }
  29140. },
  29141. rump: {
  29142. height: math.unit(1.75, "feet"),
  29143. name: "Rump",
  29144. image: {
  29145. source: "./media/characters/cecelia-swift/rump.svg"
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Normal",
  29152. height: math.unit(5 + 9 / 12, "feet"),
  29153. default: true
  29154. },
  29155. {
  29156. name: "Big",
  29157. height: math.unit(50, "feet")
  29158. },
  29159. {
  29160. name: "Macro",
  29161. height: math.unit(100, "feet")
  29162. },
  29163. {
  29164. name: "Macro+",
  29165. height: math.unit(500, "feet")
  29166. },
  29167. {
  29168. name: "Macro++",
  29169. height: math.unit(1000, "feet")
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29175. {
  29176. front: {
  29177. height: math.unit(6, "feet"),
  29178. weight: math.unit(150, "lb"),
  29179. name: "Front",
  29180. image: {
  29181. source: "./media/characters/kaunan/front.svg",
  29182. extra: 2890 / 2523,
  29183. bottom: 49 / 2939
  29184. }
  29185. },
  29186. },
  29187. [
  29188. {
  29189. name: "Macro",
  29190. height: math.unit(150, "feet"),
  29191. default: true
  29192. },
  29193. ]
  29194. ))
  29195. characterMakers.push(() => makeCharacter(
  29196. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29197. {
  29198. dressed: {
  29199. height: math.unit(175, "cm"),
  29200. weight: math.unit(60, "kg"),
  29201. name: "Dressed",
  29202. image: {
  29203. source: "./media/characters/fei/dressed.svg",
  29204. extra: 1402/1278,
  29205. bottom: 27/1429
  29206. }
  29207. },
  29208. nude: {
  29209. height: math.unit(175, "cm"),
  29210. weight: math.unit(60, "kg"),
  29211. name: "Nude",
  29212. image: {
  29213. source: "./media/characters/fei/nude.svg",
  29214. extra: 1402/1278,
  29215. bottom: 27/1429
  29216. }
  29217. },
  29218. heels: {
  29219. height: math.unit(0.466, "feet"),
  29220. name: "Heels",
  29221. image: {
  29222. source: "./media/characters/fei/heels.svg",
  29223. extra: 156/152,
  29224. bottom: 28/184
  29225. }
  29226. },
  29227. },
  29228. [
  29229. {
  29230. name: "Mortal",
  29231. height: math.unit(175, "cm")
  29232. },
  29233. {
  29234. name: "Normal",
  29235. height: math.unit(3500, "m")
  29236. },
  29237. {
  29238. name: "Stroll",
  29239. height: math.unit(18.4, "km"),
  29240. default: true
  29241. },
  29242. {
  29243. name: "Showoff",
  29244. height: math.unit(175, "km")
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(7, "feet"),
  29253. weight: math.unit(1000, "kg"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/edrax/front.svg",
  29257. extra: 2838 / 2550,
  29258. bottom: 130 / 2968
  29259. }
  29260. },
  29261. },
  29262. [
  29263. {
  29264. name: "Small",
  29265. height: math.unit(7, "feet")
  29266. },
  29267. {
  29268. name: "Normal",
  29269. height: math.unit(1500, "meters")
  29270. },
  29271. {
  29272. name: "Mega",
  29273. height: math.unit(12000000, "km"),
  29274. default: true
  29275. },
  29276. {
  29277. name: "Megamacro",
  29278. height: math.unit(10600000, "lightyears")
  29279. },
  29280. {
  29281. name: "Hypermacro",
  29282. height: math.unit(256, "yottameters")
  29283. },
  29284. ]
  29285. ))
  29286. characterMakers.push(() => makeCharacter(
  29287. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29288. {
  29289. front: {
  29290. height: math.unit(10, "feet"),
  29291. weight: math.unit(750, "lb"),
  29292. name: "Front",
  29293. image: {
  29294. source: "./media/characters/clove/front.svg",
  29295. extra: 1918/1751,
  29296. bottom: 52/1970
  29297. }
  29298. },
  29299. back: {
  29300. height: math.unit(10, "feet"),
  29301. weight: math.unit(750, "lb"),
  29302. name: "Back",
  29303. image: {
  29304. source: "./media/characters/clove/back.svg",
  29305. extra: 1912/1747,
  29306. bottom: 50/1962
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(10, "feet"),
  29314. default: true
  29315. },
  29316. ]
  29317. ))
  29318. characterMakers.push(() => makeCharacter(
  29319. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29320. {
  29321. front: {
  29322. height: math.unit(4, "feet"),
  29323. weight: math.unit(50, "lb"),
  29324. name: "Front",
  29325. image: {
  29326. source: "./media/characters/alex-rabbit/front.svg",
  29327. extra: 507 / 458,
  29328. bottom: 18.5 / 527
  29329. }
  29330. },
  29331. back: {
  29332. height: math.unit(4, "feet"),
  29333. weight: math.unit(50, "lb"),
  29334. name: "Back",
  29335. image: {
  29336. source: "./media/characters/alex-rabbit/back.svg",
  29337. extra: 502 / 460,
  29338. bottom: 18.9 / 521
  29339. }
  29340. },
  29341. },
  29342. [
  29343. {
  29344. name: "Normal",
  29345. height: math.unit(4, "feet"),
  29346. default: true
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29352. {
  29353. front: {
  29354. height: math.unit(1 + 3 / 12, "feet"),
  29355. weight: math.unit(80, "lb"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/zander-rose/front.svg",
  29359. extra: 916 / 797,
  29360. bottom: 17 / 933
  29361. }
  29362. },
  29363. back: {
  29364. height: math.unit(1 + 3 / 12, "feet"),
  29365. weight: math.unit(80, "lb"),
  29366. name: "Back",
  29367. image: {
  29368. source: "./media/characters/zander-rose/back.svg",
  29369. extra: 903 / 779,
  29370. bottom: 31 / 934
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Normal",
  29377. height: math.unit(1 + 3 / 12, "feet"),
  29378. default: true
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29384. {
  29385. anthro: {
  29386. height: math.unit(6, "feet"),
  29387. weight: math.unit(150, "lb"),
  29388. name: "Anthro",
  29389. image: {
  29390. source: "./media/characters/razz/anthro.svg",
  29391. extra: 1437 / 1343,
  29392. bottom: 48 / 1485
  29393. }
  29394. },
  29395. feral: {
  29396. height: math.unit(6, "feet"),
  29397. weight: math.unit(150, "lb"),
  29398. name: "Feral",
  29399. image: {
  29400. source: "./media/characters/razz/feral.svg",
  29401. extra: 2569 / 1385,
  29402. bottom: 95 / 2664
  29403. }
  29404. },
  29405. },
  29406. [
  29407. {
  29408. name: "Normal",
  29409. height: math.unit(6, "feet"),
  29410. default: true
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(9 + 4 / 12, "feet"),
  29419. weight: math.unit(500, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/morrigan/front.svg",
  29423. extra: 2707 / 2579,
  29424. bottom: 156 / 2863
  29425. }
  29426. },
  29427. },
  29428. [
  29429. {
  29430. name: "Normal",
  29431. height: math.unit(9 + 4 / 12, "feet"),
  29432. default: true
  29433. },
  29434. ]
  29435. ))
  29436. characterMakers.push(() => makeCharacter(
  29437. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29438. {
  29439. front: {
  29440. height: math.unit(5, "stories"),
  29441. weight: math.unit(4000, "lb"),
  29442. name: "Front",
  29443. image: {
  29444. source: "./media/characters/jenene/front.svg",
  29445. extra: 1780 / 1710,
  29446. bottom: 57 / 1837
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Normal",
  29453. height: math.unit(5, "stories"),
  29454. default: true
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29460. {
  29461. taurSfw: {
  29462. height: math.unit(10, "meters"),
  29463. weight: math.unit(17500, "kg"),
  29464. name: "Taur",
  29465. image: {
  29466. source: "./media/characters/faey/taur-sfw.svg",
  29467. extra: 1200 / 968,
  29468. bottom: 41 / 1241
  29469. }
  29470. },
  29471. chestmaw: {
  29472. height: math.unit(2.01, "meters"),
  29473. name: "Chestmaw",
  29474. image: {
  29475. source: "./media/characters/faey/chestmaw.svg"
  29476. }
  29477. },
  29478. foot: {
  29479. height: math.unit(2.43, "meters"),
  29480. name: "Foot",
  29481. image: {
  29482. source: "./media/characters/faey/foot.svg"
  29483. }
  29484. },
  29485. jaws: {
  29486. height: math.unit(1.66, "meters"),
  29487. name: "Jaws",
  29488. image: {
  29489. source: "./media/characters/faey/jaws.svg"
  29490. }
  29491. },
  29492. tongues: {
  29493. height: math.unit(2.01, "meters"),
  29494. name: "Tongues",
  29495. image: {
  29496. source: "./media/characters/faey/tongues.svg"
  29497. }
  29498. },
  29499. },
  29500. [
  29501. {
  29502. name: "Small",
  29503. height: math.unit(10, "meters"),
  29504. default: true
  29505. },
  29506. {
  29507. name: "Big",
  29508. height: math.unit(500000, "km")
  29509. },
  29510. ]
  29511. ))
  29512. characterMakers.push(() => makeCharacter(
  29513. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29514. {
  29515. front: {
  29516. height: math.unit(7, "feet"),
  29517. weight: math.unit(275, "lb"),
  29518. name: "Front",
  29519. image: {
  29520. source: "./media/characters/roku/front.svg",
  29521. extra: 903 / 878,
  29522. bottom: 37 / 940
  29523. }
  29524. },
  29525. },
  29526. [
  29527. {
  29528. name: "Normal",
  29529. height: math.unit(7, "feet"),
  29530. default: true
  29531. },
  29532. {
  29533. name: "Macro",
  29534. height: math.unit(500, "feet")
  29535. },
  29536. {
  29537. name: "Megamacro",
  29538. height: math.unit(200, "miles")
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29544. {
  29545. front: {
  29546. height: math.unit(6 + 2 / 12, "feet"),
  29547. weight: math.unit(150, "lb"),
  29548. name: "Front",
  29549. image: {
  29550. source: "./media/characters/lira/front.svg",
  29551. extra: 1727 / 1605,
  29552. bottom: 26 / 1753
  29553. }
  29554. },
  29555. back: {
  29556. height: math.unit(6 + 2 / 12, "feet"),
  29557. weight: math.unit(150, "lb"),
  29558. name: "Back",
  29559. image: {
  29560. source: "./media/characters/lira/back.svg",
  29561. extra: 1713/1621,
  29562. bottom: 20/1733
  29563. }
  29564. },
  29565. hand: {
  29566. height: math.unit(0.75, "feet"),
  29567. name: "Hand",
  29568. image: {
  29569. source: "./media/characters/lira/hand.svg"
  29570. }
  29571. },
  29572. maw: {
  29573. height: math.unit(0.65, "feet"),
  29574. name: "Maw",
  29575. image: {
  29576. source: "./media/characters/lira/maw.svg"
  29577. }
  29578. },
  29579. pawDigi: {
  29580. height: math.unit(1.6, "feet"),
  29581. name: "Paw Digi",
  29582. image: {
  29583. source: "./media/characters/lira/paw-digi.svg"
  29584. }
  29585. },
  29586. pawPlanti: {
  29587. height: math.unit(1.4, "feet"),
  29588. name: "Paw Planti",
  29589. image: {
  29590. source: "./media/characters/lira/paw-planti.svg"
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Normal",
  29597. height: math.unit(6 + 2 / 12, "feet"),
  29598. default: true
  29599. },
  29600. {
  29601. name: "Macro",
  29602. height: math.unit(100, "feet")
  29603. },
  29604. {
  29605. name: "Macro²",
  29606. height: math.unit(1600, "feet")
  29607. },
  29608. {
  29609. name: "Planetary",
  29610. height: math.unit(20, "earths")
  29611. },
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29616. {
  29617. front: {
  29618. height: math.unit(6, "feet"),
  29619. weight: math.unit(150, "lb"),
  29620. name: "Front",
  29621. image: {
  29622. source: "./media/characters/hadjet/front.svg",
  29623. extra: 1480 / 1346,
  29624. bottom: 26 / 1506
  29625. }
  29626. },
  29627. frontNsfw: {
  29628. height: math.unit(6, "feet"),
  29629. weight: math.unit(150, "lb"),
  29630. name: "Front (NSFW)",
  29631. image: {
  29632. source: "./media/characters/hadjet/front-nsfw.svg",
  29633. extra: 1440 / 1358,
  29634. bottom: 52 / 1492
  29635. }
  29636. },
  29637. },
  29638. [
  29639. {
  29640. name: "Macro",
  29641. height: math.unit(10, "stories"),
  29642. default: true
  29643. },
  29644. {
  29645. name: "Megamacro",
  29646. height: math.unit(1.5, "miles")
  29647. },
  29648. {
  29649. name: "Megamacro+",
  29650. height: math.unit(5, "miles")
  29651. },
  29652. ]
  29653. ))
  29654. characterMakers.push(() => makeCharacter(
  29655. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29656. {
  29657. side: {
  29658. height: math.unit(106, "feet"),
  29659. weight: math.unit(500, "tonnes"),
  29660. name: "Side",
  29661. image: {
  29662. source: "./media/characters/kodran/side.svg",
  29663. extra: 553 / 480,
  29664. bottom: 33 / 586
  29665. }
  29666. },
  29667. front: {
  29668. height: math.unit(132, "feet"),
  29669. weight: math.unit(500, "tonnes"),
  29670. name: "Front",
  29671. image: {
  29672. source: "./media/characters/kodran/front.svg",
  29673. extra: 667 / 643,
  29674. bottom: 42 / 709
  29675. }
  29676. },
  29677. flying: {
  29678. height: math.unit(350, "feet"),
  29679. weight: math.unit(500, "tonnes"),
  29680. name: "Flying",
  29681. image: {
  29682. source: "./media/characters/kodran/flying.svg"
  29683. }
  29684. },
  29685. foot: {
  29686. height: math.unit(33, "feet"),
  29687. name: "Foot",
  29688. image: {
  29689. source: "./media/characters/kodran/foot.svg"
  29690. }
  29691. },
  29692. footFront: {
  29693. height: math.unit(19, "feet"),
  29694. name: "Foot (Front)",
  29695. image: {
  29696. source: "./media/characters/kodran/foot-front.svg",
  29697. extra: 261 / 261,
  29698. bottom: 91 / 352
  29699. }
  29700. },
  29701. headFront: {
  29702. height: math.unit(53, "feet"),
  29703. name: "Head (Front)",
  29704. image: {
  29705. source: "./media/characters/kodran/head-front.svg"
  29706. }
  29707. },
  29708. headSide: {
  29709. height: math.unit(65, "feet"),
  29710. name: "Head (Side)",
  29711. image: {
  29712. source: "./media/characters/kodran/head-side.svg"
  29713. }
  29714. },
  29715. throat: {
  29716. height: math.unit(79, "feet"),
  29717. name: "Throat",
  29718. image: {
  29719. source: "./media/characters/kodran/throat.svg"
  29720. }
  29721. },
  29722. },
  29723. [
  29724. {
  29725. name: "Large",
  29726. height: math.unit(106, "feet"),
  29727. default: true
  29728. },
  29729. ]
  29730. ))
  29731. characterMakers.push(() => makeCharacter(
  29732. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29733. {
  29734. side: {
  29735. height: math.unit(11, "feet"),
  29736. weight: math.unit(150, "lb"),
  29737. name: "Side",
  29738. image: {
  29739. source: "./media/characters/pyxaron/side.svg",
  29740. extra: 305 / 195,
  29741. bottom: 17 / 322
  29742. }
  29743. },
  29744. },
  29745. [
  29746. {
  29747. name: "Normal",
  29748. height: math.unit(11, "feet"),
  29749. default: true
  29750. },
  29751. ]
  29752. ))
  29753. characterMakers.push(() => makeCharacter(
  29754. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29755. {
  29756. front: {
  29757. height: math.unit(6, "feet"),
  29758. weight: math.unit(150, "lb"),
  29759. name: "Front",
  29760. image: {
  29761. source: "./media/characters/meep/front.svg",
  29762. extra: 88 / 80,
  29763. bottom: 6 / 94
  29764. }
  29765. },
  29766. },
  29767. [
  29768. {
  29769. name: "Fun Sized",
  29770. height: math.unit(2, "inches"),
  29771. default: true
  29772. },
  29773. {
  29774. name: "Friend Sized",
  29775. height: math.unit(8, "inches")
  29776. },
  29777. ]
  29778. ))
  29779. characterMakers.push(() => makeCharacter(
  29780. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29781. {
  29782. front: {
  29783. height: math.unit(15, "feet"),
  29784. weight: math.unit(2500, "lb"),
  29785. name: "Front",
  29786. image: {
  29787. source: "./media/characters/holly-rabbit/front.svg",
  29788. extra: 1433 / 1233,
  29789. bottom: 125 / 1558
  29790. }
  29791. },
  29792. dick: {
  29793. height: math.unit(4.6, "feet"),
  29794. name: "Dick",
  29795. image: {
  29796. source: "./media/characters/holly-rabbit/dick.svg"
  29797. }
  29798. },
  29799. },
  29800. [
  29801. {
  29802. name: "Normal",
  29803. height: math.unit(15, "feet"),
  29804. default: true
  29805. },
  29806. {
  29807. name: "Macro",
  29808. height: math.unit(250, "feet")
  29809. },
  29810. {
  29811. name: "Macro+",
  29812. height: math.unit(2500, "feet")
  29813. },
  29814. ]
  29815. ))
  29816. characterMakers.push(() => makeCharacter(
  29817. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29818. {
  29819. front: {
  29820. height: math.unit(3.02, "meters"),
  29821. weight: math.unit(500, "kg"),
  29822. name: "Front",
  29823. image: {
  29824. source: "./media/characters/drena/front.svg",
  29825. extra: 282 / 243,
  29826. bottom: 8 / 290
  29827. }
  29828. },
  29829. side: {
  29830. height: math.unit(3.02, "meters"),
  29831. weight: math.unit(500, "kg"),
  29832. name: "Side",
  29833. image: {
  29834. source: "./media/characters/drena/side.svg",
  29835. extra: 280 / 245,
  29836. bottom: 10 / 290
  29837. }
  29838. },
  29839. back: {
  29840. height: math.unit(3.02, "meters"),
  29841. weight: math.unit(500, "kg"),
  29842. name: "Back",
  29843. image: {
  29844. source: "./media/characters/drena/back.svg",
  29845. extra: 278 / 243,
  29846. bottom: 2 / 280
  29847. }
  29848. },
  29849. foot: {
  29850. height: math.unit(0.75, "meters"),
  29851. name: "Foot",
  29852. image: {
  29853. source: "./media/characters/drena/foot.svg"
  29854. }
  29855. },
  29856. maw: {
  29857. height: math.unit(0.82, "meters"),
  29858. name: "Maw",
  29859. image: {
  29860. source: "./media/characters/drena/maw.svg"
  29861. }
  29862. },
  29863. eating: {
  29864. height: math.unit(0.75, "meters"),
  29865. name: "Eating",
  29866. image: {
  29867. source: "./media/characters/drena/eating.svg"
  29868. }
  29869. },
  29870. rump: {
  29871. height: math.unit(0.93, "meters"),
  29872. name: "Rump",
  29873. image: {
  29874. source: "./media/characters/drena/rump.svg"
  29875. }
  29876. },
  29877. },
  29878. [
  29879. {
  29880. name: "Normal",
  29881. height: math.unit(3.02, "meters"),
  29882. default: true
  29883. },
  29884. ]
  29885. ))
  29886. characterMakers.push(() => makeCharacter(
  29887. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29888. {
  29889. front: {
  29890. height: math.unit(6 + 4 / 12, "feet"),
  29891. weight: math.unit(250, "lb"),
  29892. name: "Front",
  29893. image: {
  29894. source: "./media/characters/remmyzilla/front.svg",
  29895. extra: 4033 / 3588,
  29896. bottom: 123 / 4156
  29897. }
  29898. },
  29899. back: {
  29900. height: math.unit(6 + 4 / 12, "feet"),
  29901. weight: math.unit(250, "lb"),
  29902. name: "Back",
  29903. image: {
  29904. source: "./media/characters/remmyzilla/back.svg",
  29905. extra: 2687 / 2555,
  29906. bottom: 48 / 2735
  29907. }
  29908. },
  29909. paw: {
  29910. height: math.unit(1.73, "feet"),
  29911. name: "Paw",
  29912. image: {
  29913. source: "./media/characters/remmyzilla/paw.svg"
  29914. },
  29915. extraAttributes: {
  29916. "toeSize": {
  29917. name: "Toe Size",
  29918. power: 2,
  29919. type: "area",
  29920. base: math.unit(0.0035, "m^2")
  29921. },
  29922. "padSize": {
  29923. name: "Pad Size",
  29924. power: 2,
  29925. type: "area",
  29926. base: math.unit(0.015, "m^2")
  29927. },
  29928. "pawsize": {
  29929. name: "Paw Size",
  29930. power: 2,
  29931. type: "area",
  29932. base: math.unit(0.072, "m^2")
  29933. },
  29934. }
  29935. },
  29936. maw: {
  29937. height: math.unit(1.73, "feet"),
  29938. name: "Maw",
  29939. image: {
  29940. source: "./media/characters/remmyzilla/maw.svg"
  29941. }
  29942. },
  29943. },
  29944. [
  29945. {
  29946. name: "Normal",
  29947. height: math.unit(6 + 4 / 12, "feet")
  29948. },
  29949. {
  29950. name: "Minimacro",
  29951. height: math.unit(12 + 8 / 12, "feet")
  29952. },
  29953. {
  29954. name: "Normal",
  29955. height: math.unit(640, "feet"),
  29956. default: true
  29957. },
  29958. {
  29959. name: "Megamacro",
  29960. height: math.unit(6400, "feet")
  29961. },
  29962. {
  29963. name: "Gigamacro",
  29964. height: math.unit(64000, "miles")
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(2.5, "meters"),
  29973. weight: math.unit(300, "lb"),
  29974. name: "Front",
  29975. image: {
  29976. source: "./media/characters/lawrence/front.svg",
  29977. extra: 357 / 335,
  29978. bottom: 30 / 387
  29979. }
  29980. },
  29981. back: {
  29982. height: math.unit(2.5, "meters"),
  29983. weight: math.unit(300, "lb"),
  29984. name: "Back",
  29985. image: {
  29986. source: "./media/characters/lawrence/back.svg",
  29987. extra: 357 / 338,
  29988. bottom: 16 / 373
  29989. }
  29990. },
  29991. head: {
  29992. height: math.unit(0.9, "meter"),
  29993. name: "Head",
  29994. image: {
  29995. source: "./media/characters/lawrence/head.svg"
  29996. }
  29997. },
  29998. maw: {
  29999. height: math.unit(0.7, "meter"),
  30000. name: "Maw",
  30001. image: {
  30002. source: "./media/characters/lawrence/maw.svg"
  30003. }
  30004. },
  30005. footBottom: {
  30006. height: math.unit(0.5, "meter"),
  30007. name: "Foot (Bottom)",
  30008. image: {
  30009. source: "./media/characters/lawrence/foot-bottom.svg"
  30010. }
  30011. },
  30012. footTop: {
  30013. height: math.unit(0.5, "meter"),
  30014. name: "Foot (Top)",
  30015. image: {
  30016. source: "./media/characters/lawrence/foot-top.svg"
  30017. }
  30018. },
  30019. },
  30020. [
  30021. {
  30022. name: "Normal",
  30023. height: math.unit(2.5, "meters"),
  30024. default: true
  30025. },
  30026. {
  30027. name: "Macro",
  30028. height: math.unit(95, "meters")
  30029. },
  30030. {
  30031. name: "Megamacro",
  30032. height: math.unit(150, "km")
  30033. },
  30034. ]
  30035. ))
  30036. characterMakers.push(() => makeCharacter(
  30037. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30038. {
  30039. front: {
  30040. height: math.unit(4.2, "meters"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/sydney/front.svg",
  30044. extra: 1323 / 1277,
  30045. bottom: 111 / 1434
  30046. }
  30047. },
  30048. },
  30049. [
  30050. {
  30051. name: "Normal",
  30052. height: math.unit(4.2, "meters"),
  30053. default: true
  30054. },
  30055. ]
  30056. ))
  30057. characterMakers.push(() => makeCharacter(
  30058. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30059. {
  30060. back: {
  30061. height: math.unit(201, "feet"),
  30062. name: "Back",
  30063. image: {
  30064. source: "./media/characters/jessica/back.svg",
  30065. extra: 273 / 259,
  30066. bottom: 7 / 280
  30067. }
  30068. },
  30069. },
  30070. [
  30071. {
  30072. name: "Normal",
  30073. height: math.unit(201, "feet"),
  30074. default: true
  30075. },
  30076. {
  30077. name: "Megamacro",
  30078. height: math.unit(8, "miles")
  30079. },
  30080. ]
  30081. ))
  30082. characterMakers.push(() => makeCharacter(
  30083. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30084. {
  30085. side: {
  30086. height: math.unit(5.6, "m"),
  30087. weight: math.unit(8000, "kg"),
  30088. name: "Side",
  30089. image: {
  30090. source: "./media/characters/victoria/side.svg",
  30091. extra: 1542/1229,
  30092. bottom: 124/1666
  30093. }
  30094. },
  30095. maw: {
  30096. height: math.unit(7.14, "feet"),
  30097. name: "Maw",
  30098. image: {
  30099. source: "./media/characters/victoria/maw.svg"
  30100. }
  30101. },
  30102. },
  30103. [
  30104. {
  30105. name: "Normal",
  30106. height: math.unit(5.6, "m"),
  30107. default: true
  30108. },
  30109. ]
  30110. ))
  30111. characterMakers.push(() => makeCharacter(
  30112. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30113. {
  30114. front: {
  30115. height: math.unit(5 + 6 / 12, "feet"),
  30116. name: "Front",
  30117. image: {
  30118. source: "./media/characters/cat/front.svg",
  30119. extra: 1449/1295,
  30120. bottom: 34/1483
  30121. },
  30122. form: "cat",
  30123. default: true
  30124. },
  30125. back: {
  30126. height: math.unit(5 + 6 / 12, "feet"),
  30127. name: "Back",
  30128. image: {
  30129. source: "./media/characters/cat/back.svg",
  30130. extra: 1466/1301,
  30131. bottom: 19/1485
  30132. },
  30133. form: "cat"
  30134. },
  30135. taur: {
  30136. height: math.unit(7, "feet"),
  30137. name: "Taur",
  30138. image: {
  30139. source: "./media/characters/cat/taur.svg",
  30140. extra: 1389/1233,
  30141. bottom: 83/1472
  30142. },
  30143. form: "taur",
  30144. default: true
  30145. },
  30146. lucarioFront: {
  30147. height: math.unit(4, "feet"),
  30148. name: "Lucario (Front)",
  30149. image: {
  30150. source: "./media/characters/cat/lucario-front.svg",
  30151. extra: 1149/1019,
  30152. bottom: 84/1233
  30153. },
  30154. form: "lucario",
  30155. default: true
  30156. },
  30157. lucarioBack: {
  30158. height: math.unit(4, "feet"),
  30159. name: "Lucario (Back)",
  30160. image: {
  30161. source: "./media/characters/cat/lucario-back.svg",
  30162. extra: 1190/1059,
  30163. bottom: 33/1223
  30164. },
  30165. form: "lucario"
  30166. },
  30167. megaLucario: {
  30168. height: math.unit(4, "feet"),
  30169. name: "Mega Lucario",
  30170. image: {
  30171. source: "./media/characters/cat/mega-lucario.svg",
  30172. extra: 1515 / 1319,
  30173. bottom: 63 / 1578
  30174. },
  30175. form: "lucario"
  30176. },
  30177. nickit: {
  30178. height: math.unit(2, "feet"),
  30179. name: "Nickit",
  30180. image: {
  30181. source: "./media/characters/cat/nickit.svg",
  30182. extra: 1980 / 1585,
  30183. bottom: 102 / 2082
  30184. },
  30185. form: "nickit",
  30186. default: true
  30187. },
  30188. lopunnyFront: {
  30189. height: math.unit(5, "feet"),
  30190. name: "Lopunny (Front)",
  30191. image: {
  30192. source: "./media/characters/cat/lopunny-front.svg",
  30193. extra: 1782 / 1469,
  30194. bottom: 38 / 1820
  30195. },
  30196. form: "lopunny",
  30197. default: true
  30198. },
  30199. lopunnyBack: {
  30200. height: math.unit(5, "feet"),
  30201. name: "Lopunny (Back)",
  30202. image: {
  30203. source: "./media/characters/cat/lopunny-back.svg",
  30204. extra: 1660 / 1490,
  30205. bottom: 25 / 1685
  30206. },
  30207. form: "lopunny"
  30208. },
  30209. },
  30210. [
  30211. {
  30212. name: "Really small",
  30213. height: math.unit(1, "nm")
  30214. },
  30215. {
  30216. name: "Micro",
  30217. height: math.unit(5, "inches")
  30218. },
  30219. {
  30220. name: "Normal",
  30221. height: math.unit(5 + 6 / 12, "feet"),
  30222. default: true
  30223. },
  30224. {
  30225. name: "Macro",
  30226. height: math.unit(50, "feet")
  30227. },
  30228. {
  30229. name: "Macro+",
  30230. height: math.unit(150, "feet")
  30231. },
  30232. {
  30233. name: "Megamacro",
  30234. height: math.unit(100, "miles")
  30235. },
  30236. ]
  30237. ))
  30238. characterMakers.push(() => makeCharacter(
  30239. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30240. {
  30241. front: {
  30242. height: math.unit(63.4, "meters"),
  30243. weight: math.unit(3.28349e+6, "kilograms"),
  30244. name: "Front",
  30245. image: {
  30246. source: "./media/characters/kirina-violet/front.svg",
  30247. extra: 2812 / 2725,
  30248. bottom: 0 / 2812
  30249. }
  30250. },
  30251. back: {
  30252. height: math.unit(63.4, "meters"),
  30253. weight: math.unit(3.28349e+6, "kilograms"),
  30254. name: "Back",
  30255. image: {
  30256. source: "./media/characters/kirina-violet/back.svg",
  30257. extra: 2812 / 2725,
  30258. bottom: 0 / 2812
  30259. }
  30260. },
  30261. mouth: {
  30262. height: math.unit(4.35, "meters"),
  30263. name: "Mouth",
  30264. image: {
  30265. source: "./media/characters/kirina-violet/mouth.svg"
  30266. }
  30267. },
  30268. paw: {
  30269. height: math.unit(5.6, "meters"),
  30270. name: "Paw",
  30271. image: {
  30272. source: "./media/characters/kirina-violet/paw.svg"
  30273. }
  30274. },
  30275. tail: {
  30276. height: math.unit(18, "meters"),
  30277. name: "Tail",
  30278. image: {
  30279. source: "./media/characters/kirina-violet/tail.svg"
  30280. }
  30281. },
  30282. },
  30283. [
  30284. {
  30285. name: "Macro",
  30286. height: math.unit(63.4, "meters"),
  30287. default: true
  30288. },
  30289. ]
  30290. ))
  30291. characterMakers.push(() => makeCharacter(
  30292. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30293. {
  30294. front: {
  30295. height: math.unit(75, "feet"),
  30296. name: "Front",
  30297. image: {
  30298. source: "./media/characters/cat-gigachu/front.svg",
  30299. extra: 1239/1027,
  30300. bottom: 32/1271
  30301. }
  30302. },
  30303. back: {
  30304. height: math.unit(75, "feet"),
  30305. name: "Back",
  30306. image: {
  30307. source: "./media/characters/cat-gigachu/back.svg",
  30308. extra: 1229/1030,
  30309. bottom: 9/1238
  30310. }
  30311. },
  30312. },
  30313. [
  30314. {
  30315. name: "Dynamax",
  30316. height: math.unit(75, "feet"),
  30317. default: true
  30318. },
  30319. ]
  30320. ))
  30321. characterMakers.push(() => makeCharacter(
  30322. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30323. {
  30324. front: {
  30325. height: math.unit(6, "feet"),
  30326. weight: math.unit(150, "lb"),
  30327. name: "Front",
  30328. image: {
  30329. source: "./media/characters/sfaiyan/front.svg",
  30330. extra: 999 / 978,
  30331. bottom: 5 / 1004
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Normal",
  30338. height: math.unit(1.82, "meters")
  30339. },
  30340. {
  30341. name: "Giant",
  30342. height: math.unit(2.27, "km"),
  30343. default: true
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30349. {
  30350. front: {
  30351. height: math.unit(179, "cm"),
  30352. weight: math.unit(100, "kg"),
  30353. name: "Front",
  30354. image: {
  30355. source: "./media/characters/raunehkeli/front.svg",
  30356. extra: 1934 / 1926,
  30357. bottom: 0 / 1934
  30358. }
  30359. },
  30360. },
  30361. [
  30362. {
  30363. name: "Normal",
  30364. height: math.unit(179, "cm")
  30365. },
  30366. {
  30367. name: "Maximum",
  30368. height: math.unit(575, "meters"),
  30369. default: true
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30375. {
  30376. front: {
  30377. height: math.unit(6, "feet"),
  30378. weight: math.unit(150, "lb"),
  30379. name: "Front",
  30380. image: {
  30381. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30382. extra: 2625 / 2518,
  30383. bottom: 60 / 2685
  30384. }
  30385. },
  30386. },
  30387. [
  30388. {
  30389. name: "Normal",
  30390. height: math.unit(6 + 2 / 12, "feet")
  30391. },
  30392. {
  30393. name: "Macro",
  30394. height: math.unit(1180, "feet"),
  30395. default: true
  30396. },
  30397. ]
  30398. ))
  30399. characterMakers.push(() => makeCharacter(
  30400. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30401. {
  30402. front: {
  30403. height: math.unit(5 + 6 / 12, "feet"),
  30404. weight: math.unit(108, "lb"),
  30405. name: "Front",
  30406. image: {
  30407. source: "./media/characters/lilith-zott/front.svg",
  30408. extra: 2510 / 2238,
  30409. bottom: 100 / 2610
  30410. }
  30411. },
  30412. frontDressed: {
  30413. height: math.unit(5 + 6 / 12, "feet"),
  30414. weight: math.unit(108, "lb"),
  30415. name: "Front (Dressed)",
  30416. image: {
  30417. source: "./media/characters/lilith-zott/front-dressed.svg",
  30418. extra: 2510 / 2238,
  30419. bottom: 100 / 2610
  30420. }
  30421. },
  30422. },
  30423. [
  30424. {
  30425. name: "Normal",
  30426. height: math.unit(5 + 6 / 12, "feet")
  30427. },
  30428. {
  30429. name: "Macro",
  30430. height: math.unit(1030, "feet"),
  30431. default: true
  30432. },
  30433. ]
  30434. ))
  30435. characterMakers.push(() => makeCharacter(
  30436. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30437. {
  30438. front: {
  30439. height: math.unit(6, "feet"),
  30440. weight: math.unit(150, "lb"),
  30441. name: "Front",
  30442. image: {
  30443. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30444. extra: 2567 / 2435,
  30445. bottom: 39 / 2606
  30446. }
  30447. },
  30448. frontSuper: {
  30449. height: math.unit(6, "feet"),
  30450. name: "Front (Super)",
  30451. image: {
  30452. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30453. extra: 2567 / 2435,
  30454. bottom: 39 / 2606
  30455. }
  30456. },
  30457. },
  30458. [
  30459. {
  30460. name: "Normal",
  30461. height: math.unit(5 + 10 / 12, "feet")
  30462. },
  30463. {
  30464. name: "Macro",
  30465. height: math.unit(1100, "feet"),
  30466. default: true
  30467. },
  30468. ]
  30469. ))
  30470. characterMakers.push(() => makeCharacter(
  30471. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30472. {
  30473. front: {
  30474. height: math.unit(100, "miles"),
  30475. name: "Front",
  30476. image: {
  30477. source: "./media/characters/sona/front.svg",
  30478. extra: 2433 / 2201,
  30479. bottom: 53 / 2486
  30480. }
  30481. },
  30482. foot: {
  30483. height: math.unit(16.1, "miles"),
  30484. name: "Foot",
  30485. image: {
  30486. source: "./media/characters/sona/foot.svg"
  30487. }
  30488. },
  30489. },
  30490. [
  30491. {
  30492. name: "Macro",
  30493. height: math.unit(100, "miles"),
  30494. default: true
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30500. {
  30501. front: {
  30502. height: math.unit(6, "feet"),
  30503. weight: math.unit(150, "lb"),
  30504. name: "Front",
  30505. image: {
  30506. source: "./media/characters/bailey/front.svg",
  30507. extra: 1778 / 1724,
  30508. bottom: 30 / 1808
  30509. }
  30510. },
  30511. },
  30512. [
  30513. {
  30514. name: "Micro",
  30515. height: math.unit(4, "inches")
  30516. },
  30517. {
  30518. name: "Normal",
  30519. height: math.unit(5 + 5 / 12, "feet"),
  30520. default: true
  30521. },
  30522. {
  30523. name: "Macro",
  30524. height: math.unit(250, "feet")
  30525. },
  30526. {
  30527. name: "Megamacro",
  30528. height: math.unit(100, "miles")
  30529. },
  30530. ]
  30531. ))
  30532. characterMakers.push(() => makeCharacter(
  30533. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30534. {
  30535. front: {
  30536. height: math.unit(5 + 2 / 12, "feet"),
  30537. weight: math.unit(120, "lb"),
  30538. name: "Front",
  30539. image: {
  30540. source: "./media/characters/snaps/front.svg",
  30541. extra: 2370 / 2177,
  30542. bottom: 48 / 2418
  30543. }
  30544. },
  30545. back: {
  30546. height: math.unit(5 + 2 / 12, "feet"),
  30547. weight: math.unit(120, "lb"),
  30548. name: "Back",
  30549. image: {
  30550. source: "./media/characters/snaps/back.svg",
  30551. extra: 2408 / 2258,
  30552. bottom: 15 / 2423
  30553. }
  30554. },
  30555. },
  30556. [
  30557. {
  30558. name: "Micro",
  30559. height: math.unit(9, "inches")
  30560. },
  30561. {
  30562. name: "Normal",
  30563. height: math.unit(5 + 2 / 12, "feet"),
  30564. default: true
  30565. },
  30566. {
  30567. name: "Mini Macro",
  30568. height: math.unit(10, "feet")
  30569. },
  30570. ]
  30571. ))
  30572. characterMakers.push(() => makeCharacter(
  30573. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30574. {
  30575. front: {
  30576. height: math.unit(1.8, "meters"),
  30577. weight: math.unit(85, "kg"),
  30578. name: "Front",
  30579. image: {
  30580. source: "./media/characters/azteck/front.svg",
  30581. extra: 2815 / 2625,
  30582. bottom: 89 / 2904
  30583. }
  30584. },
  30585. back: {
  30586. height: math.unit(1.8, "meters"),
  30587. weight: math.unit(85, "kg"),
  30588. name: "Back",
  30589. image: {
  30590. source: "./media/characters/azteck/back.svg",
  30591. extra: 2856 / 2648,
  30592. bottom: 85 / 2941
  30593. }
  30594. },
  30595. frontDressed: {
  30596. height: math.unit(1.8, "meters"),
  30597. weight: math.unit(85, "kg"),
  30598. name: "Front (Dressed)",
  30599. image: {
  30600. source: "./media/characters/azteck/front-dressed.svg",
  30601. extra: 2147 / 2003,
  30602. bottom: 68 / 2215
  30603. }
  30604. },
  30605. head: {
  30606. height: math.unit(0.47, "meters"),
  30607. weight: math.unit(85, "kg"),
  30608. name: "Head",
  30609. image: {
  30610. source: "./media/characters/azteck/head.svg"
  30611. }
  30612. },
  30613. },
  30614. [
  30615. {
  30616. name: "Bite sized",
  30617. height: math.unit(16, "cm")
  30618. },
  30619. {
  30620. name: "Normal",
  30621. height: math.unit(1.8, "meters"),
  30622. default: true
  30623. },
  30624. ]
  30625. ))
  30626. characterMakers.push(() => makeCharacter(
  30627. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30628. {
  30629. front: {
  30630. height: math.unit(6, "feet"),
  30631. weight: math.unit(150, "lb"),
  30632. name: "Front",
  30633. image: {
  30634. source: "./media/characters/pidge/front.svg",
  30635. extra: 1936/1820,
  30636. bottom: 0/1936
  30637. }
  30638. },
  30639. back: {
  30640. height: math.unit(6, "feet"),
  30641. weight: math.unit(150, "lb"),
  30642. name: "Back",
  30643. image: {
  30644. source: "./media/characters/pidge/back.svg",
  30645. extra: 1938/1843,
  30646. bottom: 0/1938
  30647. }
  30648. },
  30649. casual: {
  30650. height: math.unit(6, "feet"),
  30651. weight: math.unit(150, "lb"),
  30652. name: "Casual",
  30653. image: {
  30654. source: "./media/characters/pidge/casual.svg",
  30655. extra: 1936/1820,
  30656. bottom: 0/1936
  30657. }
  30658. },
  30659. tech: {
  30660. height: math.unit(6, "feet"),
  30661. weight: math.unit(150, "lb"),
  30662. name: "Tech",
  30663. image: {
  30664. source: "./media/characters/pidge/tech.svg",
  30665. extra: 1802/1682,
  30666. bottom: 0/1802
  30667. }
  30668. },
  30669. head: {
  30670. height: math.unit(1.61, "feet"),
  30671. name: "Head",
  30672. image: {
  30673. source: "./media/characters/pidge/head.svg"
  30674. }
  30675. },
  30676. collar: {
  30677. height: math.unit(0.82, "feet"),
  30678. name: "Collar",
  30679. image: {
  30680. source: "./media/characters/pidge/collar.svg"
  30681. }
  30682. },
  30683. },
  30684. [
  30685. {
  30686. name: "Macro",
  30687. height: math.unit(2, "mile"),
  30688. default: true
  30689. },
  30690. {
  30691. name: "PUPPY",
  30692. height: math.unit(20, "miles")
  30693. },
  30694. ]
  30695. ))
  30696. characterMakers.push(() => makeCharacter(
  30697. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30698. {
  30699. front: {
  30700. height: math.unit(6, "feet"),
  30701. weight: math.unit(150, "lb"),
  30702. name: "Front",
  30703. image: {
  30704. source: "./media/characters/en/front.svg",
  30705. extra: 1697 / 1563,
  30706. bottom: 103 / 1800
  30707. }
  30708. },
  30709. back: {
  30710. height: math.unit(6, "feet"),
  30711. weight: math.unit(150, "lb"),
  30712. name: "Back",
  30713. image: {
  30714. source: "./media/characters/en/back.svg",
  30715. extra: 1700 / 1570,
  30716. bottom: 51 / 1751
  30717. }
  30718. },
  30719. frontDressed: {
  30720. height: math.unit(6, "feet"),
  30721. weight: math.unit(150, "lb"),
  30722. name: "Front (Dressed)",
  30723. image: {
  30724. source: "./media/characters/en/front-dressed.svg",
  30725. extra: 1697 / 1563,
  30726. bottom: 103 / 1800
  30727. }
  30728. },
  30729. backDressed: {
  30730. height: math.unit(6, "feet"),
  30731. weight: math.unit(150, "lb"),
  30732. name: "Back (Dressed)",
  30733. image: {
  30734. source: "./media/characters/en/back-dressed.svg",
  30735. extra: 1700 / 1570,
  30736. bottom: 51 / 1751
  30737. }
  30738. },
  30739. },
  30740. [
  30741. {
  30742. name: "Macro",
  30743. height: math.unit(210, "feet"),
  30744. default: true
  30745. },
  30746. ]
  30747. ))
  30748. characterMakers.push(() => makeCharacter(
  30749. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30750. {
  30751. front: {
  30752. height: math.unit(6, "feet"),
  30753. weight: math.unit(150, "lb"),
  30754. name: "Front",
  30755. image: {
  30756. source: "./media/characters/haze-orris/front.svg",
  30757. extra: 3975 / 3525,
  30758. bottom: 137 / 4112
  30759. }
  30760. },
  30761. },
  30762. [
  30763. {
  30764. name: "Micro",
  30765. height: math.unit(150, "mm"),
  30766. default: true
  30767. },
  30768. ]
  30769. ))
  30770. characterMakers.push(() => makeCharacter(
  30771. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30772. {
  30773. front: {
  30774. height: math.unit(6, "feet"),
  30775. weight: math.unit(150, "lb"),
  30776. name: "Front",
  30777. image: {
  30778. source: "./media/characters/casselene-yaro/front.svg",
  30779. extra: 4721 / 4541,
  30780. bottom: 82 / 4803
  30781. }
  30782. },
  30783. back: {
  30784. height: math.unit(6, "feet"),
  30785. weight: math.unit(150, "lb"),
  30786. name: "Back",
  30787. image: {
  30788. source: "./media/characters/casselene-yaro/back.svg",
  30789. extra: 4569 / 4377,
  30790. bottom: 69 / 4638
  30791. }
  30792. },
  30793. dressed: {
  30794. height: math.unit(6, "feet"),
  30795. weight: math.unit(150, "lb"),
  30796. name: "Dressed",
  30797. image: {
  30798. source: "./media/characters/casselene-yaro/dressed.svg",
  30799. extra: 4721 / 4541,
  30800. bottom: 82 / 4803
  30801. }
  30802. },
  30803. maw: {
  30804. height: math.unit(1, "feet"),
  30805. name: "Maw",
  30806. image: {
  30807. source: "./media/characters/casselene-yaro/maw.svg"
  30808. }
  30809. },
  30810. },
  30811. [
  30812. {
  30813. name: "Macro",
  30814. height: math.unit(190, "feet"),
  30815. default: true
  30816. },
  30817. ]
  30818. ))
  30819. characterMakers.push(() => makeCharacter(
  30820. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30821. {
  30822. front: {
  30823. height: math.unit(10, "feet"),
  30824. weight: math.unit(15015, "lb"),
  30825. name: "Front",
  30826. image: {
  30827. source: "./media/characters/platine/front.svg",
  30828. extra: 1428/1353,
  30829. bottom: 31/1459
  30830. }
  30831. },
  30832. },
  30833. [
  30834. {
  30835. name: "Normal",
  30836. height: math.unit(10, "feet"),
  30837. default: true
  30838. },
  30839. {
  30840. name: "Macro",
  30841. height: math.unit(100, "feet")
  30842. },
  30843. {
  30844. name: "Megamacro",
  30845. height: math.unit(1000, "feet")
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30851. {
  30852. front: {
  30853. height: math.unit(15 + 5 / 12, "feet"),
  30854. weight: math.unit(4600, "lb"),
  30855. name: "Front",
  30856. image: {
  30857. source: "./media/characters/neapolitan-ananassa/front.svg",
  30858. extra: 2903 / 2736,
  30859. bottom: 0 / 2903
  30860. }
  30861. },
  30862. side: {
  30863. height: math.unit(15 + 5 / 12, "feet"),
  30864. weight: math.unit(4600, "lb"),
  30865. name: "Side",
  30866. image: {
  30867. source: "./media/characters/neapolitan-ananassa/side.svg",
  30868. extra: 2925 / 2719,
  30869. bottom: 0 / 2925
  30870. }
  30871. },
  30872. back: {
  30873. height: math.unit(15 + 5 / 12, "feet"),
  30874. weight: math.unit(4600, "lb"),
  30875. name: "Back",
  30876. image: {
  30877. source: "./media/characters/neapolitan-ananassa/back.svg",
  30878. extra: 2903 / 2736,
  30879. bottom: 0 / 2903
  30880. }
  30881. },
  30882. },
  30883. [
  30884. {
  30885. name: "Normal",
  30886. height: math.unit(15 + 5 / 12, "feet"),
  30887. default: true
  30888. },
  30889. {
  30890. name: "Post-Millenium",
  30891. height: math.unit(35 + 5 / 12, "feet")
  30892. },
  30893. {
  30894. name: "Post-Era",
  30895. height: math.unit(450 + 5 / 12, "feet")
  30896. },
  30897. ]
  30898. ))
  30899. characterMakers.push(() => makeCharacter(
  30900. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30901. {
  30902. front: {
  30903. height: math.unit(300, "meters"),
  30904. weight: math.unit(125000, "tonnes"),
  30905. name: "Front",
  30906. image: {
  30907. source: "./media/characters/pazuzu/front.svg",
  30908. extra: 877 / 794,
  30909. bottom: 47 / 924
  30910. }
  30911. },
  30912. },
  30913. [
  30914. {
  30915. name: "Macro",
  30916. height: math.unit(300, "meters"),
  30917. default: true
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30923. {
  30924. side: {
  30925. height: math.unit(10 + 7 / 12, "feet"),
  30926. weight: math.unit(2.5, "tons"),
  30927. name: "Side",
  30928. image: {
  30929. source: "./media/characters/aasha/side.svg",
  30930. extra: 1345 / 1245,
  30931. bottom: 111 / 1456
  30932. }
  30933. },
  30934. back: {
  30935. height: math.unit(10 + 7 / 12, "feet"),
  30936. weight: math.unit(2.5, "tons"),
  30937. name: "Back",
  30938. image: {
  30939. source: "./media/characters/aasha/back.svg",
  30940. extra: 1133 / 1057,
  30941. bottom: 257 / 1390
  30942. }
  30943. },
  30944. },
  30945. [
  30946. {
  30947. name: "Normal",
  30948. height: math.unit(10 + 7 / 12, "feet"),
  30949. default: true
  30950. },
  30951. ]
  30952. ))
  30953. characterMakers.push(() => makeCharacter(
  30954. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30955. {
  30956. front: {
  30957. height: math.unit(6 + 3 / 12, "feet"),
  30958. name: "Front",
  30959. image: {
  30960. source: "./media/characters/nevan/front.svg",
  30961. extra: 704 / 704,
  30962. bottom: 28 / 732
  30963. }
  30964. },
  30965. back: {
  30966. height: math.unit(6 + 3 / 12, "feet"),
  30967. name: "Back",
  30968. image: {
  30969. source: "./media/characters/nevan/back.svg",
  30970. extra: 714 / 714,
  30971. bottom: 21 / 735
  30972. }
  30973. },
  30974. frontFlaccid: {
  30975. height: math.unit(6 + 3 / 12, "feet"),
  30976. name: "Front (Flaccid)",
  30977. image: {
  30978. source: "./media/characters/nevan/front-flaccid.svg",
  30979. extra: 704 / 704,
  30980. bottom: 28 / 732
  30981. }
  30982. },
  30983. frontErect: {
  30984. height: math.unit(6 + 3 / 12, "feet"),
  30985. name: "Front (Erect)",
  30986. image: {
  30987. source: "./media/characters/nevan/front-erect.svg",
  30988. extra: 704 / 704,
  30989. bottom: 28 / 732
  30990. }
  30991. },
  30992. backFlaccid: {
  30993. height: math.unit(6 + 3 / 12, "feet"),
  30994. name: "Back (Flaccid)",
  30995. image: {
  30996. source: "./media/characters/nevan/back-flaccid.svg",
  30997. extra: 714 / 714,
  30998. bottom: 21 / 735
  30999. }
  31000. },
  31001. },
  31002. [
  31003. {
  31004. name: "Normal",
  31005. height: math.unit(6 + 3 / 12, "feet"),
  31006. default: true
  31007. },
  31008. ]
  31009. ))
  31010. characterMakers.push(() => makeCharacter(
  31011. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31012. {
  31013. front: {
  31014. height: math.unit(4, "feet"),
  31015. name: "Front",
  31016. image: {
  31017. source: "./media/characters/arhan/front.svg",
  31018. extra: 3368 / 3133,
  31019. bottom: 0 / 3368
  31020. }
  31021. },
  31022. side: {
  31023. height: math.unit(4, "feet"),
  31024. name: "Side",
  31025. image: {
  31026. source: "./media/characters/arhan/side.svg",
  31027. extra: 3347 / 3105,
  31028. bottom: 0 / 3347
  31029. }
  31030. },
  31031. tongue: {
  31032. height: math.unit(1.42, "feet"),
  31033. name: "Tongue",
  31034. image: {
  31035. source: "./media/characters/arhan/tongue.svg"
  31036. }
  31037. },
  31038. head: {
  31039. height: math.unit(0.85, "feet"),
  31040. name: "Head",
  31041. image: {
  31042. source: "./media/characters/arhan/head.svg"
  31043. }
  31044. },
  31045. },
  31046. [
  31047. {
  31048. name: "Normal",
  31049. height: math.unit(4, "feet"),
  31050. default: true
  31051. },
  31052. ]
  31053. ))
  31054. characterMakers.push(() => makeCharacter(
  31055. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31056. {
  31057. front: {
  31058. height: math.unit(5 + 7.5 / 12, "feet"),
  31059. weight: math.unit(120, "lb"),
  31060. name: "Front",
  31061. image: {
  31062. source: "./media/characters/digi-duncan/front.svg",
  31063. extra: 330 / 326,
  31064. bottom: 16 / 346
  31065. }
  31066. },
  31067. side: {
  31068. height: math.unit(5 + 7.5 / 12, "feet"),
  31069. weight: math.unit(120, "lb"),
  31070. name: "Side",
  31071. image: {
  31072. source: "./media/characters/digi-duncan/side.svg",
  31073. extra: 341 / 337,
  31074. bottom: 1 / 342
  31075. }
  31076. },
  31077. back: {
  31078. height: math.unit(5 + 7.5 / 12, "feet"),
  31079. weight: math.unit(120, "lb"),
  31080. name: "Back",
  31081. image: {
  31082. source: "./media/characters/digi-duncan/back.svg",
  31083. extra: 330 / 326,
  31084. bottom: 12 / 342
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "Speck",
  31091. height: math.unit(0.25, "mm")
  31092. },
  31093. {
  31094. name: "Micro",
  31095. height: math.unit(5, "mm")
  31096. },
  31097. {
  31098. name: "Tiny",
  31099. height: math.unit(0.5, "inches"),
  31100. default: true
  31101. },
  31102. {
  31103. name: "Human",
  31104. height: math.unit(5 + 7.5 / 12, "feet")
  31105. },
  31106. {
  31107. name: "Minigiant",
  31108. height: math.unit(8 + 5.25, "feet")
  31109. },
  31110. {
  31111. name: "Giant",
  31112. height: math.unit(2000, "feet")
  31113. },
  31114. {
  31115. name: "Mega",
  31116. height: math.unit(371.1, "miles")
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(2, "meters"),
  31125. weight: math.unit(350, "kg"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31129. extra: 898 / 838,
  31130. bottom: 9 / 907
  31131. }
  31132. },
  31133. },
  31134. [
  31135. {
  31136. name: "Micro",
  31137. height: math.unit(8, "meters")
  31138. },
  31139. {
  31140. name: "Normal",
  31141. height: math.unit(50, "meters"),
  31142. default: true
  31143. },
  31144. {
  31145. name: "Macro",
  31146. height: math.unit(500, "meters")
  31147. },
  31148. ]
  31149. ))
  31150. characterMakers.push(() => makeCharacter(
  31151. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31152. {
  31153. front: {
  31154. height: math.unit(6 + 6 / 12, "feet"),
  31155. name: "Front",
  31156. image: {
  31157. source: "./media/characters/khardesh/front.svg",
  31158. extra: 1788/1596,
  31159. bottom: 66/1854
  31160. }
  31161. },
  31162. back: {
  31163. height: math.unit(6 + 6 / 12, "feet"),
  31164. name: "Back",
  31165. image: {
  31166. source: "./media/characters/khardesh/back.svg",
  31167. extra: 1781/1584,
  31168. bottom: 68/1849
  31169. }
  31170. },
  31171. },
  31172. [
  31173. {
  31174. name: "Normal",
  31175. height: math.unit(6 + 6 / 12, "feet"),
  31176. default: true
  31177. },
  31178. {
  31179. name: "Normal+",
  31180. height: math.unit(4, "meters")
  31181. },
  31182. {
  31183. name: "Macro",
  31184. height: math.unit(50, "meters")
  31185. },
  31186. {
  31187. name: "Macro+",
  31188. height: math.unit(100, "meters")
  31189. },
  31190. {
  31191. name: "Megamacro",
  31192. height: math.unit(20, "km")
  31193. },
  31194. ]
  31195. ))
  31196. characterMakers.push(() => makeCharacter(
  31197. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31198. {
  31199. front: {
  31200. height: math.unit(6, "feet"),
  31201. weight: math.unit(150, "lb"),
  31202. name: "Front",
  31203. image: {
  31204. source: "./media/characters/kosho/front.svg",
  31205. extra: 1847 / 1847,
  31206. bottom: 86 / 1933
  31207. }
  31208. },
  31209. },
  31210. [
  31211. {
  31212. name: "Second-stage micro",
  31213. height: math.unit(0.5, "inches")
  31214. },
  31215. {
  31216. name: "First-stage micro",
  31217. height: math.unit(6, "inches")
  31218. },
  31219. {
  31220. name: "Normal",
  31221. height: math.unit(6, "feet"),
  31222. default: true
  31223. },
  31224. {
  31225. name: "First-stage macro",
  31226. height: math.unit(72, "feet")
  31227. },
  31228. {
  31229. name: "Second-stage macro",
  31230. height: math.unit(864, "feet")
  31231. },
  31232. ]
  31233. ))
  31234. characterMakers.push(() => makeCharacter(
  31235. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31236. {
  31237. normal: {
  31238. height: math.unit(4 + 6 / 12, "feet"),
  31239. name: "Normal",
  31240. image: {
  31241. source: "./media/characters/hydra/normal.svg",
  31242. extra: 2833 / 2634,
  31243. bottom: 68 / 2901
  31244. }
  31245. },
  31246. smol: {
  31247. height: math.unit(0.705, "inches"),
  31248. name: "Smol",
  31249. image: {
  31250. source: "./media/characters/hydra/smol.svg",
  31251. extra: 2715 / 2540,
  31252. bottom: 0 / 2715
  31253. }
  31254. },
  31255. },
  31256. [
  31257. {
  31258. name: "Normal",
  31259. height: math.unit(4 + 6 / 12, "feet"),
  31260. default: true
  31261. }
  31262. ]
  31263. ))
  31264. characterMakers.push(() => makeCharacter(
  31265. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31266. {
  31267. front: {
  31268. height: math.unit(0.6, "cm"),
  31269. name: "Front",
  31270. image: {
  31271. source: "./media/characters/daz/front.svg",
  31272. extra: 1682 / 1164,
  31273. bottom: 42 / 1724
  31274. }
  31275. },
  31276. },
  31277. [
  31278. {
  31279. name: "Normal",
  31280. height: math.unit(0.6, "cm"),
  31281. default: true
  31282. },
  31283. ]
  31284. ))
  31285. characterMakers.push(() => makeCharacter(
  31286. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31287. {
  31288. front: {
  31289. height: math.unit(6, "feet"),
  31290. weight: math.unit(235, "lb"),
  31291. name: "Front",
  31292. image: {
  31293. source: "./media/characters/theo-pangolin/front.svg",
  31294. extra: 1996 / 1969,
  31295. bottom: 115 / 2111
  31296. }
  31297. },
  31298. back: {
  31299. height: math.unit(6, "feet"),
  31300. weight: math.unit(235, "lb"),
  31301. name: "Back",
  31302. image: {
  31303. source: "./media/characters/theo-pangolin/back.svg",
  31304. extra: 1979 / 1979,
  31305. bottom: 40 / 2019
  31306. }
  31307. },
  31308. feral: {
  31309. height: math.unit(2, "feet"),
  31310. weight: math.unit(30, "lb"),
  31311. name: "Feral",
  31312. image: {
  31313. source: "./media/characters/theo-pangolin/feral.svg",
  31314. extra: 803 / 791,
  31315. bottom: 181 / 984
  31316. }
  31317. },
  31318. footFive: {
  31319. height: math.unit(1.43, "feet"),
  31320. name: "Foot (Five Toes)",
  31321. image: {
  31322. source: "./media/characters/theo-pangolin/foot-five.svg"
  31323. }
  31324. },
  31325. footFour: {
  31326. height: math.unit(1.43, "feet"),
  31327. name: "Foot (Four Toes)",
  31328. image: {
  31329. source: "./media/characters/theo-pangolin/foot-four.svg"
  31330. }
  31331. },
  31332. handFour: {
  31333. height: math.unit(0.81, "feet"),
  31334. name: "Hand (Four Fingers)",
  31335. image: {
  31336. source: "./media/characters/theo-pangolin/hand-four.svg"
  31337. }
  31338. },
  31339. handThree: {
  31340. height: math.unit(0.81, "feet"),
  31341. name: "Hand (Three Fingers)",
  31342. image: {
  31343. source: "./media/characters/theo-pangolin/hand-three.svg"
  31344. }
  31345. },
  31346. headFront: {
  31347. height: math.unit(1.37, "feet"),
  31348. name: "Head (Front)",
  31349. image: {
  31350. source: "./media/characters/theo-pangolin/head-front.svg"
  31351. }
  31352. },
  31353. headSide: {
  31354. height: math.unit(1.43, "feet"),
  31355. name: "Head (Side)",
  31356. image: {
  31357. source: "./media/characters/theo-pangolin/head-side.svg"
  31358. }
  31359. },
  31360. tongue: {
  31361. height: math.unit(2.29, "feet"),
  31362. name: "Tongue",
  31363. image: {
  31364. source: "./media/characters/theo-pangolin/tongue.svg"
  31365. }
  31366. },
  31367. },
  31368. [
  31369. {
  31370. name: "Normal",
  31371. height: math.unit(6, "feet")
  31372. },
  31373. {
  31374. name: "Macro",
  31375. height: math.unit(400, "feet"),
  31376. default: true
  31377. },
  31378. ]
  31379. ))
  31380. characterMakers.push(() => makeCharacter(
  31381. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31382. {
  31383. front: {
  31384. height: math.unit(6, "inches"),
  31385. weight: math.unit(0.036, "kg"),
  31386. name: "Front",
  31387. image: {
  31388. source: "./media/characters/renée/front.svg",
  31389. extra: 900 / 886,
  31390. bottom: 8 / 908
  31391. }
  31392. },
  31393. },
  31394. [
  31395. {
  31396. name: "Nano",
  31397. height: math.unit(1, "nm")
  31398. },
  31399. {
  31400. name: "Micro",
  31401. height: math.unit(1, "mm")
  31402. },
  31403. {
  31404. name: "Normal",
  31405. height: math.unit(6, "inches")
  31406. },
  31407. {
  31408. name: "Macro",
  31409. height: math.unit(2000, "feet"),
  31410. default: true
  31411. },
  31412. {
  31413. name: "Megamacro",
  31414. height: math.unit(2, "km")
  31415. },
  31416. {
  31417. name: "Gigamacro",
  31418. height: math.unit(2000, "km")
  31419. },
  31420. {
  31421. name: "Teramacro",
  31422. height: math.unit(250000, "km")
  31423. },
  31424. ]
  31425. ))
  31426. characterMakers.push(() => makeCharacter(
  31427. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31428. {
  31429. front: {
  31430. height: math.unit(4, "meters"),
  31431. weight: math.unit(150, "kg"),
  31432. name: "Front",
  31433. image: {
  31434. source: "./media/characters/caledvwlch/front.svg",
  31435. extra: 1760 / 1551,
  31436. bottom: 28 / 1788
  31437. }
  31438. },
  31439. side: {
  31440. height: math.unit(4, "meters"),
  31441. weight: math.unit(150, "kg"),
  31442. name: "Side",
  31443. image: {
  31444. source: "./media/characters/caledvwlch/side.svg",
  31445. extra: 1605 / 1536,
  31446. bottom: 31 / 1636
  31447. }
  31448. },
  31449. back: {
  31450. height: math.unit(4, "meters"),
  31451. weight: math.unit(150, "kg"),
  31452. name: "Back",
  31453. image: {
  31454. source: "./media/characters/caledvwlch/back.svg",
  31455. extra: 1635 / 1565,
  31456. bottom: 27 / 1662
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "\"Incognito\"",
  31463. height: math.unit(4, "meters")
  31464. },
  31465. {
  31466. name: "Small rampage",
  31467. height: math.unit(600, "meters")
  31468. },
  31469. {
  31470. name: "Mega",
  31471. height: math.unit(30, "km")
  31472. },
  31473. {
  31474. name: "Home-size",
  31475. height: math.unit(50, "km"),
  31476. default: true
  31477. },
  31478. {
  31479. name: "Giga",
  31480. height: math.unit(300, "km")
  31481. },
  31482. {
  31483. name: "Lounging",
  31484. height: math.unit(11000, "km")
  31485. },
  31486. {
  31487. name: "Planet snacking",
  31488. height: math.unit(2000000, "km")
  31489. },
  31490. ]
  31491. ))
  31492. characterMakers.push(() => makeCharacter(
  31493. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31494. {
  31495. front: {
  31496. height: math.unit(6, "feet"),
  31497. weight: math.unit(215, "lb"),
  31498. name: "Front",
  31499. image: {
  31500. source: "./media/characters/sapphire-svell/front.svg",
  31501. extra: 495 / 455,
  31502. bottom: 20 / 515
  31503. }
  31504. },
  31505. back: {
  31506. height: math.unit(6, "feet"),
  31507. weight: math.unit(216, "lb"),
  31508. name: "Back",
  31509. image: {
  31510. source: "./media/characters/sapphire-svell/back.svg",
  31511. extra: 497 / 477,
  31512. bottom: 7 / 504
  31513. }
  31514. },
  31515. maw: {
  31516. height: math.unit(1.57, "feet"),
  31517. name: "Maw",
  31518. image: {
  31519. source: "./media/characters/sapphire-svell/maw.svg"
  31520. }
  31521. },
  31522. foot: {
  31523. height: math.unit(1.07, "feet"),
  31524. name: "Foot",
  31525. image: {
  31526. source: "./media/characters/sapphire-svell/foot.svg"
  31527. }
  31528. },
  31529. toering: {
  31530. height: math.unit(1.7, "inch"),
  31531. name: "Toering",
  31532. image: {
  31533. source: "./media/characters/sapphire-svell/toering.svg"
  31534. }
  31535. },
  31536. },
  31537. [
  31538. {
  31539. name: "Normal",
  31540. height: math.unit(300, "feet"),
  31541. default: true
  31542. },
  31543. {
  31544. name: "Augmented",
  31545. height: math.unit(1250, "feet")
  31546. },
  31547. {
  31548. name: "Unleashed",
  31549. height: math.unit(3000, "feet")
  31550. },
  31551. ]
  31552. ))
  31553. characterMakers.push(() => makeCharacter(
  31554. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31555. {
  31556. side: {
  31557. height: math.unit(2 + 3 / 12, "feet"),
  31558. weight: math.unit(110, "lb"),
  31559. name: "Side",
  31560. image: {
  31561. source: "./media/characters/glitch-flux/side.svg",
  31562. extra: 997 / 805,
  31563. bottom: 20 / 1017
  31564. }
  31565. },
  31566. },
  31567. [
  31568. {
  31569. name: "Normal",
  31570. height: math.unit(2 + 3 / 12, "feet"),
  31571. default: true
  31572. },
  31573. ]
  31574. ))
  31575. characterMakers.push(() => makeCharacter(
  31576. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31577. {
  31578. front: {
  31579. height: math.unit(4, "meters"),
  31580. name: "Front",
  31581. image: {
  31582. source: "./media/characters/mid/front.svg",
  31583. extra: 507 / 476,
  31584. bottom: 17 / 524
  31585. }
  31586. },
  31587. back: {
  31588. height: math.unit(4, "meters"),
  31589. name: "Back",
  31590. image: {
  31591. source: "./media/characters/mid/back.svg",
  31592. extra: 519 / 487,
  31593. bottom: 7 / 526
  31594. }
  31595. },
  31596. stuck: {
  31597. height: math.unit(2.2, "meters"),
  31598. name: "Stuck",
  31599. image: {
  31600. source: "./media/characters/mid/stuck.svg",
  31601. extra: 1951 / 1869,
  31602. bottom: 88 / 2039
  31603. }
  31604. }
  31605. },
  31606. [
  31607. {
  31608. name: "Normal",
  31609. height: math.unit(4, "meters"),
  31610. default: true
  31611. },
  31612. {
  31613. name: "Big",
  31614. height: math.unit(10, "meters")
  31615. },
  31616. {
  31617. name: "Macro",
  31618. height: math.unit(800, "meters")
  31619. },
  31620. {
  31621. name: "Megamacro",
  31622. height: math.unit(100, "km")
  31623. },
  31624. {
  31625. name: "Overgrown",
  31626. height: math.unit(1, "parsec")
  31627. },
  31628. ]
  31629. ))
  31630. characterMakers.push(() => makeCharacter(
  31631. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31632. {
  31633. front: {
  31634. height: math.unit(2.5, "meters"),
  31635. weight: math.unit(225, "kg"),
  31636. name: "Front",
  31637. image: {
  31638. source: "./media/characters/iris/front.svg",
  31639. extra: 3348 / 3251,
  31640. bottom: 205 / 3553
  31641. }
  31642. },
  31643. maw: {
  31644. height: math.unit(0.56, "meter"),
  31645. name: "Maw",
  31646. image: {
  31647. source: "./media/characters/iris/maw.svg"
  31648. }
  31649. },
  31650. },
  31651. [
  31652. {
  31653. name: "Mewter cat",
  31654. height: math.unit(1.2, "meters")
  31655. },
  31656. {
  31657. name: "Normal",
  31658. height: math.unit(2.5, "meters"),
  31659. default: true
  31660. },
  31661. {
  31662. name: "Minimacro",
  31663. height: math.unit(18, "feet")
  31664. },
  31665. {
  31666. name: "Macro",
  31667. height: math.unit(140, "feet")
  31668. },
  31669. {
  31670. name: "Macro+",
  31671. height: math.unit(180, "meters")
  31672. },
  31673. {
  31674. name: "Megamacro",
  31675. height: math.unit(2746, "meters")
  31676. },
  31677. ]
  31678. ))
  31679. characterMakers.push(() => makeCharacter(
  31680. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31681. {
  31682. front: {
  31683. height: math.unit(6, "feet"),
  31684. weight: math.unit(135, "lb"),
  31685. name: "Front",
  31686. image: {
  31687. source: "./media/characters/axel/front.svg",
  31688. extra: 908 / 908,
  31689. bottom: 58 / 966
  31690. }
  31691. },
  31692. side: {
  31693. height: math.unit(6, "feet"),
  31694. weight: math.unit(135, "lb"),
  31695. name: "Side",
  31696. image: {
  31697. source: "./media/characters/axel/side.svg",
  31698. extra: 958 / 958,
  31699. bottom: 11 / 969
  31700. }
  31701. },
  31702. back: {
  31703. height: math.unit(6, "feet"),
  31704. weight: math.unit(135, "lb"),
  31705. name: "Back",
  31706. image: {
  31707. source: "./media/characters/axel/back.svg",
  31708. extra: 887 / 887,
  31709. bottom: 34 / 921
  31710. }
  31711. },
  31712. head: {
  31713. height: math.unit(1.07, "feet"),
  31714. name: "Head",
  31715. image: {
  31716. source: "./media/characters/axel/head.svg"
  31717. }
  31718. },
  31719. beak: {
  31720. height: math.unit(1.4, "feet"),
  31721. name: "Beak",
  31722. image: {
  31723. source: "./media/characters/axel/beak.svg"
  31724. }
  31725. },
  31726. beakSide: {
  31727. height: math.unit(1.4, "feet"),
  31728. name: "Beak Side",
  31729. image: {
  31730. source: "./media/characters/axel/beak-side.svg"
  31731. }
  31732. },
  31733. sheath: {
  31734. height: math.unit(0.5, "feet"),
  31735. name: "Sheath",
  31736. image: {
  31737. source: "./media/characters/axel/sheath.svg"
  31738. }
  31739. },
  31740. dick: {
  31741. height: math.unit(0.98, "feet"),
  31742. name: "Dick",
  31743. image: {
  31744. source: "./media/characters/axel/dick.svg"
  31745. }
  31746. },
  31747. },
  31748. [
  31749. {
  31750. name: "Macro",
  31751. height: math.unit(68, "meters"),
  31752. default: true
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(3.5, "meters"),
  31761. weight: math.unit(1200, "kg"),
  31762. name: "Front",
  31763. image: {
  31764. source: "./media/characters/joanna/front.svg",
  31765. extra: 1596 / 1488,
  31766. bottom: 29 / 1625
  31767. }
  31768. },
  31769. back: {
  31770. height: math.unit(3.5, "meters"),
  31771. weight: math.unit(1200, "kg"),
  31772. name: "Back",
  31773. image: {
  31774. source: "./media/characters/joanna/back.svg",
  31775. extra: 1594 / 1495,
  31776. bottom: 26 / 1620
  31777. }
  31778. },
  31779. frontShorts: {
  31780. height: math.unit(3.5, "meters"),
  31781. weight: math.unit(1200, "kg"),
  31782. name: "Front (Shorts)",
  31783. image: {
  31784. source: "./media/characters/joanna/front-shorts.svg",
  31785. extra: 1596 / 1488,
  31786. bottom: 29 / 1625
  31787. }
  31788. },
  31789. frontBiker: {
  31790. height: math.unit(3.5, "meters"),
  31791. weight: math.unit(1200, "kg"),
  31792. name: "Front (Biker)",
  31793. image: {
  31794. source: "./media/characters/joanna/front-biker.svg",
  31795. extra: 1596 / 1488,
  31796. bottom: 29 / 1625
  31797. }
  31798. },
  31799. backBiker: {
  31800. height: math.unit(3.5, "meters"),
  31801. weight: math.unit(1200, "kg"),
  31802. name: "Back (Biker)",
  31803. image: {
  31804. source: "./media/characters/joanna/back-biker.svg",
  31805. extra: 1594 / 1495,
  31806. bottom: 88 / 1682
  31807. }
  31808. },
  31809. bikeLeft: {
  31810. height: math.unit(2.4, "meters"),
  31811. weight: math.unit(1600, "kg"),
  31812. name: "Bike (Left)",
  31813. image: {
  31814. source: "./media/characters/joanna/bike-left.svg",
  31815. extra: 720 / 720,
  31816. bottom: 8 / 728
  31817. }
  31818. },
  31819. bikeRight: {
  31820. height: math.unit(2.4, "meters"),
  31821. weight: math.unit(1600, "kg"),
  31822. name: "Bike (Right)",
  31823. image: {
  31824. source: "./media/characters/joanna/bike-right.svg",
  31825. extra: 720 / 720,
  31826. bottom: 8 / 728
  31827. }
  31828. },
  31829. },
  31830. [
  31831. {
  31832. name: "Incognito",
  31833. height: math.unit(3.5, "meters")
  31834. },
  31835. {
  31836. name: "Casual Big",
  31837. height: math.unit(200, "meters")
  31838. },
  31839. {
  31840. name: "Macro",
  31841. height: math.unit(600, "meters")
  31842. },
  31843. {
  31844. name: "Original",
  31845. height: math.unit(20, "km"),
  31846. default: true
  31847. },
  31848. {
  31849. name: "Giga",
  31850. height: math.unit(400, "km")
  31851. },
  31852. {
  31853. name: "Lounging",
  31854. height: math.unit(1500, "km")
  31855. },
  31856. {
  31857. name: "Planetary",
  31858. height: math.unit(200000, "km")
  31859. },
  31860. ]
  31861. ))
  31862. characterMakers.push(() => makeCharacter(
  31863. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31864. {
  31865. front: {
  31866. height: math.unit(6, "feet"),
  31867. weight: math.unit(150, "lb"),
  31868. name: "Front",
  31869. image: {
  31870. source: "./media/characters/hugo-sigil/front.svg",
  31871. extra: 522 / 500,
  31872. bottom: 2 / 524
  31873. }
  31874. },
  31875. back: {
  31876. height: math.unit(6, "feet"),
  31877. weight: math.unit(150, "lb"),
  31878. name: "Back",
  31879. image: {
  31880. source: "./media/characters/hugo-sigil/back.svg",
  31881. extra: 519 / 495,
  31882. bottom: 5 / 524
  31883. }
  31884. },
  31885. maw: {
  31886. height: math.unit(1.4, "feet"),
  31887. weight: math.unit(150, "lb"),
  31888. name: "Maw",
  31889. image: {
  31890. source: "./media/characters/hugo-sigil/maw.svg"
  31891. }
  31892. },
  31893. feet: {
  31894. height: math.unit(1.56, "feet"),
  31895. weight: math.unit(150, "lb"),
  31896. name: "Feet",
  31897. image: {
  31898. source: "./media/characters/hugo-sigil/feet.svg",
  31899. extra: 177 / 177,
  31900. bottom: 12 / 189
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Normal",
  31907. height: math.unit(6, "feet")
  31908. },
  31909. {
  31910. name: "Macro",
  31911. height: math.unit(200, "feet"),
  31912. default: true
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31918. {
  31919. front: {
  31920. height: math.unit(6, "feet"),
  31921. weight: math.unit(150, "lb"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/peri/front.svg",
  31925. extra: 2354 / 2233,
  31926. bottom: 49 / 2403
  31927. }
  31928. },
  31929. },
  31930. [
  31931. {
  31932. name: "Really Small",
  31933. height: math.unit(1, "nm")
  31934. },
  31935. {
  31936. name: "Micro",
  31937. height: math.unit(4, "inches")
  31938. },
  31939. {
  31940. name: "Normal",
  31941. height: math.unit(7, "inches"),
  31942. default: true
  31943. },
  31944. {
  31945. name: "Macro",
  31946. height: math.unit(400, "feet")
  31947. },
  31948. {
  31949. name: "Megamacro",
  31950. height: math.unit(100, "miles")
  31951. },
  31952. ]
  31953. ))
  31954. characterMakers.push(() => makeCharacter(
  31955. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31956. {
  31957. frontSlim: {
  31958. height: math.unit(7, "feet"),
  31959. name: "Front (Slim)",
  31960. image: {
  31961. source: "./media/characters/issilora/front-slim.svg",
  31962. extra: 529 / 449,
  31963. bottom: 53 / 582
  31964. }
  31965. },
  31966. sideSlim: {
  31967. height: math.unit(7, "feet"),
  31968. name: "Side (Slim)",
  31969. image: {
  31970. source: "./media/characters/issilora/side-slim.svg",
  31971. extra: 570 / 480,
  31972. bottom: 30 / 600
  31973. }
  31974. },
  31975. backSlim: {
  31976. height: math.unit(7, "feet"),
  31977. name: "Back (Slim)",
  31978. image: {
  31979. source: "./media/characters/issilora/back-slim.svg",
  31980. extra: 537 / 455,
  31981. bottom: 46 / 583
  31982. }
  31983. },
  31984. frontBuff: {
  31985. height: math.unit(7, "feet"),
  31986. name: "Front (Buff)",
  31987. image: {
  31988. source: "./media/characters/issilora/front-buff.svg",
  31989. extra: 2310 / 2035,
  31990. bottom: 335 / 2645
  31991. }
  31992. },
  31993. head: {
  31994. height: math.unit(1.94, "feet"),
  31995. name: "Head",
  31996. image: {
  31997. source: "./media/characters/issilora/head.svg"
  31998. }
  31999. },
  32000. },
  32001. [
  32002. {
  32003. name: "Minimum",
  32004. height: math.unit(7, "feet")
  32005. },
  32006. {
  32007. name: "Comfortable",
  32008. height: math.unit(17, "feet")
  32009. },
  32010. {
  32011. name: "Fun Size",
  32012. height: math.unit(47, "feet")
  32013. },
  32014. {
  32015. name: "Natural Macro",
  32016. height: math.unit(137, "feet"),
  32017. default: true
  32018. },
  32019. {
  32020. name: "Maximum Kaiju",
  32021. height: math.unit(397, "feet")
  32022. },
  32023. ]
  32024. ))
  32025. characterMakers.push(() => makeCharacter(
  32026. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32027. {
  32028. front: {
  32029. height: math.unit(50 + 9/12, "feet"),
  32030. weight: math.unit(32.8, "tons"),
  32031. name: "Front",
  32032. image: {
  32033. source: "./media/characters/irb'iiritaahn/front.svg",
  32034. extra: 1878/1826,
  32035. bottom: 326/2204
  32036. }
  32037. },
  32038. back: {
  32039. height: math.unit(50 + 9/12, "feet"),
  32040. weight: math.unit(32.8, "tons"),
  32041. name: "Back",
  32042. image: {
  32043. source: "./media/characters/irb'iiritaahn/back.svg",
  32044. extra: 2052/2018,
  32045. bottom: 152/2204
  32046. }
  32047. },
  32048. head: {
  32049. height: math.unit(12.86, "feet"),
  32050. name: "Head",
  32051. image: {
  32052. source: "./media/characters/irb'iiritaahn/head.svg"
  32053. }
  32054. },
  32055. maw: {
  32056. height: math.unit(9.66, "feet"),
  32057. name: "Maw",
  32058. image: {
  32059. source: "./media/characters/irb'iiritaahn/maw.svg"
  32060. }
  32061. },
  32062. frontDick: {
  32063. height: math.unit(8.78461, "feet"),
  32064. name: "Front Dick",
  32065. image: {
  32066. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32067. }
  32068. },
  32069. rearDick: {
  32070. height: math.unit(8.78461, "feet"),
  32071. name: "Rear Dick",
  32072. image: {
  32073. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32074. }
  32075. },
  32076. rearDickUnfolded: {
  32077. height: math.unit(8.78, "feet"),
  32078. name: "Rear Dick (Unfolded)",
  32079. image: {
  32080. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32081. }
  32082. },
  32083. wings: {
  32084. height: math.unit(43, "feet"),
  32085. name: "Wings",
  32086. image: {
  32087. source: "./media/characters/irb'iiritaahn/wings.svg"
  32088. }
  32089. },
  32090. },
  32091. [
  32092. {
  32093. name: "Macro",
  32094. height: math.unit(50 + 9/12, "feet"),
  32095. default: true
  32096. },
  32097. ]
  32098. ))
  32099. characterMakers.push(() => makeCharacter(
  32100. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32101. {
  32102. front: {
  32103. height: math.unit(205, "cm"),
  32104. weight: math.unit(102, "kg"),
  32105. name: "Front",
  32106. image: {
  32107. source: "./media/characters/irbisgreif/front.svg",
  32108. extra: 785/706,
  32109. bottom: 13/798
  32110. }
  32111. },
  32112. back: {
  32113. height: math.unit(205, "cm"),
  32114. weight: math.unit(102, "kg"),
  32115. name: "Back",
  32116. image: {
  32117. source: "./media/characters/irbisgreif/back.svg",
  32118. extra: 713/701,
  32119. bottom: 26/739
  32120. }
  32121. },
  32122. frontDressed: {
  32123. height: math.unit(216, "cm"),
  32124. weight: math.unit(102, "kg"),
  32125. name: "Front-dressed",
  32126. image: {
  32127. source: "./media/characters/irbisgreif/front-dressed.svg",
  32128. extra: 902/776,
  32129. bottom: 14/916
  32130. }
  32131. },
  32132. sideDressed: {
  32133. height: math.unit(195, "cm"),
  32134. weight: math.unit(102, "kg"),
  32135. name: "Side-dressed",
  32136. image: {
  32137. source: "./media/characters/irbisgreif/side-dressed.svg",
  32138. extra: 788/688,
  32139. bottom: 21/809
  32140. }
  32141. },
  32142. backDressed: {
  32143. height: math.unit(216, "cm"),
  32144. weight: math.unit(102, "kg"),
  32145. name: "Back-dressed",
  32146. image: {
  32147. source: "./media/characters/irbisgreif/back-dressed.svg",
  32148. extra: 901/783,
  32149. bottom: 10/911
  32150. }
  32151. },
  32152. dick: {
  32153. height: math.unit(0.49, "feet"),
  32154. name: "Dick",
  32155. image: {
  32156. source: "./media/characters/irbisgreif/dick.svg"
  32157. }
  32158. },
  32159. wingTop: {
  32160. height: math.unit(1.93 , "feet"),
  32161. name: "Wing-top",
  32162. image: {
  32163. source: "./media/characters/irbisgreif/wing-top.svg"
  32164. }
  32165. },
  32166. wingBottom: {
  32167. height: math.unit(1.93 , "feet"),
  32168. name: "Wing-bottom",
  32169. image: {
  32170. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32171. }
  32172. },
  32173. },
  32174. [
  32175. {
  32176. name: "Normal",
  32177. height: math.unit(216, "cm"),
  32178. default: true
  32179. },
  32180. ]
  32181. ))
  32182. characterMakers.push(() => makeCharacter(
  32183. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32184. {
  32185. front: {
  32186. height: math.unit(6, "feet"),
  32187. weight: math.unit(150, "lb"),
  32188. name: "Front",
  32189. image: {
  32190. source: "./media/characters/pride/front.svg",
  32191. extra: 1299/1230,
  32192. bottom: 18/1317
  32193. }
  32194. },
  32195. },
  32196. [
  32197. {
  32198. name: "Normal",
  32199. height: math.unit(7, "feet")
  32200. },
  32201. {
  32202. name: "Mini-macro",
  32203. height: math.unit(11, "feet")
  32204. },
  32205. {
  32206. name: "Macro",
  32207. height: math.unit(15, "meters"),
  32208. default: true
  32209. },
  32210. {
  32211. name: "Macro+",
  32212. height: math.unit(40, "meters")
  32213. },
  32214. ]
  32215. ))
  32216. characterMakers.push(() => makeCharacter(
  32217. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32218. {
  32219. front: {
  32220. height: math.unit(4 + 2 / 12, "feet"),
  32221. weight: math.unit(95, "lb"),
  32222. name: "Front",
  32223. image: {
  32224. source: "./media/characters/vaelophis-nyx/front.svg",
  32225. extra: 2532/2330,
  32226. bottom: 0/2532
  32227. }
  32228. },
  32229. back: {
  32230. height: math.unit(4 + 2 / 12, "feet"),
  32231. weight: math.unit(95, "lb"),
  32232. name: "Back",
  32233. image: {
  32234. source: "./media/characters/vaelophis-nyx/back.svg",
  32235. extra: 2484/2361,
  32236. bottom: 0/2484
  32237. }
  32238. },
  32239. feralSide: {
  32240. height: math.unit(2 + 1/12, "feet"),
  32241. weight: math.unit(20, "lb"),
  32242. name: "Feral (Side)",
  32243. image: {
  32244. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32245. extra: 1721/1581,
  32246. bottom: 70/1791
  32247. }
  32248. },
  32249. feralLazing: {
  32250. height: math.unit(1.08, "feet"),
  32251. weight: math.unit(20, "lb"),
  32252. name: "Feral (Lazing)",
  32253. image: {
  32254. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32255. extra: 822/822,
  32256. bottom: 248/1070
  32257. }
  32258. },
  32259. ear: {
  32260. height: math.unit(0.416, "feet"),
  32261. name: "Ear",
  32262. image: {
  32263. source: "./media/characters/vaelophis-nyx/ear.svg"
  32264. }
  32265. },
  32266. eye: {
  32267. height: math.unit(0.0748, "feet"),
  32268. name: "Eye",
  32269. image: {
  32270. source: "./media/characters/vaelophis-nyx/eye.svg"
  32271. }
  32272. },
  32273. mouth: {
  32274. height: math.unit(0.378, "feet"),
  32275. name: "Mouth",
  32276. image: {
  32277. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32278. }
  32279. },
  32280. spade: {
  32281. height: math.unit(0.55, "feet"),
  32282. name: "Spade",
  32283. image: {
  32284. source: "./media/characters/vaelophis-nyx/spade.svg"
  32285. }
  32286. },
  32287. },
  32288. [
  32289. {
  32290. name: "Normal",
  32291. height: math.unit(4 + 2/12, "feet"),
  32292. default: true
  32293. },
  32294. ]
  32295. ))
  32296. characterMakers.push(() => makeCharacter(
  32297. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32298. {
  32299. front: {
  32300. height: math.unit(7, "feet"),
  32301. weight: math.unit(231, "lb"),
  32302. name: "Front",
  32303. image: {
  32304. source: "./media/characters/flux/front.svg",
  32305. extra: 919/871,
  32306. bottom: 0/919
  32307. }
  32308. },
  32309. back: {
  32310. height: math.unit(7, "feet"),
  32311. weight: math.unit(231, "lb"),
  32312. name: "Back",
  32313. image: {
  32314. source: "./media/characters/flux/back.svg",
  32315. extra: 1040/992,
  32316. bottom: 0/1040
  32317. }
  32318. },
  32319. frontDressed: {
  32320. height: math.unit(7, "feet"),
  32321. weight: math.unit(231, "lb"),
  32322. name: "Front (Dressed)",
  32323. image: {
  32324. source: "./media/characters/flux/front-dressed.svg",
  32325. extra: 919/871,
  32326. bottom: 0/919
  32327. }
  32328. },
  32329. feralSide: {
  32330. height: math.unit(5, "feet"),
  32331. weight: math.unit(150, "lb"),
  32332. name: "Feral (Side)",
  32333. image: {
  32334. source: "./media/characters/flux/feral-side.svg",
  32335. extra: 598/528,
  32336. bottom: 28/626
  32337. }
  32338. },
  32339. head: {
  32340. height: math.unit(1.585, "feet"),
  32341. name: "Head",
  32342. image: {
  32343. source: "./media/characters/flux/head.svg"
  32344. }
  32345. },
  32346. headSide: {
  32347. height: math.unit(1.74, "feet"),
  32348. name: "Head (Side)",
  32349. image: {
  32350. source: "./media/characters/flux/head-side.svg"
  32351. }
  32352. },
  32353. headSideFire: {
  32354. height: math.unit(1.76, "feet"),
  32355. name: "Head (Side, Fire)",
  32356. image: {
  32357. source: "./media/characters/flux/head-side-fire.svg"
  32358. }
  32359. },
  32360. },
  32361. [
  32362. {
  32363. name: "Normal",
  32364. height: math.unit(7, "feet"),
  32365. default: true
  32366. },
  32367. ]
  32368. ))
  32369. characterMakers.push(() => makeCharacter(
  32370. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32371. {
  32372. front: {
  32373. height: math.unit(9, "feet"),
  32374. weight: math.unit(1012, "lb"),
  32375. name: "Front",
  32376. image: {
  32377. source: "./media/characters/ulfra-lupae/front.svg",
  32378. extra: 1083/1011,
  32379. bottom: 67/1150
  32380. }
  32381. },
  32382. },
  32383. [
  32384. {
  32385. name: "Micro",
  32386. height: math.unit(6, "inches")
  32387. },
  32388. {
  32389. name: "Socializing",
  32390. height: math.unit(6 + 5/12, "feet")
  32391. },
  32392. {
  32393. name: "Normal",
  32394. height: math.unit(9, "feet"),
  32395. default: true
  32396. },
  32397. {
  32398. name: "Macro",
  32399. height: math.unit(150, "feet")
  32400. },
  32401. ]
  32402. ))
  32403. characterMakers.push(() => makeCharacter(
  32404. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32405. {
  32406. front: {
  32407. height: math.unit(5 + 2/12, "feet"),
  32408. weight: math.unit(120, "lb"),
  32409. name: "Front",
  32410. image: {
  32411. source: "./media/characters/timber/front.svg",
  32412. extra: 2814/2705,
  32413. bottom: 181/2995
  32414. }
  32415. },
  32416. },
  32417. [
  32418. {
  32419. name: "Normal",
  32420. height: math.unit(5 + 2/12, "feet"),
  32421. default: true
  32422. },
  32423. ]
  32424. ))
  32425. characterMakers.push(() => makeCharacter(
  32426. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32427. {
  32428. front: {
  32429. height: math.unit(9, "feet"),
  32430. name: "Front",
  32431. image: {
  32432. source: "./media/characters/nicki/front.svg",
  32433. extra: 1240/990,
  32434. bottom: 45/1285
  32435. },
  32436. form: "anthro",
  32437. default: true
  32438. },
  32439. side: {
  32440. height: math.unit(9, "feet"),
  32441. name: "Side",
  32442. image: {
  32443. source: "./media/characters/nicki/side.svg",
  32444. extra: 1047/973,
  32445. bottom: 61/1108
  32446. },
  32447. form: "anthro"
  32448. },
  32449. back: {
  32450. height: math.unit(9, "feet"),
  32451. name: "Back",
  32452. image: {
  32453. source: "./media/characters/nicki/back.svg",
  32454. extra: 1006/965,
  32455. bottom: 39/1045
  32456. },
  32457. form: "anthro"
  32458. },
  32459. taur: {
  32460. height: math.unit(15, "feet"),
  32461. name: "Taur",
  32462. image: {
  32463. source: "./media/characters/nicki/taur.svg",
  32464. extra: 1592/1347,
  32465. bottom: 0/1592
  32466. },
  32467. form: "taur",
  32468. default: true
  32469. },
  32470. },
  32471. [
  32472. {
  32473. name: "Normal",
  32474. height: math.unit(9, "feet"),
  32475. form: "anthro",
  32476. default: true
  32477. },
  32478. {
  32479. name: "Normal",
  32480. height: math.unit(15, "feet"),
  32481. form: "taur",
  32482. default: true
  32483. }
  32484. ],
  32485. {
  32486. "anthro": {
  32487. name: "Anthro",
  32488. default: true
  32489. },
  32490. "taur": {
  32491. name: "Taur"
  32492. }
  32493. }
  32494. ))
  32495. characterMakers.push(() => makeCharacter(
  32496. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32497. {
  32498. front: {
  32499. height: math.unit(7 + 10/12, "feet"),
  32500. weight: math.unit(3.5, "tons"),
  32501. name: "Front",
  32502. image: {
  32503. source: "./media/characters/lee/front.svg",
  32504. extra: 1773/1615,
  32505. bottom: 86/1859
  32506. }
  32507. },
  32508. hand: {
  32509. height: math.unit(1.78, "feet"),
  32510. name: "Hand",
  32511. image: {
  32512. source: "./media/characters/lee/hand.svg"
  32513. }
  32514. },
  32515. maw: {
  32516. height: math.unit(1.18, "feet"),
  32517. name: "Maw",
  32518. image: {
  32519. source: "./media/characters/lee/maw.svg"
  32520. }
  32521. },
  32522. },
  32523. [
  32524. {
  32525. name: "Normal",
  32526. height: math.unit(7 + 10/12, "feet"),
  32527. default: true
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32533. {
  32534. front: {
  32535. height: math.unit(9, "feet"),
  32536. name: "Front",
  32537. image: {
  32538. source: "./media/characters/guti/front.svg",
  32539. extra: 4551/4355,
  32540. bottom: 123/4674
  32541. }
  32542. },
  32543. tongue: {
  32544. height: math.unit(1, "feet"),
  32545. name: "Tongue",
  32546. image: {
  32547. source: "./media/characters/guti/tongue.svg"
  32548. }
  32549. },
  32550. paw: {
  32551. height: math.unit(1.18, "feet"),
  32552. name: "Paw",
  32553. image: {
  32554. source: "./media/characters/guti/paw.svg"
  32555. }
  32556. },
  32557. },
  32558. [
  32559. {
  32560. name: "Normal",
  32561. height: math.unit(9, "feet"),
  32562. default: true
  32563. },
  32564. ]
  32565. ))
  32566. characterMakers.push(() => makeCharacter(
  32567. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32568. {
  32569. side: {
  32570. height: math.unit(5, "meters"),
  32571. name: "Side",
  32572. image: {
  32573. source: "./media/characters/vesper/side.svg",
  32574. extra: 1605/1518,
  32575. bottom: 0/1605
  32576. }
  32577. },
  32578. },
  32579. [
  32580. {
  32581. name: "Small",
  32582. height: math.unit(5, "meters")
  32583. },
  32584. {
  32585. name: "Sage",
  32586. height: math.unit(100, "meters"),
  32587. default: true
  32588. },
  32589. {
  32590. name: "Fun Size",
  32591. height: math.unit(600, "meters")
  32592. },
  32593. {
  32594. name: "Goddess",
  32595. height: math.unit(20000, "km")
  32596. },
  32597. {
  32598. name: "Maximum",
  32599. height: math.unit(5, "galaxies")
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32605. {
  32606. front: {
  32607. height: math.unit(6 + 3/12, "feet"),
  32608. weight: math.unit(190, "lb"),
  32609. name: "Front",
  32610. image: {
  32611. source: "./media/characters/gawain/front.svg",
  32612. extra: 2222/2139,
  32613. bottom: 90/2312
  32614. }
  32615. },
  32616. back: {
  32617. height: math.unit(6 + 3/12, "feet"),
  32618. weight: math.unit(190, "lb"),
  32619. name: "Back",
  32620. image: {
  32621. source: "./media/characters/gawain/back.svg",
  32622. extra: 2199/2111,
  32623. bottom: 73/2272
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(6 + 3/12, "feet"),
  32631. default: true
  32632. },
  32633. ]
  32634. ))
  32635. characterMakers.push(() => makeCharacter(
  32636. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32637. {
  32638. side: {
  32639. height: math.unit(3.5, "meters"),
  32640. weight: math.unit(16000, "lb"),
  32641. name: "Side",
  32642. image: {
  32643. source: "./media/characters/dascalti/side.svg",
  32644. extra: 392/273,
  32645. bottom: 47/439
  32646. }
  32647. },
  32648. breath: {
  32649. height: math.unit(7.4, "feet"),
  32650. name: "Breath",
  32651. image: {
  32652. source: "./media/characters/dascalti/breath.svg"
  32653. }
  32654. },
  32655. fed: {
  32656. height: math.unit(3.6, "meters"),
  32657. weight: math.unit(16000, "lb"),
  32658. name: "Fed",
  32659. image: {
  32660. source: "./media/characters/dascalti/fed.svg",
  32661. extra: 1419/820,
  32662. bottom: 95/1514
  32663. }
  32664. },
  32665. },
  32666. [
  32667. {
  32668. name: "Normal",
  32669. height: math.unit(3.5, "meters"),
  32670. default: true
  32671. },
  32672. ]
  32673. ))
  32674. characterMakers.push(() => makeCharacter(
  32675. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32676. {
  32677. front: {
  32678. height: math.unit(3 + 5/12, "feet"),
  32679. name: "Front",
  32680. image: {
  32681. source: "./media/characters/mauve/front.svg",
  32682. extra: 1126/1033,
  32683. bottom: 65/1191
  32684. }
  32685. },
  32686. side: {
  32687. height: math.unit(3 + 5/12, "feet"),
  32688. name: "Side",
  32689. image: {
  32690. source: "./media/characters/mauve/side.svg",
  32691. extra: 1089/1001,
  32692. bottom: 29/1118
  32693. }
  32694. },
  32695. back: {
  32696. height: math.unit(3 + 5/12, "feet"),
  32697. name: "Back",
  32698. image: {
  32699. source: "./media/characters/mauve/back.svg",
  32700. extra: 1173/1053,
  32701. bottom: 109/1282
  32702. }
  32703. },
  32704. },
  32705. [
  32706. {
  32707. name: "Normal",
  32708. height: math.unit(3 + 5/12, "feet"),
  32709. default: true
  32710. },
  32711. ]
  32712. ))
  32713. characterMakers.push(() => makeCharacter(
  32714. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32715. {
  32716. front: {
  32717. height: math.unit(6 + 3/12, "feet"),
  32718. weight: math.unit(430, "lb"),
  32719. name: "Front",
  32720. image: {
  32721. source: "./media/characters/carlos/front.svg",
  32722. extra: 1964/1913,
  32723. bottom: 70/2034
  32724. }
  32725. },
  32726. },
  32727. [
  32728. {
  32729. name: "Normal",
  32730. height: math.unit(6 + 3/12, "feet"),
  32731. default: true
  32732. },
  32733. ]
  32734. ))
  32735. characterMakers.push(() => makeCharacter(
  32736. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32737. {
  32738. back: {
  32739. height: math.unit(5 + 10/12, "feet"),
  32740. weight: math.unit(200, "lb"),
  32741. name: "Back",
  32742. image: {
  32743. source: "./media/characters/jax/back.svg",
  32744. extra: 764/739,
  32745. bottom: 25/789
  32746. }
  32747. },
  32748. },
  32749. [
  32750. {
  32751. name: "Normal",
  32752. height: math.unit(5 + 10/12, "feet"),
  32753. default: true
  32754. },
  32755. ]
  32756. ))
  32757. characterMakers.push(() => makeCharacter(
  32758. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32759. {
  32760. front: {
  32761. height: math.unit(8, "feet"),
  32762. weight: math.unit(250, "lb"),
  32763. name: "Front",
  32764. image: {
  32765. source: "./media/characters/eikthynir/front.svg",
  32766. extra: 1332/1166,
  32767. bottom: 82/1414
  32768. }
  32769. },
  32770. back: {
  32771. height: math.unit(8, "feet"),
  32772. weight: math.unit(250, "lb"),
  32773. name: "Back",
  32774. image: {
  32775. source: "./media/characters/eikthynir/back.svg",
  32776. extra: 1342/1190,
  32777. bottom: 19/1361
  32778. }
  32779. },
  32780. dick: {
  32781. height: math.unit(2.35, "feet"),
  32782. name: "Dick",
  32783. image: {
  32784. source: "./media/characters/eikthynir/dick.svg"
  32785. }
  32786. },
  32787. },
  32788. [
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(8, "feet"),
  32792. default: true
  32793. },
  32794. ]
  32795. ))
  32796. characterMakers.push(() => makeCharacter(
  32797. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32798. {
  32799. front: {
  32800. height: math.unit(99, "meters"),
  32801. weight: math.unit(13000, "tons"),
  32802. name: "Front",
  32803. image: {
  32804. source: "./media/characters/zlmos/front.svg",
  32805. extra: 2202/1992,
  32806. bottom: 315/2517
  32807. }
  32808. },
  32809. },
  32810. [
  32811. {
  32812. name: "Macro",
  32813. height: math.unit(99, "meters"),
  32814. default: true
  32815. },
  32816. ]
  32817. ))
  32818. characterMakers.push(() => makeCharacter(
  32819. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32820. {
  32821. front: {
  32822. height: math.unit(6 + 5/12, "feet"),
  32823. name: "Front",
  32824. image: {
  32825. source: "./media/characters/purri/front.svg",
  32826. extra: 1698/1610,
  32827. bottom: 32/1730
  32828. }
  32829. },
  32830. frontAlt: {
  32831. height: math.unit(6 + 5/12, "feet"),
  32832. name: "Front (Alt)",
  32833. image: {
  32834. source: "./media/characters/purri/front-alt.svg",
  32835. extra: 450/420,
  32836. bottom: 26/476
  32837. }
  32838. },
  32839. boots: {
  32840. height: math.unit(5.5, "feet"),
  32841. name: "Boots",
  32842. image: {
  32843. source: "./media/characters/purri/boots.svg",
  32844. extra: 905/853,
  32845. bottom: 18/923
  32846. }
  32847. },
  32848. lying: {
  32849. height: math.unit(2, "feet"),
  32850. name: "Lying",
  32851. image: {
  32852. source: "./media/characters/purri/lying.svg",
  32853. extra: 940/843,
  32854. bottom: 146/1086
  32855. }
  32856. },
  32857. devious: {
  32858. height: math.unit(1.77, "feet"),
  32859. name: "Devious",
  32860. image: {
  32861. source: "./media/characters/purri/devious.svg",
  32862. extra: 1440/1155,
  32863. bottom: 147/1587
  32864. }
  32865. },
  32866. bean: {
  32867. height: math.unit(1.94, "feet"),
  32868. name: "Bean",
  32869. image: {
  32870. source: "./media/characters/purri/bean.svg"
  32871. }
  32872. },
  32873. },
  32874. [
  32875. {
  32876. name: "Micro",
  32877. height: math.unit(1, "mm")
  32878. },
  32879. {
  32880. name: "Normal",
  32881. height: math.unit(6 + 5/12, "feet"),
  32882. default: true
  32883. },
  32884. {
  32885. name: "Macro :3c",
  32886. height: math.unit(2, "miles")
  32887. },
  32888. ]
  32889. ))
  32890. characterMakers.push(() => makeCharacter(
  32891. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32892. {
  32893. front: {
  32894. height: math.unit(6 + 2/12, "feet"),
  32895. weight: math.unit(250, "lb"),
  32896. name: "Front",
  32897. image: {
  32898. source: "./media/characters/moonlight/front.svg",
  32899. extra: 1044/908,
  32900. bottom: 56/1100
  32901. }
  32902. },
  32903. feral: {
  32904. height: math.unit(3 + 1/12, "feet"),
  32905. weight: math.unit(50, "kg"),
  32906. name: "Feral",
  32907. image: {
  32908. source: "./media/characters/moonlight/feral.svg",
  32909. extra: 3705/2791,
  32910. bottom: 145/3850
  32911. }
  32912. },
  32913. paw: {
  32914. height: math.unit(1, "feet"),
  32915. name: "Paw",
  32916. image: {
  32917. source: "./media/characters/moonlight/paw.svg"
  32918. }
  32919. },
  32920. paws: {
  32921. height: math.unit(0.98, "feet"),
  32922. name: "Paws",
  32923. image: {
  32924. source: "./media/characters/moonlight/paws.svg",
  32925. extra: 939/939,
  32926. bottom: 50/989
  32927. }
  32928. },
  32929. mouth: {
  32930. height: math.unit(0.48, "feet"),
  32931. name: "Mouth",
  32932. image: {
  32933. source: "./media/characters/moonlight/mouth.svg"
  32934. }
  32935. },
  32936. dick: {
  32937. height: math.unit(1.46, "feet"),
  32938. name: "Dick",
  32939. image: {
  32940. source: "./media/characters/moonlight/dick.svg"
  32941. }
  32942. },
  32943. },
  32944. [
  32945. {
  32946. name: "Normal",
  32947. height: math.unit(6 + 2/12, "feet"),
  32948. default: true
  32949. },
  32950. {
  32951. name: "Macro",
  32952. height: math.unit(300, "feet")
  32953. },
  32954. {
  32955. name: "Macro+",
  32956. height: math.unit(1, "mile")
  32957. },
  32958. {
  32959. name: "Mt. Moon",
  32960. height: math.unit(5, "miles")
  32961. },
  32962. {
  32963. name: "Megamacro",
  32964. height: math.unit(15, "miles")
  32965. },
  32966. ]
  32967. ))
  32968. characterMakers.push(() => makeCharacter(
  32969. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32970. {
  32971. back: {
  32972. height: math.unit(6, "feet"),
  32973. weight: math.unit(150, "lb"),
  32974. name: "Back",
  32975. image: {
  32976. source: "./media/characters/sylen/back.svg",
  32977. extra: 1335/1273,
  32978. bottom: 107/1442
  32979. }
  32980. },
  32981. },
  32982. [
  32983. {
  32984. name: "Normal",
  32985. height: math.unit(5 + 5/12, "feet")
  32986. },
  32987. {
  32988. name: "Megamacro",
  32989. height: math.unit(3, "miles"),
  32990. default: true
  32991. },
  32992. ]
  32993. ))
  32994. characterMakers.push(() => makeCharacter(
  32995. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32996. {
  32997. front: {
  32998. height: math.unit(6, "feet"),
  32999. weight: math.unit(190, "lb"),
  33000. name: "Front",
  33001. image: {
  33002. source: "./media/characters/huttser/front.svg",
  33003. extra: 1152/1058,
  33004. bottom: 23/1175
  33005. }
  33006. },
  33007. side: {
  33008. height: math.unit(6, "feet"),
  33009. weight: math.unit(190, "lb"),
  33010. name: "Side",
  33011. image: {
  33012. source: "./media/characters/huttser/side.svg",
  33013. extra: 1174/1065,
  33014. bottom: 18/1192
  33015. }
  33016. },
  33017. back: {
  33018. height: math.unit(6, "feet"),
  33019. weight: math.unit(190, "lb"),
  33020. name: "Back",
  33021. image: {
  33022. source: "./media/characters/huttser/back.svg",
  33023. extra: 1158/1056,
  33024. bottom: 12/1170
  33025. }
  33026. },
  33027. },
  33028. [
  33029. ]
  33030. ))
  33031. characterMakers.push(() => makeCharacter(
  33032. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33033. {
  33034. side: {
  33035. height: math.unit(12 + 9/12, "feet"),
  33036. weight: math.unit(15000, "lb"),
  33037. name: "Side",
  33038. image: {
  33039. source: "./media/characters/faan/side.svg",
  33040. extra: 2747/2697,
  33041. bottom: 0/2747
  33042. }
  33043. },
  33044. front: {
  33045. height: math.unit(12 + 9/12, "feet"),
  33046. weight: math.unit(15000, "lb"),
  33047. name: "Front",
  33048. image: {
  33049. source: "./media/characters/faan/front.svg",
  33050. extra: 607/571,
  33051. bottom: 24/631
  33052. }
  33053. },
  33054. head: {
  33055. height: math.unit(2.85, "feet"),
  33056. name: "Head",
  33057. image: {
  33058. source: "./media/characters/faan/head.svg"
  33059. }
  33060. },
  33061. headAlt: {
  33062. height: math.unit(3.13, "feet"),
  33063. name: "Head-alt",
  33064. image: {
  33065. source: "./media/characters/faan/head-alt.svg"
  33066. }
  33067. },
  33068. },
  33069. [
  33070. {
  33071. name: "Normal",
  33072. height: math.unit(12 + 9/12, "feet"),
  33073. default: true
  33074. },
  33075. ]
  33076. ))
  33077. characterMakers.push(() => makeCharacter(
  33078. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33079. {
  33080. front: {
  33081. height: math.unit(6, "feet"),
  33082. weight: math.unit(300, "lb"),
  33083. name: "Front",
  33084. image: {
  33085. source: "./media/characters/tanio/front.svg",
  33086. extra: 711/673,
  33087. bottom: 25/736
  33088. }
  33089. },
  33090. },
  33091. [
  33092. {
  33093. name: "Normal",
  33094. height: math.unit(6, "feet"),
  33095. default: true
  33096. },
  33097. ]
  33098. ))
  33099. characterMakers.push(() => makeCharacter(
  33100. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33101. {
  33102. front: {
  33103. height: math.unit(3, "inches"),
  33104. name: "Front",
  33105. image: {
  33106. source: "./media/characters/noboru/front.svg",
  33107. extra: 1039/932,
  33108. bottom: 18/1057
  33109. }
  33110. },
  33111. },
  33112. [
  33113. {
  33114. name: "Micro",
  33115. height: math.unit(3, "inches"),
  33116. default: true
  33117. },
  33118. ]
  33119. ))
  33120. characterMakers.push(() => makeCharacter(
  33121. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33122. {
  33123. front: {
  33124. height: math.unit(1.85, "meters"),
  33125. weight: math.unit(80, "kg"),
  33126. name: "Front",
  33127. image: {
  33128. source: "./media/characters/daniel-barrett/front.svg",
  33129. extra: 355/337,
  33130. bottom: 9/364
  33131. }
  33132. },
  33133. },
  33134. [
  33135. {
  33136. name: "Pico",
  33137. height: math.unit(0.0433, "mm")
  33138. },
  33139. {
  33140. name: "Nano",
  33141. height: math.unit(1.5, "mm")
  33142. },
  33143. {
  33144. name: "Micro",
  33145. height: math.unit(5.3, "cm"),
  33146. default: true
  33147. },
  33148. {
  33149. name: "Normal",
  33150. height: math.unit(1.85, "meters")
  33151. },
  33152. {
  33153. name: "Macro",
  33154. height: math.unit(64.7, "meters")
  33155. },
  33156. {
  33157. name: "Megamacro",
  33158. height: math.unit(2.26, "km")
  33159. },
  33160. {
  33161. name: "Gigamacro",
  33162. height: math.unit(79, "km")
  33163. },
  33164. {
  33165. name: "Teramacro",
  33166. height: math.unit(2765, "km")
  33167. },
  33168. {
  33169. name: "Petamacro",
  33170. height: math.unit(96678, "km")
  33171. },
  33172. ]
  33173. ))
  33174. characterMakers.push(() => makeCharacter(
  33175. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33176. {
  33177. front: {
  33178. height: math.unit(30, "meters"),
  33179. weight: math.unit(400, "tons"),
  33180. name: "Front",
  33181. image: {
  33182. source: "./media/characters/zeel/front.svg",
  33183. extra: 2599/2599,
  33184. bottom: 226/2825
  33185. }
  33186. },
  33187. },
  33188. [
  33189. {
  33190. name: "Macro",
  33191. height: math.unit(30, "meters"),
  33192. default: true
  33193. },
  33194. ]
  33195. ))
  33196. characterMakers.push(() => makeCharacter(
  33197. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33198. {
  33199. front: {
  33200. height: math.unit(6 + 7/12, "feet"),
  33201. weight: math.unit(210, "lb"),
  33202. name: "Front",
  33203. image: {
  33204. source: "./media/characters/tarn/front.svg",
  33205. extra: 3517/3220,
  33206. bottom: 91/3608
  33207. }
  33208. },
  33209. back: {
  33210. height: math.unit(6 + 7/12, "feet"),
  33211. weight: math.unit(210, "lb"),
  33212. name: "Back",
  33213. image: {
  33214. source: "./media/characters/tarn/back.svg",
  33215. extra: 3566/3241,
  33216. bottom: 34/3600
  33217. }
  33218. },
  33219. dick: {
  33220. height: math.unit(1.65, "feet"),
  33221. name: "Dick",
  33222. image: {
  33223. source: "./media/characters/tarn/dick.svg"
  33224. }
  33225. },
  33226. paw: {
  33227. height: math.unit(1.80, "feet"),
  33228. name: "Paw",
  33229. image: {
  33230. source: "./media/characters/tarn/paw.svg"
  33231. }
  33232. },
  33233. tongue: {
  33234. height: math.unit(0.97, "feet"),
  33235. name: "Tongue",
  33236. image: {
  33237. source: "./media/characters/tarn/tongue.svg"
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Micro",
  33244. height: math.unit(4, "inches")
  33245. },
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(6 + 7/12, "feet"),
  33249. default: true
  33250. },
  33251. {
  33252. name: "Macro",
  33253. height: math.unit(300, "feet")
  33254. },
  33255. ]
  33256. ))
  33257. characterMakers.push(() => makeCharacter(
  33258. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33259. {
  33260. front: {
  33261. height: math.unit(5 + 7/12, "feet"),
  33262. weight: math.unit(80, "kg"),
  33263. name: "Front",
  33264. image: {
  33265. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33266. extra: 3023/2865,
  33267. bottom: 33/3056
  33268. }
  33269. },
  33270. back: {
  33271. height: math.unit(5 + 7/12, "feet"),
  33272. weight: math.unit(80, "kg"),
  33273. name: "Back",
  33274. image: {
  33275. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33276. extra: 3020/2886,
  33277. bottom: 30/3050
  33278. }
  33279. },
  33280. dick: {
  33281. height: math.unit(0.98, "feet"),
  33282. name: "Dick",
  33283. image: {
  33284. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33285. }
  33286. },
  33287. anatomy: {
  33288. height: math.unit(2.86, "feet"),
  33289. name: "Anatomy",
  33290. image: {
  33291. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33292. }
  33293. },
  33294. },
  33295. [
  33296. {
  33297. name: "Really Small",
  33298. height: math.unit(2, "inches")
  33299. },
  33300. {
  33301. name: "Micro",
  33302. height: math.unit(5.583, "inches")
  33303. },
  33304. {
  33305. name: "Normal",
  33306. height: math.unit(5 + 7/12, "feet"),
  33307. default: true
  33308. },
  33309. {
  33310. name: "Macro",
  33311. height: math.unit(67, "feet")
  33312. },
  33313. {
  33314. name: "Megamacro",
  33315. height: math.unit(134, "feet")
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33321. {
  33322. front: {
  33323. height: math.unit(9, "feet"),
  33324. weight: math.unit(120, "lb"),
  33325. name: "Front",
  33326. image: {
  33327. source: "./media/characters/sally/front.svg",
  33328. extra: 1506/1349,
  33329. bottom: 66/1572
  33330. }
  33331. },
  33332. },
  33333. [
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(9, "feet"),
  33337. default: true
  33338. },
  33339. ]
  33340. ))
  33341. characterMakers.push(() => makeCharacter(
  33342. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33343. {
  33344. front: {
  33345. height: math.unit(8, "feet"),
  33346. weight: math.unit(900, "lb"),
  33347. name: "Front",
  33348. image: {
  33349. source: "./media/characters/owen/front.svg",
  33350. extra: 1761/1657,
  33351. bottom: 74/1835
  33352. }
  33353. },
  33354. side: {
  33355. height: math.unit(8, "feet"),
  33356. weight: math.unit(900, "lb"),
  33357. name: "Side",
  33358. image: {
  33359. source: "./media/characters/owen/side.svg",
  33360. extra: 1797/1734,
  33361. bottom: 30/1827
  33362. }
  33363. },
  33364. back: {
  33365. height: math.unit(8, "feet"),
  33366. weight: math.unit(900, "lb"),
  33367. name: "Back",
  33368. image: {
  33369. source: "./media/characters/owen/back.svg",
  33370. extra: 1796/1706,
  33371. bottom: 59/1855
  33372. }
  33373. },
  33374. maw: {
  33375. height: math.unit(1.76, "feet"),
  33376. name: "Maw",
  33377. image: {
  33378. source: "./media/characters/owen/maw.svg"
  33379. }
  33380. },
  33381. },
  33382. [
  33383. {
  33384. name: "Normal",
  33385. height: math.unit(8, "feet"),
  33386. default: true
  33387. },
  33388. ]
  33389. ))
  33390. characterMakers.push(() => makeCharacter(
  33391. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33392. {
  33393. front: {
  33394. height: math.unit(4, "feet"),
  33395. weight: math.unit(400, "lb"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/ryth/front.svg",
  33399. extra: 1920/1748,
  33400. bottom: 42/1962
  33401. }
  33402. },
  33403. back: {
  33404. height: math.unit(4, "feet"),
  33405. weight: math.unit(400, "lb"),
  33406. name: "Back",
  33407. image: {
  33408. source: "./media/characters/ryth/back.svg",
  33409. extra: 1897/1690,
  33410. bottom: 89/1986
  33411. }
  33412. },
  33413. mouth: {
  33414. height: math.unit(1.39, "feet"),
  33415. name: "Mouth",
  33416. image: {
  33417. source: "./media/characters/ryth/mouth.svg"
  33418. }
  33419. },
  33420. tailmaw: {
  33421. height: math.unit(1.23, "feet"),
  33422. name: "Tailmaw",
  33423. image: {
  33424. source: "./media/characters/ryth/tailmaw.svg"
  33425. }
  33426. },
  33427. goia: {
  33428. height: math.unit(4, "meters"),
  33429. weight: math.unit(10800, "lb"),
  33430. name: "Goia",
  33431. image: {
  33432. source: "./media/characters/ryth/goia.svg",
  33433. extra: 745/640,
  33434. bottom: 107/852
  33435. }
  33436. },
  33437. goiaFront: {
  33438. height: math.unit(4, "meters"),
  33439. weight: math.unit(10800, "lb"),
  33440. name: "Goia (Front)",
  33441. image: {
  33442. source: "./media/characters/ryth/goia-front.svg",
  33443. extra: 750/586,
  33444. bottom: 114/864
  33445. }
  33446. },
  33447. goiaMaw: {
  33448. height: math.unit(5.55, "feet"),
  33449. name: "Goia Maw",
  33450. image: {
  33451. source: "./media/characters/ryth/goia-maw.svg"
  33452. }
  33453. },
  33454. goiaForepaw: {
  33455. height: math.unit(3.5, "feet"),
  33456. name: "Goia Forepaw",
  33457. image: {
  33458. source: "./media/characters/ryth/goia-forepaw.svg"
  33459. }
  33460. },
  33461. goiaHindpaw: {
  33462. height: math.unit(5.55, "feet"),
  33463. name: "Goia Hindpaw",
  33464. image: {
  33465. source: "./media/characters/ryth/goia-hindpaw.svg"
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(4, "feet"),
  33473. default: true
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33479. {
  33480. front: {
  33481. height: math.unit(7, "feet"),
  33482. weight: math.unit(180, "lb"),
  33483. name: "Front",
  33484. image: {
  33485. source: "./media/characters/necrolance/front.svg",
  33486. extra: 1062/947,
  33487. bottom: 41/1103
  33488. }
  33489. },
  33490. back: {
  33491. height: math.unit(7, "feet"),
  33492. weight: math.unit(180, "lb"),
  33493. name: "Back",
  33494. image: {
  33495. source: "./media/characters/necrolance/back.svg",
  33496. extra: 1045/984,
  33497. bottom: 14/1059
  33498. }
  33499. },
  33500. wing: {
  33501. height: math.unit(2.67, "feet"),
  33502. name: "Wing",
  33503. image: {
  33504. source: "./media/characters/necrolance/wing.svg"
  33505. }
  33506. },
  33507. },
  33508. [
  33509. {
  33510. name: "Normal",
  33511. height: math.unit(7, "feet"),
  33512. default: true
  33513. },
  33514. ]
  33515. ))
  33516. characterMakers.push(() => makeCharacter(
  33517. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33518. {
  33519. front: {
  33520. height: math.unit(76, "meters"),
  33521. weight: math.unit(30000, "tons"),
  33522. name: "Front",
  33523. image: {
  33524. source: "./media/characters/tyler/front.svg",
  33525. extra: 1640/1640,
  33526. bottom: 114/1754
  33527. }
  33528. },
  33529. },
  33530. [
  33531. {
  33532. name: "Macro",
  33533. height: math.unit(76, "meters"),
  33534. default: true
  33535. },
  33536. ]
  33537. ))
  33538. characterMakers.push(() => makeCharacter(
  33539. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33540. {
  33541. front: {
  33542. height: math.unit(4 + 11/12, "feet"),
  33543. weight: math.unit(132, "lb"),
  33544. name: "Front",
  33545. image: {
  33546. source: "./media/characters/icey/front.svg",
  33547. extra: 2750/2550,
  33548. bottom: 33/2783
  33549. }
  33550. },
  33551. back: {
  33552. height: math.unit(4 + 11/12, "feet"),
  33553. weight: math.unit(132, "lb"),
  33554. name: "Back",
  33555. image: {
  33556. source: "./media/characters/icey/back.svg",
  33557. extra: 2624/2481,
  33558. bottom: 35/2659
  33559. }
  33560. },
  33561. },
  33562. [
  33563. {
  33564. name: "Normal",
  33565. height: math.unit(4 + 11/12, "feet"),
  33566. default: true
  33567. },
  33568. ]
  33569. ))
  33570. characterMakers.push(() => makeCharacter(
  33571. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33572. {
  33573. front: {
  33574. height: math.unit(100, "feet"),
  33575. weight: math.unit(0, "lb"),
  33576. name: "Front",
  33577. image: {
  33578. source: "./media/characters/smile/front.svg",
  33579. extra: 2983/2912,
  33580. bottom: 162/3145
  33581. }
  33582. },
  33583. back: {
  33584. height: math.unit(100, "feet"),
  33585. weight: math.unit(0, "lb"),
  33586. name: "Back",
  33587. image: {
  33588. source: "./media/characters/smile/back.svg",
  33589. extra: 3143/3031,
  33590. bottom: 91/3234
  33591. }
  33592. },
  33593. head: {
  33594. height: math.unit(26.3, "feet"),
  33595. weight: math.unit(0, "lb"),
  33596. name: "Head",
  33597. image: {
  33598. source: "./media/characters/smile/head.svg"
  33599. }
  33600. },
  33601. collar: {
  33602. height: math.unit(5.3, "feet"),
  33603. weight: math.unit(0, "lb"),
  33604. name: "Collar",
  33605. image: {
  33606. source: "./media/characters/smile/collar.svg"
  33607. }
  33608. },
  33609. },
  33610. [
  33611. {
  33612. name: "Macro",
  33613. height: math.unit(100, "feet"),
  33614. default: true
  33615. },
  33616. ]
  33617. ))
  33618. characterMakers.push(() => makeCharacter(
  33619. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33620. {
  33621. dragon: {
  33622. height: math.unit(26, "feet"),
  33623. weight: math.unit(36, "tons"),
  33624. name: "Dragon",
  33625. image: {
  33626. source: "./media/characters/arimphae/dragon.svg",
  33627. extra: 1574/983,
  33628. bottom: 357/1931
  33629. }
  33630. },
  33631. drake: {
  33632. height: math.unit(9, "feet"),
  33633. weight: math.unit(1.5, "tons"),
  33634. name: "Drake",
  33635. image: {
  33636. source: "./media/characters/arimphae/drake.svg",
  33637. extra: 1120/925,
  33638. bottom: 435/1555
  33639. }
  33640. },
  33641. },
  33642. [
  33643. {
  33644. name: "Small",
  33645. height: math.unit(26*5/9, "feet")
  33646. },
  33647. {
  33648. name: "Normal",
  33649. height: math.unit(26, "feet"),
  33650. default: true
  33651. },
  33652. ]
  33653. ))
  33654. characterMakers.push(() => makeCharacter(
  33655. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33656. {
  33657. front: {
  33658. height: math.unit(8 + 9/12, "feet"),
  33659. name: "Front",
  33660. image: {
  33661. source: "./media/characters/xander/front.svg",
  33662. extra: 1237/974,
  33663. bottom: 94/1331
  33664. }
  33665. },
  33666. },
  33667. [
  33668. {
  33669. name: "Normal",
  33670. height: math.unit(8 + 9/12, "feet"),
  33671. default: true
  33672. },
  33673. {
  33674. name: "Gaze Grabber",
  33675. height: math.unit(13 + 8/12, "feet")
  33676. },
  33677. {
  33678. name: "Jaw Dropper",
  33679. height: math.unit(27, "feet")
  33680. },
  33681. {
  33682. name: "Show Stopper",
  33683. height: math.unit(136, "feet")
  33684. },
  33685. {
  33686. name: "Superstar",
  33687. height: math.unit(1.9e6, "miles")
  33688. },
  33689. ]
  33690. ))
  33691. characterMakers.push(() => makeCharacter(
  33692. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33693. {
  33694. side: {
  33695. height: math.unit(2100, "feet"),
  33696. name: "Side",
  33697. image: {
  33698. source: "./media/characters/osiris/side.svg",
  33699. extra: 1105/939,
  33700. bottom: 167/1272
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Macro",
  33707. height: math.unit(2100, "feet"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(6 + 8/12, "feet"),
  33717. weight: math.unit(225, "lb"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/rhys-londe/front.svg",
  33721. extra: 2258/2141,
  33722. bottom: 188/2446
  33723. }
  33724. },
  33725. back: {
  33726. height: math.unit(6 + 8/12, "feet"),
  33727. weight: math.unit(225, "lb"),
  33728. name: "Back",
  33729. image: {
  33730. source: "./media/characters/rhys-londe/back.svg",
  33731. extra: 2237/2137,
  33732. bottom: 63/2300
  33733. }
  33734. },
  33735. frontNsfw: {
  33736. height: math.unit(6 + 8/12, "feet"),
  33737. weight: math.unit(225, "lb"),
  33738. name: "Front (NSFW)",
  33739. image: {
  33740. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33741. extra: 2258/2141,
  33742. bottom: 188/2446
  33743. }
  33744. },
  33745. backNsfw: {
  33746. height: math.unit(6 + 8/12, "feet"),
  33747. weight: math.unit(225, "lb"),
  33748. name: "Back (NSFW)",
  33749. image: {
  33750. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33751. extra: 2237/2137,
  33752. bottom: 63/2300
  33753. }
  33754. },
  33755. dick: {
  33756. height: math.unit(30, "inches"),
  33757. name: "Dick",
  33758. image: {
  33759. source: "./media/characters/rhys-londe/dick.svg"
  33760. }
  33761. },
  33762. maw: {
  33763. height: math.unit(1.6, "feet"),
  33764. name: "Maw",
  33765. image: {
  33766. source: "./media/characters/rhys-londe/maw.svg"
  33767. }
  33768. },
  33769. },
  33770. [
  33771. {
  33772. name: "Normal",
  33773. height: math.unit(6 + 8/12, "feet"),
  33774. default: true
  33775. },
  33776. ]
  33777. ))
  33778. characterMakers.push(() => makeCharacter(
  33779. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33780. {
  33781. front: {
  33782. height: math.unit(3 + 10/12, "feet"),
  33783. weight: math.unit(90, "lb"),
  33784. name: "Front",
  33785. image: {
  33786. source: "./media/characters/taivas-ensim/front.svg",
  33787. extra: 1327/1216,
  33788. bottom: 96/1423
  33789. }
  33790. },
  33791. back: {
  33792. height: math.unit(3 + 10/12, "feet"),
  33793. weight: math.unit(90, "lb"),
  33794. name: "Back",
  33795. image: {
  33796. source: "./media/characters/taivas-ensim/back.svg",
  33797. extra: 1355/1247,
  33798. bottom: 11/1366
  33799. }
  33800. },
  33801. frontNsfw: {
  33802. height: math.unit(3 + 10/12, "feet"),
  33803. weight: math.unit(90, "lb"),
  33804. name: "Front (NSFW)",
  33805. image: {
  33806. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33807. extra: 1327/1216,
  33808. bottom: 96/1423
  33809. }
  33810. },
  33811. backNsfw: {
  33812. height: math.unit(3 + 10/12, "feet"),
  33813. weight: math.unit(90, "lb"),
  33814. name: "Back (NSFW)",
  33815. image: {
  33816. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33817. extra: 1355/1247,
  33818. bottom: 11/1366
  33819. }
  33820. },
  33821. },
  33822. [
  33823. {
  33824. name: "Normal",
  33825. height: math.unit(3 + 10/12, "feet"),
  33826. default: true
  33827. },
  33828. ]
  33829. ))
  33830. characterMakers.push(() => makeCharacter(
  33831. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33832. {
  33833. front: {
  33834. height: math.unit(9 + 6/12, "feet"),
  33835. weight: math.unit(940, "lb"),
  33836. name: "Front",
  33837. image: {
  33838. source: "./media/characters/byliss/front.svg",
  33839. extra: 1327/1290,
  33840. bottom: 82/1409
  33841. }
  33842. },
  33843. back: {
  33844. height: math.unit(9 + 6/12, "feet"),
  33845. weight: math.unit(940, "lb"),
  33846. name: "Back",
  33847. image: {
  33848. source: "./media/characters/byliss/back.svg",
  33849. extra: 1376/1349,
  33850. bottom: 9/1385
  33851. }
  33852. },
  33853. frontNsfw: {
  33854. height: math.unit(9 + 6/12, "feet"),
  33855. weight: math.unit(940, "lb"),
  33856. name: "Front (NSFW)",
  33857. image: {
  33858. source: "./media/characters/byliss/front-nsfw.svg",
  33859. extra: 1327/1290,
  33860. bottom: 82/1409
  33861. }
  33862. },
  33863. backNsfw: {
  33864. height: math.unit(9 + 6/12, "feet"),
  33865. weight: math.unit(940, "lb"),
  33866. name: "Back (NSFW)",
  33867. image: {
  33868. source: "./media/characters/byliss/back-nsfw.svg",
  33869. extra: 1376/1349,
  33870. bottom: 9/1385
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Normal",
  33877. height: math.unit(9 + 6/12, "feet"),
  33878. default: true
  33879. },
  33880. ]
  33881. ))
  33882. characterMakers.push(() => makeCharacter(
  33883. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33884. {
  33885. front: {
  33886. height: math.unit(5 + 2/12, "feet"),
  33887. weight: math.unit(200, "lb"),
  33888. name: "Front",
  33889. image: {
  33890. source: "./media/characters/noraly/front.svg",
  33891. extra: 4985/4773,
  33892. bottom: 150/5135
  33893. }
  33894. },
  33895. full: {
  33896. height: math.unit(5 + 2/12, "feet"),
  33897. weight: math.unit(164, "lb"),
  33898. name: "Full",
  33899. image: {
  33900. source: "./media/characters/noraly/full.svg",
  33901. extra: 1114/1059,
  33902. bottom: 35/1149
  33903. }
  33904. },
  33905. fuller: {
  33906. height: math.unit(5 + 2/12, "feet"),
  33907. weight: math.unit(230, "lb"),
  33908. name: "Fuller",
  33909. image: {
  33910. source: "./media/characters/noraly/fuller.svg",
  33911. extra: 1114/1059,
  33912. bottom: 35/1149
  33913. }
  33914. },
  33915. fullest: {
  33916. height: math.unit(5 + 2/12, "feet"),
  33917. weight: math.unit(300, "lb"),
  33918. name: "Fullest",
  33919. image: {
  33920. source: "./media/characters/noraly/fullest.svg",
  33921. extra: 1114/1059,
  33922. bottom: 35/1149
  33923. }
  33924. },
  33925. },
  33926. [
  33927. {
  33928. name: "Normal",
  33929. height: math.unit(5 + 2/12, "feet"),
  33930. default: true
  33931. },
  33932. ]
  33933. ))
  33934. characterMakers.push(() => makeCharacter(
  33935. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33936. {
  33937. front: {
  33938. height: math.unit(5 + 2/12, "feet"),
  33939. weight: math.unit(210, "lb"),
  33940. name: "Front",
  33941. image: {
  33942. source: "./media/characters/pera/front.svg",
  33943. extra: 1560/1531,
  33944. bottom: 165/1725
  33945. }
  33946. },
  33947. back: {
  33948. height: math.unit(5 + 2/12, "feet"),
  33949. weight: math.unit(210, "lb"),
  33950. name: "Back",
  33951. image: {
  33952. source: "./media/characters/pera/back.svg",
  33953. extra: 1523/1493,
  33954. bottom: 152/1675
  33955. }
  33956. },
  33957. dick: {
  33958. height: math.unit(2.4, "feet"),
  33959. name: "Dick",
  33960. image: {
  33961. source: "./media/characters/pera/dick.svg"
  33962. }
  33963. },
  33964. },
  33965. [
  33966. {
  33967. name: "Normal",
  33968. height: math.unit(5 + 2/12, "feet"),
  33969. default: true
  33970. },
  33971. ]
  33972. ))
  33973. characterMakers.push(() => makeCharacter(
  33974. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33975. {
  33976. front: {
  33977. height: math.unit(12, "feet"),
  33978. weight: math.unit(3200, "lb"),
  33979. name: "Front",
  33980. image: {
  33981. source: "./media/characters/julian/front.svg",
  33982. extra: 2962/2701,
  33983. bottom: 184/3146
  33984. }
  33985. },
  33986. maw: {
  33987. height: math.unit(5.35, "feet"),
  33988. name: "Maw",
  33989. image: {
  33990. source: "./media/characters/julian/maw.svg"
  33991. }
  33992. },
  33993. paw: {
  33994. height: math.unit(3.07, "feet"),
  33995. name: "Paw",
  33996. image: {
  33997. source: "./media/characters/julian/paw.svg"
  33998. }
  33999. },
  34000. },
  34001. [
  34002. {
  34003. name: "Default",
  34004. height: math.unit(12, "feet"),
  34005. default: true
  34006. },
  34007. {
  34008. name: "Big",
  34009. height: math.unit(50, "feet")
  34010. },
  34011. {
  34012. name: "Really Big",
  34013. height: math.unit(1, "mile")
  34014. },
  34015. {
  34016. name: "Extremely Big",
  34017. height: math.unit(100, "miles")
  34018. },
  34019. {
  34020. name: "Planet Hugger",
  34021. height: math.unit(200, "megameters")
  34022. },
  34023. {
  34024. name: "Unreasonably Big",
  34025. height: math.unit(1e300, "meters")
  34026. },
  34027. ]
  34028. ))
  34029. characterMakers.push(() => makeCharacter(
  34030. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34031. {
  34032. solgooleo: {
  34033. height: math.unit(4, "meters"),
  34034. weight: math.unit(6000*1.5, "kg"),
  34035. volume: math.unit(6000, "liters"),
  34036. name: "Solgooleo",
  34037. image: {
  34038. source: "./media/characters/pi/solgooleo.svg",
  34039. extra: 388/331,
  34040. bottom: 29/417
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Normal",
  34047. height: math.unit(4, "meters"),
  34048. default: true
  34049. },
  34050. ]
  34051. ))
  34052. characterMakers.push(() => makeCharacter(
  34053. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34054. {
  34055. front: {
  34056. height: math.unit(8, "feet"),
  34057. weight: math.unit(4, "tons"),
  34058. name: "Front",
  34059. image: {
  34060. source: "./media/characters/shaun/front.svg",
  34061. extra: 503/495,
  34062. bottom: 20/523
  34063. }
  34064. },
  34065. back: {
  34066. height: math.unit(8, "feet"),
  34067. weight: math.unit(4, "tons"),
  34068. name: "Back",
  34069. image: {
  34070. source: "./media/characters/shaun/back.svg",
  34071. extra: 487/480,
  34072. bottom: 20/507
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Lorg",
  34079. height: math.unit(8, "feet"),
  34080. default: true
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34086. {
  34087. frontAnthro: {
  34088. height: math.unit(7, "feet"),
  34089. name: "Front",
  34090. image: {
  34091. source: "./media/characters/sini/front-anthro.svg",
  34092. extra: 726/678,
  34093. bottom: 35/761
  34094. },
  34095. form: "anthro",
  34096. default: true
  34097. },
  34098. backAnthro: {
  34099. height: math.unit(7, "feet"),
  34100. name: "Back",
  34101. image: {
  34102. source: "./media/characters/sini/back-anthro.svg",
  34103. extra: 743/701,
  34104. bottom: 12/755
  34105. },
  34106. form: "anthro",
  34107. },
  34108. frontAnthroNsfw: {
  34109. height: math.unit(7, "feet"),
  34110. name: "Front (NSFW)",
  34111. image: {
  34112. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34113. extra: 726/678,
  34114. bottom: 35/761
  34115. },
  34116. form: "anthro"
  34117. },
  34118. backAnthroNsfw: {
  34119. height: math.unit(7, "feet"),
  34120. name: "Back (NSFW)",
  34121. image: {
  34122. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34123. extra: 743/701,
  34124. bottom: 12/755
  34125. },
  34126. form: "anthro",
  34127. },
  34128. mawAnthro: {
  34129. height: math.unit(2.14, "feet"),
  34130. name: "Maw",
  34131. image: {
  34132. source: "./media/characters/sini/maw-anthro.svg"
  34133. },
  34134. form: "anthro"
  34135. },
  34136. dick: {
  34137. height: math.unit(1.45, "feet"),
  34138. name: "Dick",
  34139. image: {
  34140. source: "./media/characters/sini/dick-anthro.svg"
  34141. },
  34142. form: "anthro"
  34143. },
  34144. feral: {
  34145. height: math.unit(16, "feet"),
  34146. name: "Feral",
  34147. image: {
  34148. source: "./media/characters/sini/feral.svg",
  34149. extra: 814/605,
  34150. bottom: 11/825
  34151. },
  34152. form: "feral",
  34153. default: true
  34154. },
  34155. feralNsfw: {
  34156. height: math.unit(16, "feet"),
  34157. name: "Feral (NSFW)",
  34158. image: {
  34159. source: "./media/characters/sini/feral-nsfw.svg",
  34160. extra: 814/605,
  34161. bottom: 11/825
  34162. },
  34163. form: "feral"
  34164. },
  34165. mawFeral: {
  34166. height: math.unit(5.66, "feet"),
  34167. name: "Maw",
  34168. image: {
  34169. source: "./media/characters/sini/maw-feral.svg"
  34170. },
  34171. form: "feral",
  34172. },
  34173. pawFeral: {
  34174. height: math.unit(5.17, "feet"),
  34175. name: "Paw",
  34176. image: {
  34177. source: "./media/characters/sini/paw-feral.svg"
  34178. },
  34179. form: "feral",
  34180. },
  34181. rumpFeral: {
  34182. height: math.unit(13.11, "feet"),
  34183. name: "Rump",
  34184. image: {
  34185. source: "./media/characters/sini/rump-feral.svg"
  34186. },
  34187. form: "feral",
  34188. },
  34189. dickFeral: {
  34190. height: math.unit(1, "feet"),
  34191. name: "Dick",
  34192. image: {
  34193. source: "./media/characters/sini/dick-feral.svg"
  34194. },
  34195. form: "feral",
  34196. },
  34197. eyeFeral: {
  34198. height: math.unit(1.23, "feet"),
  34199. name: "Eye",
  34200. image: {
  34201. source: "./media/characters/sini/eye-feral.svg"
  34202. },
  34203. form: "feral",
  34204. },
  34205. },
  34206. [
  34207. {
  34208. name: "Normal",
  34209. height: math.unit(7, "feet"),
  34210. default: true,
  34211. form: "anthro"
  34212. },
  34213. {
  34214. name: "Normal",
  34215. height: math.unit(16, "feet"),
  34216. default: true,
  34217. form: "feral"
  34218. },
  34219. ],
  34220. {
  34221. "anthro": {
  34222. name: "Anthro",
  34223. default: true
  34224. },
  34225. "feral": {
  34226. name: "Feral",
  34227. }
  34228. }
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34232. {
  34233. side: {
  34234. height: math.unit(47.2, "meters"),
  34235. weight: math.unit(10000, "tons"),
  34236. name: "Side",
  34237. image: {
  34238. source: "./media/characters/raylldo/side.svg",
  34239. extra: 2363/642,
  34240. bottom: 221/2584
  34241. }
  34242. },
  34243. top: {
  34244. height: math.unit(240, "meters"),
  34245. weight: math.unit(10000, "tons"),
  34246. name: "Top",
  34247. image: {
  34248. source: "./media/characters/raylldo/top.svg"
  34249. }
  34250. },
  34251. bottom: {
  34252. height: math.unit(240, "meters"),
  34253. weight: math.unit(10000, "tons"),
  34254. name: "Bottom",
  34255. image: {
  34256. source: "./media/characters/raylldo/bottom.svg"
  34257. }
  34258. },
  34259. head: {
  34260. height: math.unit(38.6, "meters"),
  34261. name: "Head",
  34262. image: {
  34263. source: "./media/characters/raylldo/head.svg",
  34264. extra: 1335/1112,
  34265. bottom: 0/1335
  34266. }
  34267. },
  34268. maw: {
  34269. height: math.unit(16.37, "meters"),
  34270. name: "Maw",
  34271. image: {
  34272. source: "./media/characters/raylldo/maw.svg",
  34273. extra: 883/660,
  34274. bottom: 0/883
  34275. },
  34276. extraAttributes: {
  34277. preyCapacity: {
  34278. name: "Capacity",
  34279. power: 3,
  34280. type: "volume",
  34281. base: math.unit(1000, "people")
  34282. },
  34283. tongueSize: {
  34284. name: "Tongue Size",
  34285. power: 2,
  34286. type: "area",
  34287. base: math.unit(21, "m^2")
  34288. }
  34289. }
  34290. },
  34291. forepaw: {
  34292. height: math.unit(18, "meters"),
  34293. name: "Forepaw",
  34294. image: {
  34295. source: "./media/characters/raylldo/forepaw.svg"
  34296. }
  34297. },
  34298. hindpaw: {
  34299. height: math.unit(23, "meters"),
  34300. name: "Hindpaw",
  34301. image: {
  34302. source: "./media/characters/raylldo/hindpaw.svg"
  34303. }
  34304. },
  34305. genitals: {
  34306. height: math.unit(42, "meters"),
  34307. name: "Genitals",
  34308. image: {
  34309. source: "./media/characters/raylldo/genitals.svg"
  34310. }
  34311. },
  34312. },
  34313. [
  34314. {
  34315. name: "Normal",
  34316. height: math.unit(47.2, "meters"),
  34317. default: true
  34318. },
  34319. ]
  34320. ))
  34321. characterMakers.push(() => makeCharacter(
  34322. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34323. {
  34324. anthroFront: {
  34325. height: math.unit(9, "feet"),
  34326. weight: math.unit(600, "lb"),
  34327. name: "Anthro (Front)",
  34328. image: {
  34329. source: "./media/characters/glint/anthro-front.svg",
  34330. extra: 1097/1018,
  34331. bottom: 28/1125
  34332. }
  34333. },
  34334. anthroBack: {
  34335. height: math.unit(9, "feet"),
  34336. weight: math.unit(600, "lb"),
  34337. name: "Anthro (Back)",
  34338. image: {
  34339. source: "./media/characters/glint/anthro-back.svg",
  34340. extra: 1154/997,
  34341. bottom: 36/1190
  34342. }
  34343. },
  34344. feral: {
  34345. height: math.unit(11, "feet"),
  34346. weight: math.unit(50000, "lb"),
  34347. name: "Feral",
  34348. image: {
  34349. source: "./media/characters/glint/feral.svg",
  34350. extra: 3035/1585,
  34351. bottom: 1169/4204
  34352. }
  34353. },
  34354. dickAnthro: {
  34355. height: math.unit(0.7, "meters"),
  34356. name: "Dick (Anthro)",
  34357. image: {
  34358. source: "./media/characters/glint/dick-anthro.svg"
  34359. }
  34360. },
  34361. dickFeral: {
  34362. height: math.unit(2.65, "meters"),
  34363. name: "Dick (Feral)",
  34364. image: {
  34365. source: "./media/characters/glint/dick-feral.svg"
  34366. }
  34367. },
  34368. slitHidden: {
  34369. height: math.unit(5.85, "meters"),
  34370. name: "Slit (Hidden)",
  34371. image: {
  34372. source: "./media/characters/glint/slit-hidden.svg"
  34373. }
  34374. },
  34375. slitErect: {
  34376. height: math.unit(5.85, "meters"),
  34377. name: "Slit (Erect)",
  34378. image: {
  34379. source: "./media/characters/glint/slit-erect.svg"
  34380. }
  34381. },
  34382. mawAnthro: {
  34383. height: math.unit(0.63, "meters"),
  34384. name: "Maw (Anthro)",
  34385. image: {
  34386. source: "./media/characters/glint/maw.svg"
  34387. }
  34388. },
  34389. mawFeral: {
  34390. height: math.unit(2.89, "meters"),
  34391. name: "Maw (Feral)",
  34392. image: {
  34393. source: "./media/characters/glint/maw.svg"
  34394. }
  34395. },
  34396. },
  34397. [
  34398. {
  34399. name: "Normal",
  34400. height: math.unit(9, "feet"),
  34401. default: true
  34402. },
  34403. ]
  34404. ))
  34405. characterMakers.push(() => makeCharacter(
  34406. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34407. {
  34408. side: {
  34409. height: math.unit(15, "feet"),
  34410. weight: math.unit(5000, "kg"),
  34411. name: "Side",
  34412. image: {
  34413. source: "./media/characters/kairne/side.svg",
  34414. extra: 979/811,
  34415. bottom: 13/992
  34416. }
  34417. },
  34418. front: {
  34419. height: math.unit(15, "feet"),
  34420. weight: math.unit(5000, "kg"),
  34421. name: "Front",
  34422. image: {
  34423. source: "./media/characters/kairne/front.svg",
  34424. extra: 908/814,
  34425. bottom: 26/934
  34426. }
  34427. },
  34428. sideNsfw: {
  34429. height: math.unit(15, "feet"),
  34430. weight: math.unit(5000, "kg"),
  34431. name: "Side (NSFW)",
  34432. image: {
  34433. source: "./media/characters/kairne/side-nsfw.svg",
  34434. extra: 979/811,
  34435. bottom: 13/992
  34436. }
  34437. },
  34438. frontNsfw: {
  34439. height: math.unit(15, "feet"),
  34440. weight: math.unit(5000, "kg"),
  34441. name: "Front (NSFW)",
  34442. image: {
  34443. source: "./media/characters/kairne/front-nsfw.svg",
  34444. extra: 908/814,
  34445. bottom: 26/934
  34446. }
  34447. },
  34448. dickCaged: {
  34449. height: math.unit(0.65, "meters"),
  34450. name: "Dick-caged",
  34451. image: {
  34452. source: "./media/characters/kairne/dick-caged.svg"
  34453. }
  34454. },
  34455. dick: {
  34456. height: math.unit(0.79, "meters"),
  34457. name: "Dick",
  34458. image: {
  34459. source: "./media/characters/kairne/dick.svg"
  34460. }
  34461. },
  34462. genitals: {
  34463. height: math.unit(1.29, "meters"),
  34464. name: "Genitals",
  34465. image: {
  34466. source: "./media/characters/kairne/genitals.svg"
  34467. }
  34468. },
  34469. maw: {
  34470. height: math.unit(1.73, "meters"),
  34471. name: "Maw",
  34472. image: {
  34473. source: "./media/characters/kairne/maw.svg"
  34474. }
  34475. },
  34476. },
  34477. [
  34478. {
  34479. name: "Normal",
  34480. height: math.unit(15, "feet"),
  34481. default: true
  34482. },
  34483. ]
  34484. ))
  34485. characterMakers.push(() => makeCharacter(
  34486. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34487. {
  34488. front: {
  34489. height: math.unit(5 + 8/12, "feet"),
  34490. weight: math.unit(139, "lb"),
  34491. name: "Front",
  34492. image: {
  34493. source: "./media/characters/biscuit-jackal/front.svg",
  34494. extra: 2106/1961,
  34495. bottom: 58/2164
  34496. }
  34497. },
  34498. back: {
  34499. height: math.unit(5 + 8/12, "feet"),
  34500. weight: math.unit(139, "lb"),
  34501. name: "Back",
  34502. image: {
  34503. source: "./media/characters/biscuit-jackal/back.svg",
  34504. extra: 2132/1976,
  34505. bottom: 57/2189
  34506. }
  34507. },
  34508. werejackal: {
  34509. height: math.unit(6 + 3/12, "feet"),
  34510. weight: math.unit(188, "lb"),
  34511. name: "Werejackal",
  34512. image: {
  34513. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34514. extra: 2373/2178,
  34515. bottom: 53/2426
  34516. }
  34517. },
  34518. },
  34519. [
  34520. {
  34521. name: "Normal",
  34522. height: math.unit(5 + 8/12, "feet"),
  34523. default: true
  34524. },
  34525. ]
  34526. ))
  34527. characterMakers.push(() => makeCharacter(
  34528. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34529. {
  34530. front: {
  34531. height: math.unit(140, "cm"),
  34532. weight: math.unit(45, "kg"),
  34533. name: "Front",
  34534. image: {
  34535. source: "./media/characters/tayra-white/front.svg",
  34536. extra: 2229/2192,
  34537. bottom: 75/2304
  34538. }
  34539. },
  34540. },
  34541. [
  34542. {
  34543. name: "Normal",
  34544. height: math.unit(140, "cm"),
  34545. default: true
  34546. },
  34547. ]
  34548. ))
  34549. characterMakers.push(() => makeCharacter(
  34550. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34551. {
  34552. front: {
  34553. height: math.unit(4 + 5/12, "feet"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/scoop/front.svg",
  34557. extra: 1257/1136,
  34558. bottom: 69/1326
  34559. }
  34560. },
  34561. back: {
  34562. height: math.unit(4 + 5/12, "feet"),
  34563. name: "Back",
  34564. image: {
  34565. source: "./media/characters/scoop/back.svg",
  34566. extra: 1321/1152,
  34567. bottom: 32/1353
  34568. }
  34569. },
  34570. maw: {
  34571. height: math.unit(0.68, "feet"),
  34572. name: "Maw",
  34573. image: {
  34574. source: "./media/characters/scoop/maw.svg"
  34575. }
  34576. },
  34577. },
  34578. [
  34579. {
  34580. name: "Really Small",
  34581. height: math.unit(1, "mm")
  34582. },
  34583. {
  34584. name: "Micro",
  34585. height: math.unit(1, "inch")
  34586. },
  34587. {
  34588. name: "Normal",
  34589. height: math.unit(4 + 5/12, "feet"),
  34590. default: true
  34591. },
  34592. {
  34593. name: "Macro",
  34594. height: math.unit(200, "feet")
  34595. },
  34596. {
  34597. name: "Megamacro",
  34598. height: math.unit(3240, "feet")
  34599. },
  34600. {
  34601. name: "Teramacro",
  34602. height: math.unit(2500, "miles")
  34603. },
  34604. ]
  34605. ))
  34606. characterMakers.push(() => makeCharacter(
  34607. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34608. {
  34609. front: {
  34610. height: math.unit(15 + 7/12, "feet"),
  34611. weight: math.unit(1150, "tons"),
  34612. name: "Front",
  34613. image: {
  34614. source: "./media/characters/saphinara/front.svg",
  34615. extra: 1837/1643,
  34616. bottom: 84/1921
  34617. },
  34618. form: "normal",
  34619. default: true
  34620. },
  34621. side: {
  34622. height: math.unit(15 + 7/12, "feet"),
  34623. weight: math.unit(1150, "tons"),
  34624. name: "Side",
  34625. image: {
  34626. source: "./media/characters/saphinara/side.svg",
  34627. extra: 605/547,
  34628. bottom: 6/611
  34629. },
  34630. form: "normal"
  34631. },
  34632. back: {
  34633. height: math.unit(15 + 7/12, "feet"),
  34634. weight: math.unit(1150, "tons"),
  34635. name: "Back",
  34636. image: {
  34637. source: "./media/characters/saphinara/back.svg",
  34638. extra: 591/531,
  34639. bottom: 13/604
  34640. },
  34641. form: "normal"
  34642. },
  34643. frontTail: {
  34644. height: math.unit(15 + 7/12, "feet"),
  34645. weight: math.unit(1150, "tons"),
  34646. name: "Front (Full Tail)",
  34647. image: {
  34648. source: "./media/characters/saphinara/front-tail.svg",
  34649. extra: 2256/1630,
  34650. bottom: 261/2517
  34651. },
  34652. form: "normal"
  34653. },
  34654. insides: {
  34655. height: math.unit(11.92, "feet"),
  34656. name: "Insides",
  34657. image: {
  34658. source: "./media/characters/saphinara/insides.svg"
  34659. },
  34660. form: "normal"
  34661. },
  34662. head: {
  34663. height: math.unit(4.17, "feet"),
  34664. name: "Head",
  34665. image: {
  34666. source: "./media/characters/saphinara/head.svg"
  34667. },
  34668. form: "normal"
  34669. },
  34670. tongue: {
  34671. height: math.unit(4.60, "feet"),
  34672. name: "Tongue",
  34673. image: {
  34674. source: "./media/characters/saphinara/tongue.svg"
  34675. },
  34676. form: "normal"
  34677. },
  34678. headEnraged: {
  34679. height: math.unit(5.55, "feet"),
  34680. name: "Head (Enraged)",
  34681. image: {
  34682. source: "./media/characters/saphinara/head-enraged.svg"
  34683. },
  34684. form: "normal"
  34685. },
  34686. wings: {
  34687. height: math.unit(11.95, "feet"),
  34688. name: "Wings",
  34689. image: {
  34690. source: "./media/characters/saphinara/wings.svg"
  34691. },
  34692. form: "normal"
  34693. },
  34694. feathers: {
  34695. height: math.unit(8.92, "feet"),
  34696. name: "Feathers",
  34697. image: {
  34698. source: "./media/characters/saphinara/feathers.svg"
  34699. },
  34700. form: "normal"
  34701. },
  34702. shackles: {
  34703. height: math.unit(2, "feet"),
  34704. name: "Shackles",
  34705. image: {
  34706. source: "./media/characters/saphinara/shackles.svg"
  34707. },
  34708. form: "normal"
  34709. },
  34710. eyes: {
  34711. height: math.unit(1.331, "feet"),
  34712. name: "Eyes",
  34713. image: {
  34714. source: "./media/characters/saphinara/eyes.svg"
  34715. },
  34716. form: "normal"
  34717. },
  34718. eyesEnraged: {
  34719. height: math.unit(1.331, "feet"),
  34720. name: "Eyes (Enraged)",
  34721. image: {
  34722. source: "./media/characters/saphinara/eyes-enraged.svg"
  34723. },
  34724. form: "normal"
  34725. },
  34726. trueFormSide: {
  34727. height: math.unit(200, "feet"),
  34728. weight: math.unit(1e7, "tons"),
  34729. name: "Side",
  34730. image: {
  34731. source: "./media/characters/saphinara/true-form-side.svg",
  34732. extra: 1399/770,
  34733. bottom: 97/1496
  34734. },
  34735. form: "true-form",
  34736. default: true
  34737. },
  34738. trueFormMaw: {
  34739. height: math.unit(71.5, "feet"),
  34740. name: "Maw",
  34741. image: {
  34742. source: "./media/characters/saphinara/true-form-maw.svg",
  34743. extra: 2302/1453,
  34744. bottom: 0/2302
  34745. },
  34746. form: "true-form"
  34747. },
  34748. meowberusSide: {
  34749. height: math.unit(75, "feet"),
  34750. weight: math.unit(180000, "kg"),
  34751. preyCapacity: math.unit(50000, "people"),
  34752. name: "Side",
  34753. image: {
  34754. source: "./media/characters/saphinara/meowberus-side.svg",
  34755. extra: 1400/711,
  34756. bottom: 126/1526
  34757. },
  34758. form: "meowberus",
  34759. extraAttributes: {
  34760. "pawArea": {
  34761. name: "Paw Size",
  34762. power: 2,
  34763. type: "area",
  34764. base: math.unit(35, "m^2")
  34765. }
  34766. }
  34767. },
  34768. },
  34769. [
  34770. {
  34771. name: "Normal",
  34772. height: math.unit(15 + 7/12, "feet"),
  34773. default: true,
  34774. form: "normal"
  34775. },
  34776. {
  34777. name: "Angry",
  34778. height: math.unit(30 + 6/12, "feet"),
  34779. form: "normal"
  34780. },
  34781. {
  34782. name: "Enraged",
  34783. height: math.unit(102 + 1/12, "feet"),
  34784. form: "normal"
  34785. },
  34786. {
  34787. name: "True",
  34788. height: math.unit(200, "feet"),
  34789. default: true,
  34790. form: "true-form"
  34791. },
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(75, "feet"),
  34795. default: true,
  34796. form: "meowberus"
  34797. },
  34798. ],
  34799. {
  34800. "normal": {
  34801. name: "Normal",
  34802. default: true
  34803. },
  34804. "true-form": {
  34805. name: "True Form"
  34806. },
  34807. "meowberus": {
  34808. name: "Meowberus",
  34809. },
  34810. }
  34811. ))
  34812. characterMakers.push(() => makeCharacter(
  34813. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34814. {
  34815. front: {
  34816. height: math.unit(6 + 8/12, "feet"),
  34817. weight: math.unit(300, "lb"),
  34818. name: "Front",
  34819. image: {
  34820. source: "./media/characters/jrain/front.svg",
  34821. extra: 3039/2865,
  34822. bottom: 399/3438
  34823. }
  34824. },
  34825. back: {
  34826. height: math.unit(6 + 8/12, "feet"),
  34827. weight: math.unit(300, "lb"),
  34828. name: "Back",
  34829. image: {
  34830. source: "./media/characters/jrain/back.svg",
  34831. extra: 3089/2938,
  34832. bottom: 172/3261
  34833. }
  34834. },
  34835. head: {
  34836. height: math.unit(2.14, "feet"),
  34837. name: "Head",
  34838. image: {
  34839. source: "./media/characters/jrain/head.svg"
  34840. }
  34841. },
  34842. maw: {
  34843. height: math.unit(1.77, "feet"),
  34844. name: "Maw",
  34845. image: {
  34846. source: "./media/characters/jrain/maw.svg"
  34847. }
  34848. },
  34849. leftHand: {
  34850. height: math.unit(1.1, "feet"),
  34851. name: "Left Hand",
  34852. image: {
  34853. source: "./media/characters/jrain/left-hand.svg"
  34854. }
  34855. },
  34856. rightHand: {
  34857. height: math.unit(1.1, "feet"),
  34858. name: "Right Hand",
  34859. image: {
  34860. source: "./media/characters/jrain/right-hand.svg"
  34861. }
  34862. },
  34863. eye: {
  34864. height: math.unit(0.35, "feet"),
  34865. name: "Eye",
  34866. image: {
  34867. source: "./media/characters/jrain/eye.svg"
  34868. }
  34869. },
  34870. },
  34871. [
  34872. {
  34873. name: "Normal",
  34874. height: math.unit(6 + 8/12, "feet"),
  34875. default: true
  34876. },
  34877. {
  34878. name: "Casually Large",
  34879. height: math.unit(25, "feet")
  34880. },
  34881. {
  34882. name: "Giant",
  34883. height: math.unit(100, "feet")
  34884. },
  34885. {
  34886. name: "Kaiju",
  34887. height: math.unit(300, "feet")
  34888. },
  34889. ]
  34890. ))
  34891. characterMakers.push(() => makeCharacter(
  34892. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34893. {
  34894. dragon: {
  34895. height: math.unit(5, "meters"),
  34896. name: "Dragon",
  34897. image: {
  34898. source: "./media/characters/sabrina/dragon.svg",
  34899. extra: 3670 / 2365,
  34900. bottom: 333 / 4003
  34901. }
  34902. },
  34903. gryphon: {
  34904. height: math.unit(3, "meters"),
  34905. name: "Gryphon",
  34906. image: {
  34907. source: "./media/characters/sabrina/gryphon.svg",
  34908. extra: 1576 / 945,
  34909. bottom: 71 / 1647
  34910. }
  34911. },
  34912. snake: {
  34913. height: math.unit(12, "meters"),
  34914. name: "Snake",
  34915. image: {
  34916. source: "./media/characters/sabrina/snake.svg",
  34917. extra: 1758 / 1320,
  34918. bottom: 186 / 1944
  34919. }
  34920. },
  34921. collar: {
  34922. height: math.unit(1.86, "meters"),
  34923. name: "Collar",
  34924. image: {
  34925. source: "./media/characters/sabrina/collar.svg"
  34926. }
  34927. },
  34928. eye: {
  34929. height: math.unit(0.53, "meters"),
  34930. name: "Eye",
  34931. image: {
  34932. source: "./media/characters/sabrina/eye.svg"
  34933. }
  34934. },
  34935. foot: {
  34936. height: math.unit(1.86, "meters"),
  34937. name: "Foot",
  34938. image: {
  34939. source: "./media/characters/sabrina/foot.svg"
  34940. }
  34941. },
  34942. hand: {
  34943. height: math.unit(1.32, "meters"),
  34944. name: "Hand",
  34945. image: {
  34946. source: "./media/characters/sabrina/hand.svg"
  34947. }
  34948. },
  34949. head: {
  34950. height: math.unit(2.44, "meters"),
  34951. name: "Head",
  34952. image: {
  34953. source: "./media/characters/sabrina/head.svg"
  34954. }
  34955. },
  34956. headAngry: {
  34957. height: math.unit(2.44, "meters"),
  34958. name: "Head (Angry))",
  34959. image: {
  34960. source: "./media/characters/sabrina/head-angry.svg"
  34961. }
  34962. },
  34963. maw: {
  34964. height: math.unit(1.65, "meters"),
  34965. name: "Maw",
  34966. image: {
  34967. source: "./media/characters/sabrina/maw.svg"
  34968. }
  34969. },
  34970. spikes: {
  34971. height: math.unit(1.69, "meters"),
  34972. name: "Spikes",
  34973. image: {
  34974. source: "./media/characters/sabrina/spikes.svg"
  34975. }
  34976. },
  34977. stomach: {
  34978. height: math.unit(1.15, "meters"),
  34979. name: "Stomach",
  34980. image: {
  34981. source: "./media/characters/sabrina/stomach.svg"
  34982. }
  34983. },
  34984. tongue: {
  34985. height: math.unit(1.27, "meters"),
  34986. name: "Tongue",
  34987. image: {
  34988. source: "./media/characters/sabrina/tongue.svg"
  34989. }
  34990. },
  34991. wingDorsal: {
  34992. height: math.unit(4.85, "meters"),
  34993. name: "Wing (Dorsal)",
  34994. image: {
  34995. source: "./media/characters/sabrina/wing-dorsal.svg"
  34996. }
  34997. },
  34998. wingVentral: {
  34999. height: math.unit(4.85, "meters"),
  35000. name: "Wing (Ventral)",
  35001. image: {
  35002. source: "./media/characters/sabrina/wing-ventral.svg"
  35003. }
  35004. },
  35005. },
  35006. [
  35007. {
  35008. name: "Normal",
  35009. height: math.unit(5, "meters"),
  35010. default: true
  35011. },
  35012. ]
  35013. ))
  35014. characterMakers.push(() => makeCharacter(
  35015. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35016. {
  35017. frontMaid: {
  35018. height: math.unit(5 + 5/12, "feet"),
  35019. weight: math.unit(130, "lb"),
  35020. name: "Front (Maid)",
  35021. image: {
  35022. source: "./media/characters/midnight-tales/front-maid.svg",
  35023. extra: 489/454,
  35024. bottom: 61/550
  35025. }
  35026. },
  35027. frontFormal: {
  35028. height: math.unit(5 + 5/12, "feet"),
  35029. weight: math.unit(130, "lb"),
  35030. name: "Front (Formal)",
  35031. image: {
  35032. source: "./media/characters/midnight-tales/front-formal.svg",
  35033. extra: 489/454,
  35034. bottom: 61/550
  35035. }
  35036. },
  35037. back: {
  35038. height: math.unit(5 + 5/12, "feet"),
  35039. weight: math.unit(130, "lb"),
  35040. name: "Back",
  35041. image: {
  35042. source: "./media/characters/midnight-tales/back.svg",
  35043. extra: 498/456,
  35044. bottom: 33/531
  35045. }
  35046. },
  35047. frontBeast: {
  35048. height: math.unit(40, "feet"),
  35049. weight: math.unit(64000, "lb"),
  35050. name: "Front (Beast)",
  35051. image: {
  35052. source: "./media/characters/midnight-tales/front-beast.svg",
  35053. extra: 927/860,
  35054. bottom: 53/980
  35055. }
  35056. },
  35057. backBeast: {
  35058. height: math.unit(40, "feet"),
  35059. weight: math.unit(64000, "lb"),
  35060. name: "Back (Beast)",
  35061. image: {
  35062. source: "./media/characters/midnight-tales/back-beast.svg",
  35063. extra: 929/855,
  35064. bottom: 16/945
  35065. }
  35066. },
  35067. footBeast: {
  35068. height: math.unit(6.7, "feet"),
  35069. name: "Foot (Beast)",
  35070. image: {
  35071. source: "./media/characters/midnight-tales/foot-beast.svg"
  35072. }
  35073. },
  35074. headBeast: {
  35075. height: math.unit(8, "feet"),
  35076. name: "Head (Beast)",
  35077. image: {
  35078. source: "./media/characters/midnight-tales/head-beast.svg"
  35079. }
  35080. },
  35081. },
  35082. [
  35083. {
  35084. name: "Normal",
  35085. height: math.unit(5 + 5 / 12, "feet"),
  35086. default: true
  35087. },
  35088. {
  35089. name: "Macro",
  35090. height: math.unit(25, "feet")
  35091. },
  35092. ]
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35096. {
  35097. front: {
  35098. height: math.unit(5 + 10/12, "feet"),
  35099. name: "Front",
  35100. image: {
  35101. source: "./media/characters/argon/front.svg",
  35102. extra: 2009/1935,
  35103. bottom: 118/2127
  35104. }
  35105. },
  35106. back: {
  35107. height: math.unit(5 + 10/12, "feet"),
  35108. name: "Back",
  35109. image: {
  35110. source: "./media/characters/argon/back.svg",
  35111. extra: 2047/1992,
  35112. bottom: 20/2067
  35113. }
  35114. },
  35115. frontDressed: {
  35116. height: math.unit(5 + 10/12, "feet"),
  35117. name: "Front (Dressed)",
  35118. image: {
  35119. source: "./media/characters/argon/front-dressed.svg",
  35120. extra: 2009/1935,
  35121. bottom: 118/2127
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(5 + 10/12, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(8 + 6/12, "feet"),
  35138. weight: math.unit(1150, "lb"),
  35139. name: "Front",
  35140. image: {
  35141. source: "./media/characters/kichi/front.svg",
  35142. extra: 1267/1164,
  35143. bottom: 61/1328
  35144. }
  35145. },
  35146. back: {
  35147. height: math.unit(8 + 6/12, "feet"),
  35148. weight: math.unit(1150, "lb"),
  35149. name: "Back",
  35150. image: {
  35151. source: "./media/characters/kichi/back.svg",
  35152. extra: 1273/1166,
  35153. bottom: 33/1306
  35154. }
  35155. },
  35156. },
  35157. [
  35158. {
  35159. name: "Normal",
  35160. height: math.unit(8 + 6/12, "feet"),
  35161. default: true
  35162. },
  35163. ]
  35164. ))
  35165. characterMakers.push(() => makeCharacter(
  35166. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35167. {
  35168. front: {
  35169. height: math.unit(6, "feet"),
  35170. weight: math.unit(210, "lb"),
  35171. name: "Front",
  35172. image: {
  35173. source: "./media/characters/manetel-greyscale/front.svg",
  35174. extra: 350/312,
  35175. bottom: 8/358
  35176. }
  35177. },
  35178. },
  35179. [
  35180. {
  35181. name: "Micro",
  35182. height: math.unit(2, "inches")
  35183. },
  35184. {
  35185. name: "Normal",
  35186. height: math.unit(6, "feet"),
  35187. default: true
  35188. },
  35189. {
  35190. name: "Minimacro",
  35191. height: math.unit(17, "feet")
  35192. },
  35193. {
  35194. name: "Macro",
  35195. height: math.unit(117, "feet")
  35196. },
  35197. ]
  35198. ))
  35199. characterMakers.push(() => makeCharacter(
  35200. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35201. {
  35202. side: {
  35203. height: math.unit(5 + 1/12, "feet"),
  35204. weight: math.unit(418, "lb"),
  35205. name: "Side",
  35206. image: {
  35207. source: "./media/characters/softpurr/side.svg",
  35208. extra: 1993/1945,
  35209. bottom: 134/2127
  35210. }
  35211. },
  35212. front: {
  35213. height: math.unit(5 + 1/12, "feet"),
  35214. weight: math.unit(418, "lb"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/softpurr/front.svg",
  35218. extra: 1950/1856,
  35219. bottom: 174/2124
  35220. }
  35221. },
  35222. paw: {
  35223. height: math.unit(1, "feet"),
  35224. name: "Paw",
  35225. image: {
  35226. source: "./media/characters/softpurr/paw.svg"
  35227. }
  35228. },
  35229. },
  35230. [
  35231. {
  35232. name: "Normal",
  35233. height: math.unit(5 + 1/12, "feet"),
  35234. default: true
  35235. },
  35236. ]
  35237. ))
  35238. characterMakers.push(() => makeCharacter(
  35239. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35240. {
  35241. front: {
  35242. height: math.unit(260, "meters"),
  35243. name: "Front",
  35244. image: {
  35245. source: "./media/characters/anahita/front.svg",
  35246. extra: 665/635,
  35247. bottom: 89/754
  35248. }
  35249. },
  35250. },
  35251. [
  35252. {
  35253. name: "Macro",
  35254. height: math.unit(260, "meters"),
  35255. default: true
  35256. },
  35257. ]
  35258. ))
  35259. characterMakers.push(() => makeCharacter(
  35260. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35261. {
  35262. front: {
  35263. height: math.unit(4 + 10/12, "feet"),
  35264. weight: math.unit(160, "lb"),
  35265. name: "Front",
  35266. image: {
  35267. source: "./media/characters/chip-mouse/front.svg",
  35268. extra: 3528/3408,
  35269. bottom: 0/3528
  35270. }
  35271. },
  35272. frontNsfw: {
  35273. height: math.unit(4 + 10/12, "feet"),
  35274. weight: math.unit(160, "lb"),
  35275. name: "Front (NSFW)",
  35276. image: {
  35277. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35278. extra: 3528/3408,
  35279. bottom: 0/3528
  35280. }
  35281. },
  35282. },
  35283. [
  35284. {
  35285. name: "Normal",
  35286. height: math.unit(4 + 10/12, "feet"),
  35287. default: true
  35288. },
  35289. ]
  35290. ))
  35291. characterMakers.push(() => makeCharacter(
  35292. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35293. {
  35294. side: {
  35295. height: math.unit(10, "feet"),
  35296. weight: math.unit(14000, "lb"),
  35297. name: "Side",
  35298. image: {
  35299. source: "./media/characters/kremm/side.svg",
  35300. extra: 1390/1053,
  35301. bottom: 90/1480
  35302. }
  35303. },
  35304. gut: {
  35305. height: math.unit(5.8, "feet"),
  35306. name: "Gut",
  35307. image: {
  35308. source: "./media/characters/kremm/gut.svg"
  35309. }
  35310. },
  35311. ass: {
  35312. height: math.unit(6.1, "feet"),
  35313. name: "Ass",
  35314. image: {
  35315. source: "./media/characters/kremm/ass.svg"
  35316. }
  35317. },
  35318. jaws: {
  35319. height: math.unit(2.2, "feet"),
  35320. name: "Jaws",
  35321. image: {
  35322. source: "./media/characters/kremm/jaws.svg"
  35323. }
  35324. },
  35325. dick: {
  35326. height: math.unit(4.26, "feet"),
  35327. name: "Dick",
  35328. image: {
  35329. source: "./media/characters/kremm/dick.svg"
  35330. }
  35331. },
  35332. },
  35333. [
  35334. {
  35335. name: "Normal",
  35336. height: math.unit(10, "feet"),
  35337. default: true
  35338. },
  35339. ]
  35340. ))
  35341. characterMakers.push(() => makeCharacter(
  35342. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35343. {
  35344. front: {
  35345. height: math.unit(30, "stories"),
  35346. name: "Front",
  35347. image: {
  35348. source: "./media/characters/kai/front.svg",
  35349. extra: 1892/1718,
  35350. bottom: 162/2054
  35351. }
  35352. },
  35353. },
  35354. [
  35355. {
  35356. name: "Macro",
  35357. height: math.unit(30, "stories"),
  35358. default: true
  35359. },
  35360. ]
  35361. ))
  35362. characterMakers.push(() => makeCharacter(
  35363. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35364. {
  35365. front: {
  35366. height: math.unit(6 + 4/12, "feet"),
  35367. weight: math.unit(145, "lb"),
  35368. name: "Front",
  35369. image: {
  35370. source: "./media/characters/sykes/front.svg",
  35371. extra: 1321 / 1187,
  35372. bottom: 66 / 1387
  35373. }
  35374. },
  35375. back: {
  35376. height: math.unit(6 + 4/12, "feet"),
  35377. weight: math.unit(145, "lb"),
  35378. name: "Back",
  35379. image: {
  35380. source: "./media/characters/sykes/back.svg",
  35381. extra: 1326/1181,
  35382. bottom: 31/1357
  35383. }
  35384. },
  35385. traditionalOutfit: {
  35386. height: math.unit(6 + 4/12, "feet"),
  35387. weight: math.unit(145, "lb"),
  35388. name: "Traditional Outfit",
  35389. image: {
  35390. source: "./media/characters/sykes/traditional-outfit.svg",
  35391. extra: 1321 / 1187,
  35392. bottom: 66 / 1387
  35393. }
  35394. },
  35395. adventureOutfit: {
  35396. height: math.unit(6 + 4/12, "feet"),
  35397. weight: math.unit(145, "lb"),
  35398. name: "Adventure Outfit",
  35399. image: {
  35400. source: "./media/characters/sykes/adventure-outfit.svg",
  35401. extra: 1321 / 1187,
  35402. bottom: 66 / 1387
  35403. }
  35404. },
  35405. handLeft: {
  35406. height: math.unit(0.9, "feet"),
  35407. name: "Hand (Left)",
  35408. image: {
  35409. source: "./media/characters/sykes/hand-left.svg"
  35410. }
  35411. },
  35412. handRight: {
  35413. height: math.unit(0.839, "feet"),
  35414. name: "Hand (Right)",
  35415. image: {
  35416. source: "./media/characters/sykes/hand-right.svg"
  35417. }
  35418. },
  35419. leftFoot: {
  35420. height: math.unit(1.2, "feet"),
  35421. name: "Foot (Left)",
  35422. image: {
  35423. source: "./media/characters/sykes/foot-left.svg"
  35424. }
  35425. },
  35426. rightFoot: {
  35427. height: math.unit(1.2, "feet"),
  35428. name: "Foot (Right)",
  35429. image: {
  35430. source: "./media/characters/sykes/foot-right.svg"
  35431. }
  35432. },
  35433. maw: {
  35434. height: math.unit(1.93, "feet"),
  35435. name: "Maw",
  35436. image: {
  35437. source: "./media/characters/sykes/maw.svg"
  35438. }
  35439. },
  35440. teeth: {
  35441. height: math.unit(0.51, "feet"),
  35442. name: "Teeth",
  35443. image: {
  35444. source: "./media/characters/sykes/teeth.svg"
  35445. }
  35446. },
  35447. tongue: {
  35448. height: math.unit(2.13, "feet"),
  35449. name: "Tongue",
  35450. image: {
  35451. source: "./media/characters/sykes/tongue.svg"
  35452. }
  35453. },
  35454. uvula: {
  35455. height: math.unit(0.16, "feet"),
  35456. name: "Uvula",
  35457. image: {
  35458. source: "./media/characters/sykes/uvula.svg"
  35459. }
  35460. },
  35461. collar: {
  35462. height: math.unit(0.287, "feet"),
  35463. name: "Collar",
  35464. image: {
  35465. source: "./media/characters/sykes/collar.svg"
  35466. }
  35467. },
  35468. tail: {
  35469. height: math.unit(3.8, "feet"),
  35470. name: "Tail",
  35471. image: {
  35472. source: "./media/characters/sykes/tail.svg"
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Shrunken",
  35479. height: math.unit(5, "inches")
  35480. },
  35481. {
  35482. name: "Normal",
  35483. height: math.unit(6 + 4 / 12, "feet"),
  35484. default: true
  35485. },
  35486. {
  35487. name: "Big",
  35488. height: math.unit(15, "feet")
  35489. },
  35490. ]
  35491. ))
  35492. characterMakers.push(() => makeCharacter(
  35493. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35494. {
  35495. front: {
  35496. height: math.unit(5 + 8/12, "feet"),
  35497. weight: math.unit(190, "lb"),
  35498. name: "Front",
  35499. image: {
  35500. source: "./media/characters/oven-otter/front.svg",
  35501. extra: 1809/1740,
  35502. bottom: 181/1990
  35503. }
  35504. },
  35505. back: {
  35506. height: math.unit(5 + 8/12, "feet"),
  35507. weight: math.unit(190, "lb"),
  35508. name: "Back",
  35509. image: {
  35510. source: "./media/characters/oven-otter/back.svg",
  35511. extra: 1709/1635,
  35512. bottom: 118/1827
  35513. }
  35514. },
  35515. hand: {
  35516. height: math.unit(1.07, "feet"),
  35517. name: "Hand",
  35518. image: {
  35519. source: "./media/characters/oven-otter/hand.svg"
  35520. }
  35521. },
  35522. beans: {
  35523. height: math.unit(1.74, "feet"),
  35524. name: "Beans",
  35525. image: {
  35526. source: "./media/characters/oven-otter/beans.svg"
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Micro",
  35533. height: math.unit(0.5, "inches")
  35534. },
  35535. {
  35536. name: "Normal",
  35537. height: math.unit(5 + 8/12, "feet"),
  35538. default: true
  35539. },
  35540. {
  35541. name: "Macro",
  35542. height: math.unit(250, "feet")
  35543. },
  35544. {
  35545. name: "Really High",
  35546. height: math.unit(420, "feet")
  35547. },
  35548. ]
  35549. ))
  35550. characterMakers.push(() => makeCharacter(
  35551. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35552. {
  35553. front: {
  35554. height: math.unit(5, "meters"),
  35555. weight: math.unit(292000000000000, "kg"),
  35556. name: "Front",
  35557. image: {
  35558. source: "./media/characters/devourer/front.svg",
  35559. extra: 1800/1733,
  35560. bottom: 211/2011
  35561. }
  35562. },
  35563. maw: {
  35564. height: math.unit(1.1, "meter"),
  35565. name: "Maw",
  35566. image: {
  35567. source: "./media/characters/devourer/maw.svg"
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Small",
  35574. height: math.unit(3, "meters")
  35575. },
  35576. {
  35577. name: "Large",
  35578. height: math.unit(5, "meters"),
  35579. default: true
  35580. },
  35581. ]
  35582. ))
  35583. characterMakers.push(() => makeCharacter(
  35584. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35585. {
  35586. front: {
  35587. height: math.unit(6, "feet"),
  35588. weight: math.unit(400, "lb"),
  35589. name: "Front",
  35590. image: {
  35591. source: "./media/characters/ellarby/front.svg",
  35592. extra: 1909/1763,
  35593. bottom: 80/1989
  35594. }
  35595. },
  35596. back: {
  35597. height: math.unit(6, "feet"),
  35598. weight: math.unit(400, "lb"),
  35599. name: "Back",
  35600. image: {
  35601. source: "./media/characters/ellarby/back.svg",
  35602. extra: 1914/1784,
  35603. bottom: 172/2086
  35604. }
  35605. },
  35606. },
  35607. [
  35608. {
  35609. name: "Mischief",
  35610. height: math.unit(18, "inches")
  35611. },
  35612. {
  35613. name: "Trouble",
  35614. height: math.unit(12, "feet")
  35615. },
  35616. {
  35617. name: "Havoc",
  35618. height: math.unit(200, "feet"),
  35619. default: true
  35620. },
  35621. {
  35622. name: "Pandemonium",
  35623. height: math.unit(1, "mile")
  35624. },
  35625. {
  35626. name: "Catastrophe",
  35627. height: math.unit(100, "miles")
  35628. },
  35629. ]
  35630. ))
  35631. characterMakers.push(() => makeCharacter(
  35632. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35633. {
  35634. front: {
  35635. height: math.unit(4.7, "meters"),
  35636. weight: math.unit(6500, "kg"),
  35637. name: "Front",
  35638. image: {
  35639. source: "./media/characters/vex/front.svg",
  35640. extra: 1288/1140,
  35641. bottom: 100/1388
  35642. }
  35643. },
  35644. },
  35645. [
  35646. {
  35647. name: "Normal",
  35648. height: math.unit(4.7, "meters"),
  35649. default: true
  35650. },
  35651. ]
  35652. ))
  35653. characterMakers.push(() => makeCharacter(
  35654. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35655. {
  35656. normal: {
  35657. height: math.unit(6, "feet"),
  35658. weight: math.unit(350, "lb"),
  35659. name: "Normal",
  35660. image: {
  35661. source: "./media/characters/teshy/normal.svg",
  35662. extra: 1795/1735,
  35663. bottom: 16/1811
  35664. }
  35665. },
  35666. monsterFront: {
  35667. height: math.unit(12, "feet"),
  35668. weight: math.unit(4700, "lb"),
  35669. name: "Monster (Front)",
  35670. image: {
  35671. source: "./media/characters/teshy/monster-front.svg",
  35672. extra: 2042/2034,
  35673. bottom: 128/2170
  35674. }
  35675. },
  35676. monsterSide: {
  35677. height: math.unit(12, "feet"),
  35678. weight: math.unit(4700, "lb"),
  35679. name: "Monster (Side)",
  35680. image: {
  35681. source: "./media/characters/teshy/monster-side.svg",
  35682. extra: 2067/2056,
  35683. bottom: 70/2137
  35684. }
  35685. },
  35686. monsterBack: {
  35687. height: math.unit(12, "feet"),
  35688. weight: math.unit(4700, "lb"),
  35689. name: "Monster (Back)",
  35690. image: {
  35691. source: "./media/characters/teshy/monster-back.svg",
  35692. extra: 1921/1914,
  35693. bottom: 171/2092
  35694. }
  35695. },
  35696. },
  35697. [
  35698. {
  35699. name: "Normal",
  35700. height: math.unit(6, "feet"),
  35701. default: true
  35702. },
  35703. ]
  35704. ))
  35705. characterMakers.push(() => makeCharacter(
  35706. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35707. {
  35708. front: {
  35709. height: math.unit(6, "feet"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/ramey/front.svg",
  35713. extra: 790/787,
  35714. bottom: 27/817
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Normal",
  35721. height: math.unit(6, "feet"),
  35722. default: true
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35728. {
  35729. front: {
  35730. height: math.unit(5 + 5/12, "feet"),
  35731. weight: math.unit(120, "lb"),
  35732. name: "Front",
  35733. image: {
  35734. source: "./media/characters/phirae/front.svg",
  35735. extra: 2491/2436,
  35736. bottom: 38/2529
  35737. }
  35738. },
  35739. },
  35740. [
  35741. {
  35742. name: "Normal",
  35743. height: math.unit(5 + 5/12, "feet"),
  35744. default: true
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35750. {
  35751. front: {
  35752. height: math.unit(5 + 3/12, "feet"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/stagglas/front.svg",
  35756. extra: 962/882,
  35757. bottom: 53/1015
  35758. }
  35759. },
  35760. feral: {
  35761. height: math.unit(335, "cm"),
  35762. name: "Feral",
  35763. image: {
  35764. source: "./media/characters/stagglas/feral.svg",
  35765. extra: 1732/1090,
  35766. bottom: 48/1780
  35767. }
  35768. },
  35769. },
  35770. [
  35771. {
  35772. name: "Normal",
  35773. height: math.unit(5 + 3/12, "feet"),
  35774. default: true
  35775. },
  35776. ]
  35777. ))
  35778. characterMakers.push(() => makeCharacter(
  35779. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35780. {
  35781. front: {
  35782. height: math.unit(5 + 4/12, "feet"),
  35783. weight: math.unit(145, "lb"),
  35784. name: "Front",
  35785. image: {
  35786. source: "./media/characters/starra/front.svg",
  35787. extra: 1790/1691,
  35788. bottom: 91/1881
  35789. }
  35790. },
  35791. },
  35792. [
  35793. {
  35794. name: "Normal",
  35795. height: math.unit(5 + 4/12, "feet"),
  35796. default: true
  35797. },
  35798. ]
  35799. ))
  35800. characterMakers.push(() => makeCharacter(
  35801. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35802. {
  35803. front: {
  35804. height: math.unit(2.2, "meters"),
  35805. name: "Front",
  35806. image: {
  35807. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35808. extra: 1194/1005,
  35809. bottom: 25/1219
  35810. }
  35811. },
  35812. },
  35813. [
  35814. {
  35815. name: "Normal",
  35816. height: math.unit(2.2, "meters"),
  35817. default: true
  35818. },
  35819. ]
  35820. ))
  35821. characterMakers.push(() => makeCharacter(
  35822. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35823. {
  35824. side: {
  35825. height: math.unit(8 + 2/12, "feet"),
  35826. weight: math.unit(1240, "lb"),
  35827. name: "Side",
  35828. image: {
  35829. source: "./media/characters/mika-valentine/side.svg",
  35830. extra: 2670/2501,
  35831. bottom: 250/2920
  35832. }
  35833. },
  35834. },
  35835. [
  35836. {
  35837. name: "Normal",
  35838. height: math.unit(8 + 2/12, "feet"),
  35839. default: true
  35840. },
  35841. ]
  35842. ))
  35843. characterMakers.push(() => makeCharacter(
  35844. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35845. {
  35846. front: {
  35847. height: math.unit(7 + 2/12, "feet"),
  35848. name: "Front",
  35849. image: {
  35850. source: "./media/characters/xoltol/front.svg",
  35851. extra: 2212/2124,
  35852. bottom: 84/2296
  35853. }
  35854. },
  35855. side: {
  35856. height: math.unit(7 + 2/12, "feet"),
  35857. name: "Side",
  35858. image: {
  35859. source: "./media/characters/xoltol/side.svg",
  35860. extra: 2273/2197,
  35861. bottom: 26/2299
  35862. }
  35863. },
  35864. hand: {
  35865. height: math.unit(2.5, "feet"),
  35866. name: "Hand",
  35867. image: {
  35868. source: "./media/characters/xoltol/hand.svg"
  35869. }
  35870. },
  35871. },
  35872. [
  35873. {
  35874. name: "Small-ish",
  35875. height: math.unit(5 + 11/12, "feet")
  35876. },
  35877. {
  35878. name: "Normal",
  35879. height: math.unit(7 + 2/12, "feet")
  35880. },
  35881. {
  35882. name: "\"Macro\"",
  35883. height: math.unit(14 + 9/12, "feet"),
  35884. default: true
  35885. },
  35886. {
  35887. name: "Alternate Height",
  35888. height: math.unit(20, "feet")
  35889. },
  35890. {
  35891. name: "Actually Macro",
  35892. height: math.unit(100, "feet")
  35893. },
  35894. ]
  35895. ))
  35896. characterMakers.push(() => makeCharacter(
  35897. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35898. {
  35899. front: {
  35900. height: math.unit(5 + 2/12, "feet"),
  35901. name: "Front",
  35902. image: {
  35903. source: "./media/characters/kotetsu-redwood/front.svg",
  35904. extra: 1053/942,
  35905. bottom: 60/1113
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Normal",
  35912. height: math.unit(5 + 2/12, "feet"),
  35913. default: true
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35919. {
  35920. front: {
  35921. height: math.unit(2.4, "meters"),
  35922. weight: math.unit(125, "kg"),
  35923. name: "Front",
  35924. image: {
  35925. source: "./media/characters/lilith/front.svg",
  35926. extra: 1590/1513,
  35927. bottom: 203/1793
  35928. }
  35929. },
  35930. },
  35931. [
  35932. {
  35933. name: "Humanoid",
  35934. height: math.unit(2.4, "meters")
  35935. },
  35936. {
  35937. name: "Normal",
  35938. height: math.unit(6, "meters"),
  35939. default: true
  35940. },
  35941. {
  35942. name: "Largest",
  35943. height: math.unit(55, "meters")
  35944. },
  35945. ]
  35946. ))
  35947. characterMakers.push(() => makeCharacter(
  35948. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35949. {
  35950. front: {
  35951. height: math.unit(8 + 4/12, "feet"),
  35952. weight: math.unit(535, "lb"),
  35953. name: "Front",
  35954. image: {
  35955. source: "./media/characters/beh'kah-bolger/front.svg",
  35956. extra: 1660/1603,
  35957. bottom: 37/1697
  35958. }
  35959. },
  35960. },
  35961. [
  35962. {
  35963. name: "Normal",
  35964. height: math.unit(8 + 4/12, "feet"),
  35965. default: true
  35966. },
  35967. {
  35968. name: "Kaiju",
  35969. height: math.unit(250, "feet")
  35970. },
  35971. {
  35972. name: "Still Growing",
  35973. height: math.unit(10, "miles")
  35974. },
  35975. {
  35976. name: "Continental",
  35977. height: math.unit(5000, "miles")
  35978. },
  35979. {
  35980. name: "Final Form",
  35981. height: math.unit(2500000, "miles")
  35982. },
  35983. ]
  35984. ))
  35985. characterMakers.push(() => makeCharacter(
  35986. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35987. {
  35988. front: {
  35989. height: math.unit(7 + 2/12, "feet"),
  35990. weight: math.unit(230, "kg"),
  35991. name: "Front",
  35992. image: {
  35993. source: "./media/characters/tatyana-milewska/front.svg",
  35994. extra: 1199/1150,
  35995. bottom: 86/1285
  35996. }
  35997. },
  35998. },
  35999. [
  36000. {
  36001. name: "Normal",
  36002. height: math.unit(7 + 2/12, "feet"),
  36003. default: true
  36004. },
  36005. {
  36006. name: "Big",
  36007. height: math.unit(12, "feet")
  36008. },
  36009. {
  36010. name: "Minimacro",
  36011. height: math.unit(20, "feet")
  36012. },
  36013. {
  36014. name: "Macro",
  36015. height: math.unit(120, "feet")
  36016. },
  36017. ]
  36018. ))
  36019. characterMakers.push(() => makeCharacter(
  36020. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36021. {
  36022. front: {
  36023. height: math.unit(7 + 8/12, "feet"),
  36024. weight: math.unit(152, "kg"),
  36025. name: "Front",
  36026. image: {
  36027. source: "./media/characters/helen-arri/front.svg",
  36028. extra: 440/423,
  36029. bottom: 14/454
  36030. }
  36031. },
  36032. back: {
  36033. height: math.unit(7 + 8/12, "feet"),
  36034. weight: math.unit(152, "kg"),
  36035. name: "Back",
  36036. image: {
  36037. source: "./media/characters/helen-arri/back.svg",
  36038. extra: 443/426,
  36039. bottom: 8/451
  36040. }
  36041. },
  36042. },
  36043. [
  36044. {
  36045. name: "Normal",
  36046. height: math.unit(7 + 8/12, "feet"),
  36047. default: true
  36048. },
  36049. {
  36050. name: "Big",
  36051. height: math.unit(14, "feet")
  36052. },
  36053. {
  36054. name: "Minimacro",
  36055. height: math.unit(24, "feet")
  36056. },
  36057. {
  36058. name: "Macro",
  36059. height: math.unit(140, "feet")
  36060. },
  36061. ]
  36062. ))
  36063. characterMakers.push(() => makeCharacter(
  36064. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36065. {
  36066. front: {
  36067. height: math.unit(6, "meters"),
  36068. name: "Front",
  36069. image: {
  36070. source: "./media/characters/ehanu-rehu/front.svg",
  36071. extra: 1800/1800,
  36072. bottom: 59/1859
  36073. }
  36074. },
  36075. },
  36076. [
  36077. {
  36078. name: "Normal",
  36079. height: math.unit(6, "meters"),
  36080. default: true
  36081. },
  36082. ]
  36083. ))
  36084. characterMakers.push(() => makeCharacter(
  36085. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36086. {
  36087. front: {
  36088. height: math.unit(7 + 3/12, "feet"),
  36089. name: "Front",
  36090. image: {
  36091. source: "./media/characters/renholder/front.svg",
  36092. extra: 3096/2960,
  36093. bottom: 250/3346
  36094. }
  36095. },
  36096. },
  36097. [
  36098. {
  36099. name: "Normal Bat",
  36100. height: math.unit(7 + 3/12, "feet"),
  36101. default: true
  36102. },
  36103. {
  36104. name: "Slightly Tall Bat",
  36105. height: math.unit(100, "feet")
  36106. },
  36107. {
  36108. name: "Big Bat",
  36109. height: math.unit(1000, "feet")
  36110. },
  36111. {
  36112. name: "City-Sized Bat",
  36113. height: math.unit(200000, "feet")
  36114. },
  36115. {
  36116. name: "Bigger Bat",
  36117. height: math.unit(10000, "miles")
  36118. },
  36119. {
  36120. name: "Solar Sized Bat",
  36121. height: math.unit(100, "AU")
  36122. },
  36123. {
  36124. name: "Galactic Bat",
  36125. height: math.unit(200000, "lightyears")
  36126. },
  36127. {
  36128. name: "Universally Known Bat",
  36129. height: math.unit(1, "universe")
  36130. },
  36131. ]
  36132. ))
  36133. characterMakers.push(() => makeCharacter(
  36134. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36135. {
  36136. front: {
  36137. height: math.unit(6 + 11/12, "feet"),
  36138. weight: math.unit(250, "lb"),
  36139. name: "Front",
  36140. image: {
  36141. source: "./media/characters/cookiecat/front.svg",
  36142. extra: 893/827,
  36143. bottom: 14/907
  36144. }
  36145. },
  36146. },
  36147. [
  36148. {
  36149. name: "Micro",
  36150. height: math.unit(3, "inches")
  36151. },
  36152. {
  36153. name: "Normal",
  36154. height: math.unit(6 + 11/12, "feet"),
  36155. default: true
  36156. },
  36157. {
  36158. name: "Macro",
  36159. height: math.unit(100, "feet")
  36160. },
  36161. {
  36162. name: "Macro+",
  36163. height: math.unit(404, "feet")
  36164. },
  36165. {
  36166. name: "Megamacro",
  36167. height: math.unit(165, "miles")
  36168. },
  36169. {
  36170. name: "Planetary",
  36171. height: math.unit(4600, "miles")
  36172. },
  36173. ]
  36174. ))
  36175. characterMakers.push(() => makeCharacter(
  36176. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36177. {
  36178. front: {
  36179. height: math.unit(10 + 3/12, "feet"),
  36180. weight: math.unit(1500, "lb"),
  36181. name: "Front",
  36182. image: {
  36183. source: "./media/characters/tux-kusanagi/front.svg",
  36184. extra: 944/840,
  36185. bottom: 39/983
  36186. }
  36187. },
  36188. back: {
  36189. height: math.unit(10 + 3/12, "feet"),
  36190. weight: math.unit(1500, "lb"),
  36191. name: "Back",
  36192. image: {
  36193. source: "./media/characters/tux-kusanagi/back.svg",
  36194. extra: 941/842,
  36195. bottom: 28/969
  36196. }
  36197. },
  36198. rump: {
  36199. height: math.unit(5.25, "feet"),
  36200. name: "Rump",
  36201. image: {
  36202. source: "./media/characters/tux-kusanagi/rump.svg"
  36203. }
  36204. },
  36205. beak: {
  36206. height: math.unit(1.54, "feet"),
  36207. name: "Beak",
  36208. image: {
  36209. source: "./media/characters/tux-kusanagi/beak.svg"
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Normal",
  36216. height: math.unit(10 + 3/12, "feet"),
  36217. default: true
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36223. {
  36224. front: {
  36225. height: math.unit(58, "feet"),
  36226. weight: math.unit(200, "tons"),
  36227. name: "Front",
  36228. image: {
  36229. source: "./media/characters/uzarmazari/front.svg",
  36230. extra: 1575/1455,
  36231. bottom: 152/1727
  36232. }
  36233. },
  36234. back: {
  36235. height: math.unit(58, "feet"),
  36236. weight: math.unit(200, "tons"),
  36237. name: "Back",
  36238. image: {
  36239. source: "./media/characters/uzarmazari/back.svg",
  36240. extra: 1585/1510,
  36241. bottom: 157/1742
  36242. }
  36243. },
  36244. head: {
  36245. height: math.unit(26, "feet"),
  36246. name: "Head",
  36247. image: {
  36248. source: "./media/characters/uzarmazari/head.svg"
  36249. }
  36250. },
  36251. },
  36252. [
  36253. {
  36254. name: "Normal",
  36255. height: math.unit(58, "feet"),
  36256. default: true
  36257. },
  36258. ]
  36259. ))
  36260. characterMakers.push(() => makeCharacter(
  36261. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36262. {
  36263. side: {
  36264. height: math.unit(15, "feet"),
  36265. name: "Side",
  36266. image: {
  36267. source: "./media/characters/akitu/side.svg",
  36268. extra: 1421/1321,
  36269. bottom: 157/1578
  36270. }
  36271. },
  36272. front: {
  36273. height: math.unit(15, "feet"),
  36274. name: "Front",
  36275. image: {
  36276. source: "./media/characters/akitu/front.svg",
  36277. extra: 1435/1326,
  36278. bottom: 232/1667
  36279. }
  36280. },
  36281. },
  36282. [
  36283. {
  36284. name: "Normal",
  36285. height: math.unit(15, "feet"),
  36286. default: true
  36287. },
  36288. ]
  36289. ))
  36290. characterMakers.push(() => makeCharacter(
  36291. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36292. {
  36293. front: {
  36294. height: math.unit(10 + 8/12, "feet"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/azalie-croixland/front.svg",
  36298. extra: 1972/1856,
  36299. bottom: 31/2003
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Original Height",
  36306. height: math.unit(5 + 4/12, "feet")
  36307. },
  36308. {
  36309. name: "Normal Height",
  36310. height: math.unit(10 + 8/12, "feet"),
  36311. default: true
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36317. {
  36318. side: {
  36319. height: math.unit(7 + 1/12, "feet"),
  36320. weight: math.unit(245, "lb"),
  36321. name: "Side",
  36322. image: {
  36323. source: "./media/characters/kavus-kazian/side.svg",
  36324. extra: 349/342,
  36325. bottom: 15/364
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Normal",
  36332. height: math.unit(7 + 1/12, "feet"),
  36333. default: true
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36339. {
  36340. normalFront: {
  36341. height: math.unit(5 + 11/12, "feet"),
  36342. name: "Front",
  36343. image: {
  36344. source: "./media/characters/moonlight-rose/normal-front.svg",
  36345. extra: 1980/1825,
  36346. bottom: 18/1998
  36347. },
  36348. form: "normal",
  36349. default: true
  36350. },
  36351. normalBack: {
  36352. height: math.unit(5 + 11/12, "feet"),
  36353. name: "Back",
  36354. image: {
  36355. source: "./media/characters/moonlight-rose/normal-back.svg",
  36356. extra: 2010/1839,
  36357. bottom: 10/2020
  36358. },
  36359. form: "normal"
  36360. },
  36361. demonFront: {
  36362. height: math.unit(1.5, "earths"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/moonlight-rose/demon.svg",
  36366. extra: 1400/1294,
  36367. bottom: 45/1445
  36368. },
  36369. form: "demon",
  36370. default: true
  36371. },
  36372. terraFront: {
  36373. height: math.unit(1.5, "earths"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/moonlight-rose/terra.svg"
  36377. },
  36378. form: "terra",
  36379. default: true
  36380. },
  36381. jupiterFront: {
  36382. height: math.unit(69911*2, "km"),
  36383. name: "Front",
  36384. image: {
  36385. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36386. extra: 1367/1286,
  36387. bottom: 55/1422
  36388. },
  36389. form: "jupiter",
  36390. default: true
  36391. },
  36392. neptuneFront: {
  36393. height: math.unit(24622*2, "feet"),
  36394. name: "Front",
  36395. image: {
  36396. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36397. extra: 1851/1712,
  36398. bottom: 0/1851
  36399. },
  36400. form: "neptune",
  36401. default: true
  36402. },
  36403. },
  36404. [
  36405. {
  36406. name: "\"Natural\" Height",
  36407. height: math.unit(5 + 11/12, "feet"),
  36408. form: "normal"
  36409. },
  36410. {
  36411. name: "Smallest comfortable size",
  36412. height: math.unit(40, "meters"),
  36413. form: "normal"
  36414. },
  36415. {
  36416. name: "Common size",
  36417. height: math.unit(50, "km"),
  36418. form: "normal",
  36419. default: true
  36420. },
  36421. {
  36422. name: "Normal",
  36423. height: math.unit(1.5, "earths"),
  36424. form: "demon",
  36425. default: true
  36426. },
  36427. {
  36428. name: "Universal",
  36429. height: math.unit(15, "universes"),
  36430. form: "demon"
  36431. },
  36432. {
  36433. name: "Earth",
  36434. height: math.unit(1.5, "earths"),
  36435. form: "terra",
  36436. default: true
  36437. },
  36438. {
  36439. name: "Super Earth",
  36440. height: math.unit(67.5, "earths"),
  36441. form: "terra"
  36442. },
  36443. {
  36444. name: "Doesn't fit in a solar system...",
  36445. height: math.unit(1, "galaxy"),
  36446. form: "terra"
  36447. },
  36448. {
  36449. name: "Saturn",
  36450. height: math.unit(58232*2, "km"),
  36451. form: "jupiter"
  36452. },
  36453. {
  36454. name: "Jupiter",
  36455. height: math.unit(69911*2, "km"),
  36456. form: "jupiter",
  36457. default: true
  36458. },
  36459. {
  36460. name: "HD 100546 b",
  36461. height: math.unit(482938, "km"),
  36462. form: "jupiter"
  36463. },
  36464. {
  36465. name: "Enceladus",
  36466. height: math.unit(513*2, "km"),
  36467. form: "neptune"
  36468. },
  36469. {
  36470. name: "Europe",
  36471. height: math.unit(1560*2, "km"),
  36472. form: "neptune"
  36473. },
  36474. {
  36475. name: "Neptune",
  36476. height: math.unit(24622*2, "km"),
  36477. form: "neptune",
  36478. default: true
  36479. },
  36480. {
  36481. name: "CoRoT-9b",
  36482. height: math.unit(75067*2, "km"),
  36483. form: "neptune"
  36484. },
  36485. ],
  36486. {
  36487. "normal": {
  36488. name: "Normal",
  36489. default: true
  36490. },
  36491. "demon": {
  36492. name: "Demon"
  36493. },
  36494. "terra": {
  36495. name: "Terra"
  36496. },
  36497. "jupiter": {
  36498. name: "Jupiter"
  36499. },
  36500. "neptune": {
  36501. name: "Neptune"
  36502. }
  36503. }
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36507. {
  36508. front: {
  36509. height: math.unit(16, "feet"),
  36510. weight: math.unit(610, "kg"),
  36511. name: "Front",
  36512. image: {
  36513. source: "./media/characters/huckle/front.svg",
  36514. extra: 1731/1625,
  36515. bottom: 33/1764
  36516. }
  36517. },
  36518. back: {
  36519. height: math.unit(16, "feet"),
  36520. weight: math.unit(610, "kg"),
  36521. name: "Back",
  36522. image: {
  36523. source: "./media/characters/huckle/back.svg",
  36524. extra: 1738/1651,
  36525. bottom: 37/1775
  36526. }
  36527. },
  36528. laughing: {
  36529. height: math.unit(3.75, "feet"),
  36530. name: "Laughing",
  36531. image: {
  36532. source: "./media/characters/huckle/laughing.svg"
  36533. }
  36534. },
  36535. angry: {
  36536. height: math.unit(4.15, "feet"),
  36537. name: "Angry",
  36538. image: {
  36539. source: "./media/characters/huckle/angry.svg"
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(16, "feet"),
  36547. default: true
  36548. },
  36549. {
  36550. name: "Mini Macro",
  36551. height: math.unit(463, "feet")
  36552. },
  36553. {
  36554. name: "Macro",
  36555. height: math.unit(1680, "meters")
  36556. },
  36557. {
  36558. name: "Mega Macro",
  36559. height: math.unit(175, "km")
  36560. },
  36561. {
  36562. name: "Terra Macro",
  36563. height: math.unit(32, "gigameters")
  36564. },
  36565. {
  36566. name: "Multiverse+",
  36567. height: math.unit(2.56e23, "yottameters")
  36568. },
  36569. ]
  36570. ))
  36571. characterMakers.push(() => makeCharacter(
  36572. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36573. {
  36574. front: {
  36575. height: math.unit(6 + 9/12, "feet"),
  36576. weight: math.unit(280, "lb"),
  36577. name: "Front",
  36578. image: {
  36579. source: "./media/characters/candy/front.svg",
  36580. extra: 234/217,
  36581. bottom: 11/245
  36582. }
  36583. },
  36584. },
  36585. [
  36586. {
  36587. name: "Really Small",
  36588. height: math.unit(0.1, "nm")
  36589. },
  36590. {
  36591. name: "Micro",
  36592. height: math.unit(2, "inches")
  36593. },
  36594. {
  36595. name: "Normal",
  36596. height: math.unit(6 + 9/12, "feet"),
  36597. default: true
  36598. },
  36599. {
  36600. name: "Small Macro",
  36601. height: math.unit(69, "feet")
  36602. },
  36603. {
  36604. name: "Macro",
  36605. height: math.unit(160, "feet")
  36606. },
  36607. {
  36608. name: "Megamacro",
  36609. height: math.unit(22000, "miles")
  36610. },
  36611. {
  36612. name: "Gigamacro",
  36613. height: math.unit(50000, "miles")
  36614. },
  36615. ]
  36616. ))
  36617. characterMakers.push(() => makeCharacter(
  36618. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36619. {
  36620. front: {
  36621. height: math.unit(4, "feet"),
  36622. weight: math.unit(90, "lb"),
  36623. name: "Front",
  36624. image: {
  36625. source: "./media/characters/joey-mcdonald/front.svg",
  36626. extra: 1059/852,
  36627. bottom: 33/1092
  36628. }
  36629. },
  36630. back: {
  36631. height: math.unit(4, "feet"),
  36632. weight: math.unit(90, "lb"),
  36633. name: "Back",
  36634. image: {
  36635. source: "./media/characters/joey-mcdonald/back.svg",
  36636. extra: 1077/879,
  36637. bottom: 5/1082
  36638. }
  36639. },
  36640. frontKobold: {
  36641. height: math.unit(4, "feet"),
  36642. weight: math.unit(100, "lb"),
  36643. name: "Front-kobold",
  36644. image: {
  36645. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36646. extra: 1480/1367,
  36647. bottom: 0/1480
  36648. }
  36649. },
  36650. backKobold: {
  36651. height: math.unit(4, "feet"),
  36652. weight: math.unit(100, "lb"),
  36653. name: "Back-kobold",
  36654. image: {
  36655. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36656. extra: 1449/1361,
  36657. bottom: 0/1449
  36658. }
  36659. },
  36660. },
  36661. [
  36662. {
  36663. name: "Normal",
  36664. height: math.unit(4, "feet"),
  36665. default: true
  36666. },
  36667. ]
  36668. ))
  36669. characterMakers.push(() => makeCharacter(
  36670. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36671. {
  36672. front: {
  36673. height: math.unit(12 + 6/12, "feet"),
  36674. name: "Front",
  36675. image: {
  36676. source: "./media/characters/kass-lockheed/front.svg",
  36677. extra: 354/343,
  36678. bottom: 9/363
  36679. }
  36680. },
  36681. back: {
  36682. height: math.unit(12 + 6/12, "feet"),
  36683. name: "Back",
  36684. image: {
  36685. source: "./media/characters/kass-lockheed/back.svg",
  36686. extra: 364/352,
  36687. bottom: 3/367
  36688. }
  36689. },
  36690. dick: {
  36691. height: math.unit(3.12, "feet"),
  36692. name: "Dick",
  36693. image: {
  36694. source: "./media/characters/kass-lockheed/dick.svg"
  36695. }
  36696. },
  36697. head: {
  36698. height: math.unit(2.6, "feet"),
  36699. name: "Head",
  36700. image: {
  36701. source: "./media/characters/kass-lockheed/head.svg"
  36702. }
  36703. },
  36704. bleh: {
  36705. height: math.unit(2.85, "feet"),
  36706. name: "Bleh",
  36707. image: {
  36708. source: "./media/characters/kass-lockheed/bleh.svg"
  36709. }
  36710. },
  36711. smug: {
  36712. height: math.unit(2.85, "feet"),
  36713. name: "Smug",
  36714. image: {
  36715. source: "./media/characters/kass-lockheed/smug.svg"
  36716. }
  36717. },
  36718. },
  36719. [
  36720. {
  36721. name: "Normal",
  36722. height: math.unit(12 + 6/12, "feet"),
  36723. default: true
  36724. },
  36725. ]
  36726. ))
  36727. characterMakers.push(() => makeCharacter(
  36728. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36729. {
  36730. front: {
  36731. height: math.unit(6 + 2/12, "feet"),
  36732. name: "Front",
  36733. image: {
  36734. source: "./media/characters/taylor/front.svg",
  36735. extra: 639/495,
  36736. bottom: 12/651
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(6 + 2/12, "feet"),
  36744. default: true
  36745. },
  36746. {
  36747. name: "Big",
  36748. height: math.unit(15, "feet")
  36749. },
  36750. {
  36751. name: "Lorg",
  36752. height: math.unit(80, "feet")
  36753. },
  36754. {
  36755. name: "Too Lorg",
  36756. height: math.unit(120, "feet")
  36757. },
  36758. ]
  36759. ))
  36760. characterMakers.push(() => makeCharacter(
  36761. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36762. {
  36763. front: {
  36764. height: math.unit(15, "feet"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/kaizer/front.svg",
  36768. extra: 1612/1436,
  36769. bottom: 43/1655
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(15, "feet"),
  36777. default: true
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(2, "feet"),
  36786. weight: math.unit(30, "lb"),
  36787. name: "Front",
  36788. image: {
  36789. source: "./media/characters/sandy/front.svg",
  36790. extra: 1439/1307,
  36791. bottom: 194/1633
  36792. }
  36793. },
  36794. },
  36795. [
  36796. {
  36797. name: "Normal",
  36798. height: math.unit(2, "feet"),
  36799. default: true
  36800. },
  36801. ]
  36802. ))
  36803. characterMakers.push(() => makeCharacter(
  36804. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36805. {
  36806. front: {
  36807. height: math.unit(3, "feet"),
  36808. name: "Front",
  36809. image: {
  36810. source: "./media/characters/mellvi/front.svg",
  36811. extra: 1831/1630,
  36812. bottom: 58/1889
  36813. }
  36814. },
  36815. },
  36816. [
  36817. {
  36818. name: "Normal",
  36819. height: math.unit(3, "feet"),
  36820. default: true
  36821. },
  36822. ]
  36823. ))
  36824. characterMakers.push(() => makeCharacter(
  36825. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36826. {
  36827. front: {
  36828. height: math.unit(5 + 11/12, "feet"),
  36829. weight: math.unit(200, "lb"),
  36830. name: "Front",
  36831. image: {
  36832. source: "./media/characters/shirou/front.svg",
  36833. extra: 2491/2383,
  36834. bottom: 189/2680
  36835. }
  36836. },
  36837. back: {
  36838. height: math.unit(5 + 11/12, "feet"),
  36839. weight: math.unit(200, "lb"),
  36840. name: "Back",
  36841. image: {
  36842. source: "./media/characters/shirou/back.svg",
  36843. extra: 2554/2450,
  36844. bottom: 76/2630
  36845. }
  36846. },
  36847. },
  36848. [
  36849. {
  36850. name: "Normal",
  36851. height: math.unit(5 + 11/12, "feet"),
  36852. default: true
  36853. },
  36854. ]
  36855. ))
  36856. characterMakers.push(() => makeCharacter(
  36857. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36858. {
  36859. front: {
  36860. height: math.unit(6 + 3/12, "feet"),
  36861. weight: math.unit(177, "lb"),
  36862. name: "Front",
  36863. image: {
  36864. source: "./media/characters/noryu/front.svg",
  36865. extra: 973/885,
  36866. bottom: 10/983
  36867. }
  36868. },
  36869. },
  36870. [
  36871. {
  36872. name: "Normal",
  36873. height: math.unit(6 + 3/12, "feet"),
  36874. default: true
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36880. {
  36881. front: {
  36882. height: math.unit(5 + 6/12, "feet"),
  36883. weight: math.unit(170, "lb"),
  36884. name: "Front",
  36885. image: {
  36886. source: "./media/characters/mevolas-rubenido/front.svg",
  36887. extra: 2109/1901,
  36888. bottom: 96/2205
  36889. }
  36890. },
  36891. },
  36892. [
  36893. {
  36894. name: "Normal",
  36895. height: math.unit(5 + 6/12, "feet"),
  36896. default: true
  36897. },
  36898. ]
  36899. ))
  36900. characterMakers.push(() => makeCharacter(
  36901. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36902. {
  36903. front: {
  36904. height: math.unit(100, "feet"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/dee/front.svg",
  36908. extra: 2153/2036,
  36909. bottom: 59/2212
  36910. }
  36911. },
  36912. back: {
  36913. height: math.unit(100, "feet"),
  36914. name: "Back",
  36915. image: {
  36916. source: "./media/characters/dee/back.svg",
  36917. extra: 2183/2058,
  36918. bottom: 75/2258
  36919. }
  36920. },
  36921. foot: {
  36922. height: math.unit(19.43, "feet"),
  36923. name: "Foot",
  36924. image: {
  36925. source: "./media/characters/dee/foot.svg"
  36926. }
  36927. },
  36928. hoof: {
  36929. height: math.unit(20.6, "feet"),
  36930. name: "Hoof",
  36931. image: {
  36932. source: "./media/characters/dee/hoof.svg"
  36933. }
  36934. },
  36935. },
  36936. [
  36937. {
  36938. name: "Macro",
  36939. height: math.unit(100, "feet"),
  36940. default: true
  36941. },
  36942. ]
  36943. ))
  36944. characterMakers.push(() => makeCharacter(
  36945. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36946. {
  36947. front: {
  36948. height: math.unit(5 + 6/12, "feet"),
  36949. name: "Front",
  36950. image: {
  36951. source: "./media/characters/teh/front.svg",
  36952. extra: 1002/847,
  36953. bottom: 62/1064
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Normal",
  36960. height: math.unit(5 + 6/12, "feet"),
  36961. default: true
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36967. {
  36968. side: {
  36969. height: math.unit(6 + 1/12, "feet"),
  36970. weight: math.unit(204, "lb"),
  36971. name: "Side",
  36972. image: {
  36973. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36974. extra: 974/775,
  36975. bottom: 169/1143
  36976. }
  36977. },
  36978. sitting: {
  36979. height: math.unit(6 + 2/12, "feet"),
  36980. weight: math.unit(204, "lb"),
  36981. name: "Sitting",
  36982. image: {
  36983. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36984. extra: 1175/964,
  36985. bottom: 378/1553
  36986. }
  36987. },
  36988. },
  36989. [
  36990. {
  36991. name: "Normal",
  36992. height: math.unit(6 + 1/12, "feet"),
  36993. default: true
  36994. },
  36995. ]
  36996. ))
  36997. characterMakers.push(() => makeCharacter(
  36998. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36999. {
  37000. front: {
  37001. height: math.unit(6, "inches"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/tululi/front.svg",
  37005. extra: 1997/1876,
  37006. bottom: 20/2017
  37007. }
  37008. },
  37009. },
  37010. [
  37011. {
  37012. name: "Normal",
  37013. height: math.unit(6, "inches"),
  37014. default: true
  37015. },
  37016. ]
  37017. ))
  37018. characterMakers.push(() => makeCharacter(
  37019. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37020. {
  37021. front: {
  37022. height: math.unit(4 + 1/12, "feet"),
  37023. name: "Front",
  37024. image: {
  37025. source: "./media/characters/star/front.svg",
  37026. extra: 1493/1189,
  37027. bottom: 48/1541
  37028. }
  37029. },
  37030. },
  37031. [
  37032. {
  37033. name: "Normal",
  37034. height: math.unit(4 + 1/12, "feet"),
  37035. default: true
  37036. },
  37037. ]
  37038. ))
  37039. characterMakers.push(() => makeCharacter(
  37040. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37041. {
  37042. front: {
  37043. height: math.unit(6 + 3/12, "feet"),
  37044. name: "Front",
  37045. image: {
  37046. source: "./media/characters/comet/front.svg",
  37047. extra: 1681/1462,
  37048. bottom: 26/1707
  37049. }
  37050. },
  37051. },
  37052. [
  37053. {
  37054. name: "Normal",
  37055. height: math.unit(6 + 3/12, "feet"),
  37056. default: true
  37057. },
  37058. ]
  37059. ))
  37060. characterMakers.push(() => makeCharacter(
  37061. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37062. {
  37063. front: {
  37064. height: math.unit(950, "feet"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/vortex/front.svg",
  37068. extra: 1497/1434,
  37069. bottom: 56/1553
  37070. }
  37071. },
  37072. maw: {
  37073. height: math.unit(285, "feet"),
  37074. name: "Maw",
  37075. image: {
  37076. source: "./media/characters/vortex/maw.svg"
  37077. }
  37078. },
  37079. },
  37080. [
  37081. {
  37082. name: "Macro",
  37083. height: math.unit(950, "feet"),
  37084. default: true
  37085. },
  37086. ]
  37087. ))
  37088. characterMakers.push(() => makeCharacter(
  37089. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37090. {
  37091. front: {
  37092. height: math.unit(600, "feet"),
  37093. weight: math.unit(0.02, "grams"),
  37094. name: "Front",
  37095. image: {
  37096. source: "./media/characters/doodle/front.svg",
  37097. extra: 1578/1413,
  37098. bottom: 37/1615
  37099. }
  37100. },
  37101. },
  37102. [
  37103. {
  37104. name: "Macro",
  37105. height: math.unit(600, "feet"),
  37106. default: true
  37107. },
  37108. ]
  37109. ))
  37110. characterMakers.push(() => makeCharacter(
  37111. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37112. {
  37113. front: {
  37114. height: math.unit(6 + 6/12, "feet"),
  37115. name: "Front",
  37116. image: {
  37117. source: "./media/characters/jai/front.svg",
  37118. extra: 1645/1534,
  37119. bottom: 115/1760
  37120. }
  37121. },
  37122. },
  37123. [
  37124. {
  37125. name: "Normal",
  37126. height: math.unit(6 + 6/12, "feet"),
  37127. default: true
  37128. },
  37129. ]
  37130. ))
  37131. characterMakers.push(() => makeCharacter(
  37132. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37133. {
  37134. front: {
  37135. height: math.unit(6 + 8/12, "feet"),
  37136. name: "Front",
  37137. image: {
  37138. source: "./media/characters/pixel/front.svg",
  37139. extra: 1900/1735,
  37140. bottom: 63/1963
  37141. }
  37142. },
  37143. },
  37144. [
  37145. {
  37146. name: "Normal",
  37147. height: math.unit(6 + 8/12, "feet"),
  37148. default: true
  37149. },
  37150. ]
  37151. ))
  37152. characterMakers.push(() => makeCharacter(
  37153. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37154. {
  37155. back: {
  37156. height: math.unit(4 + 1/12, "feet"),
  37157. weight: math.unit(75, "lb"),
  37158. name: "Back",
  37159. image: {
  37160. source: "./media/characters/rhett/back.svg",
  37161. extra: 930/878,
  37162. bottom: 25/955
  37163. }
  37164. },
  37165. front: {
  37166. height: math.unit(4 + 1/12, "feet"),
  37167. weight: math.unit(75, "lb"),
  37168. name: "Front",
  37169. image: {
  37170. source: "./media/characters/rhett/front.svg",
  37171. extra: 1682/1586,
  37172. bottom: 92/1774
  37173. }
  37174. },
  37175. },
  37176. [
  37177. {
  37178. name: "Micro",
  37179. height: math.unit(8, "inches")
  37180. },
  37181. {
  37182. name: "Tiny",
  37183. height: math.unit(2, "feet")
  37184. },
  37185. {
  37186. name: "Normal",
  37187. height: math.unit(4 + 1/12, "feet"),
  37188. default: true
  37189. },
  37190. ]
  37191. ))
  37192. characterMakers.push(() => makeCharacter(
  37193. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37194. {
  37195. front: {
  37196. height: math.unit(3 + 3/12, "feet"),
  37197. name: "Front",
  37198. image: {
  37199. source: "./media/characters/penny/front.svg",
  37200. extra: 1406/1311,
  37201. bottom: 26/1432
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(3 + 3/12, "feet"),
  37209. default: true
  37210. },
  37211. ]
  37212. ))
  37213. characterMakers.push(() => makeCharacter(
  37214. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37215. {
  37216. front: {
  37217. height: math.unit(4 + 11/12, "feet"),
  37218. name: "Front",
  37219. image: {
  37220. source: "./media/characters/monty/front.svg",
  37221. extra: 1479/1209,
  37222. bottom: 0/1479
  37223. }
  37224. },
  37225. },
  37226. [
  37227. {
  37228. name: "Normal",
  37229. height: math.unit(4 + 11/12, "feet"),
  37230. default: true
  37231. },
  37232. ]
  37233. ))
  37234. characterMakers.push(() => makeCharacter(
  37235. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37236. {
  37237. front: {
  37238. height: math.unit(8 + 4/12, "feet"),
  37239. name: "Front",
  37240. image: {
  37241. source: "./media/characters/sterling/front.svg",
  37242. extra: 1420/1236,
  37243. bottom: 27/1447
  37244. }
  37245. },
  37246. },
  37247. [
  37248. {
  37249. name: "Normal",
  37250. height: math.unit(8 + 4/12, "feet"),
  37251. default: true
  37252. },
  37253. ]
  37254. ))
  37255. characterMakers.push(() => makeCharacter(
  37256. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37257. {
  37258. front: {
  37259. height: math.unit(15, "feet"),
  37260. name: "Front",
  37261. image: {
  37262. source: "./media/characters/marble/front.svg",
  37263. extra: 973/937,
  37264. bottom: 32/1005
  37265. }
  37266. },
  37267. },
  37268. [
  37269. {
  37270. name: "Normal",
  37271. height: math.unit(15, "feet"),
  37272. default: true
  37273. },
  37274. ]
  37275. ))
  37276. characterMakers.push(() => makeCharacter(
  37277. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37278. {
  37279. front: {
  37280. height: math.unit(3, "inches"),
  37281. name: "Front",
  37282. image: {
  37283. source: "./media/characters/powder/front.svg",
  37284. extra: 1504/1334,
  37285. bottom: 518/2022
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(3, "inches"),
  37293. default: true
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37299. {
  37300. front: {
  37301. height: math.unit(4 + 5/12, "feet"),
  37302. name: "Front",
  37303. image: {
  37304. source: "./media/characters/joey-raccoon/front.svg",
  37305. extra: 1273/1197,
  37306. bottom: 0/1273
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(4 + 5/12, "feet"),
  37314. default: true
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37320. {
  37321. front: {
  37322. height: math.unit(8 + 4/12, "feet"),
  37323. name: "Front",
  37324. image: {
  37325. source: "./media/characters/vick/front.svg",
  37326. extra: 2187/2118,
  37327. bottom: 47/2234
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(8 + 4/12, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(5 + 5/12, "feet"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/mitsy/front.svg",
  37347. extra: 1842/1695,
  37348. bottom: 0/1842
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(5 + 5/12, "feet"),
  37356. default: true
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37362. {
  37363. front: {
  37364. height: math.unit(6 + 3/12, "feet"),
  37365. name: "Front",
  37366. image: {
  37367. source: "./media/characters/silvy/front.svg",
  37368. extra: 1995/1836,
  37369. bottom: 225/2220
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Normal",
  37376. height: math.unit(6 + 3/12, "feet"),
  37377. default: true
  37378. },
  37379. ]
  37380. ))
  37381. characterMakers.push(() => makeCharacter(
  37382. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37383. {
  37384. front: {
  37385. height: math.unit(3 + 8/12, "feet"),
  37386. name: "Front",
  37387. image: {
  37388. source: "./media/characters/rodney/front.svg",
  37389. extra: 1956/1747,
  37390. bottom: 31/1987
  37391. }
  37392. },
  37393. frontDressed: {
  37394. height: math.unit(2.9, "feet"),
  37395. name: "Front (Dressed)",
  37396. image: {
  37397. source: "./media/characters/rodney/front-dressed.svg",
  37398. extra: 1382/1241,
  37399. bottom: 385/1767
  37400. }
  37401. },
  37402. },
  37403. [
  37404. {
  37405. name: "Normal",
  37406. height: math.unit(3 + 8/12, "feet"),
  37407. default: true
  37408. },
  37409. ]
  37410. ))
  37411. characterMakers.push(() => makeCharacter(
  37412. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37413. {
  37414. front: {
  37415. height: math.unit(5 + 9/12, "feet"),
  37416. weight: math.unit(194, "lbs"),
  37417. name: "Front",
  37418. image: {
  37419. source: "./media/characters/zakail-sudekai/front.svg",
  37420. extra: 2696/2533,
  37421. bottom: 248/2944
  37422. }
  37423. },
  37424. maw: {
  37425. height: math.unit(1.35, "feet"),
  37426. name: "Maw",
  37427. image: {
  37428. source: "./media/characters/zakail-sudekai/maw.svg"
  37429. }
  37430. },
  37431. },
  37432. [
  37433. {
  37434. name: "Normal",
  37435. height: math.unit(5 + 9/12, "feet"),
  37436. default: true
  37437. },
  37438. ]
  37439. ))
  37440. characterMakers.push(() => makeCharacter(
  37441. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37442. {
  37443. front: {
  37444. height: math.unit(8 + 4/12, "feet"),
  37445. weight: math.unit(1200, "lb"),
  37446. name: "Front",
  37447. image: {
  37448. source: "./media/characters/eleanor/front.svg",
  37449. extra: 1226/1192,
  37450. bottom: 52/1278
  37451. }
  37452. },
  37453. back: {
  37454. height: math.unit(8 + 4/12, "feet"),
  37455. weight: math.unit(1200, "lb"),
  37456. name: "Back",
  37457. image: {
  37458. source: "./media/characters/eleanor/back.svg",
  37459. extra: 1242/1184,
  37460. bottom: 60/1302
  37461. }
  37462. },
  37463. head: {
  37464. height: math.unit(2.62, "feet"),
  37465. name: "Head",
  37466. image: {
  37467. source: "./media/characters/eleanor/head.svg"
  37468. }
  37469. },
  37470. },
  37471. [
  37472. {
  37473. name: "Normal",
  37474. height: math.unit(8 + 4/12, "feet"),
  37475. default: true
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37481. {
  37482. front: {
  37483. height: math.unit(8 + 4/12, "feet"),
  37484. weight: math.unit(750, "lb"),
  37485. name: "Front",
  37486. image: {
  37487. source: "./media/characters/tanya/front.svg",
  37488. extra: 1749/1615,
  37489. bottom: 33/1782
  37490. }
  37491. },
  37492. },
  37493. [
  37494. {
  37495. name: "Normal",
  37496. height: math.unit(8 + 4/12, "feet"),
  37497. default: true
  37498. },
  37499. ]
  37500. ))
  37501. characterMakers.push(() => makeCharacter(
  37502. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37503. {
  37504. front: {
  37505. height: math.unit(5, "feet"),
  37506. weight: math.unit(225, "lb"),
  37507. name: "Front",
  37508. image: {
  37509. source: "./media/characters/cindy/front.svg",
  37510. extra: 1320/1250,
  37511. bottom: 42/1362
  37512. }
  37513. },
  37514. frontDressed: {
  37515. height: math.unit(5, "feet"),
  37516. weight: math.unit(225, "lb"),
  37517. name: "Front (Dressed)",
  37518. image: {
  37519. source: "./media/characters/cindy/front-dressed.svg",
  37520. extra: 1320/1250,
  37521. bottom: 42/1362
  37522. }
  37523. },
  37524. back: {
  37525. height: math.unit(5, "feet"),
  37526. weight: math.unit(225, "lb"),
  37527. name: "Back",
  37528. image: {
  37529. source: "./media/characters/cindy/back.svg",
  37530. extra: 1384/1346,
  37531. bottom: 14/1398
  37532. }
  37533. },
  37534. },
  37535. [
  37536. {
  37537. name: "Normal",
  37538. height: math.unit(5, "feet"),
  37539. default: true
  37540. },
  37541. ]
  37542. ))
  37543. characterMakers.push(() => makeCharacter(
  37544. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37545. {
  37546. front: {
  37547. height: math.unit(6 + 9/12, "feet"),
  37548. weight: math.unit(440, "lb"),
  37549. name: "Front",
  37550. image: {
  37551. source: "./media/characters/wilbur-owen/front.svg",
  37552. extra: 1575/1448,
  37553. bottom: 72/1647
  37554. }
  37555. },
  37556. back: {
  37557. height: math.unit(6 + 9/12, "feet"),
  37558. weight: math.unit(440, "lb"),
  37559. name: "Back",
  37560. image: {
  37561. source: "./media/characters/wilbur-owen/back.svg",
  37562. extra: 1578/1445,
  37563. bottom: 36/1614
  37564. }
  37565. },
  37566. },
  37567. [
  37568. {
  37569. name: "Normal",
  37570. height: math.unit(6 + 9/12, "feet"),
  37571. default: true
  37572. },
  37573. ]
  37574. ))
  37575. characterMakers.push(() => makeCharacter(
  37576. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37577. {
  37578. front: {
  37579. height: math.unit(6 + 5/12, "feet"),
  37580. weight: math.unit(650, "lb"),
  37581. name: "Front",
  37582. image: {
  37583. source: "./media/characters/keegan/front.svg",
  37584. extra: 2387/2198,
  37585. bottom: 33/2420
  37586. }
  37587. },
  37588. side: {
  37589. height: math.unit(6 + 5/12, "feet"),
  37590. weight: math.unit(650, "lb"),
  37591. name: "Side",
  37592. image: {
  37593. source: "./media/characters/keegan/side.svg",
  37594. extra: 2390/2202,
  37595. bottom: 47/2437
  37596. }
  37597. },
  37598. back: {
  37599. height: math.unit(6 + 5/12, "feet"),
  37600. weight: math.unit(650, "lb"),
  37601. name: "Back",
  37602. image: {
  37603. source: "./media/characters/keegan/back.svg",
  37604. extra: 2418/2268,
  37605. bottom: 15/2433
  37606. }
  37607. },
  37608. frontSfw: {
  37609. height: math.unit(6 + 5/12, "feet"),
  37610. weight: math.unit(650, "lb"),
  37611. name: "Front (SFW)",
  37612. image: {
  37613. source: "./media/characters/keegan/front-sfw.svg",
  37614. extra: 2387/2198,
  37615. bottom: 33/2420
  37616. }
  37617. },
  37618. beans: {
  37619. height: math.unit(1.85, "feet"),
  37620. name: "Beans",
  37621. image: {
  37622. source: "./media/characters/keegan/beans.svg"
  37623. }
  37624. },
  37625. },
  37626. [
  37627. {
  37628. name: "Normal",
  37629. height: math.unit(6 + 5/12, "feet"),
  37630. default: true
  37631. },
  37632. ]
  37633. ))
  37634. characterMakers.push(() => makeCharacter(
  37635. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37636. {
  37637. front: {
  37638. height: math.unit(9, "feet"),
  37639. name: "Front",
  37640. image: {
  37641. source: "./media/characters/colton/front.svg",
  37642. extra: 1589/1326,
  37643. bottom: 139/1728
  37644. }
  37645. },
  37646. },
  37647. [
  37648. {
  37649. name: "Normal",
  37650. height: math.unit(9, "feet"),
  37651. default: true
  37652. },
  37653. ]
  37654. ))
  37655. characterMakers.push(() => makeCharacter(
  37656. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37657. {
  37658. front: {
  37659. height: math.unit(2 + 9/12, "feet"),
  37660. name: "Front",
  37661. image: {
  37662. source: "./media/characters/bora/front.svg",
  37663. extra: 1265/1250,
  37664. bottom: 24/1289
  37665. }
  37666. },
  37667. },
  37668. [
  37669. {
  37670. name: "Normal",
  37671. height: math.unit(2 + 9/12, "feet"),
  37672. default: true
  37673. },
  37674. ]
  37675. ))
  37676. characterMakers.push(() => makeCharacter(
  37677. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37678. {
  37679. front: {
  37680. height: math.unit(8, "feet"),
  37681. name: "Front",
  37682. image: {
  37683. source: "./media/characters/myu-myu/front.svg",
  37684. extra: 1949/1857,
  37685. bottom: 90/2039
  37686. }
  37687. },
  37688. },
  37689. [
  37690. {
  37691. name: "Normal",
  37692. height: math.unit(8, "feet"),
  37693. default: true
  37694. },
  37695. {
  37696. name: "Big",
  37697. height: math.unit(15, "feet")
  37698. },
  37699. {
  37700. name: "BIG",
  37701. height: math.unit(25, "feet")
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37707. {
  37708. side: {
  37709. height: math.unit(7 + 5/12, "feet"),
  37710. weight: math.unit(2800, "lb"),
  37711. name: "Side",
  37712. image: {
  37713. source: "./media/characters/haloren/side.svg",
  37714. extra: 1793/409,
  37715. bottom: 59/1852
  37716. }
  37717. },
  37718. frontPaw: {
  37719. height: math.unit(2.36, "feet"),
  37720. name: "Front paw",
  37721. image: {
  37722. source: "./media/characters/haloren/front-paw.svg"
  37723. }
  37724. },
  37725. hindPaw: {
  37726. height: math.unit(3.18, "feet"),
  37727. name: "Hind paw",
  37728. image: {
  37729. source: "./media/characters/haloren/hind-paw.svg"
  37730. }
  37731. },
  37732. maw: {
  37733. height: math.unit(5.05, "feet"),
  37734. name: "Maw",
  37735. image: {
  37736. source: "./media/characters/haloren/maw.svg"
  37737. }
  37738. },
  37739. dick: {
  37740. height: math.unit(2.90, "feet"),
  37741. name: "Dick",
  37742. image: {
  37743. source: "./media/characters/haloren/dick.svg"
  37744. }
  37745. },
  37746. },
  37747. [
  37748. {
  37749. name: "Normal",
  37750. height: math.unit(7 + 5/12, "feet"),
  37751. default: true
  37752. },
  37753. {
  37754. name: "Enhanced",
  37755. height: math.unit(14 + 3/12, "feet")
  37756. },
  37757. ]
  37758. ))
  37759. characterMakers.push(() => makeCharacter(
  37760. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37761. {
  37762. front: {
  37763. height: math.unit(171, "cm"),
  37764. name: "Front",
  37765. image: {
  37766. source: "./media/characters/kimmy/front.svg",
  37767. extra: 1491/1435,
  37768. bottom: 53/1544
  37769. }
  37770. },
  37771. },
  37772. [
  37773. {
  37774. name: "Small",
  37775. height: math.unit(9, "cm")
  37776. },
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(171, "cm"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37786. {
  37787. front: {
  37788. height: math.unit(8, "feet"),
  37789. weight: math.unit(300, "lb"),
  37790. name: "Front",
  37791. image: {
  37792. source: "./media/characters/galeboomer/front.svg",
  37793. extra: 4651/4415,
  37794. bottom: 162/4813
  37795. }
  37796. },
  37797. back: {
  37798. height: math.unit(8, "feet"),
  37799. weight: math.unit(300, "lb"),
  37800. name: "Back",
  37801. image: {
  37802. source: "./media/characters/galeboomer/back.svg",
  37803. extra: 4544/4314,
  37804. bottom: 16/4560
  37805. }
  37806. },
  37807. frontAlt: {
  37808. height: math.unit(8, "feet"),
  37809. weight: math.unit(300, "lb"),
  37810. name: "Front (Alt)",
  37811. image: {
  37812. source: "./media/characters/galeboomer/front-alt.svg",
  37813. extra: 4458/4228,
  37814. bottom: 68/4526
  37815. }
  37816. },
  37817. maw: {
  37818. height: math.unit(1.2, "feet"),
  37819. name: "Maw",
  37820. image: {
  37821. source: "./media/characters/galeboomer/maw.svg"
  37822. }
  37823. },
  37824. },
  37825. [
  37826. {
  37827. name: "Normal",
  37828. height: math.unit(8, "feet"),
  37829. default: true
  37830. },
  37831. ]
  37832. ))
  37833. characterMakers.push(() => makeCharacter(
  37834. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37835. {
  37836. front: {
  37837. height: math.unit(5 + 9/12, "feet"),
  37838. weight: math.unit(120, "lb"),
  37839. name: "Front",
  37840. image: {
  37841. source: "./media/characters/chyr/front.svg",
  37842. extra: 1323/1254,
  37843. bottom: 63/1386
  37844. }
  37845. },
  37846. back: {
  37847. height: math.unit(5 + 9/12, "feet"),
  37848. weight: math.unit(120, "lb"),
  37849. name: "Back",
  37850. image: {
  37851. source: "./media/characters/chyr/back.svg",
  37852. extra: 1323/1252,
  37853. bottom: 48/1371
  37854. }
  37855. },
  37856. },
  37857. [
  37858. {
  37859. name: "Normal",
  37860. height: math.unit(5 + 9/12, "feet"),
  37861. default: true
  37862. },
  37863. ]
  37864. ))
  37865. characterMakers.push(() => makeCharacter(
  37866. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37867. {
  37868. front: {
  37869. height: math.unit(7, "feet"),
  37870. weight: math.unit(310, "lb"),
  37871. name: "Front",
  37872. image: {
  37873. source: "./media/characters/solarus/front.svg",
  37874. extra: 2415/2021,
  37875. bottom: 103/2518
  37876. }
  37877. },
  37878. back: {
  37879. height: math.unit(7, "feet"),
  37880. weight: math.unit(310, "lb"),
  37881. name: "Back",
  37882. image: {
  37883. source: "./media/characters/solarus/back.svg",
  37884. extra: 2463/2089,
  37885. bottom: 79/2542
  37886. }
  37887. },
  37888. },
  37889. [
  37890. {
  37891. name: "Normal",
  37892. height: math.unit(7, "feet"),
  37893. default: true
  37894. },
  37895. ]
  37896. ))
  37897. characterMakers.push(() => makeCharacter(
  37898. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37899. {
  37900. front: {
  37901. height: math.unit(16, "feet"),
  37902. name: "Front",
  37903. image: {
  37904. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37905. extra: 1844/1780,
  37906. bottom: 58/1902
  37907. }
  37908. },
  37909. winterCoat: {
  37910. height: math.unit(16, "feet"),
  37911. name: "Winter Coat",
  37912. image: {
  37913. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37914. extra: 1807/1775,
  37915. bottom: 69/1876
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(16, "feet"),
  37923. default: true
  37924. },
  37925. {
  37926. name: "Chicago Size",
  37927. height: math.unit(560, "feet")
  37928. },
  37929. ]
  37930. ))
  37931. characterMakers.push(() => makeCharacter(
  37932. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37933. {
  37934. front: {
  37935. height: math.unit(11 + 6/12, "feet"),
  37936. weight: math.unit(1366, "lb"),
  37937. name: "Front",
  37938. image: {
  37939. source: "./media/characters/lexor/front.svg",
  37940. extra: 1560/1481,
  37941. bottom: 211/1771
  37942. }
  37943. },
  37944. back: {
  37945. height: math.unit(11 + 6/12, "feet"),
  37946. weight: math.unit(1366, "lb"),
  37947. name: "Back",
  37948. image: {
  37949. source: "./media/characters/lexor/back.svg",
  37950. extra: 1614/1533,
  37951. bottom: 76/1690
  37952. }
  37953. },
  37954. maw: {
  37955. height: math.unit(3, "feet"),
  37956. name: "Maw",
  37957. image: {
  37958. source: "./media/characters/lexor/maw.svg"
  37959. }
  37960. },
  37961. dick: {
  37962. height: math.unit(2.59, "feet"),
  37963. name: "Dick",
  37964. image: {
  37965. source: "./media/characters/lexor/dick.svg"
  37966. }
  37967. },
  37968. },
  37969. [
  37970. {
  37971. name: "Normal",
  37972. height: math.unit(11 + 6/12, "feet"),
  37973. default: true
  37974. },
  37975. ]
  37976. ))
  37977. characterMakers.push(() => makeCharacter(
  37978. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37979. {
  37980. front: {
  37981. height: math.unit(5 + 8/12, "feet"),
  37982. name: "Front",
  37983. image: {
  37984. source: "./media/characters/magnum/front.svg",
  37985. extra: 942/855,
  37986. bottom: 26/968
  37987. }
  37988. },
  37989. },
  37990. [
  37991. {
  37992. name: "Normal",
  37993. height: math.unit(5 + 8/12, "feet"),
  37994. default: true
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(18 + 4/12, "feet"),
  38003. weight: math.unit(1500, "kg"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/solas-sharpsman/front.svg",
  38007. extra: 1698/1589,
  38008. bottom: 0/1698
  38009. }
  38010. },
  38011. },
  38012. [
  38013. {
  38014. name: "Normal",
  38015. height: math.unit(18 + 4/12, "feet"),
  38016. default: true
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(5 + 5/12, "feet"),
  38025. weight: math.unit(180, "lb"),
  38026. name: "Front",
  38027. image: {
  38028. source: "./media/characters/october/front.svg",
  38029. extra: 1800/1650,
  38030. bottom: 0/1800
  38031. }
  38032. },
  38033. frontNsfw: {
  38034. height: math.unit(5 + 5/12, "feet"),
  38035. weight: math.unit(180, "lb"),
  38036. name: "Front (NSFW)",
  38037. image: {
  38038. source: "./media/characters/october/front-nsfw.svg",
  38039. extra: 1392/1307,
  38040. bottom: 42/1434
  38041. }
  38042. },
  38043. },
  38044. [
  38045. {
  38046. name: "Normal",
  38047. height: math.unit(5 + 5/12, "feet"),
  38048. default: true
  38049. },
  38050. ]
  38051. ))
  38052. characterMakers.push(() => makeCharacter(
  38053. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38054. {
  38055. front: {
  38056. height: math.unit(8 + 6/12, "feet"),
  38057. name: "Front",
  38058. image: {
  38059. source: "./media/characters/essynkardi/front.svg",
  38060. extra: 1914/1846,
  38061. bottom: 22/1936
  38062. }
  38063. },
  38064. },
  38065. [
  38066. {
  38067. name: "Normal",
  38068. height: math.unit(8 + 6/12, "feet"),
  38069. default: true
  38070. },
  38071. ]
  38072. ))
  38073. characterMakers.push(() => makeCharacter(
  38074. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38075. {
  38076. front: {
  38077. height: math.unit(6 + 6/12, "feet"),
  38078. weight: math.unit(7, "lb"),
  38079. name: "Front",
  38080. image: {
  38081. source: "./media/characters/icky/front.svg",
  38082. extra: 813/782,
  38083. bottom: 66/879
  38084. }
  38085. },
  38086. back: {
  38087. height: math.unit(6 + 6/12, "feet"),
  38088. weight: math.unit(7, "lb"),
  38089. name: "Back",
  38090. image: {
  38091. source: "./media/characters/icky/back.svg",
  38092. extra: 754/735,
  38093. bottom: 56/810
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(6 + 6/12, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(15, "feet"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/rojas/front.svg",
  38113. extra: 1462/1408,
  38114. bottom: 95/1557
  38115. }
  38116. },
  38117. back: {
  38118. height: math.unit(15, "feet"),
  38119. name: "Back",
  38120. image: {
  38121. source: "./media/characters/rojas/back.svg",
  38122. extra: 1023/954,
  38123. bottom: 28/1051
  38124. }
  38125. },
  38126. },
  38127. [
  38128. {
  38129. name: "Normal",
  38130. height: math.unit(15, "feet"),
  38131. default: true
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38137. {
  38138. frontHuman: {
  38139. height: math.unit(5 + 7/12, "feet"),
  38140. name: "Front (Human)",
  38141. image: {
  38142. source: "./media/characters/alek-dryagan/front-human.svg",
  38143. extra: 1687/1667,
  38144. bottom: 69/1756
  38145. }
  38146. },
  38147. backHuman: {
  38148. height: math.unit(5 + 7/12, "feet"),
  38149. name: "Back (Human)",
  38150. image: {
  38151. source: "./media/characters/alek-dryagan/back-human.svg",
  38152. extra: 1670/1649,
  38153. bottom: 65/1735
  38154. }
  38155. },
  38156. frontDemi: {
  38157. height: math.unit(65, "feet"),
  38158. name: "Front (Demi)",
  38159. image: {
  38160. source: "./media/characters/alek-dryagan/front-demi.svg",
  38161. extra: 1669/1642,
  38162. bottom: 49/1718
  38163. }
  38164. },
  38165. backDemi: {
  38166. height: math.unit(65, "feet"),
  38167. name: "Back (Demi)",
  38168. image: {
  38169. source: "./media/characters/alek-dryagan/back-demi.svg",
  38170. extra: 1658/1637,
  38171. bottom: 40/1698
  38172. }
  38173. },
  38174. mawHuman: {
  38175. height: math.unit(0.3, "feet"),
  38176. name: "Maw (Human)",
  38177. image: {
  38178. source: "./media/characters/alek-dryagan/maw-human.svg"
  38179. }
  38180. },
  38181. mawDemi: {
  38182. height: math.unit(3.8, "feet"),
  38183. name: "Maw (Demi)",
  38184. image: {
  38185. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38186. }
  38187. },
  38188. },
  38189. [
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(5 + 7/12, "feet"),
  38193. default: true
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38199. {
  38200. frontHuman: {
  38201. height: math.unit(5 + 2/12, "feet"),
  38202. name: "Front (Human)",
  38203. image: {
  38204. source: "./media/characters/gen/front-human.svg",
  38205. extra: 1627/1538,
  38206. bottom: 71/1698
  38207. }
  38208. },
  38209. backHuman: {
  38210. height: math.unit(5 + 2/12, "feet"),
  38211. name: "Back (Human)",
  38212. image: {
  38213. source: "./media/characters/gen/back-human.svg",
  38214. extra: 1638/1548,
  38215. bottom: 69/1707
  38216. }
  38217. },
  38218. frontDemi: {
  38219. height: math.unit(5 + 2/12, "feet"),
  38220. name: "Front (Demi)",
  38221. image: {
  38222. source: "./media/characters/gen/front-demi.svg",
  38223. extra: 1627/1538,
  38224. bottom: 71/1698
  38225. }
  38226. },
  38227. backDemi: {
  38228. height: math.unit(5 + 2/12, "feet"),
  38229. name: "Back (Demi)",
  38230. image: {
  38231. source: "./media/characters/gen/back-demi.svg",
  38232. extra: 1638/1548,
  38233. bottom: 69/1707
  38234. }
  38235. },
  38236. },
  38237. [
  38238. {
  38239. name: "Normal",
  38240. height: math.unit(5 + 2/12, "feet"),
  38241. default: true
  38242. },
  38243. ]
  38244. ))
  38245. characterMakers.push(() => makeCharacter(
  38246. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38247. {
  38248. frontImp: {
  38249. height: math.unit(1 + 11/12, "feet"),
  38250. name: "Front (Imp)",
  38251. image: {
  38252. source: "./media/characters/max-kobold/front-imp.svg",
  38253. extra: 1238/1134,
  38254. bottom: 81/1319
  38255. }
  38256. },
  38257. backImp: {
  38258. height: math.unit(1 + 11/12, "feet"),
  38259. name: "Back (Imp)",
  38260. image: {
  38261. source: "./media/characters/max-kobold/back-imp.svg",
  38262. extra: 1334/1175,
  38263. bottom: 34/1368
  38264. }
  38265. },
  38266. frontDemi: {
  38267. height: math.unit(5 + 9/12, "feet"),
  38268. name: "Front (Demi)",
  38269. image: {
  38270. source: "./media/characters/max-kobold/front-demi.svg",
  38271. extra: 1715/1685,
  38272. bottom: 54/1769
  38273. }
  38274. },
  38275. backDemi: {
  38276. height: math.unit(5 + 9/12, "feet"),
  38277. name: "Back (Demi)",
  38278. image: {
  38279. source: "./media/characters/max-kobold/back-demi.svg",
  38280. extra: 1752/1729,
  38281. bottom: 41/1793
  38282. }
  38283. },
  38284. handImp: {
  38285. height: math.unit(0.45, "feet"),
  38286. name: "Hand (Imp)",
  38287. image: {
  38288. source: "./media/characters/max-kobold/hand.svg"
  38289. }
  38290. },
  38291. pawImp: {
  38292. height: math.unit(0.46, "feet"),
  38293. name: "Paw (Imp)",
  38294. image: {
  38295. source: "./media/characters/max-kobold/paw.svg"
  38296. }
  38297. },
  38298. handDemi: {
  38299. height: math.unit(0.80, "feet"),
  38300. name: "Hand (Demi)",
  38301. image: {
  38302. source: "./media/characters/max-kobold/hand.svg"
  38303. }
  38304. },
  38305. pawDemi: {
  38306. height: math.unit(1.1, "feet"),
  38307. name: "Paw (Demi)",
  38308. image: {
  38309. source: "./media/characters/max-kobold/paw.svg"
  38310. }
  38311. },
  38312. headImp: {
  38313. height: math.unit(1.33, "feet"),
  38314. name: "Head (Imp)",
  38315. image: {
  38316. source: "./media/characters/max-kobold/head-imp.svg"
  38317. }
  38318. },
  38319. mawImp: {
  38320. height: math.unit(0.75, "feet"),
  38321. name: "Maw (Imp)",
  38322. image: {
  38323. source: "./media/characters/max-kobold/maw-imp.svg"
  38324. }
  38325. },
  38326. mawDemi: {
  38327. height: math.unit(0.42, "feet"),
  38328. name: "Maw (Demi)",
  38329. image: {
  38330. source: "./media/characters/max-kobold/maw-demi.svg"
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Normal",
  38337. height: math.unit(1 + 11/12, "feet"),
  38338. default: true
  38339. },
  38340. ]
  38341. ))
  38342. characterMakers.push(() => makeCharacter(
  38343. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38344. {
  38345. front: {
  38346. height: math.unit(7 + 5/12, "feet"),
  38347. name: "Front",
  38348. image: {
  38349. source: "./media/characters/carbon/front.svg",
  38350. extra: 1754/1689,
  38351. bottom: 65/1819
  38352. }
  38353. },
  38354. back: {
  38355. height: math.unit(7 + 5/12, "feet"),
  38356. name: "Back",
  38357. image: {
  38358. source: "./media/characters/carbon/back.svg",
  38359. extra: 1762/1695,
  38360. bottom: 24/1786
  38361. }
  38362. },
  38363. frontGigantamax: {
  38364. height: math.unit(150, "feet"),
  38365. name: "Front (Gigantamax)",
  38366. image: {
  38367. source: "./media/characters/carbon/front-gigantamax.svg",
  38368. extra: 1826/1669,
  38369. bottom: 59/1885
  38370. }
  38371. },
  38372. backGigantamax: {
  38373. height: math.unit(150, "feet"),
  38374. name: "Back (Gigantamax)",
  38375. image: {
  38376. source: "./media/characters/carbon/back-gigantamax.svg",
  38377. extra: 1796/1653,
  38378. bottom: 53/1849
  38379. }
  38380. },
  38381. maw: {
  38382. height: math.unit(0.48, "feet"),
  38383. name: "Maw",
  38384. image: {
  38385. source: "./media/characters/carbon/maw.svg"
  38386. }
  38387. },
  38388. mawGigantamax: {
  38389. height: math.unit(7.5, "feet"),
  38390. name: "Maw (Gigantamax)",
  38391. image: {
  38392. source: "./media/characters/carbon/maw-gigantamax.svg"
  38393. }
  38394. },
  38395. },
  38396. [
  38397. {
  38398. name: "Normal",
  38399. height: math.unit(7 + 5/12, "feet"),
  38400. default: true
  38401. },
  38402. ]
  38403. ))
  38404. characterMakers.push(() => makeCharacter(
  38405. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38406. {
  38407. front: {
  38408. height: math.unit(6, "feet"),
  38409. name: "Front",
  38410. image: {
  38411. source: "./media/characters/maverick/front.svg",
  38412. extra: 1672/1661,
  38413. bottom: 85/1757
  38414. }
  38415. },
  38416. back: {
  38417. height: math.unit(6, "feet"),
  38418. name: "Back",
  38419. image: {
  38420. source: "./media/characters/maverick/back.svg",
  38421. extra: 1642/1631,
  38422. bottom: 38/1680
  38423. }
  38424. },
  38425. },
  38426. [
  38427. {
  38428. name: "Normal",
  38429. height: math.unit(6, "feet"),
  38430. default: true
  38431. },
  38432. ]
  38433. ))
  38434. characterMakers.push(() => makeCharacter(
  38435. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38436. {
  38437. front: {
  38438. height: math.unit(15, "feet"),
  38439. weight: math.unit(615, "lb"),
  38440. name: "Front",
  38441. image: {
  38442. source: "./media/characters/grockle/front.svg",
  38443. extra: 1535/1427,
  38444. bottom: 56/1591
  38445. }
  38446. },
  38447. },
  38448. [
  38449. {
  38450. name: "Normal",
  38451. height: math.unit(15, "feet"),
  38452. default: true
  38453. },
  38454. {
  38455. name: "Large",
  38456. height: math.unit(150, "feet")
  38457. },
  38458. {
  38459. name: "Macro",
  38460. height: math.unit(1876, "feet")
  38461. },
  38462. {
  38463. name: "Mega Macro",
  38464. height: math.unit(121940, "feet")
  38465. },
  38466. {
  38467. name: "Giga Macro",
  38468. height: math.unit(750, "km")
  38469. },
  38470. {
  38471. name: "Tera Macro",
  38472. height: math.unit(750000, "km")
  38473. },
  38474. {
  38475. name: "Galactic",
  38476. height: math.unit(1.4e5, "km")
  38477. },
  38478. {
  38479. name: "Godlike",
  38480. height: math.unit(9.8e280, "galaxies")
  38481. },
  38482. ]
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38486. {
  38487. front: {
  38488. height: math.unit(11, "meters"),
  38489. weight: math.unit(20, "tonnes"),
  38490. name: "Front",
  38491. image: {
  38492. source: "./media/characters/alistair/front.svg",
  38493. extra: 1265/1009,
  38494. bottom: 93/1358
  38495. }
  38496. },
  38497. },
  38498. [
  38499. {
  38500. name: "Normal",
  38501. height: math.unit(11, "meters"),
  38502. default: true
  38503. },
  38504. ]
  38505. ))
  38506. characterMakers.push(() => makeCharacter(
  38507. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38508. {
  38509. front: {
  38510. height: math.unit(5 + 8/12, "feet"),
  38511. name: "Front",
  38512. image: {
  38513. source: "./media/characters/haruka/front.svg",
  38514. extra: 2012/1952,
  38515. bottom: 0/2012
  38516. }
  38517. },
  38518. },
  38519. [
  38520. {
  38521. name: "Normal",
  38522. height: math.unit(5 + 8/12, "feet"),
  38523. default: true
  38524. },
  38525. ]
  38526. ))
  38527. characterMakers.push(() => makeCharacter(
  38528. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38529. {
  38530. back: {
  38531. height: math.unit(9, "feet"),
  38532. name: "Back",
  38533. image: {
  38534. source: "./media/characters/vivian-sylveon/back.svg",
  38535. extra: 1853/1714,
  38536. bottom: 0/1853
  38537. }
  38538. },
  38539. },
  38540. [
  38541. {
  38542. name: "Normal",
  38543. height: math.unit(9, "feet"),
  38544. default: true
  38545. },
  38546. {
  38547. name: "Macro",
  38548. height: math.unit(500, "feet")
  38549. },
  38550. {
  38551. name: "Megamacro",
  38552. height: math.unit(600, "miles")
  38553. },
  38554. {
  38555. name: "Gigamacro",
  38556. height: math.unit(30000, "miles")
  38557. },
  38558. ]
  38559. ))
  38560. characterMakers.push(() => makeCharacter(
  38561. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38562. {
  38563. anthro: {
  38564. height: math.unit(5 + 10/12, "feet"),
  38565. weight: math.unit(100, "lb"),
  38566. name: "Anthro",
  38567. image: {
  38568. source: "./media/characters/daiki/anthro.svg",
  38569. extra: 1115/1027,
  38570. bottom: 69/1184
  38571. }
  38572. },
  38573. feral: {
  38574. height: math.unit(200, "feet"),
  38575. name: "Feral",
  38576. image: {
  38577. source: "./media/characters/daiki/feral.svg",
  38578. extra: 1256/313,
  38579. bottom: 39/1295
  38580. }
  38581. },
  38582. feralHead: {
  38583. height: math.unit(171, "feet"),
  38584. name: "Feral Head",
  38585. image: {
  38586. source: "./media/characters/daiki/feral-head.svg"
  38587. }
  38588. },
  38589. manaDragon: {
  38590. height: math.unit(170, "meters"),
  38591. name: "Mana-dragon",
  38592. image: {
  38593. source: "./media/characters/daiki/mana-dragon.svg",
  38594. extra: 763/420,
  38595. bottom: 97/860
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(5 + 10/12, "feet"),
  38603. default: true
  38604. },
  38605. ]
  38606. ))
  38607. characterMakers.push(() => makeCharacter(
  38608. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38609. {
  38610. fullyEquippedFront: {
  38611. height: math.unit(3 + 1/12, "feet"),
  38612. weight: math.unit(24, "lb"),
  38613. name: "Fully Equipped (Front)",
  38614. image: {
  38615. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38616. extra: 687/605,
  38617. bottom: 18/705
  38618. }
  38619. },
  38620. fullyEquippedBack: {
  38621. height: math.unit(3 + 1/12, "feet"),
  38622. weight: math.unit(24, "lb"),
  38623. name: "Fully Equipped (Back)",
  38624. image: {
  38625. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38626. extra: 689/590,
  38627. bottom: 18/707
  38628. }
  38629. },
  38630. dailyWear: {
  38631. height: math.unit(3 + 1/12, "feet"),
  38632. weight: math.unit(24, "lb"),
  38633. name: "Daily Wear",
  38634. image: {
  38635. source: "./media/characters/tea-spot/daily-wear.svg",
  38636. extra: 701/620,
  38637. bottom: 21/722
  38638. }
  38639. },
  38640. maidWork: {
  38641. height: math.unit(3 + 1/12, "feet"),
  38642. weight: math.unit(24, "lb"),
  38643. name: "Maid Work",
  38644. image: {
  38645. source: "./media/characters/tea-spot/maid-work.svg",
  38646. extra: 693/609,
  38647. bottom: 15/708
  38648. }
  38649. },
  38650. },
  38651. [
  38652. {
  38653. name: "Normal",
  38654. height: math.unit(3 + 1/12, "feet"),
  38655. default: true
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38661. {
  38662. front: {
  38663. height: math.unit(175, "cm"),
  38664. weight: math.unit(75, "kg"),
  38665. name: "Front",
  38666. image: {
  38667. source: "./media/characters/chee/front.svg",
  38668. extra: 1796/1740,
  38669. bottom: 40/1836
  38670. }
  38671. },
  38672. },
  38673. [
  38674. {
  38675. name: "Micro-Micro",
  38676. height: math.unit(1, "nm")
  38677. },
  38678. {
  38679. name: "Micro-erst",
  38680. height: math.unit(1, "micrometer")
  38681. },
  38682. {
  38683. name: "Micro-er",
  38684. height: math.unit(1, "cm")
  38685. },
  38686. {
  38687. name: "Normal",
  38688. height: math.unit(175, "cm"),
  38689. default: true
  38690. },
  38691. {
  38692. name: "Macro",
  38693. height: math.unit(100, "m")
  38694. },
  38695. {
  38696. name: "Macro-er",
  38697. height: math.unit(1, "km")
  38698. },
  38699. {
  38700. name: "Macro-erst",
  38701. height: math.unit(10, "km")
  38702. },
  38703. {
  38704. name: "Macro-Macro",
  38705. height: math.unit(100, "km")
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38711. {
  38712. front: {
  38713. height: math.unit(11 + 9/12, "feet"),
  38714. weight: math.unit(935, "lb"),
  38715. name: "Front",
  38716. image: {
  38717. source: "./media/characters/kingsley/front.svg",
  38718. extra: 1803/1674,
  38719. bottom: 127/1930
  38720. }
  38721. },
  38722. frontNude: {
  38723. height: math.unit(11 + 9/12, "feet"),
  38724. weight: math.unit(935, "lb"),
  38725. name: "Front (Nude)",
  38726. image: {
  38727. source: "./media/characters/kingsley/front-nude.svg",
  38728. extra: 1803/1674,
  38729. bottom: 127/1930
  38730. }
  38731. },
  38732. },
  38733. [
  38734. {
  38735. name: "Normal",
  38736. height: math.unit(11 + 9/12, "feet"),
  38737. default: true
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38743. {
  38744. side: {
  38745. height: math.unit(9, "feet"),
  38746. name: "Side",
  38747. image: {
  38748. source: "./media/characters/rymel/side.svg",
  38749. extra: 792/469,
  38750. bottom: 121/913
  38751. }
  38752. },
  38753. maw: {
  38754. height: math.unit(2.4, "meters"),
  38755. name: "Maw",
  38756. image: {
  38757. source: "./media/characters/rymel/maw.svg"
  38758. }
  38759. },
  38760. },
  38761. [
  38762. {
  38763. name: "House Drake",
  38764. height: math.unit(2, "feet")
  38765. },
  38766. {
  38767. name: "Reduced",
  38768. height: math.unit(4.5, "feet")
  38769. },
  38770. {
  38771. name: "Normal",
  38772. height: math.unit(9, "feet"),
  38773. default: true
  38774. },
  38775. ]
  38776. ))
  38777. characterMakers.push(() => makeCharacter(
  38778. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38779. {
  38780. front: {
  38781. height: math.unit(1.74, "meters"),
  38782. weight: math.unit(55, "kg"),
  38783. name: "Front",
  38784. image: {
  38785. source: "./media/characters/rubus/front.svg",
  38786. extra: 1894/1742,
  38787. bottom: 44/1938
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(1.74, "meters"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38801. {
  38802. front: {
  38803. height: math.unit(5 + 2/12, "feet"),
  38804. weight: math.unit(112, "lb"),
  38805. name: "Front",
  38806. image: {
  38807. source: "./media/characters/cassie-kingston/front.svg",
  38808. extra: 1438/1390,
  38809. bottom: 47/1485
  38810. }
  38811. },
  38812. },
  38813. [
  38814. {
  38815. name: "Normal",
  38816. height: math.unit(5 + 2/12, "feet"),
  38817. default: true
  38818. },
  38819. {
  38820. name: "Macro",
  38821. height: math.unit(128, "feet")
  38822. },
  38823. {
  38824. name: "Megamacro",
  38825. height: math.unit(2.56, "miles")
  38826. },
  38827. ]
  38828. ))
  38829. characterMakers.push(() => makeCharacter(
  38830. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38831. {
  38832. front: {
  38833. height: math.unit(7, "feet"),
  38834. name: "Front",
  38835. image: {
  38836. source: "./media/characters/fox/front.svg",
  38837. extra: 1798/1703,
  38838. bottom: 55/1853
  38839. }
  38840. },
  38841. back: {
  38842. height: math.unit(7, "feet"),
  38843. name: "Back",
  38844. image: {
  38845. source: "./media/characters/fox/back.svg",
  38846. extra: 1748/1649,
  38847. bottom: 32/1780
  38848. }
  38849. },
  38850. head: {
  38851. height: math.unit(1.95, "feet"),
  38852. name: "Head",
  38853. image: {
  38854. source: "./media/characters/fox/head.svg"
  38855. }
  38856. },
  38857. dick: {
  38858. height: math.unit(1.33, "feet"),
  38859. name: "Dick",
  38860. image: {
  38861. source: "./media/characters/fox/dick.svg"
  38862. }
  38863. },
  38864. foot: {
  38865. height: math.unit(1, "feet"),
  38866. name: "Foot",
  38867. image: {
  38868. source: "./media/characters/fox/foot.svg"
  38869. }
  38870. },
  38871. paw: {
  38872. height: math.unit(0.92, "feet"),
  38873. name: "Paw",
  38874. image: {
  38875. source: "./media/characters/fox/paw.svg"
  38876. }
  38877. },
  38878. },
  38879. [
  38880. {
  38881. name: "Small",
  38882. height: math.unit(3, "inches")
  38883. },
  38884. {
  38885. name: "\"Realistic\"",
  38886. height: math.unit(7, "feet")
  38887. },
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(150, "feet"),
  38891. default: true
  38892. },
  38893. {
  38894. name: "BIG",
  38895. height: math.unit(1200, "feet")
  38896. },
  38897. {
  38898. name: "👀",
  38899. height: math.unit(5, "miles")
  38900. },
  38901. {
  38902. name: "👀👀👀",
  38903. height: math.unit(64, "miles")
  38904. },
  38905. ]
  38906. ))
  38907. characterMakers.push(() => makeCharacter(
  38908. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38909. {
  38910. front: {
  38911. height: math.unit(625, "feet"),
  38912. name: "Front",
  38913. image: {
  38914. source: "./media/characters/asonja-rossa/front.svg",
  38915. extra: 1833/1686,
  38916. bottom: 24/1857
  38917. }
  38918. },
  38919. back: {
  38920. height: math.unit(625, "feet"),
  38921. name: "Back",
  38922. image: {
  38923. source: "./media/characters/asonja-rossa/back.svg",
  38924. extra: 1852/1753,
  38925. bottom: 26/1878
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Macro",
  38932. height: math.unit(625, "feet"),
  38933. default: true
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38939. {
  38940. side: {
  38941. height: math.unit(8, "feet"),
  38942. name: "Side",
  38943. image: {
  38944. source: "./media/characters/rezukii/side.svg",
  38945. extra: 979/542,
  38946. bottom: 87/1066
  38947. }
  38948. },
  38949. sitting: {
  38950. height: math.unit(14.6, "feet"),
  38951. name: "Sitting",
  38952. image: {
  38953. source: "./media/characters/rezukii/sitting.svg",
  38954. extra: 1023/813,
  38955. bottom: 45/1068
  38956. }
  38957. },
  38958. },
  38959. [
  38960. {
  38961. name: "Tiny",
  38962. height: math.unit(2, "feet")
  38963. },
  38964. {
  38965. name: "Smol",
  38966. height: math.unit(4, "feet")
  38967. },
  38968. {
  38969. name: "Normal",
  38970. height: math.unit(8, "feet"),
  38971. default: true
  38972. },
  38973. {
  38974. name: "Big",
  38975. height: math.unit(12, "feet")
  38976. },
  38977. {
  38978. name: "Macro",
  38979. height: math.unit(30, "feet")
  38980. },
  38981. ]
  38982. ))
  38983. characterMakers.push(() => makeCharacter(
  38984. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38985. {
  38986. front: {
  38987. height: math.unit(14, "feet"),
  38988. weight: math.unit(9.5, "tonnes"),
  38989. name: "Front",
  38990. image: {
  38991. source: "./media/characters/dawnheart/front.svg",
  38992. extra: 2792/2675,
  38993. bottom: 64/2856
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Normal",
  39000. height: math.unit(14, "feet"),
  39001. default: true
  39002. },
  39003. ]
  39004. ))
  39005. characterMakers.push(() => makeCharacter(
  39006. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39007. {
  39008. front: {
  39009. height: math.unit(1.7, "m"),
  39010. name: "Front",
  39011. image: {
  39012. source: "./media/characters/gladi/front.svg",
  39013. extra: 1460/1362,
  39014. bottom: 19/1479
  39015. }
  39016. },
  39017. back: {
  39018. height: math.unit(1.7, "m"),
  39019. name: "Back",
  39020. image: {
  39021. source: "./media/characters/gladi/back.svg",
  39022. extra: 1459/1357,
  39023. bottom: 12/1471
  39024. }
  39025. },
  39026. feral: {
  39027. height: math.unit(2.05, "m"),
  39028. name: "Feral",
  39029. image: {
  39030. source: "./media/characters/gladi/feral.svg",
  39031. extra: 821/557,
  39032. bottom: 91/912
  39033. }
  39034. },
  39035. },
  39036. [
  39037. {
  39038. name: "Shortest",
  39039. height: math.unit(70, "cm")
  39040. },
  39041. {
  39042. name: "Normal",
  39043. height: math.unit(1.7, "m")
  39044. },
  39045. {
  39046. name: "Macro",
  39047. height: math.unit(10, "m"),
  39048. default: true
  39049. },
  39050. {
  39051. name: "Tallest",
  39052. height: math.unit(200, "m")
  39053. },
  39054. ]
  39055. ))
  39056. characterMakers.push(() => makeCharacter(
  39057. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39058. {
  39059. front: {
  39060. height: math.unit(5 + 7/12, "feet"),
  39061. weight: math.unit(2, "tons"),
  39062. name: "Front",
  39063. image: {
  39064. source: "./media/characters/erdno/front.svg",
  39065. extra: 1234/1129,
  39066. bottom: 35/1269
  39067. }
  39068. },
  39069. angled: {
  39070. height: math.unit(5 + 7/12, "feet"),
  39071. weight: math.unit(2, "tons"),
  39072. name: "Angled",
  39073. image: {
  39074. source: "./media/characters/erdno/angled.svg",
  39075. extra: 1185/1139,
  39076. bottom: 36/1221
  39077. }
  39078. },
  39079. side: {
  39080. height: math.unit(5 + 7/12, "feet"),
  39081. weight: math.unit(2, "tons"),
  39082. name: "Side",
  39083. image: {
  39084. source: "./media/characters/erdno/side.svg",
  39085. extra: 1191/1144,
  39086. bottom: 40/1231
  39087. }
  39088. },
  39089. back: {
  39090. height: math.unit(5 + 7/12, "feet"),
  39091. weight: math.unit(2, "tons"),
  39092. name: "Back",
  39093. image: {
  39094. source: "./media/characters/erdno/back.svg",
  39095. extra: 1202/1146,
  39096. bottom: 17/1219
  39097. }
  39098. },
  39099. frontNsfw: {
  39100. height: math.unit(5 + 7/12, "feet"),
  39101. weight: math.unit(2, "tons"),
  39102. name: "Front (NSFW)",
  39103. image: {
  39104. source: "./media/characters/erdno/front-nsfw.svg",
  39105. extra: 1234/1129,
  39106. bottom: 35/1269
  39107. }
  39108. },
  39109. angledNsfw: {
  39110. height: math.unit(5 + 7/12, "feet"),
  39111. weight: math.unit(2, "tons"),
  39112. name: "Angled (NSFW)",
  39113. image: {
  39114. source: "./media/characters/erdno/angled-nsfw.svg",
  39115. extra: 1185/1139,
  39116. bottom: 36/1221
  39117. }
  39118. },
  39119. sideNsfw: {
  39120. height: math.unit(5 + 7/12, "feet"),
  39121. weight: math.unit(2, "tons"),
  39122. name: "Side (NSFW)",
  39123. image: {
  39124. source: "./media/characters/erdno/side-nsfw.svg",
  39125. extra: 1191/1144,
  39126. bottom: 40/1231
  39127. }
  39128. },
  39129. backNsfw: {
  39130. height: math.unit(5 + 7/12, "feet"),
  39131. weight: math.unit(2, "tons"),
  39132. name: "Back (NSFW)",
  39133. image: {
  39134. source: "./media/characters/erdno/back-nsfw.svg",
  39135. extra: 1202/1146,
  39136. bottom: 17/1219
  39137. }
  39138. },
  39139. frontHyper: {
  39140. height: math.unit(5 + 7/12, "feet"),
  39141. weight: math.unit(2, "tons"),
  39142. name: "Front (Hyper)",
  39143. image: {
  39144. source: "./media/characters/erdno/front-hyper.svg",
  39145. extra: 1298/1136,
  39146. bottom: 35/1333
  39147. }
  39148. },
  39149. },
  39150. [
  39151. {
  39152. name: "Normal",
  39153. height: math.unit(5 + 7/12, "feet"),
  39154. default: true
  39155. },
  39156. {
  39157. name: "Big",
  39158. height: math.unit(5.7, "meters")
  39159. },
  39160. {
  39161. name: "Macro",
  39162. height: math.unit(5.7, "kilometers")
  39163. },
  39164. {
  39165. name: "Megamacro",
  39166. height: math.unit(5.7, "earths")
  39167. },
  39168. ]
  39169. ))
  39170. characterMakers.push(() => makeCharacter(
  39171. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39172. {
  39173. front: {
  39174. height: math.unit(5 + 10/12, "feet"),
  39175. weight: math.unit(150, "lb"),
  39176. name: "Front",
  39177. image: {
  39178. source: "./media/characters/jamie/front.svg",
  39179. extra: 1908/1768,
  39180. bottom: 19/1927
  39181. }
  39182. },
  39183. },
  39184. [
  39185. {
  39186. name: "Minimum",
  39187. height: math.unit(2, "cm")
  39188. },
  39189. {
  39190. name: "Micro",
  39191. height: math.unit(3, "inches")
  39192. },
  39193. {
  39194. name: "Normal",
  39195. height: math.unit(5 + 10/12, "feet"),
  39196. default: true
  39197. },
  39198. {
  39199. name: "Macro",
  39200. height: math.unit(150, "feet")
  39201. },
  39202. {
  39203. name: "Megamacro",
  39204. height: math.unit(10000, "m")
  39205. },
  39206. ]
  39207. ))
  39208. characterMakers.push(() => makeCharacter(
  39209. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39210. {
  39211. front: {
  39212. height: math.unit(2, "meters"),
  39213. weight: math.unit(100, "kg"),
  39214. name: "Front",
  39215. image: {
  39216. source: "./media/characters/shiron/front.svg",
  39217. extra: 2103/1985,
  39218. bottom: 98/2201
  39219. }
  39220. },
  39221. back: {
  39222. height: math.unit(2, "meters"),
  39223. weight: math.unit(100, "kg"),
  39224. name: "Back",
  39225. image: {
  39226. source: "./media/characters/shiron/back.svg",
  39227. extra: 2110/2015,
  39228. bottom: 89/2199
  39229. }
  39230. },
  39231. hand: {
  39232. height: math.unit(0.96, "feet"),
  39233. name: "Hand",
  39234. image: {
  39235. source: "./media/characters/shiron/hand.svg"
  39236. }
  39237. },
  39238. foot: {
  39239. height: math.unit(1.464, "feet"),
  39240. name: "Foot",
  39241. image: {
  39242. source: "./media/characters/shiron/foot.svg"
  39243. }
  39244. },
  39245. },
  39246. [
  39247. {
  39248. name: "Normal",
  39249. height: math.unit(2, "meters")
  39250. },
  39251. {
  39252. name: "Macro",
  39253. height: math.unit(500, "meters"),
  39254. default: true
  39255. },
  39256. {
  39257. name: "Megamacro",
  39258. height: math.unit(20, "km")
  39259. },
  39260. ]
  39261. ))
  39262. characterMakers.push(() => makeCharacter(
  39263. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39264. {
  39265. front: {
  39266. height: math.unit(6, "feet"),
  39267. name: "Front",
  39268. image: {
  39269. source: "./media/characters/sam/front.svg",
  39270. extra: 849/826,
  39271. bottom: 19/868
  39272. }
  39273. },
  39274. },
  39275. [
  39276. {
  39277. name: "Normal",
  39278. height: math.unit(6, "feet"),
  39279. default: true
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(8 + 4/12, "feet"),
  39288. weight: math.unit(122, "kg"),
  39289. name: "Front",
  39290. image: {
  39291. source: "./media/characters/namori-kurogawa/front.svg",
  39292. extra: 1894/1576,
  39293. bottom: 34/1928
  39294. }
  39295. },
  39296. },
  39297. [
  39298. {
  39299. name: "Normal",
  39300. height: math.unit(8 + 4/12, "feet"),
  39301. default: true
  39302. },
  39303. ]
  39304. ))
  39305. characterMakers.push(() => makeCharacter(
  39306. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39307. {
  39308. front: {
  39309. height: math.unit(9, "feet"),
  39310. weight: math.unit(621, "lb"),
  39311. name: "Front",
  39312. image: {
  39313. source: "./media/characters/unmru/front.svg",
  39314. extra: 1853/1747,
  39315. bottom: 73/1926
  39316. }
  39317. },
  39318. side: {
  39319. height: math.unit(9, "feet"),
  39320. weight: math.unit(621, "lb"),
  39321. name: "Side",
  39322. image: {
  39323. source: "./media/characters/unmru/side.svg",
  39324. extra: 1781/1671,
  39325. bottom: 127/1908
  39326. }
  39327. },
  39328. back: {
  39329. height: math.unit(9, "feet"),
  39330. weight: math.unit(621, "lb"),
  39331. name: "Back",
  39332. image: {
  39333. source: "./media/characters/unmru/back.svg",
  39334. extra: 1894/1765,
  39335. bottom: 75/1969
  39336. }
  39337. },
  39338. dick: {
  39339. height: math.unit(3, "feet"),
  39340. weight: math.unit(35, "lb"),
  39341. name: "Dick",
  39342. image: {
  39343. source: "./media/characters/unmru/dick.svg"
  39344. }
  39345. },
  39346. },
  39347. [
  39348. {
  39349. name: "Normal",
  39350. height: math.unit(9, "feet")
  39351. },
  39352. {
  39353. name: "Natural",
  39354. height: math.unit(27, "feet"),
  39355. default: true
  39356. },
  39357. {
  39358. name: "Giant",
  39359. height: math.unit(90, "feet")
  39360. },
  39361. {
  39362. name: "Kaiju",
  39363. height: math.unit(270, "feet")
  39364. },
  39365. {
  39366. name: "Macro",
  39367. height: math.unit(900, "feet")
  39368. },
  39369. {
  39370. name: "Macro+",
  39371. height: math.unit(2700, "feet")
  39372. },
  39373. {
  39374. name: "Megamacro",
  39375. height: math.unit(9000, "feet")
  39376. },
  39377. {
  39378. name: "City-Crushing",
  39379. height: math.unit(27000, "feet")
  39380. },
  39381. {
  39382. name: "Mountain-Mashing",
  39383. height: math.unit(90000, "feet")
  39384. },
  39385. {
  39386. name: "Earth-Eclipsing",
  39387. height: math.unit(2.7e8, "feet")
  39388. },
  39389. {
  39390. name: "Sol-Swallowing",
  39391. height: math.unit(9e10, "feet")
  39392. },
  39393. {
  39394. name: "Majoris-Munching",
  39395. height: math.unit(2.7e13, "feet")
  39396. },
  39397. ]
  39398. ))
  39399. characterMakers.push(() => makeCharacter(
  39400. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39401. {
  39402. front: {
  39403. height: math.unit(1, "inch"),
  39404. name: "Front",
  39405. image: {
  39406. source: "./media/characters/squeaks-mouse/front.svg",
  39407. extra: 352/308,
  39408. bottom: 25/377
  39409. }
  39410. },
  39411. },
  39412. [
  39413. {
  39414. name: "Micro",
  39415. height: math.unit(1, "inch"),
  39416. default: true
  39417. },
  39418. ]
  39419. ))
  39420. characterMakers.push(() => makeCharacter(
  39421. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39422. {
  39423. side: {
  39424. height: math.unit(35, "feet"),
  39425. name: "Side",
  39426. image: {
  39427. source: "./media/characters/sayko/side.svg",
  39428. extra: 1697/1021,
  39429. bottom: 82/1779
  39430. }
  39431. },
  39432. head: {
  39433. height: math.unit(16, "feet"),
  39434. name: "Head",
  39435. image: {
  39436. source: "./media/characters/sayko/head.svg"
  39437. }
  39438. },
  39439. forepaw: {
  39440. height: math.unit(7.85, "feet"),
  39441. name: "Forepaw",
  39442. image: {
  39443. source: "./media/characters/sayko/forepaw.svg"
  39444. }
  39445. },
  39446. hindpaw: {
  39447. height: math.unit(8.8, "feet"),
  39448. name: "Hindpaw",
  39449. image: {
  39450. source: "./media/characters/sayko/hindpaw.svg"
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Normal",
  39457. height: math.unit(35, "feet"),
  39458. default: true
  39459. },
  39460. {
  39461. name: "Colossus",
  39462. height: math.unit(100, "meters")
  39463. },
  39464. {
  39465. name: "\"Small\" Deity",
  39466. height: math.unit(1, "km")
  39467. },
  39468. {
  39469. name: "\"Large\" Deity",
  39470. height: math.unit(15, "km")
  39471. },
  39472. ]
  39473. ))
  39474. characterMakers.push(() => makeCharacter(
  39475. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39476. {
  39477. front: {
  39478. height: math.unit(6, "feet"),
  39479. weight: math.unit(250, "lb"),
  39480. name: "Front",
  39481. image: {
  39482. source: "./media/characters/mukiro/front.svg",
  39483. extra: 1368/1310,
  39484. bottom: 34/1402
  39485. }
  39486. },
  39487. },
  39488. [
  39489. {
  39490. name: "Normal",
  39491. height: math.unit(6, "feet"),
  39492. default: true
  39493. },
  39494. ]
  39495. ))
  39496. characterMakers.push(() => makeCharacter(
  39497. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39498. {
  39499. front: {
  39500. height: math.unit(12 + 4/12, "feet"),
  39501. name: "Front",
  39502. image: {
  39503. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39504. extra: 1346/1311,
  39505. bottom: 65/1411
  39506. }
  39507. },
  39508. },
  39509. [
  39510. {
  39511. name: "Base",
  39512. height: math.unit(12 + 4/12, "feet"),
  39513. default: true
  39514. },
  39515. {
  39516. name: "Macro",
  39517. height: math.unit(150, "feet")
  39518. },
  39519. {
  39520. name: "Mega",
  39521. height: math.unit(2, "miles")
  39522. },
  39523. {
  39524. name: "Demi God",
  39525. height: math.unit(4, "AU")
  39526. },
  39527. {
  39528. name: "God Size",
  39529. height: math.unit(1, "universe")
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39535. {
  39536. front: {
  39537. height: math.unit(3 + 3/12, "feet"),
  39538. weight: math.unit(88, "lb"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/trey/front.svg",
  39542. extra: 1815/1509,
  39543. bottom: 60/1875
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Normal",
  39550. height: math.unit(3 + 3/12, "feet"),
  39551. default: true
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39557. {
  39558. front: {
  39559. height: math.unit(4, "meters"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/adelonda/front.svg",
  39563. extra: 1077/982,
  39564. bottom: 39/1116
  39565. }
  39566. },
  39567. back: {
  39568. height: math.unit(4, "meters"),
  39569. name: "Back",
  39570. image: {
  39571. source: "./media/characters/adelonda/back.svg",
  39572. extra: 1105/1003,
  39573. bottom: 25/1130
  39574. }
  39575. },
  39576. feral: {
  39577. height: math.unit(40/1.5, "meters"),
  39578. name: "Feral",
  39579. image: {
  39580. source: "./media/characters/adelonda/feral.svg",
  39581. extra: 597/271,
  39582. bottom: 387/984
  39583. }
  39584. },
  39585. },
  39586. [
  39587. {
  39588. name: "Normal",
  39589. height: math.unit(4, "meters"),
  39590. default: true
  39591. },
  39592. ]
  39593. ))
  39594. characterMakers.push(() => makeCharacter(
  39595. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39596. {
  39597. front: {
  39598. height: math.unit(8 + 4/12, "feet"),
  39599. weight: math.unit(670, "lb"),
  39600. name: "Front",
  39601. image: {
  39602. source: "./media/characters/acadiel/front.svg",
  39603. extra: 1901/1595,
  39604. bottom: 142/2043
  39605. }
  39606. },
  39607. },
  39608. [
  39609. {
  39610. name: "Normal",
  39611. height: math.unit(8 + 4/12, "feet"),
  39612. default: true
  39613. },
  39614. {
  39615. name: "Macro",
  39616. height: math.unit(200, "feet")
  39617. },
  39618. ]
  39619. ))
  39620. characterMakers.push(() => makeCharacter(
  39621. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39622. {
  39623. front: {
  39624. height: math.unit(6 + 2/12, "feet"),
  39625. weight: math.unit(185, "lb"),
  39626. name: "Front",
  39627. image: {
  39628. source: "./media/characters/kayne-ein/front.svg",
  39629. extra: 1780/1560,
  39630. bottom: 81/1861
  39631. }
  39632. },
  39633. },
  39634. [
  39635. {
  39636. name: "Normal",
  39637. height: math.unit(6 + 2/12, "feet"),
  39638. default: true
  39639. },
  39640. {
  39641. name: "Transformation Stage",
  39642. height: math.unit(15, "feet")
  39643. },
  39644. {
  39645. name: "Macro",
  39646. height: math.unit(150, "feet")
  39647. },
  39648. {
  39649. name: "Earth's Shadow",
  39650. height: math.unit(6200, "miles")
  39651. },
  39652. {
  39653. name: "Universal Demon",
  39654. height: math.unit(28e9, "parsecs")
  39655. },
  39656. {
  39657. name: "Multiverse God",
  39658. height: math.unit(3, "multiverses")
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39664. {
  39665. front: {
  39666. height: math.unit(5 + 5/12, "feet"),
  39667. name: "Front",
  39668. image: {
  39669. source: "./media/characters/fawn/front.svg",
  39670. extra: 1873/1731,
  39671. bottom: 95/1968
  39672. }
  39673. },
  39674. back: {
  39675. height: math.unit(5 + 5/12, "feet"),
  39676. name: "Back",
  39677. image: {
  39678. source: "./media/characters/fawn/back.svg",
  39679. extra: 1813/1700,
  39680. bottom: 14/1827
  39681. }
  39682. },
  39683. hoof: {
  39684. height: math.unit(1.45, "feet"),
  39685. name: "Hoof",
  39686. image: {
  39687. source: "./media/characters/fawn/hoof.svg"
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Normal",
  39694. height: math.unit(5 + 5/12, "feet"),
  39695. default: true
  39696. },
  39697. ]
  39698. ))
  39699. characterMakers.push(() => makeCharacter(
  39700. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39701. {
  39702. front: {
  39703. height: math.unit(2 + 5/12, "feet"),
  39704. name: "Front",
  39705. image: {
  39706. source: "./media/characters/orion/front.svg",
  39707. extra: 1366/1304,
  39708. bottom: 43/1409
  39709. }
  39710. },
  39711. paw: {
  39712. height: math.unit(0.52, "feet"),
  39713. name: "Paw",
  39714. image: {
  39715. source: "./media/characters/orion/paw.svg"
  39716. }
  39717. },
  39718. },
  39719. [
  39720. {
  39721. name: "Normal",
  39722. height: math.unit(2 + 5/12, "feet"),
  39723. default: true
  39724. },
  39725. ]
  39726. ))
  39727. characterMakers.push(() => makeCharacter(
  39728. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39729. {
  39730. front: {
  39731. height: math.unit(5 + 10/12, "feet"),
  39732. name: "Front",
  39733. image: {
  39734. source: "./media/characters/vera/front.svg",
  39735. extra: 1680/1575,
  39736. bottom: 49/1729
  39737. }
  39738. },
  39739. back: {
  39740. height: math.unit(5 + 10/12, "feet"),
  39741. name: "Back",
  39742. image: {
  39743. source: "./media/characters/vera/back.svg",
  39744. extra: 1700/1588,
  39745. bottom: 18/1718
  39746. }
  39747. },
  39748. arcanine: {
  39749. height: math.unit(6 + 8/12, "feet"),
  39750. name: "Arcanine",
  39751. image: {
  39752. source: "./media/characters/vera/arcanine.svg",
  39753. extra: 1590/1511,
  39754. bottom: 71/1661
  39755. }
  39756. },
  39757. maw: {
  39758. height: math.unit(0.82, "feet"),
  39759. name: "Maw",
  39760. image: {
  39761. source: "./media/characters/vera/maw.svg"
  39762. }
  39763. },
  39764. mawArcanine: {
  39765. height: math.unit(0.97, "feet"),
  39766. name: "Maw (Arcanine)",
  39767. image: {
  39768. source: "./media/characters/vera/maw-arcanine.svg"
  39769. }
  39770. },
  39771. paw: {
  39772. height: math.unit(0.75, "feet"),
  39773. name: "Paw",
  39774. image: {
  39775. source: "./media/characters/vera/paw.svg"
  39776. }
  39777. },
  39778. pawprint: {
  39779. height: math.unit(0.52, "feet"),
  39780. name: "Pawprint",
  39781. image: {
  39782. source: "./media/characters/vera/pawprint.svg"
  39783. }
  39784. },
  39785. },
  39786. [
  39787. {
  39788. name: "Normal",
  39789. height: math.unit(5 + 10/12, "feet"),
  39790. default: true
  39791. },
  39792. {
  39793. name: "Macro",
  39794. height: math.unit(75, "feet")
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39800. {
  39801. front: {
  39802. height: math.unit(4, "feet"),
  39803. weight: math.unit(40, "lb"),
  39804. name: "Front",
  39805. image: {
  39806. source: "./media/characters/orvan-rabbit/front.svg",
  39807. extra: 1896/1642,
  39808. bottom: 29/1925
  39809. }
  39810. },
  39811. },
  39812. [
  39813. {
  39814. name: "Normal",
  39815. height: math.unit(4, "feet"),
  39816. default: true
  39817. },
  39818. ]
  39819. ))
  39820. characterMakers.push(() => makeCharacter(
  39821. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39822. {
  39823. front: {
  39824. height: math.unit(6, "feet"),
  39825. weight: math.unit(168, "lb"),
  39826. name: "Front",
  39827. image: {
  39828. source: "./media/characters/lisa/front.svg",
  39829. extra: 2065/1867,
  39830. bottom: 46/2111
  39831. }
  39832. },
  39833. back: {
  39834. height: math.unit(6, "feet"),
  39835. weight: math.unit(168, "lb"),
  39836. name: "Back",
  39837. image: {
  39838. source: "./media/characters/lisa/back.svg",
  39839. extra: 1982/1838,
  39840. bottom: 29/2011
  39841. }
  39842. },
  39843. maw: {
  39844. height: math.unit(0.81, "feet"),
  39845. name: "Maw",
  39846. image: {
  39847. source: "./media/characters/lisa/maw.svg"
  39848. }
  39849. },
  39850. paw: {
  39851. height: math.unit(0.9, "feet"),
  39852. name: "Paw",
  39853. image: {
  39854. source: "./media/characters/lisa/paw.svg"
  39855. }
  39856. },
  39857. caribousune: {
  39858. height: math.unit(7 + 2/12, "feet"),
  39859. weight: math.unit(268, "lb"),
  39860. name: "Caribousune",
  39861. image: {
  39862. source: "./media/characters/lisa/caribousune.svg",
  39863. extra: 1843/1633,
  39864. bottom: 29/1872
  39865. }
  39866. },
  39867. frontCaribousune: {
  39868. height: math.unit(7 + 2/12, "feet"),
  39869. weight: math.unit(268, "lb"),
  39870. name: "Front (Caribousune)",
  39871. image: {
  39872. source: "./media/characters/lisa/front-caribousune.svg",
  39873. extra: 1818/1638,
  39874. bottom: 52/1870
  39875. }
  39876. },
  39877. sideCaribousune: {
  39878. height: math.unit(7 + 2/12, "feet"),
  39879. weight: math.unit(268, "lb"),
  39880. name: "Side (Caribousune)",
  39881. image: {
  39882. source: "./media/characters/lisa/side-caribousune.svg",
  39883. extra: 1851/1635,
  39884. bottom: 16/1867
  39885. }
  39886. },
  39887. backCaribousune: {
  39888. height: math.unit(7 + 2/12, "feet"),
  39889. weight: math.unit(268, "lb"),
  39890. name: "Back (Caribousune)",
  39891. image: {
  39892. source: "./media/characters/lisa/back-caribousune.svg",
  39893. extra: 1801/1604,
  39894. bottom: 44/1845
  39895. }
  39896. },
  39897. caribou: {
  39898. height: math.unit(7 + 2/12, "feet"),
  39899. weight: math.unit(268, "lb"),
  39900. name: "Caribou",
  39901. image: {
  39902. source: "./media/characters/lisa/caribou.svg",
  39903. extra: 1843/1633,
  39904. bottom: 29/1872
  39905. }
  39906. },
  39907. frontCaribou: {
  39908. height: math.unit(7 + 2/12, "feet"),
  39909. weight: math.unit(268, "lb"),
  39910. name: "Front (Caribou)",
  39911. image: {
  39912. source: "./media/characters/lisa/front-caribou.svg",
  39913. extra: 1818/1638,
  39914. bottom: 52/1870
  39915. }
  39916. },
  39917. sideCaribou: {
  39918. height: math.unit(7 + 2/12, "feet"),
  39919. weight: math.unit(268, "lb"),
  39920. name: "Side (Caribou)",
  39921. image: {
  39922. source: "./media/characters/lisa/side-caribou.svg",
  39923. extra: 1851/1635,
  39924. bottom: 16/1867
  39925. }
  39926. },
  39927. backCaribou: {
  39928. height: math.unit(7 + 2/12, "feet"),
  39929. weight: math.unit(268, "lb"),
  39930. name: "Back (Caribou)",
  39931. image: {
  39932. source: "./media/characters/lisa/back-caribou.svg",
  39933. extra: 1801/1604,
  39934. bottom: 44/1845
  39935. }
  39936. },
  39937. mawCaribou: {
  39938. height: math.unit(1.45, "feet"),
  39939. name: "Maw (Caribou)",
  39940. image: {
  39941. source: "./media/characters/lisa/maw-caribou.svg"
  39942. }
  39943. },
  39944. mawCaribousune: {
  39945. height: math.unit(1.45, "feet"),
  39946. name: "Maw (Caribousune)",
  39947. image: {
  39948. source: "./media/characters/lisa/maw-caribousune.svg"
  39949. }
  39950. },
  39951. pawCaribousune: {
  39952. height: math.unit(1.61, "feet"),
  39953. name: "Paw (Caribou)",
  39954. image: {
  39955. source: "./media/characters/lisa/paw-caribousune.svg"
  39956. }
  39957. },
  39958. },
  39959. [
  39960. {
  39961. name: "Normal",
  39962. height: math.unit(6, "feet")
  39963. },
  39964. {
  39965. name: "God Size",
  39966. height: math.unit(72, "feet"),
  39967. default: true
  39968. },
  39969. {
  39970. name: "Towering",
  39971. height: math.unit(288, "feet")
  39972. },
  39973. {
  39974. name: "City Size",
  39975. height: math.unit(48384, "feet")
  39976. },
  39977. {
  39978. name: "Continental",
  39979. height: math.unit(4200, "miles")
  39980. },
  39981. {
  39982. name: "Planet Eater",
  39983. height: math.unit(42, "earths")
  39984. },
  39985. {
  39986. name: "Star Swallower",
  39987. height: math.unit(42, "solarradii")
  39988. },
  39989. {
  39990. name: "System Swallower",
  39991. height: math.unit(84000, "AU")
  39992. },
  39993. {
  39994. name: "Galaxy Gobbler",
  39995. height: math.unit(42, "galaxies")
  39996. },
  39997. {
  39998. name: "Universe Devourer",
  39999. height: math.unit(42, "universes")
  40000. },
  40001. {
  40002. name: "Multiverse Muncher",
  40003. height: math.unit(42, "multiverses")
  40004. },
  40005. ]
  40006. ))
  40007. characterMakers.push(() => makeCharacter(
  40008. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40009. {
  40010. front: {
  40011. height: math.unit(36, "feet"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/shadow-rat/front.svg",
  40015. extra: 1845/1758,
  40016. bottom: 83/1928
  40017. }
  40018. },
  40019. },
  40020. [
  40021. {
  40022. name: "Macro",
  40023. height: math.unit(36, "feet"),
  40024. default: true
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40030. {
  40031. side: {
  40032. height: math.unit(8, "feet"),
  40033. weight: math.unit(2630, "lb"),
  40034. name: "Side",
  40035. image: {
  40036. source: "./media/characters/torallia/side.svg",
  40037. extra: 2164/2021,
  40038. bottom: 371/2535
  40039. }
  40040. },
  40041. },
  40042. [
  40043. {
  40044. name: "Mortal Interaction",
  40045. height: math.unit(8, "feet")
  40046. },
  40047. {
  40048. name: "Natural",
  40049. height: math.unit(24, "feet"),
  40050. default: true
  40051. },
  40052. {
  40053. name: "Giant",
  40054. height: math.unit(80, "feet")
  40055. },
  40056. {
  40057. name: "Kaiju",
  40058. height: math.unit(240, "feet")
  40059. },
  40060. {
  40061. name: "Macro",
  40062. height: math.unit(800, "feet")
  40063. },
  40064. {
  40065. name: "Macro+",
  40066. height: math.unit(2400, "feet")
  40067. },
  40068. {
  40069. name: "Macro++",
  40070. height: math.unit(8000, "feet")
  40071. },
  40072. {
  40073. name: "City-Crushing",
  40074. height: math.unit(24000, "feet")
  40075. },
  40076. {
  40077. name: "Mountain-Mashing",
  40078. height: math.unit(80000, "feet")
  40079. },
  40080. {
  40081. name: "District Demolisher",
  40082. height: math.unit(240000, "feet")
  40083. },
  40084. {
  40085. name: "Tri-County Terror",
  40086. height: math.unit(800000, "feet")
  40087. },
  40088. {
  40089. name: "State Smasher",
  40090. height: math.unit(2.4e6, "feet")
  40091. },
  40092. {
  40093. name: "Nation Nemesis",
  40094. height: math.unit(8e6, "feet")
  40095. },
  40096. {
  40097. name: "Continent Cracker",
  40098. height: math.unit(2.4e7, "feet")
  40099. },
  40100. {
  40101. name: "Planet-Pillaging",
  40102. height: math.unit(8e7, "feet")
  40103. },
  40104. {
  40105. name: "Earth-Eclipsing",
  40106. height: math.unit(2.4e8, "feet")
  40107. },
  40108. {
  40109. name: "Jovian-Jostling",
  40110. height: math.unit(8e8, "feet")
  40111. },
  40112. {
  40113. name: "Gas Giant Gulper",
  40114. height: math.unit(2.4e9, "feet")
  40115. },
  40116. {
  40117. name: "Astral Annihilator",
  40118. height: math.unit(8e9, "feet")
  40119. },
  40120. {
  40121. name: "Celestial Conqueror",
  40122. height: math.unit(2.4e10, "feet")
  40123. },
  40124. {
  40125. name: "Sol-Swallowing",
  40126. height: math.unit(8e10, "feet")
  40127. },
  40128. {
  40129. name: "Hunter of the Heavens",
  40130. height: math.unit(2.4e13, "feet")
  40131. },
  40132. ]
  40133. ))
  40134. characterMakers.push(() => makeCharacter(
  40135. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40136. {
  40137. front: {
  40138. height: math.unit(6 + 8/12, "feet"),
  40139. weight: math.unit(250, "kilograms"),
  40140. volume: math.unit(28, "liters"),
  40141. name: "Front",
  40142. image: {
  40143. source: "./media/characters/rebecca-pawlson/front.svg",
  40144. extra: 1737/1596,
  40145. bottom: 107/1844
  40146. }
  40147. },
  40148. back: {
  40149. height: math.unit(6 + 8/12, "feet"),
  40150. weight: math.unit(250, "kilograms"),
  40151. volume: math.unit(28, "liters"),
  40152. name: "Back",
  40153. image: {
  40154. source: "./media/characters/rebecca-pawlson/back.svg",
  40155. extra: 1702/1523,
  40156. bottom: 86/1788
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Normal",
  40163. height: math.unit(6 + 8/12, "feet")
  40164. },
  40165. {
  40166. name: "Mini Macro",
  40167. height: math.unit(10, "feet"),
  40168. default: true
  40169. },
  40170. {
  40171. name: "Macro",
  40172. height: math.unit(100, "feet")
  40173. },
  40174. {
  40175. name: "Mega Macro",
  40176. height: math.unit(2500, "feet")
  40177. },
  40178. {
  40179. name: "Giga Macro",
  40180. height: math.unit(50, "miles")
  40181. },
  40182. ]
  40183. ))
  40184. characterMakers.push(() => makeCharacter(
  40185. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40186. {
  40187. front: {
  40188. height: math.unit(7 + 6/12, "feet"),
  40189. weight: math.unit(600, "lb"),
  40190. name: "Front",
  40191. image: {
  40192. source: "./media/characters/moxie-nova/front.svg",
  40193. extra: 1734/1652,
  40194. bottom: 41/1775
  40195. }
  40196. },
  40197. },
  40198. [
  40199. {
  40200. name: "Normal",
  40201. height: math.unit(7 + 6/12, "feet"),
  40202. default: true
  40203. },
  40204. ]
  40205. ))
  40206. characterMakers.push(() => makeCharacter(
  40207. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40208. {
  40209. goat: {
  40210. height: math.unit(4, "feet"),
  40211. weight: math.unit(180, "lb"),
  40212. name: "Goat",
  40213. image: {
  40214. source: "./media/characters/tiffany/goat.svg",
  40215. extra: 1845/1595,
  40216. bottom: 106/1951
  40217. }
  40218. },
  40219. front: {
  40220. height: math.unit(5, "feet"),
  40221. weight: math.unit(150, "lb"),
  40222. name: "Foxcoon",
  40223. image: {
  40224. source: "./media/characters/tiffany/foxcoon.svg",
  40225. extra: 1941/1845,
  40226. bottom: 58/1999
  40227. }
  40228. },
  40229. },
  40230. [
  40231. {
  40232. name: "Normal",
  40233. height: math.unit(5, "feet"),
  40234. default: true
  40235. },
  40236. ]
  40237. ))
  40238. characterMakers.push(() => makeCharacter(
  40239. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40240. {
  40241. front: {
  40242. height: math.unit(8, "feet"),
  40243. weight: math.unit(300, "lb"),
  40244. name: "Front",
  40245. image: {
  40246. source: "./media/characters/raxinath/front.svg",
  40247. extra: 1407/1309,
  40248. bottom: 39/1446
  40249. }
  40250. },
  40251. back: {
  40252. height: math.unit(8, "feet"),
  40253. weight: math.unit(300, "lb"),
  40254. name: "Back",
  40255. image: {
  40256. source: "./media/characters/raxinath/back.svg",
  40257. extra: 1405/1315,
  40258. bottom: 9/1414
  40259. }
  40260. },
  40261. },
  40262. [
  40263. {
  40264. name: "Speck",
  40265. height: math.unit(0.5, "nm")
  40266. },
  40267. {
  40268. name: "Micro",
  40269. height: math.unit(3, "inches")
  40270. },
  40271. {
  40272. name: "Kobold",
  40273. height: math.unit(3, "feet")
  40274. },
  40275. {
  40276. name: "Normal",
  40277. height: math.unit(8, "feet"),
  40278. default: true
  40279. },
  40280. {
  40281. name: "Giant",
  40282. height: math.unit(50, "feet")
  40283. },
  40284. {
  40285. name: "Macro",
  40286. height: math.unit(1000, "feet")
  40287. },
  40288. {
  40289. name: "Megamacro",
  40290. height: math.unit(1, "mile")
  40291. },
  40292. ]
  40293. ))
  40294. characterMakers.push(() => makeCharacter(
  40295. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40296. {
  40297. front: {
  40298. height: math.unit(10, "feet"),
  40299. weight: math.unit(1442, "lb"),
  40300. name: "Front",
  40301. image: {
  40302. source: "./media/characters/mal-dragon/front.svg",
  40303. extra: 1515/1444,
  40304. bottom: 113/1628
  40305. }
  40306. },
  40307. back: {
  40308. height: math.unit(10, "feet"),
  40309. weight: math.unit(1442, "lb"),
  40310. name: "Back",
  40311. image: {
  40312. source: "./media/characters/mal-dragon/back.svg",
  40313. extra: 1527/1434,
  40314. bottom: 25/1552
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Mortal Interaction",
  40321. height: math.unit(10, "feet"),
  40322. default: true
  40323. },
  40324. {
  40325. name: "Large",
  40326. height: math.unit(30, "feet")
  40327. },
  40328. {
  40329. name: "Kaiju",
  40330. height: math.unit(300, "feet")
  40331. },
  40332. {
  40333. name: "Megamacro",
  40334. height: math.unit(10000, "feet")
  40335. },
  40336. {
  40337. name: "Continent Cracker",
  40338. height: math.unit(30000000, "feet")
  40339. },
  40340. {
  40341. name: "Sol-Swallowing",
  40342. height: math.unit(1e11, "feet")
  40343. },
  40344. {
  40345. name: "Light Universal",
  40346. height: math.unit(5, "universes")
  40347. },
  40348. {
  40349. name: "Universe Atoms",
  40350. height: math.unit(1.829e9, "universes")
  40351. },
  40352. {
  40353. name: "Light Multiversal",
  40354. height: math.unit(5, "multiverses")
  40355. },
  40356. {
  40357. name: "Multiverse Atoms",
  40358. height: math.unit(1.829e9, "multiverses")
  40359. },
  40360. {
  40361. name: "Fabric of Time",
  40362. height: math.unit(1e262, "multiverses")
  40363. },
  40364. ]
  40365. ))
  40366. characterMakers.push(() => makeCharacter(
  40367. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40368. {
  40369. front: {
  40370. height: math.unit(9, "feet"),
  40371. weight: math.unit(1050, "lb"),
  40372. name: "Front",
  40373. image: {
  40374. source: "./media/characters/tabitha/front.svg",
  40375. extra: 2083/1994,
  40376. bottom: 68/2151
  40377. }
  40378. },
  40379. },
  40380. [
  40381. {
  40382. name: "Baseline",
  40383. height: math.unit(9, "feet"),
  40384. default: true
  40385. },
  40386. {
  40387. name: "Giant",
  40388. height: math.unit(90, "feet")
  40389. },
  40390. {
  40391. name: "Macro",
  40392. height: math.unit(900, "feet")
  40393. },
  40394. {
  40395. name: "Megamacro",
  40396. height: math.unit(9000, "feet")
  40397. },
  40398. {
  40399. name: "City-Crushing",
  40400. height: math.unit(27000, "feet")
  40401. },
  40402. {
  40403. name: "Mountain-Mashing",
  40404. height: math.unit(90000, "feet")
  40405. },
  40406. {
  40407. name: "Nation Nemesis",
  40408. height: math.unit(9e6, "feet")
  40409. },
  40410. {
  40411. name: "Continent Cracker",
  40412. height: math.unit(27e6, "feet")
  40413. },
  40414. {
  40415. name: "Earth-Eclipsing",
  40416. height: math.unit(2.7e8, "feet")
  40417. },
  40418. {
  40419. name: "Gas Giant Gulper",
  40420. height: math.unit(2.7e9, "feet")
  40421. },
  40422. {
  40423. name: "Sol-Swallowing",
  40424. height: math.unit(9e10, "feet")
  40425. },
  40426. {
  40427. name: "Galaxy Gulper",
  40428. height: math.unit(9, "galaxies")
  40429. },
  40430. {
  40431. name: "Cosmos Churner",
  40432. height: math.unit(9, "universes")
  40433. },
  40434. ]
  40435. ))
  40436. characterMakers.push(() => makeCharacter(
  40437. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40438. {
  40439. front: {
  40440. height: math.unit(160, "cm"),
  40441. weight: math.unit(55, "kg"),
  40442. name: "Front",
  40443. image: {
  40444. source: "./media/characters/tow/front.svg",
  40445. extra: 1751/1722,
  40446. bottom: 74/1825
  40447. }
  40448. },
  40449. },
  40450. [
  40451. {
  40452. name: "Norm",
  40453. height: math.unit(160, "cm")
  40454. },
  40455. {
  40456. name: "Casual",
  40457. height: math.unit(3200, "m"),
  40458. default: true
  40459. },
  40460. {
  40461. name: "Show-Off",
  40462. height: math.unit(160, "km")
  40463. },
  40464. ]
  40465. ))
  40466. characterMakers.push(() => makeCharacter(
  40467. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40468. {
  40469. front: {
  40470. height: math.unit(7 + 11/12, "feet"),
  40471. weight: math.unit(342.8, "lb"),
  40472. name: "Front",
  40473. image: {
  40474. source: "./media/characters/vivian-orca-dragon/front.svg",
  40475. extra: 1890/1865,
  40476. bottom: 28/1918
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Micro",
  40483. height: math.unit(5, "inches")
  40484. },
  40485. {
  40486. name: "Normal",
  40487. height: math.unit(7 + 11/12, "feet"),
  40488. default: true
  40489. },
  40490. {
  40491. name: "Macro",
  40492. height: math.unit(395 + 7/12, "feet")
  40493. },
  40494. ]
  40495. ))
  40496. characterMakers.push(() => makeCharacter(
  40497. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40498. {
  40499. side: {
  40500. height: math.unit(10, "feet"),
  40501. weight: math.unit(1442, "lb"),
  40502. name: "Side",
  40503. image: {
  40504. source: "./media/characters/lotherakon/side.svg",
  40505. extra: 1604/1497,
  40506. bottom: 89/1693
  40507. }
  40508. },
  40509. },
  40510. [
  40511. {
  40512. name: "Mortal Interaction",
  40513. height: math.unit(10, "feet")
  40514. },
  40515. {
  40516. name: "Large",
  40517. height: math.unit(30, "feet"),
  40518. default: true
  40519. },
  40520. {
  40521. name: "Giant",
  40522. height: math.unit(100, "feet")
  40523. },
  40524. {
  40525. name: "Kaiju",
  40526. height: math.unit(300, "feet")
  40527. },
  40528. {
  40529. name: "Macro",
  40530. height: math.unit(1000, "feet")
  40531. },
  40532. {
  40533. name: "Macro+",
  40534. height: math.unit(3000, "feet")
  40535. },
  40536. {
  40537. name: "Megamacro",
  40538. height: math.unit(10000, "feet")
  40539. },
  40540. {
  40541. name: "City-Crushing",
  40542. height: math.unit(30000, "feet")
  40543. },
  40544. {
  40545. name: "Continent Cracker",
  40546. height: math.unit(30e6, "feet")
  40547. },
  40548. {
  40549. name: "Earth Eclipsing",
  40550. height: math.unit(3e8, "feet")
  40551. },
  40552. {
  40553. name: "Gas Giant Gulper",
  40554. height: math.unit(3e9, "feet")
  40555. },
  40556. {
  40557. name: "Sol-Swallowing",
  40558. height: math.unit(1e11, "feet")
  40559. },
  40560. {
  40561. name: "System Swallower",
  40562. height: math.unit(3e14, "feet")
  40563. },
  40564. {
  40565. name: "Galaxy Gulper",
  40566. height: math.unit(10, "galaxies")
  40567. },
  40568. {
  40569. name: "Light Universal",
  40570. height: math.unit(5, "universes")
  40571. },
  40572. {
  40573. name: "Universe Palm",
  40574. height: math.unit(20, "universes")
  40575. },
  40576. {
  40577. name: "Light Multiversal",
  40578. height: math.unit(5, "multiverses")
  40579. },
  40580. {
  40581. name: "Multiverse Palm",
  40582. height: math.unit(20, "multiverses")
  40583. },
  40584. {
  40585. name: "Inferno Incarnate",
  40586. height: math.unit(1e7, "multiverses")
  40587. },
  40588. ]
  40589. ))
  40590. characterMakers.push(() => makeCharacter(
  40591. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40592. {
  40593. front: {
  40594. height: math.unit(8, "feet"),
  40595. weight: math.unit(1200, "lb"),
  40596. name: "Front",
  40597. image: {
  40598. source: "./media/characters/malithee/front.svg",
  40599. extra: 1675/1640,
  40600. bottom: 162/1837
  40601. }
  40602. },
  40603. },
  40604. [
  40605. {
  40606. name: "Mortal Interaction",
  40607. height: math.unit(8, "feet"),
  40608. default: true
  40609. },
  40610. {
  40611. name: "Large",
  40612. height: math.unit(24, "feet")
  40613. },
  40614. {
  40615. name: "Kaiju",
  40616. height: math.unit(240, "feet")
  40617. },
  40618. {
  40619. name: "Megamacro",
  40620. height: math.unit(8000, "feet")
  40621. },
  40622. {
  40623. name: "Continent Cracker",
  40624. height: math.unit(24e6, "feet")
  40625. },
  40626. {
  40627. name: "Earth-Eclipsing",
  40628. height: math.unit(2.4e8, "feet")
  40629. },
  40630. {
  40631. name: "Sol-Swallowing",
  40632. height: math.unit(8e10, "feet")
  40633. },
  40634. {
  40635. name: "Galaxy Gulper",
  40636. height: math.unit(8, "galaxies")
  40637. },
  40638. {
  40639. name: "Light Universal",
  40640. height: math.unit(4, "universes")
  40641. },
  40642. {
  40643. name: "Universe Atoms",
  40644. height: math.unit(1.829e9, "universes")
  40645. },
  40646. {
  40647. name: "Light Multiversal",
  40648. height: math.unit(4, "multiverses")
  40649. },
  40650. {
  40651. name: "Multiverse Atoms",
  40652. height: math.unit(1.829e9, "multiverses")
  40653. },
  40654. {
  40655. name: "Nigh-Omnipresence",
  40656. height: math.unit(8e261, "multiverses")
  40657. },
  40658. ]
  40659. ))
  40660. characterMakers.push(() => makeCharacter(
  40661. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40662. {
  40663. front: {
  40664. height: math.unit(10, "feet"),
  40665. weight: math.unit(1500, "lb"),
  40666. name: "Front",
  40667. image: {
  40668. source: "./media/characters/miles-thestia/front.svg",
  40669. extra: 1812/1727,
  40670. bottom: 86/1898
  40671. }
  40672. },
  40673. back: {
  40674. height: math.unit(10, "feet"),
  40675. weight: math.unit(1500, "lb"),
  40676. name: "Back",
  40677. image: {
  40678. source: "./media/characters/miles-thestia/back.svg",
  40679. extra: 1799/1690,
  40680. bottom: 47/1846
  40681. }
  40682. },
  40683. frontNsfw: {
  40684. height: math.unit(10, "feet"),
  40685. weight: math.unit(1500, "lb"),
  40686. name: "Front (NSFW)",
  40687. image: {
  40688. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40689. extra: 1812/1727,
  40690. bottom: 86/1898
  40691. }
  40692. },
  40693. },
  40694. [
  40695. {
  40696. name: "Mini-Macro",
  40697. height: math.unit(10, "feet"),
  40698. default: true
  40699. },
  40700. ]
  40701. ))
  40702. characterMakers.push(() => makeCharacter(
  40703. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40704. {
  40705. front: {
  40706. height: math.unit(25, "feet"),
  40707. name: "Front",
  40708. image: {
  40709. source: "./media/characters/titan-s-wulf/front.svg",
  40710. extra: 1560/1484,
  40711. bottom: 76/1636
  40712. }
  40713. },
  40714. },
  40715. [
  40716. {
  40717. name: "Smallest",
  40718. height: math.unit(25, "feet"),
  40719. default: true
  40720. },
  40721. {
  40722. name: "Normal",
  40723. height: math.unit(200, "feet")
  40724. },
  40725. {
  40726. name: "Macro",
  40727. height: math.unit(200000, "feet")
  40728. },
  40729. {
  40730. name: "Multiversal Original",
  40731. height: math.unit(10000, "multiverses")
  40732. },
  40733. ]
  40734. ))
  40735. characterMakers.push(() => makeCharacter(
  40736. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40737. {
  40738. front: {
  40739. height: math.unit(8, "feet"),
  40740. weight: math.unit(553, "lb"),
  40741. name: "Front",
  40742. image: {
  40743. source: "./media/characters/tawendeh/front.svg",
  40744. extra: 2365/2268,
  40745. bottom: 83/2448
  40746. }
  40747. },
  40748. frontClothed: {
  40749. height: math.unit(8, "feet"),
  40750. weight: math.unit(553, "lb"),
  40751. name: "Front (Clothed)",
  40752. image: {
  40753. source: "./media/characters/tawendeh/front-clothed.svg",
  40754. extra: 2365/2268,
  40755. bottom: 83/2448
  40756. }
  40757. },
  40758. back: {
  40759. height: math.unit(8, "feet"),
  40760. weight: math.unit(553, "lb"),
  40761. name: "Back",
  40762. image: {
  40763. source: "./media/characters/tawendeh/back.svg",
  40764. extra: 2397/2294,
  40765. bottom: 42/2439
  40766. }
  40767. },
  40768. },
  40769. [
  40770. {
  40771. name: "Mortal Interaction",
  40772. height: math.unit(8, "feet"),
  40773. default: true
  40774. },
  40775. {
  40776. name: "Giant",
  40777. height: math.unit(80, "feet")
  40778. },
  40779. {
  40780. name: "Macro",
  40781. height: math.unit(800, "feet")
  40782. },
  40783. {
  40784. name: "Megamacro",
  40785. height: math.unit(8000, "feet")
  40786. },
  40787. {
  40788. name: "City-Crushing",
  40789. height: math.unit(24000, "feet")
  40790. },
  40791. {
  40792. name: "Mountain-Mashing",
  40793. height: math.unit(80000, "feet")
  40794. },
  40795. {
  40796. name: "Nation Nemesis",
  40797. height: math.unit(8e6, "feet")
  40798. },
  40799. {
  40800. name: "Continent Cracker",
  40801. height: math.unit(24e6, "feet")
  40802. },
  40803. {
  40804. name: "Earth-Eclipsing",
  40805. height: math.unit(2.4e8, "feet")
  40806. },
  40807. {
  40808. name: "Gas Giant Gulper",
  40809. height: math.unit(2.4e9, "feet")
  40810. },
  40811. {
  40812. name: "Sol-Swallowing",
  40813. height: math.unit(8e10, "feet")
  40814. },
  40815. {
  40816. name: "Galaxy Gulper",
  40817. height: math.unit(8, "galaxies")
  40818. },
  40819. {
  40820. name: "Cosmos Churner",
  40821. height: math.unit(8, "universes")
  40822. },
  40823. {
  40824. name: "Omnipotent Otter",
  40825. height: math.unit(80, "universes")
  40826. },
  40827. ]
  40828. ))
  40829. characterMakers.push(() => makeCharacter(
  40830. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40831. {
  40832. front: {
  40833. height: math.unit(2.6, "meters"),
  40834. weight: math.unit(900, "kg"),
  40835. name: "Front",
  40836. image: {
  40837. source: "./media/characters/neesha/front.svg",
  40838. extra: 1803/1653,
  40839. bottom: 128/1931
  40840. }
  40841. },
  40842. },
  40843. [
  40844. {
  40845. name: "Normal",
  40846. height: math.unit(2.6, "meters"),
  40847. default: true
  40848. },
  40849. {
  40850. name: "Macro",
  40851. height: math.unit(50, "meters")
  40852. },
  40853. ]
  40854. ))
  40855. characterMakers.push(() => makeCharacter(
  40856. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40857. {
  40858. front: {
  40859. height: math.unit(5, "feet"),
  40860. weight: math.unit(185, "lb"),
  40861. name: "Front",
  40862. image: {
  40863. source: "./media/characters/kyera/front.svg",
  40864. extra: 1875/1790,
  40865. bottom: 96/1971
  40866. }
  40867. },
  40868. },
  40869. [
  40870. {
  40871. name: "Normal",
  40872. height: math.unit(5, "feet"),
  40873. default: true
  40874. },
  40875. ]
  40876. ))
  40877. characterMakers.push(() => makeCharacter(
  40878. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40879. {
  40880. front: {
  40881. height: math.unit(7 + 6/12, "feet"),
  40882. weight: math.unit(540, "lb"),
  40883. name: "Front",
  40884. image: {
  40885. source: "./media/characters/yuko/front.svg",
  40886. extra: 1282/1222,
  40887. bottom: 101/1383
  40888. }
  40889. },
  40890. frontClothed: {
  40891. height: math.unit(7 + 6/12, "feet"),
  40892. weight: math.unit(540, "lb"),
  40893. name: "Front (Clothed)",
  40894. image: {
  40895. source: "./media/characters/yuko/front-clothed.svg",
  40896. extra: 1282/1222,
  40897. bottom: 101/1383
  40898. }
  40899. },
  40900. },
  40901. [
  40902. {
  40903. name: "Normal",
  40904. height: math.unit(7 + 6/12, "feet"),
  40905. default: true
  40906. },
  40907. {
  40908. name: "Macro",
  40909. height: math.unit(26 + 9/12, "feet")
  40910. },
  40911. {
  40912. name: "Megamacro",
  40913. height: math.unit(300, "feet")
  40914. },
  40915. {
  40916. name: "Gigamacro",
  40917. height: math.unit(5000, "feet")
  40918. },
  40919. {
  40920. name: "Planetary",
  40921. height: math.unit(10000, "miles")
  40922. },
  40923. ]
  40924. ))
  40925. characterMakers.push(() => makeCharacter(
  40926. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40927. {
  40928. front: {
  40929. height: math.unit(8 + 2/12, "feet"),
  40930. weight: math.unit(600, "lb"),
  40931. name: "Front",
  40932. image: {
  40933. source: "./media/characters/deam-nitrel/front.svg",
  40934. extra: 1308/1234,
  40935. bottom: 125/1433
  40936. }
  40937. },
  40938. },
  40939. [
  40940. {
  40941. name: "Normal",
  40942. height: math.unit(8 + 2/12, "feet"),
  40943. default: true
  40944. },
  40945. ]
  40946. ))
  40947. characterMakers.push(() => makeCharacter(
  40948. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40949. {
  40950. front: {
  40951. height: math.unit(6.1, "feet"),
  40952. weight: math.unit(180, "lb"),
  40953. name: "Front",
  40954. image: {
  40955. source: "./media/characters/skyress/front.svg",
  40956. extra: 1045/915,
  40957. bottom: 28/1073
  40958. }
  40959. },
  40960. maw: {
  40961. height: math.unit(1, "feet"),
  40962. name: "Maw",
  40963. image: {
  40964. source: "./media/characters/skyress/maw.svg"
  40965. }
  40966. },
  40967. },
  40968. [
  40969. {
  40970. name: "Normal",
  40971. height: math.unit(6.1, "feet"),
  40972. default: true
  40973. },
  40974. {
  40975. name: "Macro",
  40976. height: math.unit(200, "feet")
  40977. },
  40978. ]
  40979. ))
  40980. characterMakers.push(() => makeCharacter(
  40981. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40982. {
  40983. front: {
  40984. height: math.unit(4 + 2/12, "feet"),
  40985. weight: math.unit(40, "kg"),
  40986. name: "Front",
  40987. image: {
  40988. source: "./media/characters/amethyst-jones/front.svg",
  40989. extra: 1220/1150,
  40990. bottom: 101/1321
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Normal",
  40997. height: math.unit(4 + 2/12, "feet"),
  40998. default: true
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41004. {
  41005. front: {
  41006. height: math.unit(1.7, "m"),
  41007. weight: math.unit(135, "lb"),
  41008. name: "Front",
  41009. image: {
  41010. source: "./media/characters/jade/front.svg",
  41011. extra: 1818/1767,
  41012. bottom: 32/1850
  41013. }
  41014. },
  41015. back: {
  41016. height: math.unit(1.7, "m"),
  41017. weight: math.unit(135, "lb"),
  41018. name: "Back",
  41019. image: {
  41020. source: "./media/characters/jade/back.svg",
  41021. extra: 1869/1809,
  41022. bottom: 35/1904
  41023. }
  41024. },
  41025. hand: {
  41026. height: math.unit(0.24, "m"),
  41027. name: "Hand",
  41028. image: {
  41029. source: "./media/characters/jade/hand.svg"
  41030. }
  41031. },
  41032. foot: {
  41033. height: math.unit(0.263, "m"),
  41034. name: "Foot",
  41035. image: {
  41036. source: "./media/characters/jade/foot.svg"
  41037. }
  41038. },
  41039. dick: {
  41040. height: math.unit(0.47, "m"),
  41041. name: "Dick",
  41042. image: {
  41043. source: "./media/characters/jade/dick.svg"
  41044. }
  41045. },
  41046. },
  41047. [
  41048. {
  41049. name: "Micro",
  41050. height: math.unit(22, "cm")
  41051. },
  41052. {
  41053. name: "Normal",
  41054. height: math.unit(1.7, "m"),
  41055. default: true
  41056. },
  41057. {
  41058. name: "Macro",
  41059. height: math.unit(152, "m")
  41060. },
  41061. ]
  41062. ))
  41063. characterMakers.push(() => makeCharacter(
  41064. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41065. {
  41066. front: {
  41067. height: math.unit(100, "miles"),
  41068. weight: math.unit(20000, "tons"),
  41069. name: "Front",
  41070. image: {
  41071. source: "./media/characters/cookie/front.svg",
  41072. extra: 1125/1070,
  41073. bottom: 30/1155
  41074. }
  41075. },
  41076. },
  41077. [
  41078. {
  41079. name: "Big",
  41080. height: math.unit(50, "feet")
  41081. },
  41082. {
  41083. name: "Macro",
  41084. height: math.unit(100, "miles"),
  41085. default: true
  41086. },
  41087. {
  41088. name: "Megamacro",
  41089. height: math.unit(90000, "miles")
  41090. },
  41091. ]
  41092. ))
  41093. characterMakers.push(() => makeCharacter(
  41094. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41095. {
  41096. front: {
  41097. height: math.unit(6, "feet"),
  41098. weight: math.unit(145, "lb"),
  41099. name: "Front",
  41100. image: {
  41101. source: "./media/characters/farzian/front.svg",
  41102. extra: 1902/1693,
  41103. bottom: 108/2010
  41104. }
  41105. },
  41106. },
  41107. [
  41108. {
  41109. name: "Macro",
  41110. height: math.unit(500, "feet"),
  41111. default: true
  41112. },
  41113. ]
  41114. ))
  41115. characterMakers.push(() => makeCharacter(
  41116. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41117. {
  41118. front: {
  41119. height: math.unit(3 + 6/12, "feet"),
  41120. weight: math.unit(50, "lb"),
  41121. name: "Front",
  41122. image: {
  41123. source: "./media/characters/kimberly-tilson/front.svg",
  41124. extra: 1400/1322,
  41125. bottom: 36/1436
  41126. }
  41127. },
  41128. back: {
  41129. height: math.unit(3 + 6/12, "feet"),
  41130. weight: math.unit(50, "lb"),
  41131. name: "Back",
  41132. image: {
  41133. source: "./media/characters/kimberly-tilson/back.svg",
  41134. extra: 1370/1307,
  41135. bottom: 20/1390
  41136. }
  41137. },
  41138. },
  41139. [
  41140. {
  41141. name: "Normal",
  41142. height: math.unit(3 + 6/12, "feet"),
  41143. default: true
  41144. },
  41145. ]
  41146. ))
  41147. characterMakers.push(() => makeCharacter(
  41148. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41149. {
  41150. front: {
  41151. height: math.unit(1148, "feet"),
  41152. weight: math.unit(34057, "lb"),
  41153. name: "Front",
  41154. image: {
  41155. source: "./media/characters/harthos/front.svg",
  41156. extra: 1391/1339,
  41157. bottom: 13/1404
  41158. }
  41159. },
  41160. },
  41161. [
  41162. {
  41163. name: "Macro",
  41164. height: math.unit(1148, "feet"),
  41165. default: true
  41166. },
  41167. ]
  41168. ))
  41169. characterMakers.push(() => makeCharacter(
  41170. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41171. {
  41172. front: {
  41173. height: math.unit(15, "feet"),
  41174. name: "Front",
  41175. image: {
  41176. source: "./media/characters/hypatia/front.svg",
  41177. extra: 1653/1591,
  41178. bottom: 79/1732
  41179. }
  41180. },
  41181. },
  41182. [
  41183. {
  41184. name: "Normal",
  41185. height: math.unit(15, "feet")
  41186. },
  41187. {
  41188. name: "Small",
  41189. height: math.unit(300, "feet")
  41190. },
  41191. {
  41192. name: "Macro",
  41193. height: math.unit(2500, "feet"),
  41194. default: true
  41195. },
  41196. {
  41197. name: "Mega Macro",
  41198. height: math.unit(1500, "miles")
  41199. },
  41200. {
  41201. name: "Giga Macro",
  41202. height: math.unit(1.5e6, "miles")
  41203. },
  41204. ]
  41205. ))
  41206. characterMakers.push(() => makeCharacter(
  41207. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41208. {
  41209. front: {
  41210. height: math.unit(6, "feet"),
  41211. weight: math.unit(200, "lb"),
  41212. name: "Front",
  41213. image: {
  41214. source: "./media/characters/wulver/front.svg",
  41215. extra: 1724/1632,
  41216. bottom: 130/1854
  41217. }
  41218. },
  41219. frontNsfw: {
  41220. height: math.unit(6, "feet"),
  41221. weight: math.unit(200, "lb"),
  41222. name: "Front (NSFW)",
  41223. image: {
  41224. source: "./media/characters/wulver/front-nsfw.svg",
  41225. extra: 1724/1632,
  41226. bottom: 130/1854
  41227. }
  41228. },
  41229. },
  41230. [
  41231. {
  41232. name: "Human-Sized",
  41233. height: math.unit(6, "feet")
  41234. },
  41235. {
  41236. name: "Normal",
  41237. height: math.unit(4, "meters"),
  41238. default: true
  41239. },
  41240. {
  41241. name: "Large",
  41242. height: math.unit(6, "m")
  41243. },
  41244. ]
  41245. ))
  41246. characterMakers.push(() => makeCharacter(
  41247. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41248. {
  41249. front: {
  41250. height: math.unit(7, "feet"),
  41251. name: "Front",
  41252. image: {
  41253. source: "./media/characters/maru/front.svg",
  41254. extra: 1595/1570,
  41255. bottom: 0/1595
  41256. }
  41257. },
  41258. },
  41259. [
  41260. {
  41261. name: "Normal",
  41262. height: math.unit(7, "feet"),
  41263. default: true
  41264. },
  41265. {
  41266. name: "Macro",
  41267. height: math.unit(700, "feet")
  41268. },
  41269. {
  41270. name: "Mega Macro",
  41271. height: math.unit(25, "miles")
  41272. },
  41273. ]
  41274. ))
  41275. characterMakers.push(() => makeCharacter(
  41276. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41277. {
  41278. front: {
  41279. height: math.unit(6, "feet"),
  41280. weight: math.unit(170, "lb"),
  41281. name: "Front",
  41282. image: {
  41283. source: "./media/characters/xenon/front.svg",
  41284. extra: 1376/1305,
  41285. bottom: 56/1432
  41286. }
  41287. },
  41288. back: {
  41289. height: math.unit(6, "feet"),
  41290. weight: math.unit(170, "lb"),
  41291. name: "Back",
  41292. image: {
  41293. source: "./media/characters/xenon/back.svg",
  41294. extra: 1328/1259,
  41295. bottom: 95/1423
  41296. }
  41297. },
  41298. maw: {
  41299. height: math.unit(0.52, "feet"),
  41300. name: "Maw",
  41301. image: {
  41302. source: "./media/characters/xenon/maw.svg"
  41303. }
  41304. },
  41305. hand: {
  41306. height: math.unit(0.82, "feet"),
  41307. name: "Hand",
  41308. image: {
  41309. source: "./media/characters/xenon/hand.svg"
  41310. }
  41311. },
  41312. foot: {
  41313. height: math.unit(1.13, "feet"),
  41314. name: "Foot",
  41315. image: {
  41316. source: "./media/characters/xenon/foot.svg"
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Micro",
  41323. height: math.unit(0.8, "inches")
  41324. },
  41325. {
  41326. name: "Normal",
  41327. height: math.unit(6, "feet")
  41328. },
  41329. {
  41330. name: "Macro",
  41331. height: math.unit(50, "feet"),
  41332. default: true
  41333. },
  41334. {
  41335. name: "Macro+",
  41336. height: math.unit(250, "feet")
  41337. },
  41338. {
  41339. name: "Megamacro",
  41340. height: math.unit(1500, "feet")
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(7 + 5/12, "feet"),
  41349. name: "Front",
  41350. image: {
  41351. source: "./media/characters/zane/front.svg",
  41352. extra: 1260/1203,
  41353. bottom: 94/1354
  41354. }
  41355. },
  41356. back: {
  41357. height: math.unit(5.05, "feet"),
  41358. name: "Back",
  41359. image: {
  41360. source: "./media/characters/zane/back.svg",
  41361. extra: 893/829,
  41362. bottom: 30/923
  41363. }
  41364. },
  41365. werewolf: {
  41366. height: math.unit(11, "feet"),
  41367. name: "Werewolf",
  41368. image: {
  41369. source: "./media/characters/zane/werewolf.svg",
  41370. extra: 1383/1323,
  41371. bottom: 89/1472
  41372. }
  41373. },
  41374. foot: {
  41375. height: math.unit(1.46, "feet"),
  41376. name: "Foot",
  41377. image: {
  41378. source: "./media/characters/zane/foot.svg"
  41379. }
  41380. },
  41381. footFront: {
  41382. height: math.unit(0.784, "feet"),
  41383. name: "Foot (Front)",
  41384. image: {
  41385. source: "./media/characters/zane/foot-front.svg"
  41386. }
  41387. },
  41388. dick: {
  41389. height: math.unit(1.95, "feet"),
  41390. name: "Dick",
  41391. image: {
  41392. source: "./media/characters/zane/dick.svg"
  41393. }
  41394. },
  41395. dickWerewolf: {
  41396. height: math.unit(3.77, "feet"),
  41397. name: "Dick (Werewolf)",
  41398. image: {
  41399. source: "./media/characters/zane/dick.svg"
  41400. }
  41401. },
  41402. },
  41403. [
  41404. {
  41405. name: "Normal",
  41406. height: math.unit(7 + 5/12, "feet"),
  41407. default: true
  41408. },
  41409. ]
  41410. ))
  41411. characterMakers.push(() => makeCharacter(
  41412. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41413. {
  41414. front: {
  41415. height: math.unit(6 + 2/12, "feet"),
  41416. weight: math.unit(284, "lb"),
  41417. name: "Front",
  41418. image: {
  41419. source: "./media/characters/benni-desparque/front.svg",
  41420. extra: 1353/1126,
  41421. bottom: 69/1422
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Civilian",
  41428. height: math.unit(6 + 2/12, "feet")
  41429. },
  41430. {
  41431. name: "Normal",
  41432. height: math.unit(98, "feet"),
  41433. default: true
  41434. },
  41435. {
  41436. name: "Kaiju Fighter",
  41437. height: math.unit(268, "feet")
  41438. },
  41439. ]
  41440. ))
  41441. characterMakers.push(() => makeCharacter(
  41442. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41443. {
  41444. front: {
  41445. height: math.unit(5, "feet"),
  41446. weight: math.unit(105, "lb"),
  41447. name: "Front",
  41448. image: {
  41449. source: "./media/characters/maxine/front.svg",
  41450. extra: 1386/1250,
  41451. bottom: 71/1457
  41452. }
  41453. },
  41454. },
  41455. [
  41456. {
  41457. name: "Normal",
  41458. height: math.unit(5, "feet"),
  41459. default: true
  41460. },
  41461. ]
  41462. ))
  41463. characterMakers.push(() => makeCharacter(
  41464. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41465. {
  41466. front: {
  41467. height: math.unit(11 + 7/12, "feet"),
  41468. weight: math.unit(9576, "lb"),
  41469. name: "Front",
  41470. image: {
  41471. source: "./media/characters/scaly/front.svg",
  41472. extra: 888/867,
  41473. bottom: 36/924
  41474. }
  41475. },
  41476. },
  41477. [
  41478. {
  41479. name: "Normal",
  41480. height: math.unit(11 + 7/12, "feet"),
  41481. default: true
  41482. },
  41483. ]
  41484. ))
  41485. characterMakers.push(() => makeCharacter(
  41486. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41487. {
  41488. front: {
  41489. height: math.unit(6 + 3/12, "feet"),
  41490. name: "Front",
  41491. image: {
  41492. source: "./media/characters/saelria/front.svg",
  41493. extra: 1243/1138,
  41494. bottom: 46/1289
  41495. }
  41496. },
  41497. },
  41498. [
  41499. {
  41500. name: "Micro",
  41501. height: math.unit(6, "inches"),
  41502. },
  41503. {
  41504. name: "Normal",
  41505. height: math.unit(6 + 3/12, "feet"),
  41506. default: true
  41507. },
  41508. {
  41509. name: "Macro",
  41510. height: math.unit(25, "feet")
  41511. },
  41512. ]
  41513. ))
  41514. characterMakers.push(() => makeCharacter(
  41515. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41516. {
  41517. front: {
  41518. height: math.unit(80, "meters"),
  41519. weight: math.unit(7000, "tonnes"),
  41520. name: "Front",
  41521. image: {
  41522. source: "./media/characters/tef/front.svg",
  41523. extra: 2036/1991,
  41524. bottom: 54/2090
  41525. }
  41526. },
  41527. back: {
  41528. height: math.unit(80, "meters"),
  41529. weight: math.unit(7000, "tonnes"),
  41530. name: "Back",
  41531. image: {
  41532. source: "./media/characters/tef/back.svg",
  41533. extra: 2036/1991,
  41534. bottom: 54/2090
  41535. }
  41536. },
  41537. },
  41538. [
  41539. {
  41540. name: "Macro",
  41541. height: math.unit(80, "meters"),
  41542. default: true
  41543. },
  41544. ]
  41545. ))
  41546. characterMakers.push(() => makeCharacter(
  41547. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41548. {
  41549. front: {
  41550. height: math.unit(13, "feet"),
  41551. weight: math.unit(6, "tons"),
  41552. name: "Front",
  41553. image: {
  41554. source: "./media/characters/rover/front.svg",
  41555. extra: 1233/1156,
  41556. bottom: 50/1283
  41557. }
  41558. },
  41559. back: {
  41560. height: math.unit(13, "feet"),
  41561. weight: math.unit(6, "tons"),
  41562. name: "Back",
  41563. image: {
  41564. source: "./media/characters/rover/back.svg",
  41565. extra: 1327/1258,
  41566. bottom: 39/1366
  41567. }
  41568. },
  41569. },
  41570. [
  41571. {
  41572. name: "Normal",
  41573. height: math.unit(13, "feet"),
  41574. default: true
  41575. },
  41576. {
  41577. name: "Macro",
  41578. height: math.unit(1300, "feet")
  41579. },
  41580. {
  41581. name: "Megamacro",
  41582. height: math.unit(1300, "miles")
  41583. },
  41584. {
  41585. name: "Gigamacro",
  41586. height: math.unit(1300000, "miles")
  41587. },
  41588. ]
  41589. ))
  41590. characterMakers.push(() => makeCharacter(
  41591. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41592. {
  41593. front: {
  41594. height: math.unit(6, "feet"),
  41595. weight: math.unit(150, "lb"),
  41596. name: "Front",
  41597. image: {
  41598. source: "./media/characters/ariz/front.svg",
  41599. extra: 1401/1346,
  41600. bottom: 5/1406
  41601. }
  41602. },
  41603. },
  41604. [
  41605. {
  41606. name: "Normal",
  41607. height: math.unit(10, "feet"),
  41608. default: true
  41609. },
  41610. ]
  41611. ))
  41612. characterMakers.push(() => makeCharacter(
  41613. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41614. {
  41615. front: {
  41616. height: math.unit(6, "feet"),
  41617. weight: math.unit(140, "lb"),
  41618. name: "Front",
  41619. image: {
  41620. source: "./media/characters/sigrun/front.svg",
  41621. extra: 1418/1359,
  41622. bottom: 27/1445
  41623. }
  41624. },
  41625. },
  41626. [
  41627. {
  41628. name: "Macro",
  41629. height: math.unit(35, "feet"),
  41630. default: true
  41631. },
  41632. ]
  41633. ))
  41634. characterMakers.push(() => makeCharacter(
  41635. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41636. {
  41637. front: {
  41638. height: math.unit(6, "feet"),
  41639. weight: math.unit(150, "lb"),
  41640. name: "Front",
  41641. image: {
  41642. source: "./media/characters/numin/front.svg",
  41643. extra: 1433/1388,
  41644. bottom: 12/1445
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Macro",
  41651. height: math.unit(21.5, "km"),
  41652. default: true
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41658. {
  41659. front: {
  41660. height: math.unit(6, "feet"),
  41661. weight: math.unit(463, "lb"),
  41662. name: "Front",
  41663. image: {
  41664. source: "./media/characters/melwa/front.svg",
  41665. extra: 1307/1248,
  41666. bottom: 93/1400
  41667. }
  41668. },
  41669. },
  41670. [
  41671. {
  41672. name: "Macro",
  41673. height: math.unit(50, "meters"),
  41674. default: true
  41675. },
  41676. ]
  41677. ))
  41678. characterMakers.push(() => makeCharacter(
  41679. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41680. {
  41681. front: {
  41682. height: math.unit(325, "feet"),
  41683. name: "Front",
  41684. image: {
  41685. source: "./media/characters/zorkaiju/front.svg",
  41686. extra: 1955/1814,
  41687. bottom: 40/1995
  41688. }
  41689. },
  41690. frontExtended: {
  41691. height: math.unit(325, "feet"),
  41692. name: "Front (Extended)",
  41693. image: {
  41694. source: "./media/characters/zorkaiju/front-extended.svg",
  41695. extra: 1955/1814,
  41696. bottom: 40/1995
  41697. }
  41698. },
  41699. side: {
  41700. height: math.unit(325, "feet"),
  41701. name: "Side",
  41702. image: {
  41703. source: "./media/characters/zorkaiju/side.svg",
  41704. extra: 1495/1396,
  41705. bottom: 17/1512
  41706. }
  41707. },
  41708. sideExtended: {
  41709. height: math.unit(325, "feet"),
  41710. name: "Side (Extended)",
  41711. image: {
  41712. source: "./media/characters/zorkaiju/side-extended.svg",
  41713. extra: 1495/1396,
  41714. bottom: 17/1512
  41715. }
  41716. },
  41717. back: {
  41718. height: math.unit(325, "feet"),
  41719. name: "Back",
  41720. image: {
  41721. source: "./media/characters/zorkaiju/back.svg",
  41722. extra: 1959/1821,
  41723. bottom: 31/1990
  41724. }
  41725. },
  41726. backExtended: {
  41727. height: math.unit(325, "feet"),
  41728. name: "Back (Extended)",
  41729. image: {
  41730. source: "./media/characters/zorkaiju/back-extended.svg",
  41731. extra: 1959/1821,
  41732. bottom: 31/1990
  41733. }
  41734. },
  41735. hand: {
  41736. height: math.unit(58.4, "feet"),
  41737. name: "Hand",
  41738. image: {
  41739. source: "./media/characters/zorkaiju/hand.svg"
  41740. }
  41741. },
  41742. handExtended: {
  41743. height: math.unit(61.4, "feet"),
  41744. name: "Hand (Extended)",
  41745. image: {
  41746. source: "./media/characters/zorkaiju/hand-extended.svg"
  41747. }
  41748. },
  41749. foot: {
  41750. height: math.unit(95, "feet"),
  41751. name: "Foot",
  41752. image: {
  41753. source: "./media/characters/zorkaiju/foot.svg"
  41754. }
  41755. },
  41756. leftArm: {
  41757. height: math.unit(59, "feet"),
  41758. name: "Left Arm",
  41759. image: {
  41760. source: "./media/characters/zorkaiju/left-arm.svg"
  41761. }
  41762. },
  41763. rightArm: {
  41764. height: math.unit(59, "feet"),
  41765. name: "Right Arm",
  41766. image: {
  41767. source: "./media/characters/zorkaiju/right-arm.svg"
  41768. }
  41769. },
  41770. leftArmExtended: {
  41771. height: math.unit(59 * 1.033546, "feet"),
  41772. name: "Left Arm (Extended)",
  41773. image: {
  41774. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41775. }
  41776. },
  41777. rightArmExtended: {
  41778. height: math.unit(59 * 1.0496, "feet"),
  41779. name: "Right Arm (Extended)",
  41780. image: {
  41781. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41782. }
  41783. },
  41784. tail: {
  41785. height: math.unit(104, "feet"),
  41786. name: "Tail",
  41787. image: {
  41788. source: "./media/characters/zorkaiju/tail.svg"
  41789. }
  41790. },
  41791. tailExtended: {
  41792. height: math.unit(104, "feet"),
  41793. name: "Tail (Extended)",
  41794. image: {
  41795. source: "./media/characters/zorkaiju/tail-extended.svg"
  41796. }
  41797. },
  41798. tailBottom: {
  41799. height: math.unit(104, "feet"),
  41800. name: "Tail Bottom",
  41801. image: {
  41802. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41803. }
  41804. },
  41805. crystal: {
  41806. height: math.unit(27.54, "feet"),
  41807. name: "Crystal",
  41808. image: {
  41809. source: "./media/characters/zorkaiju/crystal.svg"
  41810. }
  41811. },
  41812. },
  41813. [
  41814. {
  41815. name: "Kaiju",
  41816. height: math.unit(325, "feet"),
  41817. default: true
  41818. },
  41819. ]
  41820. ))
  41821. characterMakers.push(() => makeCharacter(
  41822. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41823. {
  41824. front: {
  41825. height: math.unit(6 + 1/12, "feet"),
  41826. weight: math.unit(115, "lb"),
  41827. name: "Front",
  41828. image: {
  41829. source: "./media/characters/bailey-belfry/front.svg",
  41830. extra: 1240/1121,
  41831. bottom: 101/1341
  41832. }
  41833. },
  41834. },
  41835. [
  41836. {
  41837. name: "Normal",
  41838. height: math.unit(6 + 1/12, "feet"),
  41839. default: true
  41840. },
  41841. ]
  41842. ))
  41843. characterMakers.push(() => makeCharacter(
  41844. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41845. {
  41846. side: {
  41847. height: math.unit(4, "meters"),
  41848. weight: math.unit(250, "kg"),
  41849. name: "Side",
  41850. image: {
  41851. source: "./media/characters/blacky/side.svg",
  41852. extra: 1027/919,
  41853. bottom: 43/1070
  41854. }
  41855. },
  41856. maw: {
  41857. height: math.unit(1, "meters"),
  41858. name: "Maw",
  41859. image: {
  41860. source: "./media/characters/blacky/maw.svg"
  41861. }
  41862. },
  41863. paw: {
  41864. height: math.unit(1, "meters"),
  41865. name: "Paw",
  41866. image: {
  41867. source: "./media/characters/blacky/paw.svg"
  41868. }
  41869. },
  41870. },
  41871. [
  41872. {
  41873. name: "Normal",
  41874. height: math.unit(4, "meters"),
  41875. default: true
  41876. },
  41877. ]
  41878. ))
  41879. characterMakers.push(() => makeCharacter(
  41880. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41881. {
  41882. front: {
  41883. height: math.unit(170, "cm"),
  41884. weight: math.unit(66, "kg"),
  41885. name: "Front",
  41886. image: {
  41887. source: "./media/characters/thux-ei/front.svg",
  41888. extra: 1109/1011,
  41889. bottom: 8/1117
  41890. }
  41891. },
  41892. },
  41893. [
  41894. {
  41895. name: "Normal",
  41896. height: math.unit(170, "cm"),
  41897. default: true
  41898. },
  41899. ]
  41900. ))
  41901. characterMakers.push(() => makeCharacter(
  41902. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41903. {
  41904. front: {
  41905. height: math.unit(5, "feet"),
  41906. weight: math.unit(120, "lb"),
  41907. name: "Front",
  41908. image: {
  41909. source: "./media/characters/roxanne-voltaire/front.svg",
  41910. extra: 1901/1779,
  41911. bottom: 53/1954
  41912. }
  41913. },
  41914. },
  41915. [
  41916. {
  41917. name: "Normal",
  41918. height: math.unit(5, "feet"),
  41919. default: true
  41920. },
  41921. {
  41922. name: "Giant",
  41923. height: math.unit(50, "feet")
  41924. },
  41925. {
  41926. name: "Titan",
  41927. height: math.unit(500, "feet")
  41928. },
  41929. {
  41930. name: "Macro",
  41931. height: math.unit(5000, "feet")
  41932. },
  41933. {
  41934. name: "Megamacro",
  41935. height: math.unit(50000, "feet")
  41936. },
  41937. {
  41938. name: "Gigamacro",
  41939. height: math.unit(500000, "feet")
  41940. },
  41941. {
  41942. name: "Teramacro",
  41943. height: math.unit(5e6, "feet")
  41944. },
  41945. ]
  41946. ))
  41947. characterMakers.push(() => makeCharacter(
  41948. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41949. {
  41950. front: {
  41951. height: math.unit(6 + 2/12, "feet"),
  41952. name: "Front",
  41953. image: {
  41954. source: "./media/characters/squeaks/front.svg",
  41955. extra: 1823/1768,
  41956. bottom: 138/1961
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Micro",
  41963. height: math.unit(0.5, "inches")
  41964. },
  41965. {
  41966. name: "Normal",
  41967. height: math.unit(6 + 2/12, "feet"),
  41968. default: true
  41969. },
  41970. {
  41971. name: "Macro",
  41972. height: math.unit(600, "feet")
  41973. },
  41974. ]
  41975. ))
  41976. characterMakers.push(() => makeCharacter(
  41977. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41978. {
  41979. front: {
  41980. height: math.unit(1.72, "meters"),
  41981. name: "Front",
  41982. image: {
  41983. source: "./media/characters/archinger/front.svg",
  41984. extra: 1861/1675,
  41985. bottom: 125/1986
  41986. }
  41987. },
  41988. back: {
  41989. height: math.unit(1.72, "meters"),
  41990. name: "Back",
  41991. image: {
  41992. source: "./media/characters/archinger/back.svg",
  41993. extra: 1844/1701,
  41994. bottom: 104/1948
  41995. }
  41996. },
  41997. cock: {
  41998. height: math.unit(0.59, "feet"),
  41999. name: "Cock",
  42000. image: {
  42001. source: "./media/characters/archinger/cock.svg"
  42002. }
  42003. },
  42004. },
  42005. [
  42006. {
  42007. name: "Normal",
  42008. height: math.unit(1.72, "meters"),
  42009. default: true
  42010. },
  42011. {
  42012. name: "Macro",
  42013. height: math.unit(84, "meters")
  42014. },
  42015. {
  42016. name: "Macro+",
  42017. height: math.unit(112, "meters")
  42018. },
  42019. {
  42020. name: "Macro++",
  42021. height: math.unit(960, "meters")
  42022. },
  42023. {
  42024. name: "Macro+++",
  42025. height: math.unit(4, "km")
  42026. },
  42027. {
  42028. name: "Macro++++",
  42029. height: math.unit(48, "km")
  42030. },
  42031. {
  42032. name: "Macro+++++",
  42033. height: math.unit(4500, "km")
  42034. },
  42035. ]
  42036. ))
  42037. characterMakers.push(() => makeCharacter(
  42038. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42039. {
  42040. front: {
  42041. height: math.unit(5 + 5/12, "feet"),
  42042. name: "Front",
  42043. image: {
  42044. source: "./media/characters/alsnapz/front.svg",
  42045. extra: 1157/1065,
  42046. bottom: 42/1199
  42047. }
  42048. },
  42049. },
  42050. [
  42051. {
  42052. name: "Normal",
  42053. height: math.unit(5 + 5/12, "feet"),
  42054. default: true
  42055. },
  42056. ]
  42057. ))
  42058. characterMakers.push(() => makeCharacter(
  42059. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42060. {
  42061. side: {
  42062. height: math.unit(3.2, "earths"),
  42063. name: "Side",
  42064. image: {
  42065. source: "./media/characters/mag/side.svg",
  42066. extra: 1331/1008,
  42067. bottom: 52/1383
  42068. }
  42069. },
  42070. wing: {
  42071. height: math.unit(1.94, "earths"),
  42072. name: "Wing",
  42073. image: {
  42074. source: "./media/characters/mag/wing.svg"
  42075. }
  42076. },
  42077. dick: {
  42078. height: math.unit(1.8, "earths"),
  42079. name: "Dick",
  42080. image: {
  42081. source: "./media/characters/mag/dick.svg"
  42082. }
  42083. },
  42084. ass: {
  42085. height: math.unit(1.33, "earths"),
  42086. name: "Ass",
  42087. image: {
  42088. source: "./media/characters/mag/ass.svg"
  42089. }
  42090. },
  42091. head: {
  42092. height: math.unit(1.1, "earths"),
  42093. name: "Head",
  42094. image: {
  42095. source: "./media/characters/mag/head.svg"
  42096. }
  42097. },
  42098. maw: {
  42099. height: math.unit(1.62, "earths"),
  42100. name: "Maw",
  42101. image: {
  42102. source: "./media/characters/mag/maw.svg"
  42103. }
  42104. },
  42105. },
  42106. [
  42107. {
  42108. name: "Small",
  42109. height: math.unit(162, "feet")
  42110. },
  42111. {
  42112. name: "Normal",
  42113. height: math.unit(3.2, "earths"),
  42114. default: true
  42115. },
  42116. ]
  42117. ))
  42118. characterMakers.push(() => makeCharacter(
  42119. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42120. {
  42121. front: {
  42122. height: math.unit(512, "feet"),
  42123. weight: math.unit(63509, "tonnes"),
  42124. name: "Front",
  42125. image: {
  42126. source: "./media/characters/vorrel-harroc/front.svg",
  42127. extra: 1075/1063,
  42128. bottom: 62/1137
  42129. }
  42130. },
  42131. },
  42132. [
  42133. {
  42134. name: "Normal",
  42135. height: math.unit(10, "feet")
  42136. },
  42137. {
  42138. name: "Macro",
  42139. height: math.unit(512, "feet"),
  42140. default: true
  42141. },
  42142. {
  42143. name: "Megamacro",
  42144. height: math.unit(256, "miles")
  42145. },
  42146. {
  42147. name: "Gigamacro",
  42148. height: math.unit(4096, "miles")
  42149. },
  42150. ]
  42151. ))
  42152. characterMakers.push(() => makeCharacter(
  42153. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42154. {
  42155. side: {
  42156. height: math.unit(50, "feet"),
  42157. name: "Side",
  42158. image: {
  42159. source: "./media/characters/froimar/side.svg",
  42160. extra: 855/638,
  42161. bottom: 99/954
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Macro",
  42168. height: math.unit(50, "feet"),
  42169. default: true
  42170. },
  42171. ]
  42172. ))
  42173. characterMakers.push(() => makeCharacter(
  42174. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42175. {
  42176. front: {
  42177. height: math.unit(210, "miles"),
  42178. name: "Front",
  42179. image: {
  42180. source: "./media/characters/timothy/front.svg",
  42181. extra: 1007/943,
  42182. bottom: 62/1069
  42183. }
  42184. },
  42185. frontSkirt: {
  42186. height: math.unit(210, "miles"),
  42187. name: "Front (Skirt)",
  42188. image: {
  42189. source: "./media/characters/timothy/front-skirt.svg",
  42190. extra: 1007/943,
  42191. bottom: 62/1069
  42192. }
  42193. },
  42194. frontCoat: {
  42195. height: math.unit(210, "miles"),
  42196. name: "Front (Coat)",
  42197. image: {
  42198. source: "./media/characters/timothy/front-coat.svg",
  42199. extra: 1007/943,
  42200. bottom: 62/1069
  42201. }
  42202. },
  42203. },
  42204. [
  42205. {
  42206. name: "Macro",
  42207. height: math.unit(210, "miles"),
  42208. default: true
  42209. },
  42210. {
  42211. name: "Megamacro",
  42212. height: math.unit(210000, "miles")
  42213. },
  42214. ]
  42215. ))
  42216. characterMakers.push(() => makeCharacter(
  42217. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42218. {
  42219. front: {
  42220. height: math.unit(188, "feet"),
  42221. name: "Front",
  42222. image: {
  42223. source: "./media/characters/pyotr/front.svg",
  42224. extra: 1912/1826,
  42225. bottom: 18/1930
  42226. }
  42227. },
  42228. },
  42229. [
  42230. {
  42231. name: "Macro",
  42232. height: math.unit(188, "feet"),
  42233. default: true
  42234. },
  42235. {
  42236. name: "Megamacro",
  42237. height: math.unit(8, "miles")
  42238. },
  42239. ]
  42240. ))
  42241. characterMakers.push(() => makeCharacter(
  42242. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42243. {
  42244. side: {
  42245. height: math.unit(10, "feet"),
  42246. weight: math.unit(4500, "lb"),
  42247. name: "Side",
  42248. image: {
  42249. source: "./media/characters/ackart/side.svg",
  42250. extra: 1776/1668,
  42251. bottom: 116/1892
  42252. }
  42253. },
  42254. },
  42255. [
  42256. {
  42257. name: "Normal",
  42258. height: math.unit(10, "feet"),
  42259. default: true
  42260. },
  42261. ]
  42262. ))
  42263. characterMakers.push(() => makeCharacter(
  42264. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42265. {
  42266. side: {
  42267. height: math.unit(21, "feet"),
  42268. name: "Side",
  42269. image: {
  42270. source: "./media/characters/nolow/side.svg",
  42271. extra: 1484/1434,
  42272. bottom: 85/1569
  42273. }
  42274. },
  42275. sideErect: {
  42276. height: math.unit(21, "feet"),
  42277. name: "Side-erect",
  42278. image: {
  42279. source: "./media/characters/nolow/side-erect.svg",
  42280. extra: 1484/1434,
  42281. bottom: 85/1569
  42282. }
  42283. },
  42284. },
  42285. [
  42286. {
  42287. name: "Regular",
  42288. height: math.unit(12, "feet")
  42289. },
  42290. {
  42291. name: "Big Chee",
  42292. height: math.unit(21, "feet"),
  42293. default: true
  42294. },
  42295. ]
  42296. ))
  42297. characterMakers.push(() => makeCharacter(
  42298. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42299. {
  42300. front: {
  42301. height: math.unit(7, "feet"),
  42302. weight: math.unit(250, "lb"),
  42303. name: "Front",
  42304. image: {
  42305. source: "./media/characters/nines/front.svg",
  42306. extra: 1741/1607,
  42307. bottom: 41/1782
  42308. }
  42309. },
  42310. side: {
  42311. height: math.unit(7, "feet"),
  42312. weight: math.unit(250, "lb"),
  42313. name: "Side",
  42314. image: {
  42315. source: "./media/characters/nines/side.svg",
  42316. extra: 1854/1735,
  42317. bottom: 93/1947
  42318. }
  42319. },
  42320. back: {
  42321. height: math.unit(7, "feet"),
  42322. weight: math.unit(250, "lb"),
  42323. name: "Back",
  42324. image: {
  42325. source: "./media/characters/nines/back.svg",
  42326. extra: 1748/1615,
  42327. bottom: 20/1768
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Megamacro",
  42334. height: math.unit(99, "km"),
  42335. default: true
  42336. },
  42337. ]
  42338. ))
  42339. characterMakers.push(() => makeCharacter(
  42340. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42341. {
  42342. front: {
  42343. height: math.unit(5 + 10/12, "feet"),
  42344. weight: math.unit(210, "lb"),
  42345. name: "Front",
  42346. image: {
  42347. source: "./media/characters/zenith/front.svg",
  42348. extra: 1531/1452,
  42349. bottom: 198/1729
  42350. }
  42351. },
  42352. back: {
  42353. height: math.unit(5 + 10/12, "feet"),
  42354. weight: math.unit(210, "lb"),
  42355. name: "Back",
  42356. image: {
  42357. source: "./media/characters/zenith/back.svg",
  42358. extra: 1571/1487,
  42359. bottom: 75/1646
  42360. }
  42361. },
  42362. },
  42363. [
  42364. {
  42365. name: "Normal",
  42366. height: math.unit(5 + 10/12, "feet"),
  42367. default: true
  42368. }
  42369. ]
  42370. ))
  42371. characterMakers.push(() => makeCharacter(
  42372. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42373. {
  42374. front: {
  42375. height: math.unit(4, "feet"),
  42376. weight: math.unit(60, "lb"),
  42377. name: "Front",
  42378. image: {
  42379. source: "./media/characters/jasper/front.svg",
  42380. extra: 1450/1379,
  42381. bottom: 19/1469
  42382. }
  42383. },
  42384. },
  42385. [
  42386. {
  42387. name: "Normal",
  42388. height: math.unit(4, "feet"),
  42389. default: true
  42390. },
  42391. ]
  42392. ))
  42393. characterMakers.push(() => makeCharacter(
  42394. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42395. {
  42396. front: {
  42397. height: math.unit(6 + 5/12, "feet"),
  42398. weight: math.unit(290, "lb"),
  42399. name: "Front",
  42400. image: {
  42401. source: "./media/characters/tiberius-thyben/front.svg",
  42402. extra: 757/739,
  42403. bottom: 39/796
  42404. }
  42405. },
  42406. },
  42407. [
  42408. {
  42409. name: "Micro",
  42410. height: math.unit(1.5, "inches")
  42411. },
  42412. {
  42413. name: "Normal",
  42414. height: math.unit(6 + 5/12, "feet"),
  42415. default: true
  42416. },
  42417. {
  42418. name: "Macro",
  42419. height: math.unit(300, "feet")
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42425. {
  42426. front: {
  42427. height: math.unit(5 + 6/12, "feet"),
  42428. weight: math.unit(60, "kg"),
  42429. name: "Front",
  42430. image: {
  42431. source: "./media/characters/sabre/front.svg",
  42432. extra: 738/671,
  42433. bottom: 27/765
  42434. }
  42435. },
  42436. },
  42437. [
  42438. {
  42439. name: "Teeny",
  42440. height: math.unit(2, "inches")
  42441. },
  42442. {
  42443. name: "Smol",
  42444. height: math.unit(8, "inches")
  42445. },
  42446. {
  42447. name: "Normal",
  42448. height: math.unit(5 + 6/12, "feet"),
  42449. default: true
  42450. },
  42451. {
  42452. name: "Mini-Macro",
  42453. height: math.unit(15, "feet")
  42454. },
  42455. {
  42456. name: "Macro",
  42457. height: math.unit(50, "feet")
  42458. },
  42459. ]
  42460. ))
  42461. characterMakers.push(() => makeCharacter(
  42462. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42463. {
  42464. front: {
  42465. height: math.unit(6 + 4/12, "feet"),
  42466. weight: math.unit(170, "lb"),
  42467. name: "Front",
  42468. image: {
  42469. source: "./media/characters/charlie/front.svg",
  42470. extra: 1348/1228,
  42471. bottom: 15/1363
  42472. }
  42473. },
  42474. },
  42475. [
  42476. {
  42477. name: "Macro",
  42478. height: math.unit(1700, "meters"),
  42479. default: true
  42480. },
  42481. {
  42482. name: "MegaMacro",
  42483. height: math.unit(20400, "meters")
  42484. },
  42485. ]
  42486. ))
  42487. characterMakers.push(() => makeCharacter(
  42488. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42489. {
  42490. front: {
  42491. height: math.unit(6 + 3/12, "feet"),
  42492. weight: math.unit(185, "lb"),
  42493. name: "Front",
  42494. image: {
  42495. source: "./media/characters/susan-grant/front.svg",
  42496. extra: 1351/1327,
  42497. bottom: 26/1377
  42498. }
  42499. },
  42500. },
  42501. [
  42502. {
  42503. name: "Normal",
  42504. height: math.unit(6 + 3/12, "feet"),
  42505. default: true
  42506. },
  42507. {
  42508. name: "Macro",
  42509. height: math.unit(225, "feet")
  42510. },
  42511. {
  42512. name: "Macro+",
  42513. height: math.unit(900, "feet")
  42514. },
  42515. {
  42516. name: "MegaMacro",
  42517. height: math.unit(14400, "feet")
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42523. {
  42524. front: {
  42525. height: math.unit(5 + 4/12, "feet"),
  42526. weight: math.unit(110, "lb"),
  42527. name: "Front",
  42528. image: {
  42529. source: "./media/characters/axel-isanov/front.svg",
  42530. extra: 1096/1065,
  42531. bottom: 13/1109
  42532. }
  42533. },
  42534. },
  42535. [
  42536. {
  42537. name: "Normal",
  42538. height: math.unit(5 + 4/12, "feet"),
  42539. default: true
  42540. },
  42541. ]
  42542. ))
  42543. characterMakers.push(() => makeCharacter(
  42544. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42545. {
  42546. front: {
  42547. height: math.unit(9, "feet"),
  42548. weight: math.unit(467, "lb"),
  42549. name: "Front",
  42550. image: {
  42551. source: "./media/characters/necahual/front.svg",
  42552. extra: 920/873,
  42553. bottom: 26/946
  42554. }
  42555. },
  42556. back: {
  42557. height: math.unit(9, "feet"),
  42558. weight: math.unit(467, "lb"),
  42559. name: "Back",
  42560. image: {
  42561. source: "./media/characters/necahual/back.svg",
  42562. extra: 930/884,
  42563. bottom: 16/946
  42564. }
  42565. },
  42566. frontUnderwear: {
  42567. height: math.unit(9, "feet"),
  42568. weight: math.unit(467, "lb"),
  42569. name: "Front (Underwear)",
  42570. image: {
  42571. source: "./media/characters/necahual/front-underwear.svg",
  42572. extra: 920/873,
  42573. bottom: 26/946
  42574. }
  42575. },
  42576. frontDressed: {
  42577. height: math.unit(9, "feet"),
  42578. weight: math.unit(467, "lb"),
  42579. name: "Front (Dressed)",
  42580. image: {
  42581. source: "./media/characters/necahual/front-dressed.svg",
  42582. extra: 920/873,
  42583. bottom: 26/946
  42584. }
  42585. },
  42586. },
  42587. [
  42588. {
  42589. name: "Comprsesed",
  42590. height: math.unit(9, "feet")
  42591. },
  42592. {
  42593. name: "Natural",
  42594. height: math.unit(15, "feet"),
  42595. default: true
  42596. },
  42597. {
  42598. name: "Boosted",
  42599. height: math.unit(50, "feet")
  42600. },
  42601. {
  42602. name: "Boosted+",
  42603. height: math.unit(150, "feet")
  42604. },
  42605. {
  42606. name: "Max",
  42607. height: math.unit(500, "feet")
  42608. },
  42609. ]
  42610. ))
  42611. characterMakers.push(() => makeCharacter(
  42612. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42613. {
  42614. front: {
  42615. height: math.unit(22 + 1/12, "feet"),
  42616. weight: math.unit(3200, "lb"),
  42617. name: "Front",
  42618. image: {
  42619. source: "./media/characters/theo-acacia/front.svg",
  42620. extra: 1796/1741,
  42621. bottom: 83/1879
  42622. }
  42623. },
  42624. frontUnderwear: {
  42625. height: math.unit(22 + 1/12, "feet"),
  42626. weight: math.unit(3200, "lb"),
  42627. name: "Front (Underwear)",
  42628. image: {
  42629. source: "./media/characters/theo-acacia/front-underwear.svg",
  42630. extra: 1796/1741,
  42631. bottom: 83/1879
  42632. }
  42633. },
  42634. frontNude: {
  42635. height: math.unit(22 + 1/12, "feet"),
  42636. weight: math.unit(3200, "lb"),
  42637. name: "Front (Nude)",
  42638. image: {
  42639. source: "./media/characters/theo-acacia/front-nude.svg",
  42640. extra: 1796/1741,
  42641. bottom: 83/1879
  42642. }
  42643. },
  42644. },
  42645. [
  42646. {
  42647. name: "Normal",
  42648. height: math.unit(22 + 1/12, "feet"),
  42649. default: true
  42650. },
  42651. ]
  42652. ))
  42653. characterMakers.push(() => makeCharacter(
  42654. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42655. {
  42656. front: {
  42657. height: math.unit(20, "feet"),
  42658. name: "Front",
  42659. image: {
  42660. source: "./media/characters/astra/front.svg",
  42661. extra: 1850/1714,
  42662. bottom: 106/1956
  42663. }
  42664. },
  42665. frontUndressed: {
  42666. height: math.unit(20, "feet"),
  42667. name: "Front (Undressed)",
  42668. image: {
  42669. source: "./media/characters/astra/front-undressed.svg",
  42670. extra: 1926/1749,
  42671. bottom: 0/1926
  42672. }
  42673. },
  42674. hand: {
  42675. height: math.unit(1.53, "feet"),
  42676. name: "Hand",
  42677. image: {
  42678. source: "./media/characters/astra/hand.svg"
  42679. }
  42680. },
  42681. paw: {
  42682. height: math.unit(1.53, "feet"),
  42683. name: "Paw",
  42684. image: {
  42685. source: "./media/characters/astra/paw.svg"
  42686. }
  42687. },
  42688. },
  42689. [
  42690. {
  42691. name: "Smallest",
  42692. height: math.unit(20, "feet")
  42693. },
  42694. {
  42695. name: "Normal",
  42696. height: math.unit(1e9, "miles"),
  42697. default: true
  42698. },
  42699. {
  42700. name: "Larger",
  42701. height: math.unit(5, "multiverses")
  42702. },
  42703. {
  42704. name: "Largest",
  42705. height: math.unit(1e9, "multiverses")
  42706. },
  42707. ]
  42708. ))
  42709. characterMakers.push(() => makeCharacter(
  42710. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42711. {
  42712. front: {
  42713. height: math.unit(8, "feet"),
  42714. name: "Front",
  42715. image: {
  42716. source: "./media/characters/breanna/front.svg",
  42717. extra: 1912/1632,
  42718. bottom: 33/1945
  42719. }
  42720. },
  42721. },
  42722. [
  42723. {
  42724. name: "Smallest",
  42725. height: math.unit(8, "feet")
  42726. },
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(1, "mile"),
  42730. default: true
  42731. },
  42732. {
  42733. name: "Maximum",
  42734. height: math.unit(1500000000000, "lightyears")
  42735. },
  42736. ]
  42737. ))
  42738. characterMakers.push(() => makeCharacter(
  42739. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42740. {
  42741. front: {
  42742. height: math.unit(5 + 11/12, "feet"),
  42743. weight: math.unit(155, "lb"),
  42744. name: "Front",
  42745. image: {
  42746. source: "./media/characters/cai/front.svg",
  42747. extra: 1823/1702,
  42748. bottom: 32/1855
  42749. }
  42750. },
  42751. back: {
  42752. height: math.unit(5 + 11/12, "feet"),
  42753. weight: math.unit(155, "lb"),
  42754. name: "Back",
  42755. image: {
  42756. source: "./media/characters/cai/back.svg",
  42757. extra: 1809/1708,
  42758. bottom: 31/1840
  42759. }
  42760. },
  42761. },
  42762. [
  42763. {
  42764. name: "Normal",
  42765. height: math.unit(5 + 11/12, "feet"),
  42766. default: true
  42767. },
  42768. {
  42769. name: "Big",
  42770. height: math.unit(15, "feet")
  42771. },
  42772. {
  42773. name: "Macro",
  42774. height: math.unit(200, "feet")
  42775. },
  42776. ]
  42777. ))
  42778. characterMakers.push(() => makeCharacter(
  42779. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42780. {
  42781. front: {
  42782. height: math.unit(5 + 6/12, "feet"),
  42783. weight: math.unit(160, "lb"),
  42784. name: "Front",
  42785. image: {
  42786. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42787. extra: 1227/1174,
  42788. bottom: 37/1264
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Macro",
  42795. height: math.unit(444, "meters"),
  42796. default: true
  42797. },
  42798. ]
  42799. ))
  42800. characterMakers.push(() => makeCharacter(
  42801. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42802. {
  42803. front: {
  42804. height: math.unit(18 + 7/12, "feet"),
  42805. name: "Front",
  42806. image: {
  42807. source: "./media/characters/rex/front.svg",
  42808. extra: 1941/1807,
  42809. bottom: 66/2007
  42810. }
  42811. },
  42812. back: {
  42813. height: math.unit(18 + 7/12, "feet"),
  42814. name: "Back",
  42815. image: {
  42816. source: "./media/characters/rex/back.svg",
  42817. extra: 1937/1822,
  42818. bottom: 42/1979
  42819. }
  42820. },
  42821. boot: {
  42822. height: math.unit(3.45, "feet"),
  42823. name: "Boot",
  42824. image: {
  42825. source: "./media/characters/rex/boot.svg"
  42826. }
  42827. },
  42828. paw: {
  42829. height: math.unit(4.17, "feet"),
  42830. name: "Paw",
  42831. image: {
  42832. source: "./media/characters/rex/paw.svg"
  42833. }
  42834. },
  42835. head: {
  42836. height: math.unit(6.728, "feet"),
  42837. name: "Head",
  42838. image: {
  42839. source: "./media/characters/rex/head.svg"
  42840. }
  42841. },
  42842. },
  42843. [
  42844. {
  42845. name: "Nano",
  42846. height: math.unit(18 + 7/12, "feet")
  42847. },
  42848. {
  42849. name: "Micro",
  42850. height: math.unit(1.5, "megameters")
  42851. },
  42852. {
  42853. name: "Normal",
  42854. height: math.unit(440, "megameters"),
  42855. default: true
  42856. },
  42857. {
  42858. name: "Macro",
  42859. height: math.unit(2.5, "gigameters")
  42860. },
  42861. {
  42862. name: "Gigamacro",
  42863. height: math.unit(2, "galaxies")
  42864. },
  42865. ]
  42866. ))
  42867. characterMakers.push(() => makeCharacter(
  42868. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42869. {
  42870. side: {
  42871. height: math.unit(32, "feet"),
  42872. weight: math.unit(250000, "lb"),
  42873. name: "Side",
  42874. image: {
  42875. source: "./media/characters/silverwing/side.svg",
  42876. extra: 1100/1019,
  42877. bottom: 204/1304
  42878. }
  42879. },
  42880. },
  42881. [
  42882. {
  42883. name: "Normal",
  42884. height: math.unit(32, "feet"),
  42885. default: true
  42886. },
  42887. ]
  42888. ))
  42889. characterMakers.push(() => makeCharacter(
  42890. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42891. {
  42892. front: {
  42893. height: math.unit(6 + 6/12, "feet"),
  42894. weight: math.unit(350, "lb"),
  42895. name: "Front",
  42896. image: {
  42897. source: "./media/characters/tristan-hawthorne/front.svg",
  42898. extra: 1159/1124,
  42899. bottom: 37/1196
  42900. },
  42901. form: "labrador",
  42902. default: true
  42903. },
  42904. skunkFront: {
  42905. height: math.unit(4 + 6/12, "feet"),
  42906. weight: math.unit(120, "lb"),
  42907. name: "Front",
  42908. image: {
  42909. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42910. extra: 1609/1551,
  42911. bottom: 169/1778
  42912. },
  42913. form: "skunk",
  42914. default: true
  42915. },
  42916. },
  42917. [
  42918. {
  42919. name: "Normal",
  42920. height: math.unit(6 + 6/12, "feet"),
  42921. form: "labrador",
  42922. default: true
  42923. },
  42924. {
  42925. name: "Normal",
  42926. height: math.unit(4 + 6/12, "feet"),
  42927. form: "skunk",
  42928. default: true
  42929. },
  42930. ],
  42931. {
  42932. "labrador": {
  42933. name: "Labrador",
  42934. default: true
  42935. },
  42936. "skunk": {
  42937. name: "Skunk"
  42938. }
  42939. }
  42940. ))
  42941. characterMakers.push(() => makeCharacter(
  42942. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42943. {
  42944. front: {
  42945. height: math.unit(5 + 11/12, "feet"),
  42946. weight: math.unit(190, "lb"),
  42947. name: "Front",
  42948. image: {
  42949. source: "./media/characters/mizu/front.svg",
  42950. extra: 1988/1788,
  42951. bottom: 14/2002
  42952. }
  42953. },
  42954. },
  42955. [
  42956. {
  42957. name: "Normal",
  42958. height: math.unit(5 + 11/12, "feet"),
  42959. default: true
  42960. },
  42961. ]
  42962. ))
  42963. characterMakers.push(() => makeCharacter(
  42964. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42965. {
  42966. front: {
  42967. height: math.unit(1.7, "feet"),
  42968. weight: math.unit(50, "lb"),
  42969. name: "Front",
  42970. image: {
  42971. source: "./media/characters/dechroma/front.svg",
  42972. extra: 1095/859,
  42973. bottom: 64/1159
  42974. }
  42975. },
  42976. },
  42977. [
  42978. {
  42979. name: "Normal",
  42980. height: math.unit(1.7, "feet"),
  42981. default: true
  42982. },
  42983. ]
  42984. ))
  42985. characterMakers.push(() => makeCharacter(
  42986. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42987. {
  42988. side: {
  42989. height: math.unit(30, "feet"),
  42990. name: "Side",
  42991. image: {
  42992. source: "./media/characters/veluren-thanazel/side.svg",
  42993. extra: 1611/633,
  42994. bottom: 118/1729
  42995. }
  42996. },
  42997. front: {
  42998. height: math.unit(30, "feet"),
  42999. name: "Front",
  43000. image: {
  43001. source: "./media/characters/veluren-thanazel/front.svg",
  43002. extra: 1486/636,
  43003. bottom: 238/1724
  43004. }
  43005. },
  43006. head: {
  43007. height: math.unit(21.4, "feet"),
  43008. name: "Head",
  43009. image: {
  43010. source: "./media/characters/veluren-thanazel/head.svg"
  43011. }
  43012. },
  43013. genitals: {
  43014. height: math.unit(19.4, "feet"),
  43015. name: "Genitals",
  43016. image: {
  43017. source: "./media/characters/veluren-thanazel/genitals.svg"
  43018. }
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Social",
  43024. height: math.unit(6, "feet")
  43025. },
  43026. {
  43027. name: "Play",
  43028. height: math.unit(12, "feet")
  43029. },
  43030. {
  43031. name: "True",
  43032. height: math.unit(30, "feet"),
  43033. default: true
  43034. },
  43035. ]
  43036. ))
  43037. characterMakers.push(() => makeCharacter(
  43038. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43039. {
  43040. front: {
  43041. height: math.unit(7 + 6/12, "feet"),
  43042. weight: math.unit(500, "kg"),
  43043. name: "Front",
  43044. image: {
  43045. source: "./media/characters/arcturas/front.svg",
  43046. extra: 1700/1500,
  43047. bottom: 145/1845
  43048. }
  43049. },
  43050. },
  43051. [
  43052. {
  43053. name: "Normal",
  43054. height: math.unit(7 + 6/12, "feet"),
  43055. default: true
  43056. },
  43057. ]
  43058. ))
  43059. characterMakers.push(() => makeCharacter(
  43060. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43061. {
  43062. side: {
  43063. height: math.unit(6, "feet"),
  43064. weight: math.unit(2, "tons"),
  43065. name: "Side",
  43066. image: {
  43067. source: "./media/characters/vitaen/side.svg",
  43068. extra: 1157/617,
  43069. bottom: 122/1279
  43070. }
  43071. },
  43072. },
  43073. [
  43074. {
  43075. name: "Normal",
  43076. height: math.unit(6, "feet"),
  43077. default: true
  43078. },
  43079. ]
  43080. ))
  43081. characterMakers.push(() => makeCharacter(
  43082. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43083. {
  43084. front: {
  43085. height: math.unit(19, "feet"),
  43086. name: "Front",
  43087. image: {
  43088. source: "./media/characters/fia-dreamweaver/front.svg",
  43089. extra: 1630/1504,
  43090. bottom: 25/1655
  43091. }
  43092. },
  43093. },
  43094. [
  43095. {
  43096. name: "Normal",
  43097. height: math.unit(19, "feet"),
  43098. default: true
  43099. },
  43100. ]
  43101. ))
  43102. characterMakers.push(() => makeCharacter(
  43103. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43104. {
  43105. front: {
  43106. height: math.unit(5 + 4/12, "feet"),
  43107. name: "Front",
  43108. image: {
  43109. source: "./media/characters/artan/front.svg",
  43110. extra: 1618/1535,
  43111. bottom: 46/1664
  43112. }
  43113. },
  43114. back: {
  43115. height: math.unit(5 + 4/12, "feet"),
  43116. name: "Back",
  43117. image: {
  43118. source: "./media/characters/artan/back.svg",
  43119. extra: 1618/1543,
  43120. bottom: 31/1649
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Normal",
  43127. height: math.unit(5 + 4/12, "feet"),
  43128. default: true
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43134. {
  43135. side: {
  43136. height: math.unit(182, "cm"),
  43137. weight: math.unit(1000, "lb"),
  43138. name: "Side",
  43139. image: {
  43140. source: "./media/characters/silver-dragon/side.svg",
  43141. extra: 710/287,
  43142. bottom: 88/798
  43143. }
  43144. },
  43145. },
  43146. [
  43147. {
  43148. name: "Normal",
  43149. height: math.unit(182, "cm"),
  43150. default: true
  43151. },
  43152. ]
  43153. ))
  43154. characterMakers.push(() => makeCharacter(
  43155. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43156. {
  43157. side: {
  43158. height: math.unit(6 + 6/12, "feet"),
  43159. weight: math.unit(1.5, "tons"),
  43160. name: "Side",
  43161. image: {
  43162. source: "./media/characters/zephyr/side.svg",
  43163. extra: 1433/586,
  43164. bottom: 109/1542
  43165. }
  43166. },
  43167. },
  43168. [
  43169. {
  43170. name: "Normal",
  43171. height: math.unit(6 + 6/12, "feet"),
  43172. default: true
  43173. },
  43174. ]
  43175. ))
  43176. characterMakers.push(() => makeCharacter(
  43177. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43178. {
  43179. side: {
  43180. height: math.unit(1, "feet"),
  43181. name: "Side",
  43182. image: {
  43183. source: "./media/characters/vixye/side.svg",
  43184. extra: 632/541,
  43185. bottom: 0/632
  43186. }
  43187. },
  43188. },
  43189. [
  43190. {
  43191. name: "Normal",
  43192. height: math.unit(1, "feet"),
  43193. default: true
  43194. },
  43195. {
  43196. name: "True",
  43197. height: math.unit(1e15, "multiverses")
  43198. },
  43199. ]
  43200. ))
  43201. characterMakers.push(() => makeCharacter(
  43202. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43203. {
  43204. front: {
  43205. height: math.unit(8 + 2/12, "feet"),
  43206. weight: math.unit(650, "lb"),
  43207. name: "Front",
  43208. image: {
  43209. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43210. extra: 1174/1137,
  43211. bottom: 82/1256
  43212. }
  43213. },
  43214. back: {
  43215. height: math.unit(8 + 2/12, "feet"),
  43216. weight: math.unit(650, "lb"),
  43217. name: "Back",
  43218. image: {
  43219. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43220. extra: 1204/1157,
  43221. bottom: 46/1250
  43222. }
  43223. },
  43224. },
  43225. [
  43226. {
  43227. name: "Wildform",
  43228. height: math.unit(8 + 2/12, "feet"),
  43229. default: true
  43230. },
  43231. ]
  43232. ))
  43233. characterMakers.push(() => makeCharacter(
  43234. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43235. {
  43236. front: {
  43237. height: math.unit(18, "feet"),
  43238. name: "Front",
  43239. image: {
  43240. source: "./media/characters/cyphin/front.svg",
  43241. extra: 970/886,
  43242. bottom: 42/1012
  43243. }
  43244. },
  43245. back: {
  43246. height: math.unit(18, "feet"),
  43247. name: "Back",
  43248. image: {
  43249. source: "./media/characters/cyphin/back.svg",
  43250. extra: 1009/894,
  43251. bottom: 24/1033
  43252. }
  43253. },
  43254. head: {
  43255. height: math.unit(5.05, "feet"),
  43256. name: "Head",
  43257. image: {
  43258. source: "./media/characters/cyphin/head.svg"
  43259. }
  43260. },
  43261. tailbud: {
  43262. height: math.unit(5, "feet"),
  43263. name: "Tailbud",
  43264. image: {
  43265. source: "./media/characters/cyphin/tailbud.svg"
  43266. }
  43267. },
  43268. },
  43269. [
  43270. ]
  43271. ))
  43272. characterMakers.push(() => makeCharacter(
  43273. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43274. {
  43275. side: {
  43276. height: math.unit(10, "feet"),
  43277. weight: math.unit(6, "tons"),
  43278. name: "Side",
  43279. image: {
  43280. source: "./media/characters/raijin/side.svg",
  43281. extra: 1529/613,
  43282. bottom: 337/1866
  43283. }
  43284. },
  43285. },
  43286. [
  43287. {
  43288. name: "Normal",
  43289. height: math.unit(10, "feet"),
  43290. default: true
  43291. },
  43292. ]
  43293. ))
  43294. characterMakers.push(() => makeCharacter(
  43295. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43296. {
  43297. side: {
  43298. height: math.unit(9, "feet"),
  43299. name: "Side",
  43300. image: {
  43301. source: "./media/characters/nilghais/side.svg",
  43302. extra: 1047/744,
  43303. bottom: 91/1138
  43304. }
  43305. },
  43306. head: {
  43307. height: math.unit(3.14, "feet"),
  43308. name: "Head",
  43309. image: {
  43310. source: "./media/characters/nilghais/head.svg"
  43311. }
  43312. },
  43313. mouth: {
  43314. height: math.unit(4.6, "feet"),
  43315. name: "Mouth",
  43316. image: {
  43317. source: "./media/characters/nilghais/mouth.svg"
  43318. }
  43319. },
  43320. wings: {
  43321. height: math.unit(24, "feet"),
  43322. name: "Wings",
  43323. image: {
  43324. source: "./media/characters/nilghais/wings.svg"
  43325. }
  43326. },
  43327. ass: {
  43328. height: math.unit(6.12, "feet"),
  43329. name: "Ass",
  43330. image: {
  43331. source: "./media/characters/nilghais/ass.svg"
  43332. }
  43333. },
  43334. },
  43335. [
  43336. {
  43337. name: "Normal",
  43338. height: math.unit(9, "feet"),
  43339. default: true
  43340. },
  43341. ]
  43342. ))
  43343. characterMakers.push(() => makeCharacter(
  43344. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43345. {
  43346. regular: {
  43347. height: math.unit(16 + 2/12, "feet"),
  43348. weight: math.unit(2300, "lb"),
  43349. name: "Regular",
  43350. image: {
  43351. source: "./media/characters/zolgar/regular.svg",
  43352. extra: 1246/1004,
  43353. bottom: 124/1370
  43354. }
  43355. },
  43356. boxers: {
  43357. height: math.unit(16 + 2/12, "feet"),
  43358. weight: math.unit(2300, "lb"),
  43359. name: "Boxers",
  43360. image: {
  43361. source: "./media/characters/zolgar/boxers.svg",
  43362. extra: 1246/1004,
  43363. bottom: 124/1370
  43364. }
  43365. },
  43366. armored: {
  43367. height: math.unit(16 + 2/12, "feet"),
  43368. weight: math.unit(2300, "lb"),
  43369. name: "Armored",
  43370. image: {
  43371. source: "./media/characters/zolgar/armored.svg",
  43372. extra: 1246/1004,
  43373. bottom: 124/1370
  43374. }
  43375. },
  43376. goth: {
  43377. height: math.unit(16 + 2/12, "feet"),
  43378. weight: math.unit(2300, "lb"),
  43379. name: "Goth",
  43380. image: {
  43381. source: "./media/characters/zolgar/goth.svg",
  43382. extra: 1246/1004,
  43383. bottom: 124/1370
  43384. }
  43385. },
  43386. },
  43387. [
  43388. {
  43389. name: "Shrunken Down",
  43390. height: math.unit(9 + 2/12, "feet")
  43391. },
  43392. {
  43393. name: "Normal",
  43394. height: math.unit(16 + 2/12, "feet"),
  43395. default: true
  43396. },
  43397. ]
  43398. ))
  43399. characterMakers.push(() => makeCharacter(
  43400. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43401. {
  43402. front: {
  43403. height: math.unit(6, "feet"),
  43404. weight: math.unit(168, "lb"),
  43405. name: "Front",
  43406. image: {
  43407. source: "./media/characters/luca/front.svg",
  43408. extra: 841/667,
  43409. bottom: 102/943
  43410. }
  43411. },
  43412. },
  43413. [
  43414. {
  43415. name: "Normal",
  43416. height: math.unit(6, "feet"),
  43417. default: true
  43418. },
  43419. ]
  43420. ))
  43421. characterMakers.push(() => makeCharacter(
  43422. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43423. {
  43424. side: {
  43425. height: math.unit(7 + 3/12, "feet"),
  43426. weight: math.unit(312, "lb"),
  43427. name: "Side",
  43428. image: {
  43429. source: "./media/characters/zezo/side.svg",
  43430. extra: 1192/1067,
  43431. bottom: 63/1255
  43432. }
  43433. },
  43434. },
  43435. [
  43436. {
  43437. name: "Normal",
  43438. height: math.unit(7 + 3/12, "feet"),
  43439. default: true
  43440. },
  43441. ]
  43442. ))
  43443. characterMakers.push(() => makeCharacter(
  43444. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43445. {
  43446. front: {
  43447. height: math.unit(5 + 5/12, "feet"),
  43448. weight: math.unit(170, "lb"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/mayso/front.svg",
  43452. extra: 1215/1108,
  43453. bottom: 16/1231
  43454. }
  43455. },
  43456. },
  43457. [
  43458. {
  43459. name: "Normal",
  43460. height: math.unit(5 + 5/12, "feet"),
  43461. default: true
  43462. },
  43463. ]
  43464. ))
  43465. characterMakers.push(() => makeCharacter(
  43466. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43467. {
  43468. front: {
  43469. height: math.unit(4 + 3/12, "feet"),
  43470. weight: math.unit(80, "lb"),
  43471. name: "Front",
  43472. image: {
  43473. source: "./media/characters/hess/front.svg",
  43474. extra: 1200/1123,
  43475. bottom: 16/1216
  43476. }
  43477. },
  43478. },
  43479. [
  43480. {
  43481. name: "Normal",
  43482. height: math.unit(4 + 3/12, "feet"),
  43483. default: true
  43484. },
  43485. ]
  43486. ))
  43487. characterMakers.push(() => makeCharacter(
  43488. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43489. {
  43490. front: {
  43491. height: math.unit(1.9, "meters"),
  43492. name: "Front",
  43493. image: {
  43494. source: "./media/characters/ashgar/front.svg",
  43495. extra: 1177/1146,
  43496. bottom: 99/1276
  43497. }
  43498. },
  43499. back: {
  43500. height: math.unit(1.9, "meters"),
  43501. name: "Back",
  43502. image: {
  43503. source: "./media/characters/ashgar/back.svg",
  43504. extra: 1201/1183,
  43505. bottom: 53/1254
  43506. }
  43507. },
  43508. feral: {
  43509. height: math.unit(1.4, "meters"),
  43510. name: "Feral",
  43511. image: {
  43512. source: "./media/characters/ashgar/feral.svg",
  43513. extra: 370/345,
  43514. bottom: 45/415
  43515. }
  43516. },
  43517. },
  43518. [
  43519. {
  43520. name: "Normal",
  43521. height: math.unit(1.9, "meters"),
  43522. default: true
  43523. },
  43524. ]
  43525. ))
  43526. characterMakers.push(() => makeCharacter(
  43527. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43528. {
  43529. regular: {
  43530. height: math.unit(6, "feet"),
  43531. weight: math.unit(220, "lb"),
  43532. name: "Regular",
  43533. image: {
  43534. source: "./media/characters/phillip/regular.svg",
  43535. extra: 1373/1277,
  43536. bottom: 75/1448
  43537. }
  43538. },
  43539. dressed: {
  43540. height: math.unit(6, "feet"),
  43541. weight: math.unit(220, "lb"),
  43542. name: "Dressed",
  43543. image: {
  43544. source: "./media/characters/phillip/dressed.svg",
  43545. extra: 1373/1277,
  43546. bottom: 75/1448
  43547. }
  43548. },
  43549. paw: {
  43550. height: math.unit(1.44, "feet"),
  43551. name: "Paw",
  43552. image: {
  43553. source: "./media/characters/phillip/paw.svg"
  43554. }
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Normal",
  43560. height: math.unit(6, "feet"),
  43561. default: true
  43562. },
  43563. ]
  43564. ))
  43565. characterMakers.push(() => makeCharacter(
  43566. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43567. {
  43568. side: {
  43569. height: math.unit(42, "feet"),
  43570. name: "Side",
  43571. image: {
  43572. source: "./media/characters/uvula/side.svg",
  43573. extra: 683/586,
  43574. bottom: 60/743
  43575. }
  43576. },
  43577. front: {
  43578. height: math.unit(42, "feet"),
  43579. name: "Front",
  43580. image: {
  43581. source: "./media/characters/uvula/front.svg",
  43582. extra: 705/613,
  43583. bottom: 54/759
  43584. }
  43585. },
  43586. maw: {
  43587. height: math.unit(23.5, "feet"),
  43588. name: "Maw",
  43589. image: {
  43590. source: "./media/characters/uvula/maw.svg"
  43591. }
  43592. },
  43593. },
  43594. [
  43595. {
  43596. name: "Original Size",
  43597. height: math.unit(14, "inches")
  43598. },
  43599. {
  43600. name: "Human Size",
  43601. height: math.unit(6, "feet")
  43602. },
  43603. {
  43604. name: "Big",
  43605. height: math.unit(42, "feet"),
  43606. default: true
  43607. },
  43608. {
  43609. name: "Bigger",
  43610. height: math.unit(100, "feet")
  43611. },
  43612. ]
  43613. ))
  43614. characterMakers.push(() => makeCharacter(
  43615. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43616. {
  43617. front: {
  43618. height: math.unit(5 + 11/12, "feet"),
  43619. name: "Front",
  43620. image: {
  43621. source: "./media/characters/lannah/front.svg",
  43622. extra: 1208/1113,
  43623. bottom: 97/1305
  43624. }
  43625. },
  43626. },
  43627. [
  43628. {
  43629. name: "Normal",
  43630. height: math.unit(5 + 11/12, "feet"),
  43631. default: true
  43632. },
  43633. ]
  43634. ))
  43635. characterMakers.push(() => makeCharacter(
  43636. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43637. {
  43638. front: {
  43639. height: math.unit(6 + 3/12, "feet"),
  43640. weight: math.unit(3.5, "tons"),
  43641. name: "Front",
  43642. image: {
  43643. source: "./media/characters/emberflame/front.svg",
  43644. extra: 1198/672,
  43645. bottom: 82/1280
  43646. }
  43647. },
  43648. side: {
  43649. height: math.unit(6 + 3/12, "feet"),
  43650. weight: math.unit(3.5, "tons"),
  43651. name: "Side",
  43652. image: {
  43653. source: "./media/characters/emberflame/side.svg",
  43654. extra: 938/527,
  43655. bottom: 56/994
  43656. }
  43657. },
  43658. },
  43659. [
  43660. {
  43661. name: "Normal",
  43662. height: math.unit(6 + 3/12, "feet"),
  43663. default: true
  43664. },
  43665. ]
  43666. ))
  43667. characterMakers.push(() => makeCharacter(
  43668. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43669. {
  43670. side: {
  43671. height: math.unit(17.5, "feet"),
  43672. weight: math.unit(35, "tons"),
  43673. name: "Side",
  43674. image: {
  43675. source: "./media/characters/sophie-ambrose/side.svg",
  43676. extra: 1573/1242,
  43677. bottom: 71/1644
  43678. }
  43679. },
  43680. maw: {
  43681. height: math.unit(7.4, "feet"),
  43682. name: "Maw",
  43683. image: {
  43684. source: "./media/characters/sophie-ambrose/maw.svg"
  43685. }
  43686. },
  43687. },
  43688. [
  43689. {
  43690. name: "Normal",
  43691. height: math.unit(17.5, "feet"),
  43692. default: true
  43693. },
  43694. ]
  43695. ))
  43696. characterMakers.push(() => makeCharacter(
  43697. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43698. {
  43699. front: {
  43700. height: math.unit(280, "feet"),
  43701. weight: math.unit(550, "tons"),
  43702. name: "Front",
  43703. image: {
  43704. source: "./media/characters/king-mugi/front.svg",
  43705. extra: 1102/947,
  43706. bottom: 104/1206
  43707. }
  43708. },
  43709. },
  43710. [
  43711. {
  43712. name: "King Mugi",
  43713. height: math.unit(280, "feet"),
  43714. default: true
  43715. },
  43716. ]
  43717. ))
  43718. characterMakers.push(() => makeCharacter(
  43719. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43720. {
  43721. front: {
  43722. height: math.unit(64, "meters"),
  43723. name: "Front",
  43724. image: {
  43725. source: "./media/characters/nova-fox/front.svg",
  43726. extra: 1310/1246,
  43727. bottom: 65/1375
  43728. }
  43729. },
  43730. },
  43731. [
  43732. {
  43733. name: "Macro",
  43734. height: math.unit(64, "meters"),
  43735. default: true
  43736. },
  43737. ]
  43738. ))
  43739. characterMakers.push(() => makeCharacter(
  43740. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43741. {
  43742. front: {
  43743. height: math.unit(6 + 3/12, "feet"),
  43744. weight: math.unit(170, "lb"),
  43745. name: "Front",
  43746. image: {
  43747. source: "./media/characters/sam-bat/front.svg",
  43748. extra: 1601/1411,
  43749. bottom: 125/1726
  43750. }
  43751. },
  43752. back: {
  43753. height: math.unit(6 + 3/12, "feet"),
  43754. weight: math.unit(170, "lb"),
  43755. name: "Back",
  43756. image: {
  43757. source: "./media/characters/sam-bat/back.svg",
  43758. extra: 1577/1405,
  43759. bottom: 58/1635
  43760. }
  43761. },
  43762. },
  43763. [
  43764. {
  43765. name: "Normal",
  43766. height: math.unit(6 + 3/12, "feet"),
  43767. default: true
  43768. },
  43769. ]
  43770. ))
  43771. characterMakers.push(() => makeCharacter(
  43772. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43773. {
  43774. front: {
  43775. height: math.unit(59, "feet"),
  43776. weight: math.unit(40000, "lb"),
  43777. name: "Front",
  43778. image: {
  43779. source: "./media/characters/inari/front.svg",
  43780. extra: 1884/1350,
  43781. bottom: 95/1979
  43782. }
  43783. },
  43784. },
  43785. [
  43786. {
  43787. name: "Gigantamax",
  43788. height: math.unit(59, "feet"),
  43789. default: true
  43790. },
  43791. ]
  43792. ))
  43793. characterMakers.push(() => makeCharacter(
  43794. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43795. {
  43796. front: {
  43797. height: math.unit(5 + 8/12, "feet"),
  43798. name: "Front",
  43799. image: {
  43800. source: "./media/characters/elizabeth/front.svg",
  43801. extra: 1395/1298,
  43802. bottom: 54/1449
  43803. }
  43804. },
  43805. mouth: {
  43806. height: math.unit(1.97, "feet"),
  43807. name: "Mouth",
  43808. image: {
  43809. source: "./media/characters/elizabeth/mouth.svg"
  43810. }
  43811. },
  43812. foot: {
  43813. height: math.unit(1.17, "feet"),
  43814. name: "Foot",
  43815. image: {
  43816. source: "./media/characters/elizabeth/foot.svg"
  43817. }
  43818. },
  43819. },
  43820. [
  43821. {
  43822. name: "Normal",
  43823. height: math.unit(5 + 8/12, "feet"),
  43824. default: true
  43825. },
  43826. {
  43827. name: "Minimacro",
  43828. height: math.unit(18, "feet")
  43829. },
  43830. {
  43831. name: "Macro",
  43832. height: math.unit(180, "feet")
  43833. },
  43834. ]
  43835. ))
  43836. characterMakers.push(() => makeCharacter(
  43837. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43838. {
  43839. front: {
  43840. height: math.unit(5 + 2/12, "feet"),
  43841. name: "Front",
  43842. image: {
  43843. source: "./media/characters/october-gossamer/front.svg",
  43844. extra: 505/454,
  43845. bottom: 7/512
  43846. }
  43847. },
  43848. back: {
  43849. height: math.unit(5 + 2/12, "feet"),
  43850. name: "Back",
  43851. image: {
  43852. source: "./media/characters/october-gossamer/back.svg",
  43853. extra: 501/454,
  43854. bottom: 11/512
  43855. }
  43856. },
  43857. },
  43858. [
  43859. {
  43860. name: "Normal",
  43861. height: math.unit(5 + 2/12, "feet"),
  43862. default: true
  43863. },
  43864. ]
  43865. ))
  43866. characterMakers.push(() => makeCharacter(
  43867. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43868. {
  43869. front: {
  43870. height: math.unit(5, "feet"),
  43871. name: "Front",
  43872. image: {
  43873. source: "./media/characters/epiglottis/front.svg",
  43874. extra: 923/849,
  43875. bottom: 17/940
  43876. }
  43877. },
  43878. },
  43879. [
  43880. {
  43881. name: "Original Size",
  43882. height: math.unit(10, "inches")
  43883. },
  43884. {
  43885. name: "Human Size",
  43886. height: math.unit(5, "feet"),
  43887. default: true
  43888. },
  43889. {
  43890. name: "Big",
  43891. height: math.unit(25, "feet")
  43892. },
  43893. {
  43894. name: "Bigger",
  43895. height: math.unit(50, "feet")
  43896. },
  43897. {
  43898. name: "oh lawd",
  43899. height: math.unit(75, "feet")
  43900. },
  43901. ]
  43902. ))
  43903. characterMakers.push(() => makeCharacter(
  43904. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43905. {
  43906. front: {
  43907. height: math.unit(2 + 4/12, "feet"),
  43908. weight: math.unit(60, "lb"),
  43909. name: "Front",
  43910. image: {
  43911. source: "./media/characters/lerm/front.svg",
  43912. extra: 796/790,
  43913. bottom: 79/875
  43914. }
  43915. },
  43916. },
  43917. [
  43918. {
  43919. name: "Normal",
  43920. height: math.unit(2 + 4/12, "feet"),
  43921. default: true
  43922. },
  43923. ]
  43924. ))
  43925. characterMakers.push(() => makeCharacter(
  43926. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43927. {
  43928. front: {
  43929. height: math.unit(5.5, "feet"),
  43930. weight: math.unit(130, "lb"),
  43931. name: "Front",
  43932. image: {
  43933. source: "./media/characters/xena-nebadon/front.svg",
  43934. extra: 1828/1730,
  43935. bottom: 79/1907
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "Tiny Puppy",
  43942. height: math.unit(3, "inches")
  43943. },
  43944. {
  43945. name: "Normal",
  43946. height: math.unit(5.5, "feet"),
  43947. default: true
  43948. },
  43949. {
  43950. name: "Lotta Lady",
  43951. height: math.unit(12, "feet")
  43952. },
  43953. {
  43954. name: "Pretty Big",
  43955. height: math.unit(100, "feet")
  43956. },
  43957. {
  43958. name: "Big",
  43959. height: math.unit(500, "feet")
  43960. },
  43961. {
  43962. name: "Skyscraper Toys",
  43963. height: math.unit(2500, "feet")
  43964. },
  43965. {
  43966. name: "Plane Catcher",
  43967. height: math.unit(8, "miles")
  43968. },
  43969. {
  43970. name: "Planet Toys",
  43971. height: math.unit(15, "earths")
  43972. },
  43973. {
  43974. name: "Stardust",
  43975. height: math.unit(0.25, "galaxies")
  43976. },
  43977. {
  43978. name: "Snacks",
  43979. height: math.unit(70, "universes")
  43980. },
  43981. ]
  43982. ))
  43983. characterMakers.push(() => makeCharacter(
  43984. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43985. {
  43986. front: {
  43987. height: math.unit(1.6, "meters"),
  43988. weight: math.unit(60, "kg"),
  43989. name: "Front",
  43990. image: {
  43991. source: "./media/characters/bounty/front.svg",
  43992. extra: 1426/1308,
  43993. bottom: 15/1441
  43994. }
  43995. },
  43996. back: {
  43997. height: math.unit(1.6, "meters"),
  43998. weight: math.unit(60, "kg"),
  43999. name: "Back",
  44000. image: {
  44001. source: "./media/characters/bounty/back.svg",
  44002. extra: 1417/1307,
  44003. bottom: 8/1425
  44004. }
  44005. },
  44006. },
  44007. [
  44008. {
  44009. name: "Normal",
  44010. height: math.unit(1.6, "meters"),
  44011. default: true
  44012. },
  44013. {
  44014. name: "Macro",
  44015. height: math.unit(300, "meters")
  44016. },
  44017. ]
  44018. ))
  44019. characterMakers.push(() => makeCharacter(
  44020. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44021. {
  44022. front: {
  44023. height: math.unit(2 + 8/12, "feet"),
  44024. weight: math.unit(15, "lb"),
  44025. name: "Front",
  44026. image: {
  44027. source: "./media/characters/mochi/front.svg",
  44028. extra: 1022/852,
  44029. bottom: 435/1457
  44030. }
  44031. },
  44032. back: {
  44033. height: math.unit(2 + 8/12, "feet"),
  44034. weight: math.unit(15, "lb"),
  44035. name: "Back",
  44036. image: {
  44037. source: "./media/characters/mochi/back.svg",
  44038. extra: 1335/1119,
  44039. bottom: 39/1374
  44040. }
  44041. },
  44042. bird: {
  44043. height: math.unit(2 + 8/12, "feet"),
  44044. weight: math.unit(15, "lb"),
  44045. name: "Bird",
  44046. image: {
  44047. source: "./media/characters/mochi/bird.svg",
  44048. extra: 1251/1113,
  44049. bottom: 178/1429
  44050. }
  44051. },
  44052. kaiju: {
  44053. height: math.unit(154, "feet"),
  44054. weight: math.unit(1e7, "lb"),
  44055. name: "Kaiju",
  44056. image: {
  44057. source: "./media/characters/mochi/kaiju.svg",
  44058. extra: 460/324,
  44059. bottom: 40/500
  44060. }
  44061. },
  44062. head: {
  44063. height: math.unit(1.21, "feet"),
  44064. name: "Head",
  44065. image: {
  44066. source: "./media/characters/mochi/head.svg"
  44067. }
  44068. },
  44069. alternateTail: {
  44070. height: math.unit(2 + 8/12, "feet"),
  44071. weight: math.unit(45, "lb"),
  44072. name: "Alternate Tail",
  44073. image: {
  44074. source: "./media/characters/mochi/alternate-tail.svg",
  44075. extra: 139/76,
  44076. bottom: 45/184
  44077. }
  44078. },
  44079. },
  44080. [
  44081. {
  44082. name: "Micro",
  44083. height: math.unit(2, "inches")
  44084. },
  44085. {
  44086. name: "Normal",
  44087. height: math.unit(2 + 8/12, "feet"),
  44088. default: true
  44089. },
  44090. {
  44091. name: "Macro",
  44092. height: math.unit(106, "feet")
  44093. },
  44094. ]
  44095. ))
  44096. characterMakers.push(() => makeCharacter(
  44097. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44098. {
  44099. front: {
  44100. height: math.unit(5.67, "feet"),
  44101. weight: math.unit(135, "lb"),
  44102. name: "Front",
  44103. image: {
  44104. source: "./media/characters/sarel/front.svg",
  44105. extra: 865/788,
  44106. bottom: 97/962
  44107. }
  44108. },
  44109. back: {
  44110. height: math.unit(5.67, "feet"),
  44111. weight: math.unit(135, "lb"),
  44112. name: "Back",
  44113. image: {
  44114. source: "./media/characters/sarel/back.svg",
  44115. extra: 857/777,
  44116. bottom: 32/889
  44117. }
  44118. },
  44119. chozoan: {
  44120. height: math.unit(5.67, "feet"),
  44121. weight: math.unit(135, "lb"),
  44122. name: "Chozoan",
  44123. image: {
  44124. source: "./media/characters/sarel/chozoan.svg",
  44125. extra: 865/788,
  44126. bottom: 97/962
  44127. }
  44128. },
  44129. current: {
  44130. height: math.unit(5.67, "feet"),
  44131. weight: math.unit(135, "lb"),
  44132. name: "Current",
  44133. image: {
  44134. source: "./media/characters/sarel/current.svg",
  44135. extra: 865/788,
  44136. bottom: 97/962
  44137. }
  44138. },
  44139. head: {
  44140. height: math.unit(1.77, "feet"),
  44141. name: "Head",
  44142. image: {
  44143. source: "./media/characters/sarel/head.svg"
  44144. }
  44145. },
  44146. claws: {
  44147. height: math.unit(1.8, "feet"),
  44148. name: "Claws",
  44149. image: {
  44150. source: "./media/characters/sarel/claws.svg"
  44151. }
  44152. },
  44153. clawsAlt: {
  44154. height: math.unit(1.8, "feet"),
  44155. name: "Claws-alt",
  44156. image: {
  44157. source: "./media/characters/sarel/claws-alt.svg"
  44158. }
  44159. },
  44160. },
  44161. [
  44162. {
  44163. name: "Normal",
  44164. height: math.unit(5.67, "feet"),
  44165. default: true
  44166. },
  44167. ]
  44168. ))
  44169. characterMakers.push(() => makeCharacter(
  44170. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44171. {
  44172. front: {
  44173. height: math.unit(5500, "feet"),
  44174. name: "Front",
  44175. image: {
  44176. source: "./media/characters/alyonia/front.svg",
  44177. extra: 1200/1135,
  44178. bottom: 29/1229
  44179. }
  44180. },
  44181. back: {
  44182. height: math.unit(5500, "feet"),
  44183. name: "Back",
  44184. image: {
  44185. source: "./media/characters/alyonia/back.svg",
  44186. extra: 1205/1138,
  44187. bottom: 10/1215
  44188. }
  44189. },
  44190. },
  44191. [
  44192. {
  44193. name: "Small",
  44194. height: math.unit(10, "feet")
  44195. },
  44196. {
  44197. name: "Macro",
  44198. height: math.unit(500, "feet")
  44199. },
  44200. {
  44201. name: "Mega Macro",
  44202. height: math.unit(5500, "feet"),
  44203. default: true
  44204. },
  44205. {
  44206. name: "Mega Macro+",
  44207. height: math.unit(500000, "feet")
  44208. },
  44209. {
  44210. name: "Giga Macro",
  44211. height: math.unit(3000, "miles")
  44212. },
  44213. {
  44214. name: "Tera Macro",
  44215. height: math.unit(2.8e6, "miles")
  44216. },
  44217. {
  44218. name: "Galactic",
  44219. height: math.unit(120000, "lightyears")
  44220. },
  44221. ]
  44222. ))
  44223. characterMakers.push(() => makeCharacter(
  44224. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44225. {
  44226. werewolf: {
  44227. height: math.unit(8, "feet"),
  44228. weight: math.unit(425, "lb"),
  44229. name: "Werewolf",
  44230. image: {
  44231. source: "./media/characters/autumn/werewolf.svg",
  44232. extra: 2154/2031,
  44233. bottom: 160/2314
  44234. }
  44235. },
  44236. human: {
  44237. height: math.unit(5 + 8/12, "feet"),
  44238. weight: math.unit(150, "lb"),
  44239. name: "Human",
  44240. image: {
  44241. source: "./media/characters/autumn/human.svg",
  44242. extra: 1200/1149,
  44243. bottom: 30/1230
  44244. }
  44245. },
  44246. },
  44247. [
  44248. {
  44249. name: "Normal",
  44250. height: math.unit(8, "feet"),
  44251. default: true
  44252. },
  44253. ]
  44254. ))
  44255. characterMakers.push(() => makeCharacter(
  44256. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44257. {
  44258. front: {
  44259. height: math.unit(8 + 5/12, "feet"),
  44260. weight: math.unit(825, "lb"),
  44261. name: "Front",
  44262. image: {
  44263. source: "./media/characters/cobalt-charizard/front.svg",
  44264. extra: 1268/1155,
  44265. bottom: 122/1390
  44266. }
  44267. },
  44268. side: {
  44269. height: math.unit(8 + 5/12, "feet"),
  44270. weight: math.unit(825, "lb"),
  44271. name: "Side",
  44272. image: {
  44273. source: "./media/characters/cobalt-charizard/side.svg",
  44274. extra: 1348/1257,
  44275. bottom: 58/1406
  44276. }
  44277. },
  44278. gMax: {
  44279. height: math.unit(134 + 11/12, "feet"),
  44280. name: "G-Max",
  44281. image: {
  44282. source: "./media/characters/cobalt-charizard/g-max.svg",
  44283. extra: 1835/1541,
  44284. bottom: 151/1986
  44285. }
  44286. },
  44287. },
  44288. [
  44289. {
  44290. name: "Normal",
  44291. height: math.unit(8 + 5/12, "feet"),
  44292. default: true
  44293. },
  44294. ]
  44295. ))
  44296. characterMakers.push(() => makeCharacter(
  44297. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44298. {
  44299. front: {
  44300. height: math.unit(6 + 3/12, "feet"),
  44301. weight: math.unit(210, "lb"),
  44302. name: "Front",
  44303. image: {
  44304. source: "./media/characters/stella/front.svg",
  44305. extra: 3549/3335,
  44306. bottom: 51/3600
  44307. }
  44308. },
  44309. },
  44310. [
  44311. {
  44312. name: "Normal",
  44313. height: math.unit(6 + 3/12, "feet"),
  44314. default: true
  44315. },
  44316. ]
  44317. ))
  44318. characterMakers.push(() => makeCharacter(
  44319. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44320. {
  44321. front: {
  44322. height: math.unit(5, "feet"),
  44323. weight: math.unit(90, "lb"),
  44324. name: "Front",
  44325. image: {
  44326. source: "./media/characters/riley-bishop/front.svg",
  44327. extra: 1450/1428,
  44328. bottom: 152/1602
  44329. }
  44330. },
  44331. },
  44332. [
  44333. {
  44334. name: "Normal",
  44335. height: math.unit(5, "feet"),
  44336. default: true
  44337. },
  44338. ]
  44339. ))
  44340. characterMakers.push(() => makeCharacter(
  44341. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44342. {
  44343. side: {
  44344. height: math.unit(8 + 2/12, "feet"),
  44345. weight: math.unit(500, "kg"),
  44346. name: "Side",
  44347. image: {
  44348. source: "./media/characters/theo-arcanine/side.svg",
  44349. extra: 1342/1074,
  44350. bottom: 111/1453
  44351. }
  44352. },
  44353. },
  44354. [
  44355. {
  44356. name: "Normal",
  44357. height: math.unit(8 + 2/12, "feet"),
  44358. default: true
  44359. },
  44360. ]
  44361. ))
  44362. characterMakers.push(() => makeCharacter(
  44363. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44364. {
  44365. front: {
  44366. height: math.unit(4, "feet"),
  44367. name: "Front",
  44368. image: {
  44369. source: "./media/characters/kali/front.svg",
  44370. extra: 1921/1357,
  44371. bottom: 70/1991
  44372. }
  44373. },
  44374. },
  44375. [
  44376. {
  44377. name: "Normal",
  44378. height: math.unit(4, "feet"),
  44379. default: true
  44380. },
  44381. {
  44382. name: "Macro",
  44383. height: math.unit(32, "meters")
  44384. },
  44385. {
  44386. name: "Macro+",
  44387. height: math.unit(150, "meters")
  44388. },
  44389. {
  44390. name: "Megamacro",
  44391. height: math.unit(7500, "meters")
  44392. },
  44393. {
  44394. name: "Megamacro+",
  44395. height: math.unit(80, "kilometers")
  44396. },
  44397. ]
  44398. ))
  44399. characterMakers.push(() => makeCharacter(
  44400. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44401. {
  44402. side: {
  44403. height: math.unit(5 + 11/12, "feet"),
  44404. weight: math.unit(236, "lb"),
  44405. name: "Side",
  44406. image: {
  44407. source: "./media/characters/gapp/side.svg",
  44408. extra: 775/340,
  44409. bottom: 58/833
  44410. }
  44411. },
  44412. mouth: {
  44413. height: math.unit(2.98, "feet"),
  44414. name: "Mouth",
  44415. image: {
  44416. source: "./media/characters/gapp/mouth.svg"
  44417. }
  44418. },
  44419. },
  44420. [
  44421. {
  44422. name: "Normal",
  44423. height: math.unit(5 + 1/12, "feet"),
  44424. default: true
  44425. },
  44426. ]
  44427. ))
  44428. characterMakers.push(() => makeCharacter(
  44429. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44430. {
  44431. front: {
  44432. height: math.unit(6, "feet"),
  44433. name: "Front",
  44434. image: {
  44435. source: "./media/characters/persephone/front.svg",
  44436. extra: 1895/1717,
  44437. bottom: 96/1991
  44438. }
  44439. },
  44440. back: {
  44441. height: math.unit(6, "feet"),
  44442. name: "Back",
  44443. image: {
  44444. source: "./media/characters/persephone/back.svg",
  44445. extra: 1868/1679,
  44446. bottom: 26/1894
  44447. }
  44448. },
  44449. casual: {
  44450. height: math.unit(6, "feet"),
  44451. name: "Casual",
  44452. image: {
  44453. source: "./media/characters/persephone/casual.svg",
  44454. extra: 1713/1541,
  44455. bottom: 76/1789
  44456. }
  44457. },
  44458. },
  44459. [
  44460. {
  44461. name: "Human Size",
  44462. height: math.unit(6, "feet")
  44463. },
  44464. {
  44465. name: "Big Steppy",
  44466. height: math.unit(600, "meters"),
  44467. default: true
  44468. },
  44469. {
  44470. name: "Galaxy Brain",
  44471. height: math.unit(1, "zettameter")
  44472. },
  44473. ]
  44474. ))
  44475. characterMakers.push(() => makeCharacter(
  44476. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44477. {
  44478. front: {
  44479. height: math.unit(1.85, "meters"),
  44480. name: "Front",
  44481. image: {
  44482. source: "./media/characters/riley-foxthing/front.svg",
  44483. extra: 1495/1354,
  44484. bottom: 122/1617
  44485. }
  44486. },
  44487. frontAlt: {
  44488. height: math.unit(1.85, "meters"),
  44489. name: "Front (Alt)",
  44490. image: {
  44491. source: "./media/characters/riley-foxthing/front-alt.svg",
  44492. extra: 1572/1389,
  44493. bottom: 116/1688
  44494. }
  44495. },
  44496. },
  44497. [
  44498. {
  44499. name: "Normal Sized",
  44500. height: math.unit(1.85, "meters"),
  44501. default: true
  44502. },
  44503. {
  44504. name: "Quite Sizable",
  44505. height: math.unit(5, "meters")
  44506. },
  44507. {
  44508. name: "Rather Large",
  44509. height: math.unit(20, "meters")
  44510. },
  44511. {
  44512. name: "Macro",
  44513. height: math.unit(450, "meters")
  44514. },
  44515. {
  44516. name: "Giga",
  44517. height: math.unit(5, "km")
  44518. },
  44519. ]
  44520. ))
  44521. characterMakers.push(() => makeCharacter(
  44522. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44523. {
  44524. front: {
  44525. height: math.unit(6, "feet"),
  44526. weight: math.unit(200, "lb"),
  44527. name: "Front",
  44528. image: {
  44529. source: "./media/characters/blizzard/front.svg",
  44530. extra: 1136/990,
  44531. bottom: 136/1272
  44532. }
  44533. },
  44534. back: {
  44535. height: math.unit(6, "feet"),
  44536. weight: math.unit(200, "lb"),
  44537. name: "Back",
  44538. image: {
  44539. source: "./media/characters/blizzard/back.svg",
  44540. extra: 1175/1034,
  44541. bottom: 97/1272
  44542. }
  44543. },
  44544. sitting: {
  44545. height: math.unit(3.725, "feet"),
  44546. weight: math.unit(200, "lb"),
  44547. name: "Sitting",
  44548. image: {
  44549. source: "./media/characters/blizzard/sitting.svg",
  44550. extra: 581/485,
  44551. bottom: 90/671
  44552. }
  44553. },
  44554. frontWizard: {
  44555. height: math.unit(7.9, "feet"),
  44556. weight: math.unit(200, "lb"),
  44557. name: "Front (Wizard)",
  44558. image: {
  44559. source: "./media/characters/blizzard/front-wizard.svg"
  44560. }
  44561. },
  44562. backWizard: {
  44563. height: math.unit(7.9, "feet"),
  44564. weight: math.unit(200, "lb"),
  44565. name: "Back (Wizard)",
  44566. image: {
  44567. source: "./media/characters/blizzard/back-wizard.svg"
  44568. }
  44569. },
  44570. frontNsfw: {
  44571. height: math.unit(6, "feet"),
  44572. weight: math.unit(200, "lb"),
  44573. name: "Front (NSFW)",
  44574. image: {
  44575. source: "./media/characters/blizzard/front-nsfw.svg",
  44576. extra: 1136/990,
  44577. bottom: 136/1272
  44578. }
  44579. },
  44580. backNsfw: {
  44581. height: math.unit(6, "feet"),
  44582. weight: math.unit(200, "lb"),
  44583. name: "Back (NSFW)",
  44584. image: {
  44585. source: "./media/characters/blizzard/back-nsfw.svg",
  44586. extra: 1175/1034,
  44587. bottom: 97/1272
  44588. }
  44589. },
  44590. sittingNsfw: {
  44591. height: math.unit(3.725, "feet"),
  44592. weight: math.unit(200, "lb"),
  44593. name: "Sitting (NSFW)",
  44594. image: {
  44595. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44596. extra: 581/485,
  44597. bottom: 90/671
  44598. }
  44599. },
  44600. wizardFrontNsfw: {
  44601. height: math.unit(7.9, "feet"),
  44602. weight: math.unit(200, "lb"),
  44603. name: "Wizard (Front, NSFW)",
  44604. image: {
  44605. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44606. }
  44607. },
  44608. },
  44609. [
  44610. {
  44611. name: "Normal",
  44612. height: math.unit(6, "feet"),
  44613. default: true
  44614. },
  44615. ]
  44616. ))
  44617. characterMakers.push(() => makeCharacter(
  44618. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44619. {
  44620. front: {
  44621. height: math.unit(5 + 2/12, "feet"),
  44622. name: "Front",
  44623. image: {
  44624. source: "./media/characters/lumi/front.svg",
  44625. extra: 1328/1268,
  44626. bottom: 103/1431
  44627. }
  44628. },
  44629. back: {
  44630. height: math.unit(5 + 2/12, "feet"),
  44631. name: "Back",
  44632. image: {
  44633. source: "./media/characters/lumi/back.svg",
  44634. extra: 1381/1327,
  44635. bottom: 43/1424
  44636. }
  44637. },
  44638. },
  44639. [
  44640. {
  44641. name: "Normal",
  44642. height: math.unit(5 + 2/12, "feet"),
  44643. default: true
  44644. },
  44645. ]
  44646. ))
  44647. characterMakers.push(() => makeCharacter(
  44648. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44649. {
  44650. front: {
  44651. height: math.unit(5 + 9/12, "feet"),
  44652. name: "Front",
  44653. image: {
  44654. source: "./media/characters/aliya-cotton/front.svg",
  44655. extra: 577/564,
  44656. bottom: 29/606
  44657. }
  44658. },
  44659. },
  44660. [
  44661. {
  44662. name: "Normal",
  44663. height: math.unit(5 + 9/12, "feet"),
  44664. default: true
  44665. },
  44666. ]
  44667. ))
  44668. characterMakers.push(() => makeCharacter(
  44669. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44670. {
  44671. front: {
  44672. height: math.unit(2.7, "meters"),
  44673. weight: math.unit(25000, "lb"),
  44674. name: "Front",
  44675. image: {
  44676. source: "./media/characters/noah-luxray/front.svg",
  44677. extra: 1644/825,
  44678. bottom: 339/1983
  44679. }
  44680. },
  44681. side: {
  44682. height: math.unit(2.97, "meters"),
  44683. weight: math.unit(25000, "lb"),
  44684. name: "Side",
  44685. image: {
  44686. source: "./media/characters/noah-luxray/side.svg",
  44687. extra: 1319/650,
  44688. bottom: 163/1482
  44689. }
  44690. },
  44691. dick: {
  44692. height: math.unit(7.4, "feet"),
  44693. weight: math.unit(2500, "lb"),
  44694. name: "Dick",
  44695. image: {
  44696. source: "./media/characters/noah-luxray/dick.svg"
  44697. }
  44698. },
  44699. dickAlt: {
  44700. height: math.unit(10.83, "feet"),
  44701. weight: math.unit(2500, "lb"),
  44702. name: "Dick-alt",
  44703. image: {
  44704. source: "./media/characters/noah-luxray/dick-alt.svg"
  44705. }
  44706. },
  44707. },
  44708. [
  44709. {
  44710. name: "BIG",
  44711. height: math.unit(2.7, "meters"),
  44712. default: true
  44713. },
  44714. ]
  44715. ))
  44716. characterMakers.push(() => makeCharacter(
  44717. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44718. {
  44719. standing: {
  44720. height: math.unit(183, "cm"),
  44721. weight: math.unit(68, "kg"),
  44722. name: "Standing",
  44723. image: {
  44724. source: "./media/characters/arion/standing.svg",
  44725. extra: 1869/1807,
  44726. bottom: 93/1962
  44727. }
  44728. },
  44729. reclining: {
  44730. height: math.unit(70.5, "cm"),
  44731. weight: math.unit(68, "lb"),
  44732. name: "Reclining",
  44733. image: {
  44734. source: "./media/characters/arion/reclining.svg",
  44735. extra: 937/870,
  44736. bottom: 63/1000
  44737. }
  44738. },
  44739. },
  44740. [
  44741. {
  44742. name: "Colossus Size, Low",
  44743. height: math.unit(33, "meters"),
  44744. default: true
  44745. },
  44746. {
  44747. name: "Colossus Size, Mid",
  44748. height: math.unit(52, "meters")
  44749. },
  44750. {
  44751. name: "Colossus Size, High",
  44752. height: math.unit(60, "meters")
  44753. },
  44754. {
  44755. name: "Titan Size, Low",
  44756. height: math.unit(91, "meters"),
  44757. },
  44758. {
  44759. name: "Titan Size, Mid",
  44760. height: math.unit(122, "meters")
  44761. },
  44762. {
  44763. name: "Titan Size, High",
  44764. height: math.unit(162, "meters")
  44765. },
  44766. ]
  44767. ))
  44768. characterMakers.push(() => makeCharacter(
  44769. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44770. {
  44771. front: {
  44772. height: math.unit(53, "meters"),
  44773. name: "Front",
  44774. image: {
  44775. source: "./media/characters/stellar-marbey/front.svg",
  44776. extra: 1913/1805,
  44777. bottom: 92/2005
  44778. }
  44779. },
  44780. back: {
  44781. height: math.unit(53, "meters"),
  44782. name: "Back",
  44783. image: {
  44784. source: "./media/characters/stellar-marbey/back.svg",
  44785. extra: 1960/1851,
  44786. bottom: 28/1988
  44787. }
  44788. },
  44789. mouth: {
  44790. height: math.unit(3.5, "meters"),
  44791. name: "Mouth",
  44792. image: {
  44793. source: "./media/characters/stellar-marbey/mouth.svg"
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Macro",
  44800. height: math.unit(53, "meters"),
  44801. default: true
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44807. {
  44808. front: {
  44809. height: math.unit(8 + 1/12, "feet"),
  44810. weight: math.unit(233, "lb"),
  44811. name: "Front",
  44812. image: {
  44813. source: "./media/characters/matsu/front.svg",
  44814. extra: 832/772,
  44815. bottom: 40/872
  44816. }
  44817. },
  44818. back: {
  44819. height: math.unit(8 + 1/12, "feet"),
  44820. weight: math.unit(233, "lb"),
  44821. name: "Back",
  44822. image: {
  44823. source: "./media/characters/matsu/back.svg",
  44824. extra: 839/780,
  44825. bottom: 47/886
  44826. }
  44827. },
  44828. },
  44829. [
  44830. {
  44831. name: "Normal",
  44832. height: math.unit(8 + 1/12, "feet"),
  44833. default: true
  44834. },
  44835. ]
  44836. ))
  44837. characterMakers.push(() => makeCharacter(
  44838. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44839. {
  44840. front: {
  44841. height: math.unit(4, "feet"),
  44842. weight: math.unit(148, "lb"),
  44843. name: "Front",
  44844. image: {
  44845. source: "./media/characters/thiz/front.svg",
  44846. extra: 1913/1748,
  44847. bottom: 62/1975
  44848. }
  44849. },
  44850. },
  44851. [
  44852. {
  44853. name: "Normal",
  44854. height: math.unit(4, "feet"),
  44855. default: true
  44856. },
  44857. ]
  44858. ))
  44859. characterMakers.push(() => makeCharacter(
  44860. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44861. {
  44862. front: {
  44863. height: math.unit(7 + 6/12, "feet"),
  44864. weight: math.unit(267, "lb"),
  44865. name: "Front",
  44866. image: {
  44867. source: "./media/characters/marcel/front.svg",
  44868. extra: 1221/1096,
  44869. bottom: 76/1297
  44870. }
  44871. },
  44872. },
  44873. [
  44874. {
  44875. name: "Normal",
  44876. height: math.unit(7 + 6/12, "feet"),
  44877. default: true
  44878. },
  44879. ]
  44880. ))
  44881. characterMakers.push(() => makeCharacter(
  44882. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44883. {
  44884. side: {
  44885. height: math.unit(42, "meters"),
  44886. name: "Side",
  44887. image: {
  44888. source: "./media/characters/flake/side.svg",
  44889. extra: 1525/1306,
  44890. bottom: 209/1734
  44891. }
  44892. },
  44893. },
  44894. [
  44895. {
  44896. name: "Normal",
  44897. height: math.unit(42, "meters"),
  44898. default: true
  44899. },
  44900. ]
  44901. ))
  44902. characterMakers.push(() => makeCharacter(
  44903. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44904. {
  44905. dressed: {
  44906. height: math.unit(6 + 4/12, "feet"),
  44907. weight: math.unit(520, "lb"),
  44908. name: "Dressed",
  44909. image: {
  44910. source: "./media/characters/someonne/dressed.svg",
  44911. extra: 1020/1010,
  44912. bottom: 178/1198
  44913. }
  44914. },
  44915. undressed: {
  44916. height: math.unit(6 + 4/12, "feet"),
  44917. weight: math.unit(520, "lb"),
  44918. name: "Undressed",
  44919. image: {
  44920. source: "./media/characters/someonne/undressed.svg",
  44921. extra: 1019/1014,
  44922. bottom: 169/1188
  44923. }
  44924. },
  44925. },
  44926. [
  44927. {
  44928. name: "Normal",
  44929. height: math.unit(6 + 4/12, "feet"),
  44930. default: true
  44931. },
  44932. ]
  44933. ))
  44934. characterMakers.push(() => makeCharacter(
  44935. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44936. {
  44937. front: {
  44938. height: math.unit(3, "feet"),
  44939. weight: math.unit(30, "lb"),
  44940. name: "Front",
  44941. image: {
  44942. source: "./media/characters/till/front.svg",
  44943. extra: 892/823,
  44944. bottom: 55/947
  44945. }
  44946. },
  44947. },
  44948. [
  44949. {
  44950. name: "Normal",
  44951. height: math.unit(3, "feet"),
  44952. default: true
  44953. },
  44954. ]
  44955. ))
  44956. characterMakers.push(() => makeCharacter(
  44957. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44958. {
  44959. front: {
  44960. height: math.unit(9 + 8/12, "feet"),
  44961. weight: math.unit(800, "lb"),
  44962. name: "Front",
  44963. image: {
  44964. source: "./media/characters/sydney-heki/front.svg",
  44965. extra: 1360/1300,
  44966. bottom: 22/1382
  44967. }
  44968. },
  44969. back: {
  44970. height: math.unit(9 + 8/12, "feet"),
  44971. weight: math.unit(800, "lb"),
  44972. name: "Back",
  44973. image: {
  44974. source: "./media/characters/sydney-heki/back.svg",
  44975. extra: 1356/1293,
  44976. bottom: 12/1368
  44977. }
  44978. },
  44979. frontDressed: {
  44980. height: math.unit(9 + 8/12, "feet"),
  44981. weight: math.unit(800, "lb"),
  44982. name: "Front-dressed",
  44983. image: {
  44984. source: "./media/characters/sydney-heki/front-dressed.svg",
  44985. extra: 1360/1300,
  44986. bottom: 22/1382
  44987. }
  44988. },
  44989. },
  44990. [
  44991. {
  44992. name: "Normal",
  44993. height: math.unit(9 + 8/12, "feet"),
  44994. default: true
  44995. },
  44996. {
  44997. name: "Macro",
  44998. height: math.unit(500, "feet")
  44999. },
  45000. {
  45001. name: "Megamacro",
  45002. height: math.unit(3.6, "miles")
  45003. },
  45004. ]
  45005. ))
  45006. characterMakers.push(() => makeCharacter(
  45007. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45008. {
  45009. front: {
  45010. height: math.unit(200, "cm"),
  45011. weight: math.unit(250, "lb"),
  45012. name: "Front",
  45013. image: {
  45014. source: "./media/characters/fowler-karlsson/front.svg",
  45015. extra: 897/845,
  45016. bottom: 123/1020
  45017. }
  45018. },
  45019. back: {
  45020. height: math.unit(200, "cm"),
  45021. weight: math.unit(250, "lb"),
  45022. name: "Back",
  45023. image: {
  45024. source: "./media/characters/fowler-karlsson/back.svg",
  45025. extra: 999/944,
  45026. bottom: 26/1025
  45027. }
  45028. },
  45029. dick: {
  45030. height: math.unit(1.92, "feet"),
  45031. weight: math.unit(150, "lb"),
  45032. name: "Dick",
  45033. image: {
  45034. source: "./media/characters/fowler-karlsson/dick.svg"
  45035. }
  45036. },
  45037. },
  45038. [
  45039. {
  45040. name: "Normal",
  45041. height: math.unit(200, "cm"),
  45042. default: true
  45043. },
  45044. {
  45045. name: "Smaller Macro",
  45046. height: math.unit(90, "m")
  45047. },
  45048. {
  45049. name: "Macro",
  45050. height: math.unit(150, "m")
  45051. },
  45052. {
  45053. name: "Bigger Macro",
  45054. height: math.unit(300, "m")
  45055. },
  45056. ]
  45057. ))
  45058. characterMakers.push(() => makeCharacter(
  45059. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45060. {
  45061. side: {
  45062. height: math.unit(8 + 2/12, "feet"),
  45063. weight: math.unit(1, "tonne"),
  45064. name: "Side",
  45065. image: {
  45066. source: "./media/characters/rylide/side.svg",
  45067. extra: 1318/1034,
  45068. bottom: 106/1424
  45069. }
  45070. },
  45071. sitting: {
  45072. height: math.unit(303, "cm"),
  45073. weight: math.unit(1, "tonne"),
  45074. name: "Sitting",
  45075. image: {
  45076. source: "./media/characters/rylide/sitting.svg",
  45077. extra: 1303/1103,
  45078. bottom: 36/1339
  45079. }
  45080. },
  45081. },
  45082. [
  45083. {
  45084. name: "Normal",
  45085. height: math.unit(8 + 2/12, "feet"),
  45086. default: true
  45087. },
  45088. ]
  45089. ))
  45090. characterMakers.push(() => makeCharacter(
  45091. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45092. {
  45093. front: {
  45094. height: math.unit(5 + 10/12, "feet"),
  45095. weight: math.unit(160, "lb"),
  45096. name: "Front",
  45097. image: {
  45098. source: "./media/characters/pudask/front.svg",
  45099. extra: 1616/1590,
  45100. bottom: 161/1777
  45101. }
  45102. },
  45103. },
  45104. [
  45105. {
  45106. name: "Ferret Height",
  45107. height: math.unit(2 + 5/12, "feet")
  45108. },
  45109. {
  45110. name: "Canon Height",
  45111. height: math.unit(5 + 10/12, "feet"),
  45112. default: true
  45113. },
  45114. ]
  45115. ))
  45116. characterMakers.push(() => makeCharacter(
  45117. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45118. {
  45119. front: {
  45120. height: math.unit(3 + 6/12, "feet"),
  45121. weight: math.unit(60, "lb"),
  45122. name: "Front",
  45123. image: {
  45124. source: "./media/characters/ramita/front.svg",
  45125. extra: 1402/1232,
  45126. bottom: 62/1464
  45127. }
  45128. },
  45129. dressed: {
  45130. height: math.unit(3 + 6/12, "feet"),
  45131. weight: math.unit(60, "lb"),
  45132. name: "Dressed",
  45133. image: {
  45134. source: "./media/characters/ramita/dressed.svg",
  45135. extra: 1534/1249,
  45136. bottom: 50/1584
  45137. }
  45138. },
  45139. },
  45140. [
  45141. {
  45142. name: "Normal",
  45143. height: math.unit(3 + 6/12, "feet"),
  45144. default: true
  45145. },
  45146. ]
  45147. ))
  45148. characterMakers.push(() => makeCharacter(
  45149. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45150. {
  45151. front: {
  45152. height: math.unit(8, "feet"),
  45153. name: "Front",
  45154. image: {
  45155. source: "./media/characters/ark/front.svg",
  45156. extra: 772/693,
  45157. bottom: 45/817
  45158. }
  45159. },
  45160. },
  45161. [
  45162. {
  45163. name: "Normal",
  45164. height: math.unit(8, "feet"),
  45165. default: true
  45166. },
  45167. ]
  45168. ))
  45169. characterMakers.push(() => makeCharacter(
  45170. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45171. {
  45172. front: {
  45173. height: math.unit(6, "feet"),
  45174. weight: math.unit(250, "lb"),
  45175. volume: math.unit(5/8, "gallons"),
  45176. name: "Front",
  45177. image: {
  45178. source: "./media/characters/ludwig-horn/front.svg",
  45179. extra: 1782/1635,
  45180. bottom: 96/1878
  45181. }
  45182. },
  45183. back: {
  45184. height: math.unit(6, "feet"),
  45185. weight: math.unit(250, "lb"),
  45186. volume: math.unit(5/8, "gallons"),
  45187. name: "Back",
  45188. image: {
  45189. source: "./media/characters/ludwig-horn/back.svg",
  45190. extra: 1874/1729,
  45191. bottom: 27/1901
  45192. }
  45193. },
  45194. dick: {
  45195. height: math.unit(1.05, "feet"),
  45196. weight: math.unit(15, "lb"),
  45197. volume: math.unit(5/8, "gallons"),
  45198. name: "Dick",
  45199. image: {
  45200. source: "./media/characters/ludwig-horn/dick.svg"
  45201. }
  45202. },
  45203. },
  45204. [
  45205. {
  45206. name: "Small",
  45207. height: math.unit(6, "feet")
  45208. },
  45209. {
  45210. name: "Typical",
  45211. height: math.unit(12, "feet"),
  45212. default: true
  45213. },
  45214. {
  45215. name: "Building",
  45216. height: math.unit(80, "feet")
  45217. },
  45218. {
  45219. name: "Town",
  45220. height: math.unit(800, "feet")
  45221. },
  45222. {
  45223. name: "Kingdom",
  45224. height: math.unit(80000, "feet")
  45225. },
  45226. {
  45227. name: "Planet",
  45228. height: math.unit(8000000, "feet")
  45229. },
  45230. {
  45231. name: "Universe",
  45232. height: math.unit(8000000000, "feet")
  45233. },
  45234. {
  45235. name: "Transcended",
  45236. height: math.unit(8e27, "feet")
  45237. },
  45238. ]
  45239. ))
  45240. characterMakers.push(() => makeCharacter(
  45241. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45242. {
  45243. front: {
  45244. height: math.unit(5, "feet"),
  45245. weight: math.unit(50, "kg"),
  45246. name: "Front",
  45247. image: {
  45248. source: "./media/characters/biot-avery/front.svg",
  45249. extra: 1295/1232,
  45250. bottom: 86/1381
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Normal",
  45257. height: math.unit(5, "feet"),
  45258. default: true
  45259. },
  45260. ]
  45261. ))
  45262. characterMakers.push(() => makeCharacter(
  45263. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45264. {
  45265. front: {
  45266. height: math.unit(6, "feet"),
  45267. name: "Front",
  45268. image: {
  45269. source: "./media/characters/kitsune-kiro/front.svg",
  45270. extra: 1270/1158,
  45271. bottom: 42/1312
  45272. }
  45273. },
  45274. frontAlt: {
  45275. height: math.unit(6, "feet"),
  45276. name: "Front-alt",
  45277. image: {
  45278. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45279. extra: 1130/1081,
  45280. bottom: 36/1166
  45281. }
  45282. },
  45283. },
  45284. [
  45285. {
  45286. name: "Smol",
  45287. height: math.unit(3, "feet")
  45288. },
  45289. {
  45290. name: "Normal",
  45291. height: math.unit(6, "feet"),
  45292. default: true
  45293. },
  45294. ]
  45295. ))
  45296. characterMakers.push(() => makeCharacter(
  45297. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45298. {
  45299. front: {
  45300. height: math.unit(6, "feet"),
  45301. weight: math.unit(125, "lb"),
  45302. name: "Front",
  45303. image: {
  45304. source: "./media/characters/jack-thatcher/front.svg",
  45305. extra: 1474/1370,
  45306. bottom: 26/1500
  45307. }
  45308. },
  45309. back: {
  45310. height: math.unit(6, "feet"),
  45311. weight: math.unit(125, "lb"),
  45312. name: "Back",
  45313. image: {
  45314. source: "./media/characters/jack-thatcher/back.svg",
  45315. extra: 1489/1384,
  45316. bottom: 18/1507
  45317. }
  45318. },
  45319. },
  45320. [
  45321. {
  45322. name: "Normal",
  45323. height: math.unit(6, "feet"),
  45324. default: true
  45325. },
  45326. {
  45327. name: "Macro",
  45328. height: math.unit(75, "feet")
  45329. },
  45330. {
  45331. name: "Macro-er",
  45332. height: math.unit(250, "feet")
  45333. },
  45334. ]
  45335. ))
  45336. characterMakers.push(() => makeCharacter(
  45337. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45338. {
  45339. front: {
  45340. height: math.unit(7, "feet"),
  45341. weight: math.unit(110, "kg"),
  45342. name: "Front",
  45343. image: {
  45344. source: "./media/characters/max-hyper/front.svg",
  45345. extra: 1969/1881,
  45346. bottom: 49/2018
  45347. }
  45348. },
  45349. },
  45350. [
  45351. {
  45352. name: "Normal",
  45353. height: math.unit(7, "feet"),
  45354. default: true
  45355. },
  45356. ]
  45357. ))
  45358. characterMakers.push(() => makeCharacter(
  45359. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45360. {
  45361. front: {
  45362. height: math.unit(5 + 5/12, "feet"),
  45363. weight: math.unit(160, "lb"),
  45364. name: "Front",
  45365. image: {
  45366. source: "./media/characters/spook/front.svg",
  45367. extra: 794/791,
  45368. bottom: 54/848
  45369. }
  45370. },
  45371. back: {
  45372. height: math.unit(5 + 5/12, "feet"),
  45373. weight: math.unit(160, "lb"),
  45374. name: "Back",
  45375. image: {
  45376. source: "./media/characters/spook/back.svg",
  45377. extra: 812/798,
  45378. bottom: 32/844
  45379. }
  45380. },
  45381. },
  45382. [
  45383. {
  45384. name: "Normal",
  45385. height: math.unit(5 + 5/12, "feet"),
  45386. default: true
  45387. },
  45388. ]
  45389. ))
  45390. characterMakers.push(() => makeCharacter(
  45391. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45392. {
  45393. front: {
  45394. height: math.unit(18, "feet"),
  45395. name: "Front",
  45396. image: {
  45397. source: "./media/characters/xeaduulix/front.svg",
  45398. extra: 1380/1166,
  45399. bottom: 110/1490
  45400. }
  45401. },
  45402. back: {
  45403. height: math.unit(18, "feet"),
  45404. name: "Back",
  45405. image: {
  45406. source: "./media/characters/xeaduulix/back.svg",
  45407. extra: 1592/1170,
  45408. bottom: 128/1720
  45409. }
  45410. },
  45411. frontNsfw: {
  45412. height: math.unit(18, "feet"),
  45413. name: "Front (NSFW)",
  45414. image: {
  45415. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45416. extra: 1380/1166,
  45417. bottom: 110/1490
  45418. }
  45419. },
  45420. backNsfw: {
  45421. height: math.unit(18, "feet"),
  45422. name: "Back (NSFW)",
  45423. image: {
  45424. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45425. extra: 1592/1170,
  45426. bottom: 128/1720
  45427. }
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Normal",
  45433. height: math.unit(18, "feet"),
  45434. default: true
  45435. },
  45436. ]
  45437. ))
  45438. characterMakers.push(() => makeCharacter(
  45439. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45440. {
  45441. spreadWings: {
  45442. height: math.unit(20, "feet"),
  45443. name: "Spread Wings",
  45444. image: {
  45445. source: "./media/characters/fledge/spread-wings.svg",
  45446. extra: 693/635,
  45447. bottom: 26/719
  45448. }
  45449. },
  45450. front: {
  45451. height: math.unit(20, "feet"),
  45452. name: "Front",
  45453. image: {
  45454. source: "./media/characters/fledge/front.svg",
  45455. extra: 684/637,
  45456. bottom: 18/702
  45457. }
  45458. },
  45459. frontAlt: {
  45460. height: math.unit(20, "feet"),
  45461. name: "Front (Alt)",
  45462. image: {
  45463. source: "./media/characters/fledge/front-alt.svg",
  45464. extra: 708/664,
  45465. bottom: 13/721
  45466. }
  45467. },
  45468. back: {
  45469. height: math.unit(20, "feet"),
  45470. name: "Back",
  45471. image: {
  45472. source: "./media/characters/fledge/back.svg",
  45473. extra: 718/634,
  45474. bottom: 22/740
  45475. }
  45476. },
  45477. head: {
  45478. height: math.unit(5.55, "feet"),
  45479. name: "Head",
  45480. image: {
  45481. source: "./media/characters/fledge/head.svg"
  45482. }
  45483. },
  45484. headAlt: {
  45485. height: math.unit(5.1, "feet"),
  45486. name: "Head (Alt)",
  45487. image: {
  45488. source: "./media/characters/fledge/head-alt.svg"
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Small",
  45495. height: math.unit(6 + 2/12, "feet")
  45496. },
  45497. {
  45498. name: "Big",
  45499. height: math.unit(20, "feet"),
  45500. default: true
  45501. },
  45502. {
  45503. name: "Giant",
  45504. height: math.unit(100, "feet")
  45505. },
  45506. {
  45507. name: "Macro",
  45508. height: math.unit(200, "feet")
  45509. },
  45510. ]
  45511. ))
  45512. characterMakers.push(() => makeCharacter(
  45513. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45514. {
  45515. front: {
  45516. height: math.unit(1, "meter"),
  45517. name: "Front",
  45518. image: {
  45519. source: "./media/characters/atlas-morenai/front.svg",
  45520. extra: 1275/1043,
  45521. bottom: 19/1294
  45522. }
  45523. },
  45524. back: {
  45525. height: math.unit(1, "meter"),
  45526. name: "Back",
  45527. image: {
  45528. source: "./media/characters/atlas-morenai/back.svg",
  45529. extra: 1141/1001,
  45530. bottom: 25/1166
  45531. }
  45532. },
  45533. },
  45534. [
  45535. {
  45536. name: "Normal",
  45537. height: math.unit(1, "meter"),
  45538. default: true
  45539. },
  45540. {
  45541. name: "Magic-Infused",
  45542. height: math.unit(5, "meters")
  45543. },
  45544. ]
  45545. ))
  45546. characterMakers.push(() => makeCharacter(
  45547. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45548. {
  45549. front: {
  45550. height: math.unit(5, "meters"),
  45551. name: "Front",
  45552. image: {
  45553. source: "./media/characters/cintia/front.svg",
  45554. extra: 1312/1228,
  45555. bottom: 38/1350
  45556. }
  45557. },
  45558. back: {
  45559. height: math.unit(5, "meters"),
  45560. name: "Back",
  45561. image: {
  45562. source: "./media/characters/cintia/back.svg",
  45563. extra: 1260/1166,
  45564. bottom: 98/1358
  45565. }
  45566. },
  45567. frontDick: {
  45568. height: math.unit(5, "meters"),
  45569. name: "Front (Dick)",
  45570. image: {
  45571. source: "./media/characters/cintia/front-dick.svg",
  45572. extra: 1312/1228,
  45573. bottom: 38/1350
  45574. }
  45575. },
  45576. backDick: {
  45577. height: math.unit(5, "meters"),
  45578. name: "Back (Dick)",
  45579. image: {
  45580. source: "./media/characters/cintia/back-dick.svg",
  45581. extra: 1260/1166,
  45582. bottom: 98/1358
  45583. }
  45584. },
  45585. bust: {
  45586. height: math.unit(1.97, "meters"),
  45587. name: "Bust",
  45588. image: {
  45589. source: "./media/characters/cintia/bust.svg",
  45590. extra: 617/565,
  45591. bottom: 0/617
  45592. }
  45593. },
  45594. },
  45595. [
  45596. {
  45597. name: "Normal",
  45598. height: math.unit(5, "meters"),
  45599. default: true
  45600. },
  45601. ]
  45602. ))
  45603. characterMakers.push(() => makeCharacter(
  45604. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45605. {
  45606. side: {
  45607. height: math.unit(100, "feet"),
  45608. name: "Side",
  45609. image: {
  45610. source: "./media/characters/denora/side.svg",
  45611. extra: 875/803,
  45612. bottom: 9/884
  45613. }
  45614. },
  45615. },
  45616. [
  45617. {
  45618. name: "Standard",
  45619. height: math.unit(100, "feet"),
  45620. default: true
  45621. },
  45622. {
  45623. name: "Grand",
  45624. height: math.unit(1000, "feet")
  45625. },
  45626. {
  45627. name: "Conquering",
  45628. height: math.unit(10000, "feet")
  45629. },
  45630. ]
  45631. ))
  45632. characterMakers.push(() => makeCharacter(
  45633. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45634. {
  45635. dressed: {
  45636. height: math.unit(8 + 5/12, "feet"),
  45637. weight: math.unit(700, "lb"),
  45638. name: "Dressed",
  45639. image: {
  45640. source: "./media/characters/kiva/dressed.svg",
  45641. extra: 1102/1055,
  45642. bottom: 60/1162
  45643. }
  45644. },
  45645. nude: {
  45646. height: math.unit(8 + 5/12, "feet"),
  45647. weight: math.unit(700, "lb"),
  45648. name: "Nude",
  45649. image: {
  45650. source: "./media/characters/kiva/nude.svg",
  45651. extra: 1102/1055,
  45652. bottom: 60/1162
  45653. }
  45654. },
  45655. },
  45656. [
  45657. {
  45658. name: "Base Height",
  45659. height: math.unit(8 + 5/12, "feet"),
  45660. default: true
  45661. },
  45662. {
  45663. name: "Macro",
  45664. height: math.unit(100, "feet")
  45665. },
  45666. {
  45667. name: "Max",
  45668. height: math.unit(3280, "feet")
  45669. },
  45670. ]
  45671. ))
  45672. characterMakers.push(() => makeCharacter(
  45673. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45674. {
  45675. front: {
  45676. height: math.unit(6 + 8/12, "feet"),
  45677. weight: math.unit(250, "lb"),
  45678. name: "Front",
  45679. image: {
  45680. source: "./media/characters/ztragon/front.svg",
  45681. extra: 1825/1684,
  45682. bottom: 98/1923
  45683. }
  45684. },
  45685. },
  45686. [
  45687. {
  45688. name: "Normal",
  45689. height: math.unit(6 + 8/12, "feet"),
  45690. default: true
  45691. },
  45692. {
  45693. name: "Macro",
  45694. height: math.unit(80, "feet")
  45695. },
  45696. ]
  45697. ))
  45698. characterMakers.push(() => makeCharacter(
  45699. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45700. {
  45701. front: {
  45702. height: math.unit(10.4, "feet"),
  45703. weight: math.unit(2, "tons"),
  45704. name: "Front",
  45705. image: {
  45706. source: "./media/characters/yesenia/front.svg",
  45707. extra: 1479/1474,
  45708. bottom: 233/1712
  45709. }
  45710. },
  45711. },
  45712. [
  45713. {
  45714. name: "Normal",
  45715. height: math.unit(10.4, "feet"),
  45716. default: true
  45717. },
  45718. ]
  45719. ))
  45720. characterMakers.push(() => makeCharacter(
  45721. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45722. {
  45723. normal: {
  45724. height: math.unit(6 + 1/12, "feet"),
  45725. weight: math.unit(180, "lb"),
  45726. name: "Normal",
  45727. image: {
  45728. source: "./media/characters/leanne-lycheborne/normal.svg",
  45729. extra: 1748/1660,
  45730. bottom: 98/1846
  45731. }
  45732. },
  45733. were: {
  45734. height: math.unit(12, "feet"),
  45735. weight: math.unit(1600, "lb"),
  45736. name: "Were",
  45737. image: {
  45738. source: "./media/characters/leanne-lycheborne/were.svg",
  45739. extra: 1485/1432,
  45740. bottom: 66/1551
  45741. }
  45742. },
  45743. },
  45744. [
  45745. {
  45746. name: "Normal",
  45747. height: math.unit(6 + 1/12, "feet"),
  45748. default: true
  45749. },
  45750. ]
  45751. ))
  45752. characterMakers.push(() => makeCharacter(
  45753. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45754. {
  45755. side: {
  45756. height: math.unit(13, "feet"),
  45757. name: "Side",
  45758. image: {
  45759. source: "./media/characters/kira-tyler/side.svg",
  45760. extra: 693/393,
  45761. bottom: 58/751
  45762. }
  45763. },
  45764. },
  45765. [
  45766. {
  45767. name: "Normal",
  45768. height: math.unit(13, "feet"),
  45769. default: true
  45770. },
  45771. ]
  45772. ))
  45773. characterMakers.push(() => makeCharacter(
  45774. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45775. {
  45776. front: {
  45777. height: math.unit(10.3, "feet"),
  45778. weight: math.unit(150, "lb"),
  45779. name: "Front",
  45780. image: {
  45781. source: "./media/characters/blaze/front.svg",
  45782. extra: 1378/1286,
  45783. bottom: 172/1550
  45784. }
  45785. },
  45786. },
  45787. [
  45788. {
  45789. name: "Normal",
  45790. height: math.unit(10.3, "feet"),
  45791. default: true
  45792. },
  45793. ]
  45794. ))
  45795. characterMakers.push(() => makeCharacter(
  45796. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45797. {
  45798. side: {
  45799. height: math.unit(2, "meters"),
  45800. weight: math.unit(400, "kg"),
  45801. name: "Side",
  45802. image: {
  45803. source: "./media/characters/anu/side.svg",
  45804. extra: 506/394,
  45805. bottom: 18/524
  45806. }
  45807. },
  45808. },
  45809. [
  45810. {
  45811. name: "Humanoid",
  45812. height: math.unit(2, "meters")
  45813. },
  45814. {
  45815. name: "Normal",
  45816. height: math.unit(5, "meters"),
  45817. default: true
  45818. },
  45819. ]
  45820. ))
  45821. characterMakers.push(() => makeCharacter(
  45822. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45823. {
  45824. front: {
  45825. height: math.unit(5 + 5/12, "feet"),
  45826. weight: math.unit(170, "lb"),
  45827. name: "Front",
  45828. image: {
  45829. source: "./media/characters/synx-the-lynx/front.svg",
  45830. extra: 1893/1745,
  45831. bottom: 17/1910
  45832. }
  45833. },
  45834. side: {
  45835. height: math.unit(5 + 5/12, "feet"),
  45836. weight: math.unit(170, "lb"),
  45837. name: "Side",
  45838. image: {
  45839. source: "./media/characters/synx-the-lynx/side.svg",
  45840. extra: 1884/1740,
  45841. bottom: 39/1923
  45842. }
  45843. },
  45844. back: {
  45845. height: math.unit(5 + 5/12, "feet"),
  45846. weight: math.unit(170, "lb"),
  45847. name: "Back",
  45848. image: {
  45849. source: "./media/characters/synx-the-lynx/back.svg",
  45850. extra: 1903/1755,
  45851. bottom: 14/1917
  45852. }
  45853. },
  45854. },
  45855. [
  45856. {
  45857. name: "Normal",
  45858. height: math.unit(5 + 5/12, "feet"),
  45859. default: true
  45860. },
  45861. ]
  45862. ))
  45863. characterMakers.push(() => makeCharacter(
  45864. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45865. {
  45866. back: {
  45867. height: math.unit(15, "feet"),
  45868. name: "Back",
  45869. image: {
  45870. source: "./media/characters/nadezda-fex/back.svg",
  45871. extra: 1695/1481,
  45872. bottom: 25/1720
  45873. }
  45874. },
  45875. },
  45876. [
  45877. {
  45878. name: "Normal",
  45879. height: math.unit(15, "feet"),
  45880. default: true
  45881. },
  45882. {
  45883. name: "Macro",
  45884. height: math.unit(2.5, "miles")
  45885. },
  45886. {
  45887. name: "Goddess",
  45888. height: math.unit(2, "multiverses")
  45889. },
  45890. ]
  45891. ))
  45892. characterMakers.push(() => makeCharacter(
  45893. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45894. {
  45895. front: {
  45896. height: math.unit(216, "cm"),
  45897. name: "Front",
  45898. image: {
  45899. source: "./media/characters/lev/front.svg",
  45900. extra: 1728/1670,
  45901. bottom: 82/1810
  45902. }
  45903. },
  45904. back: {
  45905. height: math.unit(216, "cm"),
  45906. name: "Back",
  45907. image: {
  45908. source: "./media/characters/lev/back.svg",
  45909. extra: 1738/1675,
  45910. bottom: 24/1762
  45911. }
  45912. },
  45913. dressed: {
  45914. height: math.unit(216, "cm"),
  45915. name: "Dressed",
  45916. image: {
  45917. source: "./media/characters/lev/dressed.svg",
  45918. extra: 1397/1351,
  45919. bottom: 73/1470
  45920. }
  45921. },
  45922. head: {
  45923. height: math.unit(0.51, "meter"),
  45924. name: "Head",
  45925. image: {
  45926. source: "./media/characters/lev/head.svg"
  45927. }
  45928. },
  45929. },
  45930. [
  45931. {
  45932. name: "Normal",
  45933. height: math.unit(216, "cm"),
  45934. default: true
  45935. },
  45936. {
  45937. name: "Relatively Macro",
  45938. height: math.unit(80, "meters")
  45939. },
  45940. {
  45941. name: "Megamacro",
  45942. height: math.unit(21600, "meters")
  45943. },
  45944. {
  45945. name: "Megamacro+",
  45946. height: math.unit(64800, "meters")
  45947. },
  45948. ]
  45949. ))
  45950. characterMakers.push(() => makeCharacter(
  45951. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45952. {
  45953. front: {
  45954. height: math.unit(2, "meters"),
  45955. weight: math.unit(80, "kg"),
  45956. name: "Front",
  45957. image: {
  45958. source: "./media/characters/moka/front.svg",
  45959. extra: 1337/1255,
  45960. bottom: 58/1395
  45961. }
  45962. },
  45963. },
  45964. [
  45965. {
  45966. name: "Micro",
  45967. height: math.unit(15, "cm")
  45968. },
  45969. {
  45970. name: "Normal",
  45971. height: math.unit(2, "meters"),
  45972. default: true
  45973. },
  45974. {
  45975. name: "Macro",
  45976. height: math.unit(20, "meters"),
  45977. },
  45978. ]
  45979. ))
  45980. characterMakers.push(() => makeCharacter(
  45981. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45982. {
  45983. front: {
  45984. height: math.unit(9, "feet"),
  45985. weight: math.unit(240, "lb"),
  45986. name: "Front",
  45987. image: {
  45988. source: "./media/characters/kuzco/front.svg",
  45989. extra: 1593/1487,
  45990. bottom: 32/1625
  45991. }
  45992. },
  45993. side: {
  45994. height: math.unit(9, "feet"),
  45995. weight: math.unit(240, "lb"),
  45996. name: "Side",
  45997. image: {
  45998. source: "./media/characters/kuzco/side.svg",
  45999. extra: 1575/1485,
  46000. bottom: 30/1605
  46001. }
  46002. },
  46003. back: {
  46004. height: math.unit(9, "feet"),
  46005. weight: math.unit(240, "lb"),
  46006. name: "Back",
  46007. image: {
  46008. source: "./media/characters/kuzco/back.svg",
  46009. extra: 1603/1514,
  46010. bottom: 14/1617
  46011. }
  46012. },
  46013. },
  46014. [
  46015. {
  46016. name: "Normal",
  46017. height: math.unit(9, "feet"),
  46018. default: true
  46019. },
  46020. ]
  46021. ))
  46022. characterMakers.push(() => makeCharacter(
  46023. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46024. {
  46025. side: {
  46026. height: math.unit(2, "meters"),
  46027. weight: math.unit(300, "kg"),
  46028. name: "Side",
  46029. image: {
  46030. source: "./media/characters/ceruleus/side.svg",
  46031. extra: 1068/974,
  46032. bottom: 126/1194
  46033. }
  46034. },
  46035. },
  46036. [
  46037. {
  46038. name: "Normal",
  46039. height: math.unit(16, "meters"),
  46040. default: true
  46041. },
  46042. ]
  46043. ))
  46044. characterMakers.push(() => makeCharacter(
  46045. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46046. {
  46047. front: {
  46048. height: math.unit(9, "feet"),
  46049. weight: math.unit(500, "kg"),
  46050. name: "Front",
  46051. image: {
  46052. source: "./media/characters/acouya/front.svg",
  46053. extra: 1660/1473,
  46054. bottom: 28/1688
  46055. }
  46056. },
  46057. },
  46058. [
  46059. {
  46060. name: "Normal",
  46061. height: math.unit(9, "feet"),
  46062. default: true
  46063. },
  46064. ]
  46065. ))
  46066. characterMakers.push(() => makeCharacter(
  46067. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46068. {
  46069. front: {
  46070. height: math.unit(5 + 6/12, "feet"),
  46071. weight: math.unit(195, "lb"),
  46072. name: "Front",
  46073. image: {
  46074. source: "./media/characters/vant/front.svg",
  46075. extra: 1396/1320,
  46076. bottom: 20/1416
  46077. }
  46078. },
  46079. back: {
  46080. height: math.unit(5 + 6/12, "feet"),
  46081. weight: math.unit(195, "lb"),
  46082. name: "Back",
  46083. image: {
  46084. source: "./media/characters/vant/back.svg",
  46085. extra: 1396/1320,
  46086. bottom: 20/1416
  46087. }
  46088. },
  46089. maw: {
  46090. height: math.unit(0.75, "feet"),
  46091. name: "Maw",
  46092. image: {
  46093. source: "./media/characters/vant/maw.svg"
  46094. }
  46095. },
  46096. paw: {
  46097. height: math.unit(1.07, "feet"),
  46098. name: "Paw",
  46099. image: {
  46100. source: "./media/characters/vant/paw.svg"
  46101. }
  46102. },
  46103. },
  46104. [
  46105. {
  46106. name: "Micro",
  46107. height: math.unit(0.25, "inches")
  46108. },
  46109. {
  46110. name: "Normal",
  46111. height: math.unit(5 + 6/12, "feet"),
  46112. default: true
  46113. },
  46114. {
  46115. name: "Macro",
  46116. height: math.unit(75, "feet")
  46117. },
  46118. ]
  46119. ))
  46120. characterMakers.push(() => makeCharacter(
  46121. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46122. {
  46123. front: {
  46124. height: math.unit(30, "meters"),
  46125. weight: math.unit(363, "tons"),
  46126. name: "Front",
  46127. image: {
  46128. source: "./media/characters/ahra/front.svg",
  46129. extra: 1914/1814,
  46130. bottom: 46/1960
  46131. }
  46132. },
  46133. },
  46134. [
  46135. {
  46136. name: "Macro",
  46137. height: math.unit(30, "meters"),
  46138. default: true
  46139. },
  46140. ]
  46141. ))
  46142. characterMakers.push(() => makeCharacter(
  46143. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46144. {
  46145. undressed: {
  46146. height: math.unit(2, "m"),
  46147. weight: math.unit(250, "kg"),
  46148. name: "Undressed",
  46149. image: {
  46150. source: "./media/characters/coriander/undressed.svg",
  46151. extra: 1757/1606,
  46152. bottom: 107/1864
  46153. }
  46154. },
  46155. dressed: {
  46156. height: math.unit(2, "m"),
  46157. weight: math.unit(250, "kg"),
  46158. name: "Dressed",
  46159. image: {
  46160. source: "./media/characters/coriander/dressed.svg",
  46161. extra: 1757/1606,
  46162. bottom: 107/1864
  46163. }
  46164. },
  46165. },
  46166. [
  46167. {
  46168. name: "Normal",
  46169. height: math.unit(4, "meters"),
  46170. default: true
  46171. },
  46172. {
  46173. name: "XL",
  46174. height: math.unit(6, "meters")
  46175. },
  46176. {
  46177. name: "XXL",
  46178. height: math.unit(8, "meters")
  46179. },
  46180. ]
  46181. ))
  46182. characterMakers.push(() => makeCharacter(
  46183. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46184. {
  46185. front: {
  46186. height: math.unit(6, "feet"),
  46187. name: "Front",
  46188. image: {
  46189. source: "./media/characters/syrinx/front.svg",
  46190. extra: 1557/1259,
  46191. bottom: 171/1728
  46192. }
  46193. },
  46194. },
  46195. [
  46196. {
  46197. name: "Normal",
  46198. height: math.unit(6 + 3/12, "feet"),
  46199. default: true
  46200. },
  46201. ]
  46202. ))
  46203. characterMakers.push(() => makeCharacter(
  46204. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46205. {
  46206. front: {
  46207. height: math.unit(11 + 6/12, "feet"),
  46208. weight: math.unit(1.5, "tons"),
  46209. name: "Front",
  46210. image: {
  46211. source: "./media/characters/bor/front.svg",
  46212. extra: 1189/1109,
  46213. bottom: 170/1359
  46214. }
  46215. },
  46216. },
  46217. [
  46218. {
  46219. name: "Normal",
  46220. height: math.unit(11 + 6/12, "feet"),
  46221. default: true
  46222. },
  46223. {
  46224. name: "Macro",
  46225. height: math.unit(32 + 9/12, "feet")
  46226. },
  46227. ]
  46228. ))
  46229. characterMakers.push(() => makeCharacter(
  46230. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46231. {
  46232. anthro: {
  46233. height: math.unit(9, "feet"),
  46234. weight: math.unit(2076, "lb"),
  46235. name: "Anthro",
  46236. image: {
  46237. source: "./media/characters/abacus/anthro.svg",
  46238. extra: 1540/1494,
  46239. bottom: 233/1773
  46240. }
  46241. },
  46242. pigeon: {
  46243. height: math.unit(1, "feet"),
  46244. name: "Pigeon",
  46245. image: {
  46246. source: "./media/characters/abacus/pigeon.svg",
  46247. extra: 528/525,
  46248. bottom: 46/574
  46249. }
  46250. },
  46251. },
  46252. [
  46253. {
  46254. name: "Normal",
  46255. height: math.unit(9, "feet"),
  46256. default: true
  46257. },
  46258. ]
  46259. ))
  46260. characterMakers.push(() => makeCharacter(
  46261. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46262. {
  46263. side: {
  46264. height: math.unit(6, "feet"),
  46265. name: "Side",
  46266. image: {
  46267. source: "./media/characters/delkhan/side.svg",
  46268. extra: 1884/1786,
  46269. bottom: 308/2192
  46270. }
  46271. },
  46272. head: {
  46273. height: math.unit(3.38, "feet"),
  46274. name: "Head",
  46275. image: {
  46276. source: "./media/characters/delkhan/head.svg"
  46277. }
  46278. },
  46279. },
  46280. [
  46281. {
  46282. name: "Normal",
  46283. height: math.unit(72, "feet"),
  46284. default: true
  46285. },
  46286. {
  46287. name: "Giant",
  46288. height: math.unit(172, "feet")
  46289. },
  46290. ]
  46291. ))
  46292. characterMakers.push(() => makeCharacter(
  46293. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46294. {
  46295. standing: {
  46296. height: math.unit(6, "feet"),
  46297. name: "Standing",
  46298. image: {
  46299. source: "./media/characters/euchidat/standing.svg",
  46300. extra: 1612/1553,
  46301. bottom: 116/1728
  46302. }
  46303. },
  46304. leaning: {
  46305. height: math.unit(6, "feet"),
  46306. name: "Leaning",
  46307. image: {
  46308. source: "./media/characters/euchidat/leaning.svg",
  46309. extra: 1719/1674,
  46310. bottom: 27/1746
  46311. }
  46312. },
  46313. },
  46314. [
  46315. {
  46316. name: "Normal",
  46317. height: math.unit(175, "feet"),
  46318. default: true
  46319. },
  46320. {
  46321. name: "Megamacro",
  46322. height: math.unit(190, "miles")
  46323. },
  46324. {
  46325. name: "Gigamacro",
  46326. height: math.unit(190000, "miles")
  46327. },
  46328. ]
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46332. {
  46333. front: {
  46334. height: math.unit(6, "feet"),
  46335. weight: math.unit(150, "lb"),
  46336. name: "Front",
  46337. image: {
  46338. source: "./media/characters/rebecca-stack/front.svg",
  46339. extra: 1256/1201,
  46340. bottom: 18/1274
  46341. }
  46342. },
  46343. },
  46344. [
  46345. {
  46346. name: "Normal",
  46347. height: math.unit(5 + 8/12, "feet"),
  46348. default: true
  46349. },
  46350. {
  46351. name: "Demolitionist",
  46352. height: math.unit(200, "feet")
  46353. },
  46354. {
  46355. name: "Out of Control",
  46356. height: math.unit(2, "miles")
  46357. },
  46358. {
  46359. name: "Giga",
  46360. height: math.unit(7200, "miles")
  46361. },
  46362. ]
  46363. ))
  46364. characterMakers.push(() => makeCharacter(
  46365. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46366. {
  46367. front: {
  46368. height: math.unit(6, "feet"),
  46369. weight: math.unit(150, "lb"),
  46370. name: "Front",
  46371. image: {
  46372. source: "./media/characters/jenny-cartwright/front.svg",
  46373. extra: 1384/1376,
  46374. bottom: 58/1442
  46375. }
  46376. },
  46377. },
  46378. [
  46379. {
  46380. name: "Normal",
  46381. height: math.unit(6 + 7/12, "feet"),
  46382. default: true
  46383. },
  46384. {
  46385. name: "Librarian",
  46386. height: math.unit(55, "feet")
  46387. },
  46388. {
  46389. name: "Sightseer",
  46390. height: math.unit(50, "miles")
  46391. },
  46392. {
  46393. name: "Giga",
  46394. height: math.unit(30000, "miles")
  46395. },
  46396. ]
  46397. ))
  46398. characterMakers.push(() => makeCharacter(
  46399. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46400. {
  46401. nude: {
  46402. height: math.unit(8, "feet"),
  46403. weight: math.unit(225, "lb"),
  46404. name: "Nude",
  46405. image: {
  46406. source: "./media/characters/marvy/nude.svg",
  46407. extra: 1900/1683,
  46408. bottom: 89/1989
  46409. }
  46410. },
  46411. dressed: {
  46412. height: math.unit(8, "feet"),
  46413. weight: math.unit(225, "lb"),
  46414. name: "Dressed",
  46415. image: {
  46416. source: "./media/characters/marvy/dressed.svg",
  46417. extra: 1900/1683,
  46418. bottom: 89/1989
  46419. }
  46420. },
  46421. head: {
  46422. height: math.unit(2.85, "feet"),
  46423. name: "Head",
  46424. image: {
  46425. source: "./media/characters/marvy/head.svg"
  46426. }
  46427. },
  46428. },
  46429. [
  46430. {
  46431. name: "Normal",
  46432. height: math.unit(8, "feet"),
  46433. default: true
  46434. },
  46435. ]
  46436. ))
  46437. characterMakers.push(() => makeCharacter(
  46438. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46439. {
  46440. front: {
  46441. height: math.unit(8, "feet"),
  46442. weight: math.unit(250, "lb"),
  46443. name: "Front",
  46444. image: {
  46445. source: "./media/characters/leah/front.svg",
  46446. extra: 1257/1149,
  46447. bottom: 109/1366
  46448. }
  46449. },
  46450. },
  46451. [
  46452. {
  46453. name: "Normal",
  46454. height: math.unit(8, "feet"),
  46455. default: true
  46456. },
  46457. {
  46458. name: "Minimacro",
  46459. height: math.unit(40, "feet")
  46460. },
  46461. {
  46462. name: "Macro",
  46463. height: math.unit(124, "feet")
  46464. },
  46465. {
  46466. name: "Megamacro",
  46467. height: math.unit(850, "feet")
  46468. },
  46469. ]
  46470. ))
  46471. characterMakers.push(() => makeCharacter(
  46472. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46473. {
  46474. side: {
  46475. height: math.unit(13 + 6/12, "feet"),
  46476. weight: math.unit(3200, "lb"),
  46477. name: "Side",
  46478. image: {
  46479. source: "./media/characters/alvir/side.svg",
  46480. extra: 896/589,
  46481. bottom: 26/922
  46482. }
  46483. },
  46484. },
  46485. [
  46486. {
  46487. name: "Normal",
  46488. height: math.unit(13 + 6/12, "feet"),
  46489. default: true
  46490. },
  46491. ]
  46492. ))
  46493. characterMakers.push(() => makeCharacter(
  46494. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46495. {
  46496. front: {
  46497. height: math.unit(5 + 4/12, "feet"),
  46498. weight: math.unit(236, "lb"),
  46499. name: "Front",
  46500. image: {
  46501. source: "./media/characters/zaina-khalil/front.svg",
  46502. extra: 1533/1485,
  46503. bottom: 94/1627
  46504. }
  46505. },
  46506. side: {
  46507. height: math.unit(5 + 4/12, "feet"),
  46508. weight: math.unit(236, "lb"),
  46509. name: "Side",
  46510. image: {
  46511. source: "./media/characters/zaina-khalil/side.svg",
  46512. extra: 1537/1498,
  46513. bottom: 66/1603
  46514. }
  46515. },
  46516. back: {
  46517. height: math.unit(5 + 4/12, "feet"),
  46518. weight: math.unit(236, "lb"),
  46519. name: "Back",
  46520. image: {
  46521. source: "./media/characters/zaina-khalil/back.svg",
  46522. extra: 1546/1494,
  46523. bottom: 89/1635
  46524. }
  46525. },
  46526. },
  46527. [
  46528. {
  46529. name: "Normal",
  46530. height: math.unit(5 + 4/12, "feet"),
  46531. default: true
  46532. },
  46533. ]
  46534. ))
  46535. characterMakers.push(() => makeCharacter(
  46536. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46537. {
  46538. side: {
  46539. height: math.unit(12, "feet"),
  46540. weight: math.unit(4000, "lb"),
  46541. name: "Side",
  46542. image: {
  46543. source: "./media/characters/terry/side.svg",
  46544. extra: 1518/1439,
  46545. bottom: 149/1667
  46546. }
  46547. },
  46548. },
  46549. [
  46550. {
  46551. name: "Normal",
  46552. height: math.unit(12, "feet"),
  46553. default: true
  46554. },
  46555. ]
  46556. ))
  46557. characterMakers.push(() => makeCharacter(
  46558. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46559. {
  46560. front: {
  46561. height: math.unit(12, "feet"),
  46562. weight: math.unit(1500, "lb"),
  46563. name: "Front",
  46564. image: {
  46565. source: "./media/characters/kahea/front.svg",
  46566. extra: 1722/1617,
  46567. bottom: 179/1901
  46568. }
  46569. },
  46570. },
  46571. [
  46572. {
  46573. name: "Normal",
  46574. height: math.unit(12, "feet"),
  46575. default: true
  46576. },
  46577. ]
  46578. ))
  46579. characterMakers.push(() => makeCharacter(
  46580. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46581. {
  46582. demonFront: {
  46583. height: math.unit(36, "feet"),
  46584. name: "Front",
  46585. image: {
  46586. source: "./media/characters/alex-xuria/demon-front.svg",
  46587. extra: 1705/1673,
  46588. bottom: 198/1903
  46589. },
  46590. form: "demon",
  46591. default: true
  46592. },
  46593. demonBack: {
  46594. height: math.unit(36, "feet"),
  46595. name: "Back",
  46596. image: {
  46597. source: "./media/characters/alex-xuria/demon-back.svg",
  46598. extra: 1725/1693,
  46599. bottom: 70/1795
  46600. },
  46601. form: "demon"
  46602. },
  46603. demonHead: {
  46604. height: math.unit(2.14, "meters"),
  46605. name: "Head",
  46606. image: {
  46607. source: "./media/characters/alex-xuria/demon-head.svg"
  46608. },
  46609. form: "demon"
  46610. },
  46611. demonHand: {
  46612. height: math.unit(1.61, "meters"),
  46613. name: "Hand",
  46614. image: {
  46615. source: "./media/characters/alex-xuria/demon-hand.svg"
  46616. },
  46617. form: "demon"
  46618. },
  46619. demonPaw: {
  46620. height: math.unit(1.35, "meters"),
  46621. name: "Paw",
  46622. image: {
  46623. source: "./media/characters/alex-xuria/demon-paw.svg"
  46624. },
  46625. form: "demon"
  46626. },
  46627. demonFoot: {
  46628. height: math.unit(2.2, "meters"),
  46629. name: "Foot",
  46630. image: {
  46631. source: "./media/characters/alex-xuria/demon-foot.svg"
  46632. },
  46633. form: "demon"
  46634. },
  46635. demonCock: {
  46636. height: math.unit(1.74, "meters"),
  46637. name: "Cock",
  46638. image: {
  46639. source: "./media/characters/alex-xuria/demon-cock.svg"
  46640. },
  46641. form: "demon"
  46642. },
  46643. demonTailClosed: {
  46644. height: math.unit(1.47, "meters"),
  46645. name: "Tail (Closed)",
  46646. image: {
  46647. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46648. },
  46649. form: "demon"
  46650. },
  46651. demonTailOpen: {
  46652. height: math.unit(2.85, "meters"),
  46653. name: "Tail (Open)",
  46654. image: {
  46655. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46656. },
  46657. form: "demon"
  46658. },
  46659. incubusFront: {
  46660. height: math.unit(12, "feet"),
  46661. name: "Front",
  46662. image: {
  46663. source: "./media/characters/alex-xuria/incubus-front.svg",
  46664. extra: 1754/1677,
  46665. bottom: 125/1879
  46666. },
  46667. form: "incubus",
  46668. default: true
  46669. },
  46670. incubusBack: {
  46671. height: math.unit(12, "feet"),
  46672. name: "Back",
  46673. image: {
  46674. source: "./media/characters/alex-xuria/incubus-back.svg",
  46675. extra: 1702/1647,
  46676. bottom: 30/1732
  46677. },
  46678. form: "incubus"
  46679. },
  46680. incubusHead: {
  46681. height: math.unit(3.45, "feet"),
  46682. name: "Head",
  46683. image: {
  46684. source: "./media/characters/alex-xuria/incubus-head.svg"
  46685. },
  46686. form: "incubus"
  46687. },
  46688. rabbitFront: {
  46689. height: math.unit(6, "feet"),
  46690. name: "Front",
  46691. image: {
  46692. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46693. extra: 1369/1349,
  46694. bottom: 45/1414
  46695. },
  46696. form: "rabbit",
  46697. default: true
  46698. },
  46699. rabbitSide: {
  46700. height: math.unit(6, "feet"),
  46701. name: "Side",
  46702. image: {
  46703. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46704. extra: 1370/1356,
  46705. bottom: 37/1407
  46706. },
  46707. form: "rabbit"
  46708. },
  46709. rabbitBack: {
  46710. height: math.unit(6, "feet"),
  46711. name: "Back",
  46712. image: {
  46713. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46714. extra: 1375/1358,
  46715. bottom: 43/1418
  46716. },
  46717. form: "rabbit"
  46718. },
  46719. },
  46720. [
  46721. {
  46722. name: "Normal",
  46723. height: math.unit(6, "feet"),
  46724. default: true,
  46725. form: "rabbit"
  46726. },
  46727. {
  46728. name: "Incubus",
  46729. height: math.unit(12, "feet"),
  46730. default: true,
  46731. form: "incubus"
  46732. },
  46733. {
  46734. name: "Demon",
  46735. height: math.unit(36, "feet"),
  46736. default: true,
  46737. form: "demon"
  46738. }
  46739. ],
  46740. {
  46741. "demon": {
  46742. name: "Demon",
  46743. default: true
  46744. },
  46745. "incubus": {
  46746. name: "Incubus",
  46747. },
  46748. "rabbit": {
  46749. name: "Rabbit"
  46750. }
  46751. }
  46752. ))
  46753. characterMakers.push(() => makeCharacter(
  46754. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46755. {
  46756. front: {
  46757. height: math.unit(7 + 5/12, "feet"),
  46758. weight: math.unit(510, "lb"),
  46759. name: "Front",
  46760. image: {
  46761. source: "./media/characters/syrup/front.svg",
  46762. extra: 932/916,
  46763. bottom: 26/958
  46764. }
  46765. },
  46766. },
  46767. [
  46768. {
  46769. name: "Normal",
  46770. height: math.unit(7 + 5/12, "feet"),
  46771. default: true
  46772. },
  46773. {
  46774. name: "Big",
  46775. height: math.unit(50, "feet")
  46776. },
  46777. {
  46778. name: "Macro",
  46779. height: math.unit(300, "feet")
  46780. },
  46781. {
  46782. name: "Megamacro",
  46783. height: math.unit(1, "mile")
  46784. },
  46785. ]
  46786. ))
  46787. characterMakers.push(() => makeCharacter(
  46788. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46789. {
  46790. front: {
  46791. height: math.unit(6 + 9/12, "feet"),
  46792. name: "Front",
  46793. image: {
  46794. source: "./media/characters/zeimne/front.svg",
  46795. extra: 1969/1806,
  46796. bottom: 53/2022
  46797. }
  46798. },
  46799. },
  46800. [
  46801. {
  46802. name: "Normal",
  46803. height: math.unit(6 + 9/12, "feet"),
  46804. default: true
  46805. },
  46806. {
  46807. name: "Giant",
  46808. height: math.unit(550, "feet")
  46809. },
  46810. {
  46811. name: "Mega",
  46812. height: math.unit(3, "miles")
  46813. },
  46814. {
  46815. name: "Giga",
  46816. height: math.unit(250, "miles")
  46817. },
  46818. {
  46819. name: "Tera",
  46820. height: math.unit(1, "AU")
  46821. },
  46822. ]
  46823. ))
  46824. characterMakers.push(() => makeCharacter(
  46825. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46826. {
  46827. front: {
  46828. height: math.unit(5 + 2/12, "feet"),
  46829. name: "Front",
  46830. image: {
  46831. source: "./media/characters/grar/front.svg",
  46832. extra: 1331/1119,
  46833. bottom: 60/1391
  46834. }
  46835. },
  46836. back: {
  46837. height: math.unit(5 + 2/12, "feet"),
  46838. name: "Back",
  46839. image: {
  46840. source: "./media/characters/grar/back.svg",
  46841. extra: 1385/1169,
  46842. bottom: 23/1408
  46843. }
  46844. },
  46845. },
  46846. [
  46847. {
  46848. name: "Normal",
  46849. height: math.unit(5 + 2/12, "feet"),
  46850. default: true
  46851. },
  46852. ]
  46853. ))
  46854. characterMakers.push(() => makeCharacter(
  46855. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46856. {
  46857. front: {
  46858. height: math.unit(13 + 7/12, "feet"),
  46859. weight: math.unit(2200, "lb"),
  46860. name: "Front",
  46861. image: {
  46862. source: "./media/characters/endraya/front.svg",
  46863. extra: 1289/1215,
  46864. bottom: 50/1339
  46865. }
  46866. },
  46867. nude: {
  46868. height: math.unit(13 + 7/12, "feet"),
  46869. weight: math.unit(2200, "lb"),
  46870. name: "Nude",
  46871. image: {
  46872. source: "./media/characters/endraya/nude.svg",
  46873. extra: 1247/1171,
  46874. bottom: 40/1287
  46875. }
  46876. },
  46877. head: {
  46878. height: math.unit(2.6, "feet"),
  46879. name: "Head",
  46880. image: {
  46881. source: "./media/characters/endraya/head.svg"
  46882. }
  46883. },
  46884. slit: {
  46885. height: math.unit(3.4, "feet"),
  46886. name: "Slit",
  46887. image: {
  46888. source: "./media/characters/endraya/slit.svg"
  46889. }
  46890. },
  46891. },
  46892. [
  46893. {
  46894. name: "Normal",
  46895. height: math.unit(13 + 7/12, "feet"),
  46896. default: true
  46897. },
  46898. {
  46899. name: "Macro",
  46900. height: math.unit(200, "feet")
  46901. },
  46902. ]
  46903. ))
  46904. characterMakers.push(() => makeCharacter(
  46905. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46906. {
  46907. front: {
  46908. height: math.unit(1.81, "meters"),
  46909. weight: math.unit(69, "kg"),
  46910. name: "Front",
  46911. image: {
  46912. source: "./media/characters/rodryana/front.svg",
  46913. extra: 2002/1921,
  46914. bottom: 53/2055
  46915. }
  46916. },
  46917. back: {
  46918. height: math.unit(1.81, "meters"),
  46919. weight: math.unit(69, "kg"),
  46920. name: "Back",
  46921. image: {
  46922. source: "./media/characters/rodryana/back.svg",
  46923. extra: 1993/1926,
  46924. bottom: 48/2041
  46925. }
  46926. },
  46927. maw: {
  46928. height: math.unit(0.19769417475, "meters"),
  46929. name: "Maw",
  46930. image: {
  46931. source: "./media/characters/rodryana/maw.svg"
  46932. }
  46933. },
  46934. slit: {
  46935. height: math.unit(0.31631067961, "meters"),
  46936. name: "Slit",
  46937. image: {
  46938. source: "./media/characters/rodryana/slit.svg"
  46939. }
  46940. },
  46941. },
  46942. [
  46943. {
  46944. name: "Normal",
  46945. height: math.unit(1.81, "meters")
  46946. },
  46947. {
  46948. name: "Mini Macro",
  46949. height: math.unit(181, "meters")
  46950. },
  46951. {
  46952. name: "Macro",
  46953. height: math.unit(452, "meters"),
  46954. default: true
  46955. },
  46956. {
  46957. name: "Mega Macro",
  46958. height: math.unit(1.375, "km")
  46959. },
  46960. {
  46961. name: "Giga Macro",
  46962. height: math.unit(13.575, "km")
  46963. },
  46964. ]
  46965. ))
  46966. characterMakers.push(() => makeCharacter(
  46967. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46968. {
  46969. front: {
  46970. height: math.unit(6, "feet"),
  46971. weight: math.unit(1000, "lb"),
  46972. name: "Front",
  46973. image: {
  46974. source: "./media/characters/asaya/front.svg",
  46975. extra: 1460/1200,
  46976. bottom: 71/1531
  46977. }
  46978. },
  46979. },
  46980. [
  46981. {
  46982. name: "Normal",
  46983. height: math.unit(8, "km"),
  46984. default: true
  46985. },
  46986. ]
  46987. ))
  46988. characterMakers.push(() => makeCharacter(
  46989. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46990. {
  46991. front: {
  46992. height: math.unit(3.5, "meters"),
  46993. name: "Front",
  46994. image: {
  46995. source: "./media/characters/sarzu-and-israz/front.svg",
  46996. extra: 1570/1558,
  46997. bottom: 150/1720
  46998. },
  46999. },
  47000. back: {
  47001. height: math.unit(3.5, "meters"),
  47002. name: "Back",
  47003. image: {
  47004. source: "./media/characters/sarzu-and-israz/back.svg",
  47005. extra: 1523/1509,
  47006. bottom: 132/1655
  47007. },
  47008. },
  47009. frontFemale: {
  47010. height: math.unit(3.5, "meters"),
  47011. name: "Front (Female)",
  47012. image: {
  47013. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47014. extra: 1570/1558,
  47015. bottom: 150/1720
  47016. },
  47017. },
  47018. frontHerm: {
  47019. height: math.unit(3.5, "meters"),
  47020. name: "Front (Herm)",
  47021. image: {
  47022. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47023. extra: 1570/1558,
  47024. bottom: 150/1720
  47025. },
  47026. },
  47027. },
  47028. [
  47029. {
  47030. name: "Normal",
  47031. height: math.unit(3.5, "meters"),
  47032. default: true,
  47033. },
  47034. {
  47035. name: "Macro",
  47036. height: math.unit(65.5, "meters"),
  47037. },
  47038. ],
  47039. ))
  47040. characterMakers.push(() => makeCharacter(
  47041. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47042. {
  47043. front: {
  47044. height: math.unit(6, "feet"),
  47045. weight: math.unit(250, "lb"),
  47046. name: "Front",
  47047. image: {
  47048. source: "./media/characters/zenimma/front.svg",
  47049. extra: 1346/1320,
  47050. bottom: 58/1404
  47051. }
  47052. },
  47053. back: {
  47054. height: math.unit(6, "feet"),
  47055. weight: math.unit(250, "lb"),
  47056. name: "Back",
  47057. image: {
  47058. source: "./media/characters/zenimma/back.svg",
  47059. extra: 1324/1308,
  47060. bottom: 44/1368
  47061. }
  47062. },
  47063. dick: {
  47064. height: math.unit(1.44, "feet"),
  47065. name: "Dick",
  47066. image: {
  47067. source: "./media/characters/zenimma/dick.svg"
  47068. }
  47069. },
  47070. },
  47071. [
  47072. {
  47073. name: "Canon Height",
  47074. height: math.unit(66, "miles"),
  47075. default: true
  47076. },
  47077. ]
  47078. ))
  47079. characterMakers.push(() => makeCharacter(
  47080. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47081. {
  47082. nude: {
  47083. height: math.unit(6, "feet"),
  47084. weight: math.unit(150, "lb"),
  47085. name: "Nude",
  47086. image: {
  47087. source: "./media/characters/shavon/nude.svg",
  47088. extra: 1242/1096,
  47089. bottom: 98/1340
  47090. }
  47091. },
  47092. dressed: {
  47093. height: math.unit(6, "feet"),
  47094. weight: math.unit(150, "lb"),
  47095. name: "Dressed",
  47096. image: {
  47097. source: "./media/characters/shavon/dressed.svg",
  47098. extra: 1242/1096,
  47099. bottom: 98/1340
  47100. }
  47101. },
  47102. },
  47103. [
  47104. {
  47105. name: "Macro",
  47106. height: math.unit(255, "feet"),
  47107. default: true
  47108. },
  47109. ]
  47110. ))
  47111. characterMakers.push(() => makeCharacter(
  47112. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47113. {
  47114. front: {
  47115. height: math.unit(6, "feet"),
  47116. name: "Front",
  47117. image: {
  47118. source: "./media/characters/steph/front.svg",
  47119. extra: 1430/1330,
  47120. bottom: 54/1484
  47121. }
  47122. },
  47123. },
  47124. [
  47125. {
  47126. name: "Normal",
  47127. height: math.unit(6, "feet"),
  47128. default: true
  47129. },
  47130. ]
  47131. ))
  47132. characterMakers.push(() => makeCharacter(
  47133. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47134. {
  47135. front: {
  47136. height: math.unit(9, "feet"),
  47137. weight: math.unit(400, "lb"),
  47138. name: "Front",
  47139. image: {
  47140. source: "./media/characters/kil'aman/front.svg",
  47141. extra: 1210/1159,
  47142. bottom: 109/1319
  47143. }
  47144. },
  47145. head: {
  47146. height: math.unit(2.14, "feet"),
  47147. name: "Head",
  47148. image: {
  47149. source: "./media/characters/kil'aman/head.svg"
  47150. }
  47151. },
  47152. maw: {
  47153. height: math.unit(1.21, "feet"),
  47154. name: "Maw",
  47155. image: {
  47156. source: "./media/characters/kil'aman/maw.svg"
  47157. }
  47158. },
  47159. foot: {
  47160. height: math.unit(1.7, "feet"),
  47161. name: "Foot",
  47162. image: {
  47163. source: "./media/characters/kil'aman/foot.svg"
  47164. }
  47165. },
  47166. dick: {
  47167. height: math.unit(2.1, "feet"),
  47168. name: "Dick",
  47169. image: {
  47170. source: "./media/characters/kil'aman/dick.svg"
  47171. }
  47172. },
  47173. },
  47174. [
  47175. {
  47176. name: "Normal",
  47177. height: math.unit(9, "feet")
  47178. },
  47179. {
  47180. name: "Canon Height",
  47181. height: math.unit(10, "miles"),
  47182. default: true
  47183. },
  47184. {
  47185. name: "Maximum",
  47186. height: math.unit(6e9, "miles")
  47187. },
  47188. ]
  47189. ))
  47190. characterMakers.push(() => makeCharacter(
  47191. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47192. {
  47193. front: {
  47194. height: math.unit(90, "feet"),
  47195. weight: math.unit(675000, "lb"),
  47196. name: "Front",
  47197. image: {
  47198. source: "./media/characters/qadan/front.svg",
  47199. extra: 1012/1004,
  47200. bottom: 78/1090
  47201. }
  47202. },
  47203. back: {
  47204. height: math.unit(90, "feet"),
  47205. weight: math.unit(675000, "lb"),
  47206. name: "Back",
  47207. image: {
  47208. source: "./media/characters/qadan/back.svg",
  47209. extra: 1042/1031,
  47210. bottom: 55/1097
  47211. }
  47212. },
  47213. armored: {
  47214. height: math.unit(90, "feet"),
  47215. weight: math.unit(675000, "lb"),
  47216. name: "Armored",
  47217. image: {
  47218. source: "./media/characters/qadan/armored.svg",
  47219. extra: 1047/1037,
  47220. bottom: 48/1095
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Normal",
  47227. height: math.unit(90, "feet"),
  47228. default: true
  47229. },
  47230. ]
  47231. ))
  47232. characterMakers.push(() => makeCharacter(
  47233. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47234. {
  47235. front: {
  47236. height: math.unit(6, "feet"),
  47237. weight: math.unit(225, "lb"),
  47238. name: "Front",
  47239. image: {
  47240. source: "./media/characters/brooke/front.svg",
  47241. extra: 1050/1010,
  47242. bottom: 66/1116
  47243. }
  47244. },
  47245. back: {
  47246. height: math.unit(6, "feet"),
  47247. weight: math.unit(225, "lb"),
  47248. name: "Back",
  47249. image: {
  47250. source: "./media/characters/brooke/back.svg",
  47251. extra: 1053/1013,
  47252. bottom: 41/1094
  47253. }
  47254. },
  47255. dressed: {
  47256. height: math.unit(6, "feet"),
  47257. weight: math.unit(225, "lb"),
  47258. name: "Dressed",
  47259. image: {
  47260. source: "./media/characters/brooke/dressed.svg",
  47261. extra: 1050/1010,
  47262. bottom: 66/1116
  47263. }
  47264. },
  47265. },
  47266. [
  47267. {
  47268. name: "Canon Height",
  47269. height: math.unit(500, "miles"),
  47270. default: true
  47271. },
  47272. ]
  47273. ))
  47274. characterMakers.push(() => makeCharacter(
  47275. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47276. {
  47277. front: {
  47278. height: math.unit(6 + 2/12, "feet"),
  47279. weight: math.unit(210, "lb"),
  47280. name: "Front",
  47281. image: {
  47282. source: "./media/characters/wubs/front.svg",
  47283. extra: 1345/1325,
  47284. bottom: 70/1415
  47285. }
  47286. },
  47287. back: {
  47288. height: math.unit(6 + 2/12, "feet"),
  47289. weight: math.unit(210, "lb"),
  47290. name: "Back",
  47291. image: {
  47292. source: "./media/characters/wubs/back.svg",
  47293. extra: 1296/1275,
  47294. bottom: 58/1354
  47295. }
  47296. },
  47297. },
  47298. [
  47299. {
  47300. name: "Normal",
  47301. height: math.unit(6 + 2/12, "feet"),
  47302. default: true
  47303. },
  47304. {
  47305. name: "Macro",
  47306. height: math.unit(1000, "feet")
  47307. },
  47308. {
  47309. name: "Megamacro",
  47310. height: math.unit(1, "mile")
  47311. },
  47312. ]
  47313. ))
  47314. characterMakers.push(() => makeCharacter(
  47315. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47316. {
  47317. front: {
  47318. height: math.unit(4, "feet"),
  47319. weight: math.unit(120, "lb"),
  47320. name: "Front",
  47321. image: {
  47322. source: "./media/characters/blue/front.svg",
  47323. extra: 1636/1525,
  47324. bottom: 43/1679
  47325. }
  47326. },
  47327. back: {
  47328. height: math.unit(4, "feet"),
  47329. weight: math.unit(120, "lb"),
  47330. name: "Back",
  47331. image: {
  47332. source: "./media/characters/blue/back.svg",
  47333. extra: 1660/1560,
  47334. bottom: 57/1717
  47335. }
  47336. },
  47337. paws: {
  47338. height: math.unit(0.826, "feet"),
  47339. name: "Paws",
  47340. image: {
  47341. source: "./media/characters/blue/paws.svg"
  47342. }
  47343. },
  47344. },
  47345. [
  47346. {
  47347. name: "Micro",
  47348. height: math.unit(3, "inches")
  47349. },
  47350. {
  47351. name: "Normal",
  47352. height: math.unit(4, "feet"),
  47353. default: true
  47354. },
  47355. {
  47356. name: "Femenine Form",
  47357. height: math.unit(14, "feet")
  47358. },
  47359. {
  47360. name: "Werebat Form",
  47361. height: math.unit(18, "feet")
  47362. },
  47363. ]
  47364. ))
  47365. characterMakers.push(() => makeCharacter(
  47366. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47367. {
  47368. female: {
  47369. height: math.unit(7 + 4/12, "feet"),
  47370. weight: math.unit(243, "lb"),
  47371. name: "Female",
  47372. image: {
  47373. source: "./media/characters/kaya/female.svg",
  47374. extra: 975/898,
  47375. bottom: 34/1009
  47376. }
  47377. },
  47378. herm: {
  47379. height: math.unit(7 + 4/12, "feet"),
  47380. weight: math.unit(243, "lb"),
  47381. name: "Herm",
  47382. image: {
  47383. source: "./media/characters/kaya/herm.svg",
  47384. extra: 975/898,
  47385. bottom: 34/1009
  47386. }
  47387. },
  47388. },
  47389. [
  47390. {
  47391. name: "Normal",
  47392. height: math.unit(7 + 4/12, "feet"),
  47393. default: true
  47394. },
  47395. ]
  47396. ))
  47397. characterMakers.push(() => makeCharacter(
  47398. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47399. {
  47400. female: {
  47401. height: math.unit(9 + 4/12, "feet"),
  47402. weight: math.unit(398, "lb"),
  47403. name: "Female",
  47404. image: {
  47405. source: "./media/characters/kassandra/female.svg",
  47406. extra: 908/839,
  47407. bottom: 61/969
  47408. }
  47409. },
  47410. intersex: {
  47411. height: math.unit(9 + 4/12, "feet"),
  47412. weight: math.unit(398, "lb"),
  47413. name: "Intersex",
  47414. image: {
  47415. source: "./media/characters/kassandra/intersex.svg",
  47416. extra: 908/839,
  47417. bottom: 61/969
  47418. }
  47419. },
  47420. },
  47421. [
  47422. {
  47423. name: "Normal",
  47424. height: math.unit(9 + 4/12, "feet"),
  47425. default: true
  47426. },
  47427. ]
  47428. ))
  47429. characterMakers.push(() => makeCharacter(
  47430. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47431. {
  47432. front: {
  47433. height: math.unit(3, "meters"),
  47434. name: "Front",
  47435. image: {
  47436. source: "./media/characters/amy/front.svg",
  47437. extra: 1380/1343,
  47438. bottom: 70/1450
  47439. }
  47440. },
  47441. back: {
  47442. height: math.unit(3, "meters"),
  47443. name: "Back",
  47444. image: {
  47445. source: "./media/characters/amy/back.svg",
  47446. extra: 1380/1347,
  47447. bottom: 66/1446
  47448. }
  47449. },
  47450. },
  47451. [
  47452. {
  47453. name: "Normal",
  47454. height: math.unit(3, "meters"),
  47455. default: true
  47456. },
  47457. ]
  47458. ))
  47459. characterMakers.push(() => makeCharacter(
  47460. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47461. {
  47462. side: {
  47463. height: math.unit(47, "cm"),
  47464. weight: math.unit(10.8, "kg"),
  47465. name: "Side",
  47466. image: {
  47467. source: "./media/characters/alphaschakal/side.svg",
  47468. extra: 1058/568,
  47469. bottom: 62/1120
  47470. }
  47471. },
  47472. back: {
  47473. height: math.unit(78, "cm"),
  47474. weight: math.unit(10.8, "kg"),
  47475. name: "Back",
  47476. image: {
  47477. source: "./media/characters/alphaschakal/back.svg",
  47478. extra: 1102/942,
  47479. bottom: 185/1287
  47480. }
  47481. },
  47482. head: {
  47483. height: math.unit(28, "cm"),
  47484. name: "Head",
  47485. image: {
  47486. source: "./media/characters/alphaschakal/head.svg",
  47487. extra: 696/508,
  47488. bottom: 0/696
  47489. }
  47490. },
  47491. paw: {
  47492. height: math.unit(16, "cm"),
  47493. name: "Paw",
  47494. image: {
  47495. source: "./media/characters/alphaschakal/paw.svg"
  47496. }
  47497. },
  47498. },
  47499. [
  47500. {
  47501. name: "Normal",
  47502. height: math.unit(47, "cm"),
  47503. default: true
  47504. },
  47505. {
  47506. name: "Macro",
  47507. height: math.unit(340, "cm")
  47508. },
  47509. ]
  47510. ))
  47511. characterMakers.push(() => makeCharacter(
  47512. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47513. {
  47514. front: {
  47515. height: math.unit(36, "earths"),
  47516. name: "Front",
  47517. image: {
  47518. source: "./media/characters/ecobyss/front.svg",
  47519. extra: 1282/1215,
  47520. bottom: 11/1293
  47521. }
  47522. },
  47523. back: {
  47524. height: math.unit(36, "earths"),
  47525. name: "Back",
  47526. image: {
  47527. source: "./media/characters/ecobyss/back.svg",
  47528. extra: 1291/1222,
  47529. bottom: 8/1299
  47530. }
  47531. },
  47532. },
  47533. [
  47534. {
  47535. name: "Normal",
  47536. height: math.unit(36, "earths"),
  47537. default: true
  47538. },
  47539. ]
  47540. ))
  47541. characterMakers.push(() => makeCharacter(
  47542. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47543. {
  47544. front: {
  47545. height: math.unit(12, "feet"),
  47546. name: "Front",
  47547. image: {
  47548. source: "./media/characters/vasuk/front.svg",
  47549. extra: 1326/1207,
  47550. bottom: 64/1390
  47551. }
  47552. },
  47553. },
  47554. [
  47555. {
  47556. name: "Normal",
  47557. height: math.unit(12, "feet"),
  47558. default: true
  47559. },
  47560. ]
  47561. ))
  47562. characterMakers.push(() => makeCharacter(
  47563. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47564. {
  47565. side: {
  47566. height: math.unit(100, "feet"),
  47567. name: "Side",
  47568. image: {
  47569. source: "./media/characters/linneaus/side.svg",
  47570. extra: 987/807,
  47571. bottom: 47/1034
  47572. }
  47573. },
  47574. },
  47575. [
  47576. {
  47577. name: "Macro",
  47578. height: math.unit(100, "feet"),
  47579. default: true
  47580. },
  47581. ]
  47582. ))
  47583. characterMakers.push(() => makeCharacter(
  47584. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47585. {
  47586. front: {
  47587. height: math.unit(8, "feet"),
  47588. weight: math.unit(1200, "lb"),
  47589. name: "Front",
  47590. image: {
  47591. source: "./media/characters/nyterious-daligdig/front.svg",
  47592. extra: 1284/1094,
  47593. bottom: 84/1368
  47594. }
  47595. },
  47596. back: {
  47597. height: math.unit(8, "feet"),
  47598. weight: math.unit(1200, "lb"),
  47599. name: "Back",
  47600. image: {
  47601. source: "./media/characters/nyterious-daligdig/back.svg",
  47602. extra: 1301/1121,
  47603. bottom: 129/1430
  47604. }
  47605. },
  47606. mouth: {
  47607. height: math.unit(1.464, "feet"),
  47608. name: "Mouth",
  47609. image: {
  47610. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47611. }
  47612. },
  47613. },
  47614. [
  47615. {
  47616. name: "Small",
  47617. height: math.unit(8, "feet"),
  47618. default: true
  47619. },
  47620. {
  47621. name: "Normal",
  47622. height: math.unit(15, "feet")
  47623. },
  47624. {
  47625. name: "Macro",
  47626. height: math.unit(90, "feet")
  47627. },
  47628. ]
  47629. ))
  47630. characterMakers.push(() => makeCharacter(
  47631. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47632. {
  47633. front: {
  47634. height: math.unit(7 + 4/12, "feet"),
  47635. weight: math.unit(252, "lb"),
  47636. name: "Front",
  47637. image: {
  47638. source: "./media/characters/bandel/front.svg",
  47639. extra: 1946/1775,
  47640. bottom: 26/1972
  47641. }
  47642. },
  47643. back: {
  47644. height: math.unit(7 + 4/12, "feet"),
  47645. weight: math.unit(252, "lb"),
  47646. name: "Back",
  47647. image: {
  47648. source: "./media/characters/bandel/back.svg",
  47649. extra: 1940/1770,
  47650. bottom: 25/1965
  47651. }
  47652. },
  47653. maw: {
  47654. height: math.unit(2.15, "feet"),
  47655. name: "Maw",
  47656. image: {
  47657. source: "./media/characters/bandel/maw.svg"
  47658. }
  47659. },
  47660. stomach: {
  47661. height: math.unit(1.95, "feet"),
  47662. name: "Stomach",
  47663. image: {
  47664. source: "./media/characters/bandel/stomach.svg"
  47665. }
  47666. },
  47667. },
  47668. [
  47669. {
  47670. name: "Normal",
  47671. height: math.unit(7 + 4/12, "feet"),
  47672. default: true
  47673. },
  47674. ]
  47675. ))
  47676. characterMakers.push(() => makeCharacter(
  47677. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47678. {
  47679. front: {
  47680. height: math.unit(10 + 5/12, "feet"),
  47681. weight: math.unit(773.5, "kg"),
  47682. name: "Front",
  47683. image: {
  47684. source: "./media/characters/zed/front.svg",
  47685. extra: 987/941,
  47686. bottom: 52/1039
  47687. }
  47688. },
  47689. },
  47690. [
  47691. {
  47692. name: "Short",
  47693. height: math.unit(5 + 4/12, "feet")
  47694. },
  47695. {
  47696. name: "Average",
  47697. height: math.unit(10 + 5/12, "feet"),
  47698. default: true
  47699. },
  47700. {
  47701. name: "Mini-Macro",
  47702. height: math.unit(24 + 9/12, "feet")
  47703. },
  47704. {
  47705. name: "Macro",
  47706. height: math.unit(249, "feet")
  47707. },
  47708. {
  47709. name: "Mega-Macro",
  47710. height: math.unit(12490, "feet")
  47711. },
  47712. {
  47713. name: "Giga-Macro",
  47714. height: math.unit(24.9, "miles")
  47715. },
  47716. {
  47717. name: "Tera-Macro",
  47718. height: math.unit(24900, "miles")
  47719. },
  47720. {
  47721. name: "Cosmic Scale",
  47722. height: math.unit(38.9, "lightyears")
  47723. },
  47724. {
  47725. name: "Universal Scale",
  47726. height: math.unit(138e12, "lightyears")
  47727. },
  47728. ]
  47729. ))
  47730. characterMakers.push(() => makeCharacter(
  47731. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47732. {
  47733. front: {
  47734. height: math.unit(1561, "inches"),
  47735. name: "Front",
  47736. image: {
  47737. source: "./media/characters/ivan/front.svg",
  47738. extra: 1126/1071,
  47739. bottom: 26/1152
  47740. }
  47741. },
  47742. back: {
  47743. height: math.unit(1561, "inches"),
  47744. name: "Back",
  47745. image: {
  47746. source: "./media/characters/ivan/back.svg",
  47747. extra: 1134/1079,
  47748. bottom: 30/1164
  47749. }
  47750. },
  47751. },
  47752. [
  47753. {
  47754. name: "Normal",
  47755. height: math.unit(1561, "inches"),
  47756. default: true
  47757. },
  47758. ]
  47759. ))
  47760. characterMakers.push(() => makeCharacter(
  47761. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47762. {
  47763. front: {
  47764. height: math.unit(5 + 7/12, "feet"),
  47765. weight: math.unit(150, "lb"),
  47766. name: "Front",
  47767. image: {
  47768. source: "./media/characters/robin-arctic-hare/front.svg",
  47769. extra: 1148/974,
  47770. bottom: 20/1168
  47771. }
  47772. },
  47773. },
  47774. [
  47775. {
  47776. name: "Normal",
  47777. height: math.unit(5 + 7/12, "feet"),
  47778. default: true
  47779. },
  47780. ]
  47781. ))
  47782. characterMakers.push(() => makeCharacter(
  47783. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47784. {
  47785. side: {
  47786. height: math.unit(5, "feet"),
  47787. name: "Side",
  47788. image: {
  47789. source: "./media/characters/birch/side.svg",
  47790. extra: 985/796,
  47791. bottom: 111/1096
  47792. }
  47793. },
  47794. },
  47795. [
  47796. {
  47797. name: "Normal",
  47798. height: math.unit(5, "feet"),
  47799. default: true
  47800. },
  47801. ]
  47802. ))
  47803. characterMakers.push(() => makeCharacter(
  47804. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47805. {
  47806. front: {
  47807. height: math.unit(4, "feet"),
  47808. name: "Front",
  47809. image: {
  47810. source: "./media/characters/rasp/front.svg",
  47811. extra: 561/478,
  47812. bottom: 74/635
  47813. }
  47814. },
  47815. },
  47816. [
  47817. {
  47818. name: "Normal",
  47819. height: math.unit(4, "feet"),
  47820. default: true
  47821. },
  47822. ]
  47823. ))
  47824. characterMakers.push(() => makeCharacter(
  47825. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47826. {
  47827. front: {
  47828. height: math.unit(4 + 6/12, "feet"),
  47829. name: "Front",
  47830. image: {
  47831. source: "./media/characters/agatha/front.svg",
  47832. extra: 947/933,
  47833. bottom: 42/989
  47834. }
  47835. },
  47836. back: {
  47837. height: math.unit(4 + 6/12, "feet"),
  47838. name: "Back",
  47839. image: {
  47840. source: "./media/characters/agatha/back.svg",
  47841. extra: 935/922,
  47842. bottom: 48/983
  47843. }
  47844. },
  47845. },
  47846. [
  47847. {
  47848. name: "Normal",
  47849. height: math.unit(4 + 6 /12, "feet"),
  47850. default: true
  47851. },
  47852. {
  47853. name: "Max Size",
  47854. height: math.unit(500, "feet")
  47855. },
  47856. ]
  47857. ))
  47858. characterMakers.push(() => makeCharacter(
  47859. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47860. {
  47861. side: {
  47862. height: math.unit(30, "feet"),
  47863. name: "Side",
  47864. image: {
  47865. source: "./media/characters/roggy/side.svg",
  47866. extra: 909/643,
  47867. bottom: 63/972
  47868. }
  47869. },
  47870. lounging: {
  47871. height: math.unit(20, "feet"),
  47872. name: "Lounging",
  47873. image: {
  47874. source: "./media/characters/roggy/lounging.svg",
  47875. extra: 643/479,
  47876. bottom: 145/788
  47877. }
  47878. },
  47879. handpaw: {
  47880. height: math.unit(13.1, "feet"),
  47881. name: "Handpaw",
  47882. image: {
  47883. source: "./media/characters/roggy/handpaw.svg"
  47884. }
  47885. },
  47886. footpaw: {
  47887. height: math.unit(15.8, "feet"),
  47888. name: "Footpaw",
  47889. image: {
  47890. source: "./media/characters/roggy/footpaw.svg"
  47891. }
  47892. },
  47893. },
  47894. [
  47895. {
  47896. name: "Menacing",
  47897. height: math.unit(30, "feet"),
  47898. default: true
  47899. },
  47900. ]
  47901. ))
  47902. characterMakers.push(() => makeCharacter(
  47903. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47904. {
  47905. front: {
  47906. height: math.unit(5 + 7/12, "feet"),
  47907. weight: math.unit(135, "lb"),
  47908. name: "Front",
  47909. image: {
  47910. source: "./media/characters/naomi/front.svg",
  47911. extra: 1209/1154,
  47912. bottom: 129/1338
  47913. }
  47914. },
  47915. back: {
  47916. height: math.unit(5 + 7/12, "feet"),
  47917. weight: math.unit(135, "lb"),
  47918. name: "Back",
  47919. image: {
  47920. source: "./media/characters/naomi/back.svg",
  47921. extra: 1252/1190,
  47922. bottom: 23/1275
  47923. }
  47924. },
  47925. },
  47926. [
  47927. {
  47928. name: "Normal",
  47929. height: math.unit(5 + 7 /12, "feet"),
  47930. default: true
  47931. },
  47932. ]
  47933. ))
  47934. characterMakers.push(() => makeCharacter(
  47935. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47936. {
  47937. side: {
  47938. height: math.unit(35, "meters"),
  47939. name: "Side",
  47940. image: {
  47941. source: "./media/characters/kimpi/side.svg",
  47942. extra: 419/382,
  47943. bottom: 63/482
  47944. }
  47945. },
  47946. hand: {
  47947. height: math.unit(8.96, "meters"),
  47948. name: "Hand",
  47949. image: {
  47950. source: "./media/characters/kimpi/hand.svg"
  47951. }
  47952. },
  47953. },
  47954. [
  47955. {
  47956. name: "Normal",
  47957. height: math.unit(35, "meters"),
  47958. default: true
  47959. },
  47960. ]
  47961. ))
  47962. characterMakers.push(() => makeCharacter(
  47963. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47964. {
  47965. front: {
  47966. height: math.unit(4 + 4/12, "feet"),
  47967. name: "Front",
  47968. image: {
  47969. source: "./media/characters/pepper-purrloin/front.svg",
  47970. extra: 1141/1024,
  47971. bottom: 21/1162
  47972. }
  47973. },
  47974. },
  47975. [
  47976. {
  47977. name: "Normal",
  47978. height: math.unit(4 + 4/12, "feet"),
  47979. default: true
  47980. },
  47981. ]
  47982. ))
  47983. characterMakers.push(() => makeCharacter(
  47984. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47985. {
  47986. front: {
  47987. height: math.unit(6 + 2/12, "feet"),
  47988. name: "Front",
  47989. image: {
  47990. source: "./media/characters/raphael/front.svg",
  47991. extra: 1101/962,
  47992. bottom: 59/1160
  47993. }
  47994. },
  47995. },
  47996. [
  47997. {
  47998. name: "Normal",
  47999. height: math.unit(6 + 2/12, "feet"),
  48000. default: true
  48001. },
  48002. ]
  48003. ))
  48004. characterMakers.push(() => makeCharacter(
  48005. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48006. {
  48007. front: {
  48008. height: math.unit(6, "feet"),
  48009. weight: math.unit(150, "lb"),
  48010. name: "Front",
  48011. image: {
  48012. source: "./media/characters/victor-williams/front.svg",
  48013. extra: 1894/1825,
  48014. bottom: 67/1961
  48015. }
  48016. },
  48017. },
  48018. [
  48019. {
  48020. name: "Normal",
  48021. height: math.unit(6, "feet"),
  48022. default: true
  48023. },
  48024. ]
  48025. ))
  48026. characterMakers.push(() => makeCharacter(
  48027. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48028. {
  48029. front: {
  48030. height: math.unit(5 + 8/12, "feet"),
  48031. weight: math.unit(150, "lb"),
  48032. name: "Front",
  48033. image: {
  48034. source: "./media/characters/rachel/front.svg",
  48035. extra: 1902/1787,
  48036. bottom: 46/1948
  48037. }
  48038. },
  48039. },
  48040. [
  48041. {
  48042. name: "Base Height",
  48043. height: math.unit(5 + 8/12, "feet"),
  48044. default: true
  48045. },
  48046. {
  48047. name: "Macro",
  48048. height: math.unit(200, "feet")
  48049. },
  48050. {
  48051. name: "Mega Macro",
  48052. height: math.unit(1, "mile")
  48053. },
  48054. {
  48055. name: "Giga Macro",
  48056. height: math.unit(1500, "miles")
  48057. },
  48058. {
  48059. name: "Tera Macro",
  48060. height: math.unit(8000, "miles")
  48061. },
  48062. {
  48063. name: "Tera Macro+",
  48064. height: math.unit(2e5, "miles")
  48065. },
  48066. ]
  48067. ))
  48068. characterMakers.push(() => makeCharacter(
  48069. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48070. {
  48071. front: {
  48072. height: math.unit(6.5, "feet"),
  48073. name: "Front",
  48074. image: {
  48075. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48076. extra: 860/819,
  48077. bottom: 307/1167
  48078. }
  48079. },
  48080. back: {
  48081. height: math.unit(6.5, "feet"),
  48082. name: "Back",
  48083. image: {
  48084. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48085. extra: 880/837,
  48086. bottom: 395/1275
  48087. }
  48088. },
  48089. sleeping: {
  48090. height: math.unit(2.79, "feet"),
  48091. name: "Sleeping",
  48092. image: {
  48093. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48094. extra: 465/383,
  48095. bottom: 263/728
  48096. }
  48097. },
  48098. maw: {
  48099. height: math.unit(2.52, "feet"),
  48100. name: "Maw",
  48101. image: {
  48102. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48103. }
  48104. },
  48105. },
  48106. [
  48107. {
  48108. name: "Normal",
  48109. height: math.unit(6.5, "feet"),
  48110. default: true
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48116. {
  48117. front: {
  48118. height: math.unit(5, "feet"),
  48119. name: "Front",
  48120. image: {
  48121. source: "./media/characters/nova-nerium/front.svg",
  48122. extra: 1548/1392,
  48123. bottom: 374/1922
  48124. }
  48125. },
  48126. back: {
  48127. height: math.unit(5, "feet"),
  48128. name: "Back",
  48129. image: {
  48130. source: "./media/characters/nova-nerium/back.svg",
  48131. extra: 1658/1468,
  48132. bottom: 257/1915
  48133. }
  48134. },
  48135. },
  48136. [
  48137. {
  48138. name: "Normal",
  48139. height: math.unit(5, "feet"),
  48140. default: true
  48141. },
  48142. ]
  48143. ))
  48144. characterMakers.push(() => makeCharacter(
  48145. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48146. {
  48147. front: {
  48148. height: math.unit(5 + 4/12, "feet"),
  48149. name: "Front",
  48150. image: {
  48151. source: "./media/characters/ashe-pyriph/front.svg",
  48152. extra: 1935/1747,
  48153. bottom: 60/1995
  48154. }
  48155. },
  48156. },
  48157. [
  48158. {
  48159. name: "Normal",
  48160. height: math.unit(5 + 4/12, "feet"),
  48161. default: true
  48162. },
  48163. ]
  48164. ))
  48165. characterMakers.push(() => makeCharacter(
  48166. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48167. {
  48168. front: {
  48169. height: math.unit(8.7, "feet"),
  48170. name: "Front",
  48171. image: {
  48172. source: "./media/characters/flicker-wisp/front.svg",
  48173. extra: 1835/1613,
  48174. bottom: 449/2284
  48175. }
  48176. },
  48177. side: {
  48178. height: math.unit(8.7, "feet"),
  48179. name: "Side",
  48180. image: {
  48181. source: "./media/characters/flicker-wisp/side.svg",
  48182. extra: 1841/1642,
  48183. bottom: 336/2177
  48184. },
  48185. default: true
  48186. },
  48187. maw: {
  48188. height: math.unit(3.35, "feet"),
  48189. name: "Maw",
  48190. image: {
  48191. source: "./media/characters/flicker-wisp/maw.svg",
  48192. extra: 2338/1506,
  48193. bottom: 0/2338
  48194. }
  48195. },
  48196. ovipositor: {
  48197. height: math.unit(4.95, "feet"),
  48198. name: "Ovipositor",
  48199. image: {
  48200. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48201. }
  48202. },
  48203. egg: {
  48204. height: math.unit(0.385, "feet"),
  48205. weight: math.unit(2, "lb"),
  48206. name: "Egg",
  48207. image: {
  48208. source: "./media/characters/flicker-wisp/egg.svg"
  48209. }
  48210. },
  48211. },
  48212. [
  48213. {
  48214. name: "Normal",
  48215. height: math.unit(8.7, "feet"),
  48216. default: true
  48217. },
  48218. ]
  48219. ))
  48220. characterMakers.push(() => makeCharacter(
  48221. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48222. {
  48223. side: {
  48224. height: math.unit(11, "feet"),
  48225. name: "Side",
  48226. image: {
  48227. source: "./media/characters/faefnul/side.svg",
  48228. extra: 1100/1007,
  48229. bottom: 0/1100
  48230. }
  48231. },
  48232. },
  48233. [
  48234. {
  48235. name: "Normal",
  48236. height: math.unit(11, "feet"),
  48237. default: true
  48238. },
  48239. ]
  48240. ))
  48241. characterMakers.push(() => makeCharacter(
  48242. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48243. {
  48244. front: {
  48245. height: math.unit(6 + 2/12, "feet"),
  48246. name: "Front",
  48247. image: {
  48248. source: "./media/characters/shady/front.svg",
  48249. extra: 502/461,
  48250. bottom: 9/511
  48251. }
  48252. },
  48253. kneeling: {
  48254. height: math.unit(4.6, "feet"),
  48255. name: "Kneeling",
  48256. image: {
  48257. source: "./media/characters/shady/kneeling.svg",
  48258. extra: 1328/1219,
  48259. bottom: 117/1445
  48260. }
  48261. },
  48262. maw: {
  48263. height: math.unit(2, "feet"),
  48264. name: "Maw",
  48265. image: {
  48266. source: "./media/characters/shady/maw.svg"
  48267. }
  48268. },
  48269. },
  48270. [
  48271. {
  48272. name: "Nano",
  48273. height: math.unit(1, "mm")
  48274. },
  48275. {
  48276. name: "Micro",
  48277. height: math.unit(12, "mm")
  48278. },
  48279. {
  48280. name: "Tiny",
  48281. height: math.unit(3, "inches")
  48282. },
  48283. {
  48284. name: "Normal",
  48285. height: math.unit(6 + 2/12, "feet"),
  48286. default: true
  48287. },
  48288. {
  48289. name: "Big",
  48290. height: math.unit(15, "feet")
  48291. },
  48292. {
  48293. name: "Macro",
  48294. height: math.unit(150, "feet")
  48295. },
  48296. {
  48297. name: "Titanic",
  48298. height: math.unit(500, "feet")
  48299. },
  48300. ]
  48301. ))
  48302. characterMakers.push(() => makeCharacter(
  48303. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48304. {
  48305. front: {
  48306. height: math.unit(12, "feet"),
  48307. name: "Front",
  48308. image: {
  48309. source: "./media/characters/fenrir/front.svg",
  48310. extra: 968/875,
  48311. bottom: 22/990
  48312. }
  48313. },
  48314. },
  48315. [
  48316. {
  48317. name: "Big",
  48318. height: math.unit(12, "feet"),
  48319. default: true
  48320. },
  48321. ]
  48322. ))
  48323. characterMakers.push(() => makeCharacter(
  48324. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48325. {
  48326. front: {
  48327. height: math.unit(5 + 4/12, "feet"),
  48328. name: "Front",
  48329. image: {
  48330. source: "./media/characters/makar/front.svg",
  48331. extra: 1181/1112,
  48332. bottom: 78/1259
  48333. }
  48334. },
  48335. },
  48336. [
  48337. {
  48338. name: "Normal",
  48339. height: math.unit(5 + 4/12, "feet"),
  48340. default: true
  48341. },
  48342. ]
  48343. ))
  48344. characterMakers.push(() => makeCharacter(
  48345. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48346. {
  48347. front: {
  48348. height: math.unit(5 + 7/12, "feet"),
  48349. name: "Front",
  48350. image: {
  48351. source: "./media/characters/callow/front.svg",
  48352. extra: 1482/1304,
  48353. bottom: 23/1505
  48354. }
  48355. },
  48356. back: {
  48357. height: math.unit(5 + 7/12, "feet"),
  48358. name: "Back",
  48359. image: {
  48360. source: "./media/characters/callow/back.svg",
  48361. extra: 1484/1296,
  48362. bottom: 25/1509
  48363. }
  48364. },
  48365. },
  48366. [
  48367. {
  48368. name: "Micro",
  48369. height: math.unit(3, "inches"),
  48370. default: true
  48371. },
  48372. {
  48373. name: "Normal",
  48374. height: math.unit(5 + 7/12, "feet")
  48375. },
  48376. ]
  48377. ))
  48378. characterMakers.push(() => makeCharacter(
  48379. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48380. {
  48381. front: {
  48382. height: math.unit(6 + 2/12, "feet"),
  48383. name: "Front",
  48384. image: {
  48385. source: "./media/characters/natel/front.svg",
  48386. extra: 1833/1692,
  48387. bottom: 166/1999
  48388. }
  48389. },
  48390. },
  48391. [
  48392. {
  48393. name: "Normal",
  48394. height: math.unit(6 + 2/12, "feet"),
  48395. default: true
  48396. },
  48397. ]
  48398. ))
  48399. characterMakers.push(() => makeCharacter(
  48400. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48401. {
  48402. front: {
  48403. height: math.unit(1.75, "meters"),
  48404. name: "Front",
  48405. image: {
  48406. source: "./media/characters/misu/front.svg",
  48407. extra: 1690/1558,
  48408. bottom: 234/1924
  48409. }
  48410. },
  48411. back: {
  48412. height: math.unit(1.75, "meters"),
  48413. name: "Back",
  48414. image: {
  48415. source: "./media/characters/misu/back.svg",
  48416. extra: 1762/1618,
  48417. bottom: 146/1908
  48418. }
  48419. },
  48420. frontNude: {
  48421. height: math.unit(1.75, "meters"),
  48422. name: "Front (Nude)",
  48423. image: {
  48424. source: "./media/characters/misu/front-nude.svg",
  48425. extra: 1690/1558,
  48426. bottom: 234/1924
  48427. }
  48428. },
  48429. backNude: {
  48430. height: math.unit(1.75, "meters"),
  48431. name: "Back (Nude)",
  48432. image: {
  48433. source: "./media/characters/misu/back-nude.svg",
  48434. extra: 1762/1618,
  48435. bottom: 146/1908
  48436. }
  48437. },
  48438. frontErect: {
  48439. height: math.unit(1.75, "meters"),
  48440. name: "Front (Erect)",
  48441. image: {
  48442. source: "./media/characters/misu/front-erect.svg",
  48443. extra: 1690/1558,
  48444. bottom: 234/1924
  48445. }
  48446. },
  48447. maw: {
  48448. height: math.unit(0.47, "meters"),
  48449. name: "Maw",
  48450. image: {
  48451. source: "./media/characters/misu/maw.svg"
  48452. }
  48453. },
  48454. head: {
  48455. height: math.unit(0.35, "meters"),
  48456. name: "Head",
  48457. image: {
  48458. source: "./media/characters/misu/head.svg"
  48459. }
  48460. },
  48461. rear: {
  48462. height: math.unit(0.47, "meters"),
  48463. name: "Rear",
  48464. image: {
  48465. source: "./media/characters/misu/rear.svg"
  48466. }
  48467. },
  48468. },
  48469. [
  48470. {
  48471. name: "Normal",
  48472. height: math.unit(1.75, "meters")
  48473. },
  48474. {
  48475. name: "Not good for the people",
  48476. height: math.unit(42, "meters")
  48477. },
  48478. {
  48479. name: "Not good for the neighborhood",
  48480. height: math.unit(135, "meters")
  48481. },
  48482. {
  48483. name: "Bit bigger problem",
  48484. height: math.unit(380, "meters"),
  48485. default: true
  48486. },
  48487. {
  48488. name: "Not good for the city",
  48489. height: math.unit(1.5, "km")
  48490. },
  48491. {
  48492. name: "Not good for the county",
  48493. height: math.unit(5.5, "km")
  48494. },
  48495. {
  48496. name: "Not good for the state",
  48497. height: math.unit(25, "km")
  48498. },
  48499. {
  48500. name: "Not good for the country",
  48501. height: math.unit(125, "km")
  48502. },
  48503. {
  48504. name: "Not good for the continent",
  48505. height: math.unit(2100, "km")
  48506. },
  48507. {
  48508. name: "Not good for the planet",
  48509. height: math.unit(35000, "km")
  48510. },
  48511. {
  48512. name: "Just no",
  48513. height: math.unit(8.5e18, "km")
  48514. },
  48515. ]
  48516. ))
  48517. characterMakers.push(() => makeCharacter(
  48518. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48519. {
  48520. front: {
  48521. height: math.unit(6.5, "feet"),
  48522. name: "Front",
  48523. image: {
  48524. source: "./media/characters/poppy/front.svg",
  48525. extra: 1878/1812,
  48526. bottom: 43/1921
  48527. }
  48528. },
  48529. feet: {
  48530. height: math.unit(1.06, "feet"),
  48531. name: "Feet",
  48532. image: {
  48533. source: "./media/characters/poppy/feet.svg",
  48534. extra: 1083/1083,
  48535. bottom: 87/1170
  48536. }
  48537. },
  48538. },
  48539. [
  48540. {
  48541. name: "Human",
  48542. height: math.unit(6.5, "feet")
  48543. },
  48544. {
  48545. name: "Default",
  48546. height: math.unit(300, "feet"),
  48547. default: true
  48548. },
  48549. {
  48550. name: "Huge",
  48551. height: math.unit(850, "feet")
  48552. },
  48553. {
  48554. name: "Mega",
  48555. height: math.unit(8000, "feet")
  48556. },
  48557. {
  48558. name: "Giga",
  48559. height: math.unit(300, "miles")
  48560. },
  48561. ]
  48562. ))
  48563. characterMakers.push(() => makeCharacter(
  48564. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48565. {
  48566. bipedal: {
  48567. height: math.unit(7, "feet"),
  48568. name: "Bipedal",
  48569. image: {
  48570. source: "./media/characters/zener/bipedal.svg",
  48571. extra: 874/805,
  48572. bottom: 109/983
  48573. }
  48574. },
  48575. quadrupedal: {
  48576. height: math.unit(4.64, "feet"),
  48577. name: "Quadrupedal",
  48578. image: {
  48579. source: "./media/characters/zener/quadrupedal.svg",
  48580. extra: 638/507,
  48581. bottom: 190/828
  48582. }
  48583. },
  48584. cock: {
  48585. height: math.unit(18, "inches"),
  48586. name: "Cock",
  48587. image: {
  48588. source: "./media/characters/zener/cock.svg"
  48589. }
  48590. },
  48591. },
  48592. [
  48593. {
  48594. name: "Normal",
  48595. height: math.unit(7, "feet"),
  48596. default: true
  48597. },
  48598. ]
  48599. ))
  48600. characterMakers.push(() => makeCharacter(
  48601. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48602. {
  48603. nude: {
  48604. height: math.unit(5 + 6/12, "feet"),
  48605. name: "Nude",
  48606. image: {
  48607. source: "./media/characters/charlie-dog/nude.svg",
  48608. extra: 768/734,
  48609. bottom: 26/794
  48610. }
  48611. },
  48612. dressed: {
  48613. height: math.unit(5 + 6/12, "feet"),
  48614. name: "Dressed",
  48615. image: {
  48616. source: "./media/characters/charlie-dog/dressed.svg",
  48617. extra: 768/734,
  48618. bottom: 26/794
  48619. }
  48620. },
  48621. },
  48622. [
  48623. {
  48624. name: "Normal",
  48625. height: math.unit(5 + 6/12, "feet"),
  48626. default: true
  48627. },
  48628. ]
  48629. ))
  48630. characterMakers.push(() => makeCharacter(
  48631. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48632. {
  48633. front: {
  48634. height: math.unit(6 + 4/12, "feet"),
  48635. name: "Front",
  48636. image: {
  48637. source: "./media/characters/ir'istrasz/front.svg",
  48638. extra: 1014/977,
  48639. bottom: 65/1079
  48640. }
  48641. },
  48642. back: {
  48643. height: math.unit(6 + 4/12, "feet"),
  48644. name: "Back",
  48645. image: {
  48646. source: "./media/characters/ir'istrasz/back.svg",
  48647. extra: 1024/992,
  48648. bottom: 34/1058
  48649. }
  48650. },
  48651. },
  48652. [
  48653. {
  48654. name: "Normal",
  48655. height: math.unit(6 + 4/12, "feet"),
  48656. default: true
  48657. },
  48658. ]
  48659. ))
  48660. characterMakers.push(() => makeCharacter(
  48661. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48662. {
  48663. front: {
  48664. height: math.unit(5 + 8/12, "feet"),
  48665. name: "Front",
  48666. image: {
  48667. source: "./media/characters/dee-ditto/front.svg",
  48668. extra: 1874/1785,
  48669. bottom: 68/1942
  48670. }
  48671. },
  48672. back: {
  48673. height: math.unit(5 + 8/12, "feet"),
  48674. name: "Back",
  48675. image: {
  48676. source: "./media/characters/dee-ditto/back.svg",
  48677. extra: 1870/1783,
  48678. bottom: 77/1947
  48679. }
  48680. },
  48681. },
  48682. [
  48683. {
  48684. name: "Normal",
  48685. height: math.unit(5 + 8/12, "feet"),
  48686. default: true
  48687. },
  48688. ]
  48689. ))
  48690. characterMakers.push(() => makeCharacter(
  48691. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48692. {
  48693. front: {
  48694. height: math.unit(7 + 6/12, "feet"),
  48695. name: "Front",
  48696. image: {
  48697. source: "./media/characters/fey/front.svg",
  48698. extra: 995/979,
  48699. bottom: 30/1025
  48700. }
  48701. },
  48702. back: {
  48703. height: math.unit(7 + 6/12, "feet"),
  48704. name: "Back",
  48705. image: {
  48706. source: "./media/characters/fey/back.svg",
  48707. extra: 1079/1008,
  48708. bottom: 5/1084
  48709. }
  48710. },
  48711. dressed: {
  48712. height: math.unit(7 + 6/12, "feet"),
  48713. name: "Dressed",
  48714. image: {
  48715. source: "./media/characters/fey/dressed.svg",
  48716. extra: 995/979,
  48717. bottom: 30/1025
  48718. }
  48719. },
  48720. },
  48721. [
  48722. {
  48723. name: "Normal",
  48724. height: math.unit(7 + 6/12, "feet"),
  48725. default: true
  48726. },
  48727. ]
  48728. ))
  48729. characterMakers.push(() => makeCharacter(
  48730. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48731. {
  48732. standing: {
  48733. height: math.unit(17, "feet"),
  48734. name: "Standing",
  48735. image: {
  48736. source: "./media/characters/aster/standing.svg",
  48737. extra: 1798/1598,
  48738. bottom: 117/1915
  48739. }
  48740. },
  48741. },
  48742. [
  48743. {
  48744. name: "Normal",
  48745. height: math.unit(17, "feet"),
  48746. default: true
  48747. },
  48748. {
  48749. name: "Homewrecker",
  48750. height: math.unit(95, "feet")
  48751. },
  48752. {
  48753. name: "Planet Devourer",
  48754. height: math.unit(1008000, "miles")
  48755. },
  48756. ]
  48757. ))
  48758. characterMakers.push(() => makeCharacter(
  48759. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48760. {
  48761. front: {
  48762. height: math.unit(6 + 5/12, "feet"),
  48763. weight: math.unit(265, "lb"),
  48764. name: "Front",
  48765. image: {
  48766. source: "./media/characters/devon-childs/front.svg",
  48767. extra: 1795/1721,
  48768. bottom: 41/1836
  48769. }
  48770. },
  48771. side: {
  48772. height: math.unit(6 + 5/12, "feet"),
  48773. weight: math.unit(265, "lb"),
  48774. name: "Side",
  48775. image: {
  48776. source: "./media/characters/devon-childs/side.svg",
  48777. extra: 1812/1738,
  48778. bottom: 30/1842
  48779. }
  48780. },
  48781. back: {
  48782. height: math.unit(6 + 5/12, "feet"),
  48783. weight: math.unit(265, "lb"),
  48784. name: "Back",
  48785. image: {
  48786. source: "./media/characters/devon-childs/back.svg",
  48787. extra: 1808/1735,
  48788. bottom: 23/1831
  48789. }
  48790. },
  48791. hand: {
  48792. height: math.unit(1.464, "feet"),
  48793. name: "Hand",
  48794. image: {
  48795. source: "./media/characters/devon-childs/hand.svg"
  48796. }
  48797. },
  48798. foot: {
  48799. height: math.unit(1.6, "feet"),
  48800. name: "Foot",
  48801. image: {
  48802. source: "./media/characters/devon-childs/foot.svg"
  48803. }
  48804. },
  48805. },
  48806. [
  48807. {
  48808. name: "Micro",
  48809. height: math.unit(7, "cm")
  48810. },
  48811. {
  48812. name: "Normal",
  48813. height: math.unit(6 + 5/12, "feet"),
  48814. default: true
  48815. },
  48816. {
  48817. name: "Macro",
  48818. height: math.unit(154, "feet")
  48819. },
  48820. ]
  48821. ))
  48822. characterMakers.push(() => makeCharacter(
  48823. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48824. {
  48825. front: {
  48826. height: math.unit(6, "feet"),
  48827. weight: math.unit(180, "lb"),
  48828. name: "Front",
  48829. image: {
  48830. source: "./media/characters/lydemox-vir/front.svg",
  48831. extra: 1632/1435,
  48832. bottom: 58/1690
  48833. }
  48834. },
  48835. frontSFW: {
  48836. height: math.unit(6, "feet"),
  48837. weight: math.unit(180, "lb"),
  48838. name: "Front (SFW)",
  48839. image: {
  48840. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48841. extra: 1632/1435,
  48842. bottom: 58/1690
  48843. }
  48844. },
  48845. back: {
  48846. height: math.unit(6, "feet"),
  48847. weight: math.unit(180, "lb"),
  48848. name: "Back",
  48849. image: {
  48850. source: "./media/characters/lydemox-vir/back.svg",
  48851. extra: 1593/1408,
  48852. bottom: 31/1624
  48853. }
  48854. },
  48855. paw: {
  48856. height: math.unit(1.85, "feet"),
  48857. name: "Paw",
  48858. image: {
  48859. source: "./media/characters/lydemox-vir/paw.svg"
  48860. }
  48861. },
  48862. dick: {
  48863. height: math.unit(1.8, "feet"),
  48864. name: "Dick",
  48865. image: {
  48866. source: "./media/characters/lydemox-vir/dick.svg"
  48867. }
  48868. },
  48869. },
  48870. [
  48871. {
  48872. name: "Macro",
  48873. height: math.unit(100, "feet"),
  48874. default: true
  48875. },
  48876. {
  48877. name: "Teramacro",
  48878. height: math.unit(1, "earth")
  48879. },
  48880. {
  48881. name: "Planetary",
  48882. height: math.unit(20, "earths")
  48883. },
  48884. ]
  48885. ))
  48886. characterMakers.push(() => makeCharacter(
  48887. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48888. {
  48889. front: {
  48890. height: math.unit(15 + 8/12, "feet"),
  48891. weight: math.unit(1237, "kg"),
  48892. name: "Front",
  48893. image: {
  48894. source: "./media/characters/mia/front.svg",
  48895. extra: 1573/1446,
  48896. bottom: 58/1631
  48897. }
  48898. },
  48899. },
  48900. [
  48901. {
  48902. name: "Small",
  48903. height: math.unit(9 + 5/12, "feet")
  48904. },
  48905. {
  48906. name: "Normal",
  48907. height: math.unit(15 + 8/12, "feet"),
  48908. default: true
  48909. },
  48910. ]
  48911. ))
  48912. characterMakers.push(() => makeCharacter(
  48913. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48914. {
  48915. front: {
  48916. height: math.unit(10 + 6/12, "feet"),
  48917. weight: math.unit(1.3, "tons"),
  48918. name: "Front",
  48919. image: {
  48920. source: "./media/characters/mr-graves/front.svg",
  48921. extra: 1779/1695,
  48922. bottom: 198/1977
  48923. }
  48924. },
  48925. },
  48926. [
  48927. {
  48928. name: "Normal",
  48929. height: math.unit(10 + 6 /12, "feet"),
  48930. default: true
  48931. },
  48932. ]
  48933. ))
  48934. characterMakers.push(() => makeCharacter(
  48935. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48936. {
  48937. dressedFront: {
  48938. height: math.unit(5 + 8/12, "feet"),
  48939. weight: math.unit(125, "lb"),
  48940. name: "Dressed (Front)",
  48941. image: {
  48942. source: "./media/characters/jess/dressed-front.svg",
  48943. extra: 1176/1152,
  48944. bottom: 42/1218
  48945. }
  48946. },
  48947. dressedSide: {
  48948. height: math.unit(5 + 8/12, "feet"),
  48949. weight: math.unit(125, "lb"),
  48950. name: "Dressed (Side)",
  48951. image: {
  48952. source: "./media/characters/jess/dressed-side.svg",
  48953. extra: 1204/1190,
  48954. bottom: 6/1210
  48955. }
  48956. },
  48957. nudeFront: {
  48958. height: math.unit(5 + 8/12, "feet"),
  48959. weight: math.unit(125, "lb"),
  48960. name: "Nude (Front)",
  48961. image: {
  48962. source: "./media/characters/jess/nude-front.svg",
  48963. extra: 1176/1152,
  48964. bottom: 42/1218
  48965. }
  48966. },
  48967. nudeSide: {
  48968. height: math.unit(5 + 8/12, "feet"),
  48969. weight: math.unit(125, "lb"),
  48970. name: "Nude (Side)",
  48971. image: {
  48972. source: "./media/characters/jess/nude-side.svg",
  48973. extra: 1204/1190,
  48974. bottom: 6/1210
  48975. }
  48976. },
  48977. organsFront: {
  48978. height: math.unit(2.83799342105, "feet"),
  48979. name: "Organs (Front)",
  48980. image: {
  48981. source: "./media/characters/jess/organs-front.svg"
  48982. }
  48983. },
  48984. organsSide: {
  48985. height: math.unit(2.64225290474, "feet"),
  48986. name: "Organs (Side)",
  48987. image: {
  48988. source: "./media/characters/jess/organs-side.svg"
  48989. }
  48990. },
  48991. digestiveTractFront: {
  48992. height: math.unit(2.8106580871, "feet"),
  48993. name: "Digestive Tract (Front)",
  48994. image: {
  48995. source: "./media/characters/jess/digestive-tract-front.svg"
  48996. }
  48997. },
  48998. digestiveTractSide: {
  48999. height: math.unit(2.54365045014, "feet"),
  49000. name: "Digestive Tract (Side)",
  49001. image: {
  49002. source: "./media/characters/jess/digestive-tract-side.svg"
  49003. }
  49004. },
  49005. respiratorySystemFront: {
  49006. height: math.unit(1.11196233456, "feet"),
  49007. name: "Respiratory System (Front)",
  49008. image: {
  49009. source: "./media/characters/jess/respiratory-system-front.svg"
  49010. }
  49011. },
  49012. respiratorySystemSide: {
  49013. height: math.unit(0.89327966297, "feet"),
  49014. name: "Respiratory System (Side)",
  49015. image: {
  49016. source: "./media/characters/jess/respiratory-system-side.svg"
  49017. }
  49018. },
  49019. urinaryTractFront: {
  49020. height: math.unit(1.16126356186, "feet"),
  49021. name: "Urinary Tract (Front)",
  49022. image: {
  49023. source: "./media/characters/jess/urinary-tract-front.svg"
  49024. }
  49025. },
  49026. urinaryTractSide: {
  49027. height: math.unit(1.20910039627, "feet"),
  49028. name: "Urinary Tract (Side)",
  49029. image: {
  49030. source: "./media/characters/jess/urinary-tract-side.svg"
  49031. }
  49032. },
  49033. reproductiveOrgansFront: {
  49034. height: math.unit(0.48422591566, "feet"),
  49035. name: "Reproductive Organs (Front)",
  49036. image: {
  49037. source: "./media/characters/jess/reproductive-organs-front.svg"
  49038. }
  49039. },
  49040. reproductiveOrgansSide: {
  49041. height: math.unit(0.61553314481, "feet"),
  49042. name: "Reproductive Organs (Side)",
  49043. image: {
  49044. source: "./media/characters/jess/reproductive-organs-side.svg"
  49045. }
  49046. },
  49047. breastsFront: {
  49048. height: math.unit(0.47690395121, "feet"),
  49049. name: "Breasts (Front)",
  49050. image: {
  49051. source: "./media/characters/jess/breasts-front.svg"
  49052. }
  49053. },
  49054. breastsSide: {
  49055. height: math.unit(0.30556998307, "feet"),
  49056. name: "Breasts (Side)",
  49057. image: {
  49058. source: "./media/characters/jess/breasts-side.svg"
  49059. }
  49060. },
  49061. heartFront: {
  49062. height: math.unit(0.53011022622, "feet"),
  49063. name: "Heart (Front)",
  49064. image: {
  49065. source: "./media/characters/jess/heart-front.svg"
  49066. }
  49067. },
  49068. heartSide: {
  49069. height: math.unit(0.51790695213, "feet"),
  49070. name: "Heart (Side)",
  49071. image: {
  49072. source: "./media/characters/jess/heart-side.svg"
  49073. }
  49074. },
  49075. earsAndNoseFront: {
  49076. height: math.unit(0.29385483995, "feet"),
  49077. name: "Ears and Nose (Front)",
  49078. image: {
  49079. source: "./media/characters/jess/ears-and-nose-front.svg"
  49080. }
  49081. },
  49082. earsAndNoseSide: {
  49083. height: math.unit(0.18109658741, "feet"),
  49084. name: "Ears and Nose (Side)",
  49085. image: {
  49086. source: "./media/characters/jess/ears-and-nose-side.svg"
  49087. }
  49088. },
  49089. },
  49090. [
  49091. {
  49092. name: "Normal",
  49093. height: math.unit(5 + 8/12, "feet"),
  49094. default: true
  49095. },
  49096. ]
  49097. ))
  49098. characterMakers.push(() => makeCharacter(
  49099. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49100. {
  49101. front: {
  49102. height: math.unit(6, "feet"),
  49103. weight: math.unit(6.64467e-7, "grams"),
  49104. name: "Front",
  49105. image: {
  49106. source: "./media/characters/wimpering/front.svg",
  49107. extra: 597/587,
  49108. bottom: 34/631
  49109. }
  49110. },
  49111. },
  49112. [
  49113. {
  49114. name: "Micro",
  49115. height: math.unit(0.4, "mm"),
  49116. default: true
  49117. },
  49118. ]
  49119. ))
  49120. characterMakers.push(() => makeCharacter(
  49121. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49122. {
  49123. front: {
  49124. height: math.unit(5 + 2/12, "feet"),
  49125. weight: math.unit(110, "lb"),
  49126. name: "Front",
  49127. image: {
  49128. source: "./media/characters/keltre/front.svg",
  49129. extra: 1099/1057,
  49130. bottom: 22/1121
  49131. }
  49132. },
  49133. back: {
  49134. height: math.unit(5 + 2/12, "feet"),
  49135. weight: math.unit(110, "lb"),
  49136. name: "Back",
  49137. image: {
  49138. source: "./media/characters/keltre/back.svg",
  49139. extra: 1095/1053,
  49140. bottom: 17/1112
  49141. }
  49142. },
  49143. dressed: {
  49144. height: math.unit(5 + 2/12, "feet"),
  49145. weight: math.unit(110, "lb"),
  49146. name: "Dressed",
  49147. image: {
  49148. source: "./media/characters/keltre/dressed.svg",
  49149. extra: 1099/1057,
  49150. bottom: 22/1121
  49151. }
  49152. },
  49153. winter: {
  49154. height: math.unit(5 + 2/12, "feet"),
  49155. weight: math.unit(110, "lb"),
  49156. name: "Winter",
  49157. image: {
  49158. source: "./media/characters/keltre/winter.svg",
  49159. extra: 1099/1057,
  49160. bottom: 22/1121
  49161. }
  49162. },
  49163. head: {
  49164. height: math.unit(1.61 * 0.86, "feet"),
  49165. name: "Head",
  49166. image: {
  49167. source: "./media/characters/keltre/head.svg",
  49168. extra: 534/421,
  49169. bottom: 0/534
  49170. }
  49171. },
  49172. hand: {
  49173. height: math.unit(1.3 * 0.86, "feet"),
  49174. name: "Hand",
  49175. image: {
  49176. source: "./media/characters/keltre/hand.svg"
  49177. }
  49178. },
  49179. foot: {
  49180. height: math.unit(1.8 * 0.86, "feet"),
  49181. name: "Foot",
  49182. image: {
  49183. source: "./media/characters/keltre/foot.svg"
  49184. }
  49185. },
  49186. },
  49187. [
  49188. {
  49189. name: "Fine",
  49190. height: math.unit(1, "inch")
  49191. },
  49192. {
  49193. name: "Dimnutive",
  49194. height: math.unit(4, "inches")
  49195. },
  49196. {
  49197. name: "Tiny",
  49198. height: math.unit(1, "foot")
  49199. },
  49200. {
  49201. name: "Small",
  49202. height: math.unit(3, "feet")
  49203. },
  49204. {
  49205. name: "Normal",
  49206. height: math.unit(5 + 2/12, "feet"),
  49207. default: true
  49208. },
  49209. ]
  49210. ))
  49211. characterMakers.push(() => makeCharacter(
  49212. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49213. {
  49214. front: {
  49215. height: math.unit(6 + 2/12, "feet"),
  49216. name: "Front",
  49217. image: {
  49218. source: "./media/characters/nox/front.svg",
  49219. extra: 1917/1830,
  49220. bottom: 74/1991
  49221. }
  49222. },
  49223. back: {
  49224. height: math.unit(6 + 2/12, "feet"),
  49225. name: "Back",
  49226. image: {
  49227. source: "./media/characters/nox/back.svg",
  49228. extra: 1896/1815,
  49229. bottom: 21/1917
  49230. }
  49231. },
  49232. head: {
  49233. height: math.unit(1.1, "feet"),
  49234. name: "Head",
  49235. image: {
  49236. source: "./media/characters/nox/head.svg",
  49237. extra: 874/704,
  49238. bottom: 0/874
  49239. }
  49240. },
  49241. tattoo: {
  49242. height: math.unit(0.729, "feet"),
  49243. name: "Tattoo",
  49244. image: {
  49245. source: "./media/characters/nox/tattoo.svg"
  49246. }
  49247. },
  49248. },
  49249. [
  49250. {
  49251. name: "Normal",
  49252. height: math.unit(6 + 2/12, "feet")
  49253. },
  49254. {
  49255. name: "Gigamacro",
  49256. height: math.unit(2, "earths"),
  49257. default: true
  49258. },
  49259. {
  49260. name: "Cosmic",
  49261. height: math.unit(867, "yottameters")
  49262. },
  49263. ]
  49264. ))
  49265. characterMakers.push(() => makeCharacter(
  49266. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49267. {
  49268. front: {
  49269. height: math.unit(6, "feet"),
  49270. weight: math.unit(150, "lb"),
  49271. name: "Front",
  49272. image: {
  49273. source: "./media/characters/caspian/front.svg",
  49274. extra: 1443/1359,
  49275. bottom: 0/1443
  49276. }
  49277. },
  49278. back: {
  49279. height: math.unit(6, "feet"),
  49280. weight: math.unit(150, "lb"),
  49281. name: "Back",
  49282. image: {
  49283. source: "./media/characters/caspian/back.svg",
  49284. extra: 1379/1309,
  49285. bottom: 0/1379
  49286. }
  49287. },
  49288. head: {
  49289. height: math.unit(0.9, "feet"),
  49290. name: "Head",
  49291. image: {
  49292. source: "./media/characters/caspian/head.svg",
  49293. extra: 692/492,
  49294. bottom: 0/692
  49295. }
  49296. },
  49297. headAlt: {
  49298. height: math.unit(0.95, "feet"),
  49299. name: "Head (Alt)",
  49300. image: {
  49301. source: "./media/characters/caspian/head-alt.svg",
  49302. extra: 668/508,
  49303. bottom: 0/668
  49304. }
  49305. },
  49306. hand: {
  49307. height: math.unit(0.8, "feet"),
  49308. name: "Hand",
  49309. image: {
  49310. source: "./media/characters/caspian/hand.svg"
  49311. }
  49312. },
  49313. paw: {
  49314. height: math.unit(0.95, "feet"),
  49315. name: "Paw",
  49316. image: {
  49317. source: "./media/characters/caspian/paw.svg"
  49318. }
  49319. },
  49320. },
  49321. [
  49322. {
  49323. name: "Normal",
  49324. height: math.unit(162, "feet"),
  49325. default: true
  49326. },
  49327. ]
  49328. ))
  49329. characterMakers.push(() => makeCharacter(
  49330. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49331. {
  49332. front: {
  49333. height: math.unit(6, "feet"),
  49334. name: "Front",
  49335. image: {
  49336. source: "./media/characters/myra-aisling/front.svg",
  49337. extra: 1268/1166,
  49338. bottom: 73/1341
  49339. }
  49340. },
  49341. back: {
  49342. height: math.unit(6, "feet"),
  49343. name: "Back",
  49344. image: {
  49345. source: "./media/characters/myra-aisling/back.svg",
  49346. extra: 1249/1149,
  49347. bottom: 79/1328
  49348. }
  49349. },
  49350. dressed: {
  49351. height: math.unit(6, "feet"),
  49352. name: "Dressed",
  49353. image: {
  49354. source: "./media/characters/myra-aisling/dressed.svg",
  49355. extra: 1290/1189,
  49356. bottom: 47/1337
  49357. }
  49358. },
  49359. hand: {
  49360. height: math.unit(1.1, "feet"),
  49361. name: "Hand",
  49362. image: {
  49363. source: "./media/characters/myra-aisling/hand.svg"
  49364. }
  49365. },
  49366. paw: {
  49367. height: math.unit(1.23, "feet"),
  49368. name: "Paw",
  49369. image: {
  49370. source: "./media/characters/myra-aisling/paw.svg"
  49371. }
  49372. },
  49373. },
  49374. [
  49375. {
  49376. name: "Normal",
  49377. height: math.unit(160, "feet"),
  49378. default: true
  49379. },
  49380. ]
  49381. ))
  49382. characterMakers.push(() => makeCharacter(
  49383. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49384. {
  49385. front: {
  49386. height: math.unit(6, "feet"),
  49387. name: "Front",
  49388. image: {
  49389. source: "./media/characters/tenley-sidero/front.svg",
  49390. extra: 1365/1276,
  49391. bottom: 47/1412
  49392. }
  49393. },
  49394. back: {
  49395. height: math.unit(6, "feet"),
  49396. name: "Back",
  49397. image: {
  49398. source: "./media/characters/tenley-sidero/back.svg",
  49399. extra: 1383/1283,
  49400. bottom: 35/1418
  49401. }
  49402. },
  49403. dressed: {
  49404. height: math.unit(6, "feet"),
  49405. name: "Dressed",
  49406. image: {
  49407. source: "./media/characters/tenley-sidero/dressed.svg",
  49408. extra: 1364/1275,
  49409. bottom: 42/1406
  49410. }
  49411. },
  49412. head: {
  49413. height: math.unit(1.47, "feet"),
  49414. name: "Head",
  49415. image: {
  49416. source: "./media/characters/tenley-sidero/head.svg",
  49417. extra: 610/490,
  49418. bottom: 0/610
  49419. }
  49420. },
  49421. },
  49422. [
  49423. {
  49424. name: "Normal",
  49425. height: math.unit(154, "feet"),
  49426. default: true
  49427. },
  49428. ]
  49429. ))
  49430. characterMakers.push(() => makeCharacter(
  49431. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49432. {
  49433. front: {
  49434. height: math.unit(5, "inches"),
  49435. name: "Front",
  49436. image: {
  49437. source: "./media/characters/mallory/front.svg",
  49438. extra: 1919/1678,
  49439. bottom: 29/1948
  49440. }
  49441. },
  49442. hand: {
  49443. height: math.unit(0.73, "inches"),
  49444. name: "Hand",
  49445. image: {
  49446. source: "./media/characters/mallory/hand.svg"
  49447. }
  49448. },
  49449. paw: {
  49450. height: math.unit(0.68, "inches"),
  49451. name: "Paw",
  49452. image: {
  49453. source: "./media/characters/mallory/paw.svg"
  49454. }
  49455. },
  49456. },
  49457. [
  49458. {
  49459. name: "Small",
  49460. height: math.unit(5, "inches"),
  49461. default: true
  49462. },
  49463. ]
  49464. ))
  49465. characterMakers.push(() => makeCharacter(
  49466. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49467. {
  49468. naked: {
  49469. height: math.unit(6, "feet"),
  49470. name: "Naked",
  49471. image: {
  49472. source: "./media/characters/mab/naked.svg",
  49473. extra: 1855/1757,
  49474. bottom: 208/2063
  49475. }
  49476. },
  49477. outside: {
  49478. height: math.unit(6, "feet"),
  49479. name: "Outside",
  49480. image: {
  49481. source: "./media/characters/mab/outside.svg",
  49482. extra: 1855/1757,
  49483. bottom: 208/2063
  49484. }
  49485. },
  49486. party: {
  49487. height: math.unit(6, "feet"),
  49488. name: "Party",
  49489. image: {
  49490. source: "./media/characters/mab/party.svg",
  49491. extra: 1855/1757,
  49492. bottom: 208/2063
  49493. }
  49494. },
  49495. },
  49496. [
  49497. {
  49498. name: "Normal",
  49499. height: math.unit(165, "feet"),
  49500. default: true
  49501. },
  49502. ]
  49503. ))
  49504. characterMakers.push(() => makeCharacter(
  49505. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49506. {
  49507. front: {
  49508. height: math.unit(12, "feet"),
  49509. weight: math.unit(20000, "lb"),
  49510. name: "Front",
  49511. image: {
  49512. source: "./media/characters/winter/front.svg",
  49513. extra: 1286/943,
  49514. bottom: 112/1398
  49515. }
  49516. },
  49517. frontNsfw: {
  49518. height: math.unit(12, "feet"),
  49519. weight: math.unit(20000, "lb"),
  49520. name: "Front (NSFW)",
  49521. image: {
  49522. source: "./media/characters/winter/front-nsfw.svg",
  49523. extra: 1286/943,
  49524. bottom: 112/1398
  49525. }
  49526. },
  49527. dick: {
  49528. height: math.unit(3.79, "feet"),
  49529. name: "Dick",
  49530. image: {
  49531. source: "./media/characters/winter/dick.svg"
  49532. }
  49533. },
  49534. },
  49535. [
  49536. {
  49537. name: "Big",
  49538. height: math.unit(12, "feet"),
  49539. default: true
  49540. },
  49541. ]
  49542. ))
  49543. characterMakers.push(() => makeCharacter(
  49544. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49545. {
  49546. front: {
  49547. height: math.unit(4.1, "inches"),
  49548. name: "Front",
  49549. image: {
  49550. source: "./media/characters/alto/front.svg",
  49551. extra: 736/627,
  49552. bottom: 90/826
  49553. }
  49554. },
  49555. },
  49556. [
  49557. {
  49558. name: "Normal",
  49559. height: math.unit(4.1, "inches"),
  49560. default: true
  49561. },
  49562. ]
  49563. ))
  49564. characterMakers.push(() => makeCharacter(
  49565. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49566. {
  49567. sitting: {
  49568. height: math.unit(3, "feet"),
  49569. name: "Sitting",
  49570. image: {
  49571. source: "./media/characters/ratstrid-v/sitting.svg",
  49572. extra: 355/310,
  49573. bottom: 136/491
  49574. }
  49575. },
  49576. },
  49577. [
  49578. {
  49579. name: "Normal",
  49580. height: math.unit(3, "feet"),
  49581. default: true
  49582. },
  49583. ]
  49584. ))
  49585. characterMakers.push(() => makeCharacter(
  49586. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49587. {
  49588. back: {
  49589. height: math.unit(6, "feet"),
  49590. weight: math.unit(350, "lb"),
  49591. name: "Back",
  49592. image: {
  49593. source: "./media/characters/siz/back.svg",
  49594. extra: 1449/1274,
  49595. bottom: 13/1462
  49596. }
  49597. },
  49598. },
  49599. [
  49600. {
  49601. name: "Over-Overcompressed",
  49602. height: math.unit(8, "feet")
  49603. },
  49604. {
  49605. name: "Overcompressed",
  49606. height: math.unit(32, "feet")
  49607. },
  49608. {
  49609. name: "Compressed",
  49610. height: math.unit(128, "feet"),
  49611. default: true
  49612. },
  49613. {
  49614. name: "Half-Compressed",
  49615. height: math.unit(512, "feet")
  49616. },
  49617. {
  49618. name: "Quarter-Compressed",
  49619. height: math.unit(2048, "feet")
  49620. },
  49621. {
  49622. name: "Uncompressed?",
  49623. height: math.unit(8192, "feet")
  49624. },
  49625. ]
  49626. ))
  49627. characterMakers.push(() => makeCharacter(
  49628. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49629. {
  49630. front: {
  49631. height: math.unit(5 + 9/12, "feet"),
  49632. weight: math.unit(150, "lb"),
  49633. name: "Front",
  49634. image: {
  49635. source: "./media/characters/ven/front.svg",
  49636. extra: 1372/1320,
  49637. bottom: 73/1445
  49638. }
  49639. },
  49640. side: {
  49641. height: math.unit(5 + 9/12, "feet"),
  49642. weight: math.unit(1150, "lb"),
  49643. name: "Side",
  49644. image: {
  49645. source: "./media/characters/ven/side.svg",
  49646. extra: 1119/1070,
  49647. bottom: 42/1161
  49648. },
  49649. default: true
  49650. },
  49651. },
  49652. [
  49653. {
  49654. name: "Normal",
  49655. height: math.unit(5 + 9/12, "feet"),
  49656. default: true
  49657. },
  49658. ]
  49659. ))
  49660. characterMakers.push(() => makeCharacter(
  49661. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49662. {
  49663. front: {
  49664. height: math.unit(12, "feet"),
  49665. weight: math.unit(1000, "kg"),
  49666. name: "Front",
  49667. image: {
  49668. source: "./media/characters/maple/front.svg",
  49669. extra: 1193/1081,
  49670. bottom: 22/1215
  49671. }
  49672. },
  49673. },
  49674. [
  49675. {
  49676. name: "Compressed",
  49677. height: math.unit(7, "feet")
  49678. },
  49679. {
  49680. name: "Normal",
  49681. height: math.unit(12, "feet"),
  49682. default: true
  49683. },
  49684. ]
  49685. ))
  49686. characterMakers.push(() => makeCharacter(
  49687. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49688. {
  49689. front: {
  49690. height: math.unit(9, "feet"),
  49691. weight: math.unit(1500, "lb"),
  49692. name: "Front",
  49693. image: {
  49694. source: "./media/characters/nora/front.svg",
  49695. extra: 1348/1286,
  49696. bottom: 218/1566
  49697. }
  49698. },
  49699. erect: {
  49700. height: math.unit(9, "feet"),
  49701. weight: math.unit(11500, "lb"),
  49702. name: "Erect",
  49703. image: {
  49704. source: "./media/characters/nora/erect.svg",
  49705. extra: 1488/1433,
  49706. bottom: 133/1621
  49707. }
  49708. },
  49709. },
  49710. [
  49711. {
  49712. name: "Normal",
  49713. height: math.unit(9, "feet"),
  49714. default: true
  49715. },
  49716. ]
  49717. ))
  49718. characterMakers.push(() => makeCharacter(
  49719. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49720. {
  49721. front: {
  49722. height: math.unit(25, "feet"),
  49723. weight: math.unit(27500, "lb"),
  49724. name: "Front",
  49725. image: {
  49726. source: "./media/characters/north-caudin/front.svg",
  49727. extra: 1184/1082,
  49728. bottom: 23/1207
  49729. }
  49730. },
  49731. },
  49732. [
  49733. {
  49734. name: "Compressed",
  49735. height: math.unit(10, "feet")
  49736. },
  49737. {
  49738. name: "Normal",
  49739. height: math.unit(25, "feet"),
  49740. default: true
  49741. },
  49742. ]
  49743. ))
  49744. characterMakers.push(() => makeCharacter(
  49745. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49746. {
  49747. front: {
  49748. height: math.unit(9, "feet"),
  49749. weight: math.unit(1250, "lb"),
  49750. name: "Front",
  49751. image: {
  49752. source: "./media/characters/merrian/front.svg",
  49753. extra: 2393/2304,
  49754. bottom: 40/2433
  49755. }
  49756. },
  49757. },
  49758. [
  49759. {
  49760. name: "Normal",
  49761. height: math.unit(9, "feet"),
  49762. default: true
  49763. },
  49764. ]
  49765. ))
  49766. characterMakers.push(() => makeCharacter(
  49767. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49768. {
  49769. front: {
  49770. height: math.unit(9, "feet"),
  49771. weight: math.unit(1000, "lb"),
  49772. name: "Front",
  49773. image: {
  49774. source: "./media/characters/hazel/front.svg",
  49775. extra: 2351/2298,
  49776. bottom: 38/2389
  49777. }
  49778. },
  49779. },
  49780. [
  49781. {
  49782. name: "Normal",
  49783. height: math.unit(9, "feet"),
  49784. default: true
  49785. },
  49786. ]
  49787. ))
  49788. characterMakers.push(() => makeCharacter(
  49789. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49790. {
  49791. front: {
  49792. height: math.unit(13, "feet"),
  49793. weight: math.unit(3200, "lb"),
  49794. name: "Front",
  49795. image: {
  49796. source: "./media/characters/emma/front.svg",
  49797. extra: 2263/2029,
  49798. bottom: 68/2331
  49799. }
  49800. },
  49801. },
  49802. [
  49803. {
  49804. name: "Normal",
  49805. height: math.unit(13, "feet"),
  49806. default: true
  49807. },
  49808. ]
  49809. ))
  49810. characterMakers.push(() => makeCharacter(
  49811. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49812. {
  49813. front: {
  49814. height: math.unit(11 + 9/12, "feet"),
  49815. weight: math.unit(2500, "lb"),
  49816. name: "Front",
  49817. image: {
  49818. source: "./media/characters/ilumina/front.svg",
  49819. extra: 2248/2209,
  49820. bottom: 164/2412
  49821. }
  49822. },
  49823. },
  49824. [
  49825. {
  49826. name: "Normal",
  49827. height: math.unit(11 + 9/12, "feet"),
  49828. default: true
  49829. },
  49830. ]
  49831. ))
  49832. characterMakers.push(() => makeCharacter(
  49833. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49834. {
  49835. front: {
  49836. height: math.unit(8 + 10/12, "feet"),
  49837. weight: math.unit(1350, "lb"),
  49838. name: "Front",
  49839. image: {
  49840. source: "./media/characters/moonshine/front.svg",
  49841. extra: 2395/2288,
  49842. bottom: 40/2435
  49843. }
  49844. },
  49845. },
  49846. [
  49847. {
  49848. name: "Normal",
  49849. height: math.unit(8 + 10/12, "feet"),
  49850. default: true
  49851. },
  49852. ]
  49853. ))
  49854. characterMakers.push(() => makeCharacter(
  49855. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49856. {
  49857. front: {
  49858. height: math.unit(14, "feet"),
  49859. weight: math.unit(3400, "lb"),
  49860. name: "Front",
  49861. image: {
  49862. source: "./media/characters/aletia/front.svg",
  49863. extra: 1185/1052,
  49864. bottom: 21/1206
  49865. }
  49866. },
  49867. },
  49868. [
  49869. {
  49870. name: "Compressed",
  49871. height: math.unit(8, "feet")
  49872. },
  49873. {
  49874. name: "Normal",
  49875. height: math.unit(14, "feet"),
  49876. default: true
  49877. },
  49878. ]
  49879. ))
  49880. characterMakers.push(() => makeCharacter(
  49881. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49882. {
  49883. front: {
  49884. height: math.unit(17, "feet"),
  49885. weight: math.unit(6500, "lb"),
  49886. name: "Front",
  49887. image: {
  49888. source: "./media/characters/deidra/front.svg",
  49889. extra: 1201/1081,
  49890. bottom: 16/1217
  49891. }
  49892. },
  49893. },
  49894. [
  49895. {
  49896. name: "Compressed",
  49897. height: math.unit(9 + 6/12, "feet")
  49898. },
  49899. {
  49900. name: "Normal",
  49901. height: math.unit(17, "feet"),
  49902. default: true
  49903. },
  49904. ]
  49905. ))
  49906. characterMakers.push(() => makeCharacter(
  49907. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49908. {
  49909. front: {
  49910. height: math.unit(7 + 4/12, "feet"),
  49911. weight: math.unit(280, "lb"),
  49912. name: "Front",
  49913. image: {
  49914. source: "./media/characters/freki-yrmori/front.svg",
  49915. extra: 1286/1182,
  49916. bottom: 29/1315
  49917. }
  49918. },
  49919. maw: {
  49920. height: math.unit(0.9, "feet"),
  49921. name: "Maw",
  49922. image: {
  49923. source: "./media/characters/freki-yrmori/maw.svg"
  49924. }
  49925. },
  49926. },
  49927. [
  49928. {
  49929. name: "Normal",
  49930. height: math.unit(7 + 4/12, "feet"),
  49931. default: true
  49932. },
  49933. {
  49934. name: "Macro",
  49935. height: math.unit(38.5, "meters")
  49936. },
  49937. ]
  49938. ))
  49939. characterMakers.push(() => makeCharacter(
  49940. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49941. {
  49942. side: {
  49943. height: math.unit(47.2, "meters"),
  49944. weight: math.unit(10000, "tons"),
  49945. name: "Side",
  49946. image: {
  49947. source: "./media/characters/aetherios/side.svg",
  49948. extra: 2363/642,
  49949. bottom: 221/2584
  49950. }
  49951. },
  49952. top: {
  49953. height: math.unit(240, "meters"),
  49954. weight: math.unit(10000, "tons"),
  49955. name: "Top",
  49956. image: {
  49957. source: "./media/characters/aetherios/top.svg"
  49958. }
  49959. },
  49960. bottom: {
  49961. height: math.unit(240, "meters"),
  49962. weight: math.unit(10000, "tons"),
  49963. name: "Bottom",
  49964. image: {
  49965. source: "./media/characters/aetherios/bottom.svg"
  49966. }
  49967. },
  49968. head: {
  49969. height: math.unit(38.6, "meters"),
  49970. name: "Head",
  49971. image: {
  49972. source: "./media/characters/aetherios/head.svg",
  49973. extra: 1335/1112,
  49974. bottom: 0/1335
  49975. }
  49976. },
  49977. front: {
  49978. height: math.unit(29, "meters"),
  49979. name: "Front",
  49980. image: {
  49981. source: "./media/characters/aetherios/front.svg",
  49982. extra: 1266/953,
  49983. bottom: 158/1424
  49984. }
  49985. },
  49986. maw: {
  49987. height: math.unit(16.37, "meters"),
  49988. name: "Maw",
  49989. image: {
  49990. source: "./media/characters/aetherios/maw.svg",
  49991. extra: 748/637,
  49992. bottom: 0/748
  49993. },
  49994. extraAttributes: {
  49995. preyCapacity: {
  49996. name: "Capacity",
  49997. power: 3,
  49998. type: "volume",
  49999. base: math.unit(1000, "people")
  50000. },
  50001. tongueSize: {
  50002. name: "Tongue Size",
  50003. power: 2,
  50004. type: "area",
  50005. base: math.unit(21, "m^2")
  50006. }
  50007. }
  50008. },
  50009. forepaw: {
  50010. height: math.unit(18, "meters"),
  50011. name: "Forepaw",
  50012. image: {
  50013. source: "./media/characters/aetherios/forepaw.svg"
  50014. }
  50015. },
  50016. hindpaw: {
  50017. height: math.unit(23, "meters"),
  50018. name: "Hindpaw",
  50019. image: {
  50020. source: "./media/characters/aetherios/hindpaw.svg"
  50021. }
  50022. },
  50023. genitals: {
  50024. height: math.unit(42, "meters"),
  50025. name: "Genitals",
  50026. image: {
  50027. source: "./media/characters/aetherios/genitals.svg"
  50028. }
  50029. },
  50030. },
  50031. [
  50032. {
  50033. name: "Normal",
  50034. height: math.unit(47.2, "meters"),
  50035. default: true
  50036. },
  50037. {
  50038. name: "Macro",
  50039. height: math.unit(160, "meters")
  50040. },
  50041. {
  50042. name: "Mega",
  50043. height: math.unit(1.87, "km")
  50044. },
  50045. {
  50046. name: "Giga",
  50047. height: math.unit(40000, "km")
  50048. },
  50049. {
  50050. name: "Stellar",
  50051. height: math.unit(158000000, "km")
  50052. },
  50053. {
  50054. name: "Cosmic",
  50055. height: math.unit(9.46e12, "km")
  50056. },
  50057. ]
  50058. ))
  50059. characterMakers.push(() => makeCharacter(
  50060. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50061. {
  50062. front: {
  50063. height: math.unit(5 + 4/12, "feet"),
  50064. weight: math.unit(80, "lb"),
  50065. name: "Front",
  50066. image: {
  50067. source: "./media/characters/mizu-gieeg/front.svg",
  50068. extra: 850/709,
  50069. bottom: 52/902
  50070. }
  50071. },
  50072. back: {
  50073. height: math.unit(5 + 4/12, "feet"),
  50074. weight: math.unit(80, "lb"),
  50075. name: "Back",
  50076. image: {
  50077. source: "./media/characters/mizu-gieeg/back.svg",
  50078. extra: 882/745,
  50079. bottom: 25/907
  50080. }
  50081. },
  50082. },
  50083. [
  50084. {
  50085. name: "Normal",
  50086. height: math.unit(5 + 4/12, "feet"),
  50087. default: true
  50088. },
  50089. ]
  50090. ))
  50091. characterMakers.push(() => makeCharacter(
  50092. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50093. {
  50094. front: {
  50095. height: math.unit(6, "feet"),
  50096. name: "Front",
  50097. image: {
  50098. source: "./media/characters/roselle-st-papier/front.svg",
  50099. extra: 1430/1280,
  50100. bottom: 37/1467
  50101. }
  50102. },
  50103. back: {
  50104. height: math.unit(6, "feet"),
  50105. name: "Back",
  50106. image: {
  50107. source: "./media/characters/roselle-st-papier/back.svg",
  50108. extra: 1491/1296,
  50109. bottom: 23/1514
  50110. }
  50111. },
  50112. ear: {
  50113. height: math.unit(1.26, "feet"),
  50114. name: "Ear",
  50115. image: {
  50116. source: "./media/characters/roselle-st-papier/ear.svg"
  50117. }
  50118. },
  50119. },
  50120. [
  50121. {
  50122. name: "Normal",
  50123. height: math.unit(150, "feet"),
  50124. default: true
  50125. },
  50126. ]
  50127. ))
  50128. characterMakers.push(() => makeCharacter(
  50129. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50130. {
  50131. front: {
  50132. height: math.unit(1, "inches"),
  50133. name: "Front",
  50134. image: {
  50135. source: "./media/characters/valargent/front.svg",
  50136. extra: 1825/1694,
  50137. bottom: 62/1887
  50138. }
  50139. },
  50140. back: {
  50141. height: math.unit(1, "inches"),
  50142. name: "Back",
  50143. image: {
  50144. source: "./media/characters/valargent/back.svg",
  50145. extra: 1775/1682,
  50146. bottom: 88/1863
  50147. }
  50148. },
  50149. },
  50150. [
  50151. {
  50152. name: "Micro",
  50153. height: math.unit(1, "inch"),
  50154. default: true
  50155. },
  50156. ]
  50157. ))
  50158. characterMakers.push(() => makeCharacter(
  50159. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50160. {
  50161. front: {
  50162. height: math.unit(3.4, "meters"),
  50163. name: "Front",
  50164. image: {
  50165. source: "./media/characters/zarina/front.svg",
  50166. extra: 1733/1425,
  50167. bottom: 93/1826
  50168. }
  50169. },
  50170. squatting: {
  50171. height: math.unit(2.14, "meters"),
  50172. name: "Squatting",
  50173. image: {
  50174. source: "./media/characters/zarina/squatting.svg",
  50175. extra: 1073/788,
  50176. bottom: 63/1136
  50177. }
  50178. },
  50179. back: {
  50180. height: math.unit(2.14, "meters"),
  50181. name: "Back",
  50182. image: {
  50183. source: "./media/characters/zarina/back.svg",
  50184. extra: 1128/885,
  50185. bottom: 0/1128
  50186. }
  50187. },
  50188. },
  50189. [
  50190. {
  50191. name: "Normal",
  50192. height: math.unit(3.4, "meters"),
  50193. default: true
  50194. },
  50195. {
  50196. name: "Big",
  50197. height: math.unit(5, "meters")
  50198. },
  50199. {
  50200. name: "Macro",
  50201. height: math.unit(110, "meters")
  50202. },
  50203. ]
  50204. ))
  50205. characterMakers.push(() => makeCharacter(
  50206. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50207. {
  50208. front: {
  50209. height: math.unit(7, "feet"),
  50210. name: "Front",
  50211. image: {
  50212. source: "./media/characters/ventus-astro-fox/front.svg",
  50213. extra: 1792/1623,
  50214. bottom: 28/1820
  50215. }
  50216. },
  50217. back: {
  50218. height: math.unit(7, "feet"),
  50219. name: "Back",
  50220. image: {
  50221. source: "./media/characters/ventus-astro-fox/back.svg",
  50222. extra: 1789/1620,
  50223. bottom: 31/1820
  50224. }
  50225. },
  50226. outfit: {
  50227. height: math.unit(7, "feet"),
  50228. name: "Outfit",
  50229. image: {
  50230. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50231. extra: 1054/925,
  50232. bottom: 15/1069
  50233. }
  50234. },
  50235. head: {
  50236. height: math.unit(1.12, "feet"),
  50237. name: "Head",
  50238. image: {
  50239. source: "./media/characters/ventus-astro-fox/head.svg",
  50240. extra: 866/504,
  50241. bottom: 0/866
  50242. }
  50243. },
  50244. hand: {
  50245. height: math.unit(1, "feet"),
  50246. name: "Hand",
  50247. image: {
  50248. source: "./media/characters/ventus-astro-fox/hand.svg"
  50249. }
  50250. },
  50251. paw: {
  50252. height: math.unit(1.5, "feet"),
  50253. name: "Paw",
  50254. image: {
  50255. source: "./media/characters/ventus-astro-fox/paw.svg"
  50256. }
  50257. },
  50258. },
  50259. [
  50260. {
  50261. name: "Normal",
  50262. height: math.unit(7, "feet"),
  50263. default: true
  50264. },
  50265. {
  50266. name: "Macro",
  50267. height: math.unit(200, "feet")
  50268. },
  50269. {
  50270. name: "Cosmic",
  50271. height: math.unit(3, "universes")
  50272. },
  50273. ]
  50274. ))
  50275. characterMakers.push(() => makeCharacter(
  50276. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50277. {
  50278. front: {
  50279. height: math.unit(3, "meters"),
  50280. weight: math.unit(7000, "lb"),
  50281. name: "Front",
  50282. image: {
  50283. source: "./media/characters/core-t/front.svg",
  50284. extra: 5729/4941,
  50285. bottom: 1129/6858
  50286. }
  50287. },
  50288. },
  50289. [
  50290. {
  50291. name: "Big",
  50292. height: math.unit(3, "meters"),
  50293. default: true
  50294. },
  50295. ]
  50296. ))
  50297. characterMakers.push(() => makeCharacter(
  50298. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50299. {
  50300. normal: {
  50301. height: math.unit(6 + 6/12, "feet"),
  50302. weight: math.unit(275, "lb"),
  50303. name: "Front",
  50304. image: {
  50305. source: "./media/characters/cadbunny/normal.svg",
  50306. extra: 1129/947,
  50307. bottom: 93/1222
  50308. },
  50309. default: true,
  50310. form: "normal"
  50311. },
  50312. gigantamax: {
  50313. height: math.unit(26, "feet"),
  50314. weight: math.unit(16000, "lb"),
  50315. name: "Front",
  50316. image: {
  50317. source: "./media/characters/cadbunny/gigantamax.svg",
  50318. extra: 1133/944,
  50319. bottom: 90/1223
  50320. },
  50321. default: true,
  50322. form: "gigantamax"
  50323. },
  50324. },
  50325. [
  50326. {
  50327. name: "Normal",
  50328. height: math.unit(6 + 6/12, "feet"),
  50329. default: true,
  50330. form: "normal"
  50331. },
  50332. {
  50333. name: "Small",
  50334. height: math.unit(26, "feet"),
  50335. default: true,
  50336. form: "gigantamax"
  50337. },
  50338. {
  50339. name: "Large",
  50340. height: math.unit(78, "feet"),
  50341. form: "gigantamax"
  50342. },
  50343. ],
  50344. {
  50345. "normal": {
  50346. name: "Normal",
  50347. default: true
  50348. },
  50349. "gigantamax": {
  50350. name: "Gigantamax"
  50351. }
  50352. }
  50353. ))
  50354. characterMakers.push(() => makeCharacter(
  50355. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50356. {
  50357. anthroFront: {
  50358. height: math.unit(8, "feet"),
  50359. weight: math.unit(300, "lb"),
  50360. name: "Front",
  50361. image: {
  50362. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50363. extra: 1272/1176,
  50364. bottom: 53/1325
  50365. },
  50366. form: "anthro",
  50367. default: true
  50368. },
  50369. feralSide: {
  50370. height: math.unit(4, "feet"),
  50371. weight: math.unit(250, "lb"),
  50372. name: "Side",
  50373. image: {
  50374. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50375. extra: 731/621,
  50376. bottom: 0/731
  50377. },
  50378. form: "feral",
  50379. default: true
  50380. },
  50381. },
  50382. [
  50383. {
  50384. name: "Regular",
  50385. height: math.unit(8, "feet"),
  50386. form: "anthro"
  50387. },
  50388. {
  50389. name: "Macro",
  50390. height: math.unit(250, "feet"),
  50391. form: "anthro",
  50392. default: true
  50393. },
  50394. {
  50395. name: "Regular",
  50396. height: math.unit(4, "feet"),
  50397. form: "feral"
  50398. },
  50399. {
  50400. name: "Macro",
  50401. height: math.unit(125, "feet"),
  50402. form: "feral",
  50403. default: true
  50404. },
  50405. ],
  50406. {
  50407. "anthro": {
  50408. name: "Anthro",
  50409. default: true
  50410. },
  50411. "feral": {
  50412. name: "Feral",
  50413. },
  50414. }
  50415. ))
  50416. characterMakers.push(() => makeCharacter(
  50417. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50418. {
  50419. front: {
  50420. height: math.unit(11 + 10/12, "feet"),
  50421. weight: math.unit(1587, "kg"),
  50422. name: "Front",
  50423. image: {
  50424. source: "./media/characters/maple-javira-dragon/front.svg",
  50425. extra: 1136/744,
  50426. bottom: 73/1209
  50427. }
  50428. },
  50429. side: {
  50430. height: math.unit(11 + 10/12, "feet"),
  50431. weight: math.unit(1587, "kg"),
  50432. name: "Side",
  50433. image: {
  50434. source: "./media/characters/maple-javira-dragon/side.svg",
  50435. extra: 712/505,
  50436. bottom: 17/729
  50437. }
  50438. },
  50439. head: {
  50440. height: math.unit(8.05, "feet"),
  50441. name: "Head",
  50442. image: {
  50443. source: "./media/characters/maple-javira-dragon/head.svg",
  50444. extra: 1420/1344,
  50445. bottom: 0/1420
  50446. }
  50447. },
  50448. },
  50449. [
  50450. {
  50451. name: "Normal",
  50452. height: math.unit(11 + 10/12, "feet"),
  50453. default: true
  50454. },
  50455. ]
  50456. ))
  50457. characterMakers.push(() => makeCharacter(
  50458. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50459. {
  50460. front: {
  50461. height: math.unit(117, "cm"),
  50462. weight: math.unit(50, "kg"),
  50463. name: "Front",
  50464. image: {
  50465. source: "./media/characters/sonia-wyverntail/front.svg",
  50466. extra: 708/592,
  50467. bottom: 25/733
  50468. }
  50469. },
  50470. },
  50471. [
  50472. {
  50473. name: "Normal",
  50474. height: math.unit(117, "cm"),
  50475. default: true
  50476. },
  50477. ]
  50478. ))
  50479. characterMakers.push(() => makeCharacter(
  50480. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50481. {
  50482. front: {
  50483. height: math.unit(6 + 5/12, "feet"),
  50484. name: "Front",
  50485. image: {
  50486. source: "./media/characters/micah/front.svg",
  50487. extra: 1758/1546,
  50488. bottom: 214/1972
  50489. }
  50490. },
  50491. },
  50492. [
  50493. {
  50494. name: "Normal",
  50495. height: math.unit(6 + 5/12, "feet"),
  50496. default: true
  50497. },
  50498. ]
  50499. ))
  50500. characterMakers.push(() => makeCharacter(
  50501. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50502. {
  50503. front: {
  50504. height: math.unit(5 + 10/12, "feet"),
  50505. weight: math.unit(220, "lb"),
  50506. name: "Front",
  50507. image: {
  50508. source: "./media/characters/zarya/front.svg",
  50509. extra: 593/572,
  50510. bottom: 50/643
  50511. }
  50512. },
  50513. back: {
  50514. height: math.unit(5 + 10/12, "feet"),
  50515. weight: math.unit(220, "lb"),
  50516. name: "Back",
  50517. image: {
  50518. source: "./media/characters/zarya/back.svg",
  50519. extra: 603/582,
  50520. bottom: 38/641
  50521. }
  50522. },
  50523. },
  50524. [
  50525. {
  50526. name: "Normal",
  50527. height: math.unit(5 + 10/12, "feet"),
  50528. default: true
  50529. },
  50530. ]
  50531. ))
  50532. characterMakers.push(() => makeCharacter(
  50533. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50534. {
  50535. front: {
  50536. height: math.unit(7.5, "feet"),
  50537. name: "Front",
  50538. image: {
  50539. source: "./media/characters/sven-hatisson/front.svg",
  50540. extra: 917/857,
  50541. bottom: 42/959
  50542. }
  50543. },
  50544. back: {
  50545. height: math.unit(7.5, "feet"),
  50546. name: "Back",
  50547. image: {
  50548. source: "./media/characters/sven-hatisson/back.svg",
  50549. extra: 903/856,
  50550. bottom: 15/918
  50551. }
  50552. },
  50553. },
  50554. [
  50555. {
  50556. name: "Base Height",
  50557. height: math.unit(7.5, "feet")
  50558. },
  50559. {
  50560. name: "Usual Height",
  50561. height: math.unit(13.5, "feet"),
  50562. default: true
  50563. },
  50564. {
  50565. name: "Smaller Macro",
  50566. height: math.unit(85, "feet")
  50567. },
  50568. {
  50569. name: "Moderate Macro",
  50570. height: math.unit(320, "feet")
  50571. },
  50572. {
  50573. name: "Large Macro",
  50574. height: math.unit(1000, "feet")
  50575. },
  50576. {
  50577. name: "Largest Size",
  50578. height: math.unit(2, "miles")
  50579. },
  50580. ]
  50581. ))
  50582. characterMakers.push(() => makeCharacter(
  50583. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50584. {
  50585. side: {
  50586. height: math.unit(1.8, "meters"),
  50587. weight: math.unit(275, "kg"),
  50588. name: "Side",
  50589. image: {
  50590. source: "./media/characters/terra/side.svg",
  50591. extra: 1273/1147,
  50592. bottom: 0/1273
  50593. }
  50594. },
  50595. },
  50596. [
  50597. {
  50598. name: "Normal",
  50599. height: math.unit(16.2, "meters"),
  50600. default: true
  50601. },
  50602. ]
  50603. ))
  50604. characterMakers.push(() => makeCharacter(
  50605. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50606. {
  50607. borzoiFront: {
  50608. height: math.unit(6 + 9/12, "feet"),
  50609. name: "Front",
  50610. image: {
  50611. source: "./media/characters/rae/borzoi-front.svg",
  50612. extra: 1161/1098,
  50613. bottom: 31/1192
  50614. },
  50615. form: "borzoi",
  50616. default: true
  50617. },
  50618. werewolfFront: {
  50619. height: math.unit(8 + 7/12, "feet"),
  50620. name: "Front",
  50621. image: {
  50622. source: "./media/characters/rae/werewolf-front.svg",
  50623. extra: 1411/1334,
  50624. bottom: 127/1538
  50625. },
  50626. form: "werewolf",
  50627. default: true
  50628. },
  50629. },
  50630. [
  50631. {
  50632. name: "Normal",
  50633. height: math.unit(6 + 9/12, "feet"),
  50634. default: true,
  50635. form: "borzoi"
  50636. },
  50637. {
  50638. name: "Normal",
  50639. height: math.unit(8 + 7/12, "feet"),
  50640. default: true,
  50641. form: "werewolf"
  50642. },
  50643. ],
  50644. {
  50645. "borzoi": {
  50646. name: "Borzoi",
  50647. default: true
  50648. },
  50649. "werewolf": {
  50650. name: "Werewolf",
  50651. },
  50652. }
  50653. ))
  50654. characterMakers.push(() => makeCharacter(
  50655. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50656. {
  50657. front: {
  50658. height: math.unit(8 + 7/12, "feet"),
  50659. weight: math.unit(482, "lb"),
  50660. name: "Front",
  50661. image: {
  50662. source: "./media/characters/kit/front.svg",
  50663. extra: 1247/1103,
  50664. bottom: 41/1288
  50665. }
  50666. },
  50667. back: {
  50668. height: math.unit(8 + 7/12, "feet"),
  50669. weight: math.unit(482, "lb"),
  50670. name: "Back",
  50671. image: {
  50672. source: "./media/characters/kit/back.svg",
  50673. extra: 1252/1123,
  50674. bottom: 21/1273
  50675. }
  50676. },
  50677. paw: {
  50678. height: math.unit(1.46, "feet"),
  50679. name: "Paw",
  50680. image: {
  50681. source: "./media/characters/kit/paw.svg"
  50682. }
  50683. },
  50684. },
  50685. [
  50686. {
  50687. name: "Normal",
  50688. height: math.unit(2.61, "meters"),
  50689. default: true
  50690. },
  50691. {
  50692. name: "\"Tall\"",
  50693. height: math.unit(8.21, "meters")
  50694. },
  50695. {
  50696. name: "Tall",
  50697. height: math.unit(19.6, "meters")
  50698. },
  50699. {
  50700. name: "Very Tall",
  50701. height: math.unit(57.91, "meters")
  50702. },
  50703. {
  50704. name: "Semi-Macro",
  50705. height: math.unit(138.64, "meters")
  50706. },
  50707. {
  50708. name: "Macro",
  50709. height: math.unit(831.99, "meters")
  50710. },
  50711. {
  50712. name: "EX-Macro",
  50713. height: math.unit(96451121, "meters")
  50714. },
  50715. {
  50716. name: "S1-Omnipotent",
  50717. height: math.unit(4.42074e+9, "meters")
  50718. },
  50719. {
  50720. name: "S2-Omnipotent",
  50721. height: math.unit(9.42074e+17, "meters")
  50722. },
  50723. {
  50724. name: "Omnipotent",
  50725. height: math.unit(4.23112e+24, "meters")
  50726. },
  50727. {
  50728. name: "Hypergod",
  50729. height: math.unit(5.05176e+27, "meters")
  50730. },
  50731. {
  50732. name: "Hypergod-EX",
  50733. height: math.unit(9.45532e+49, "meters")
  50734. },
  50735. {
  50736. name: "Hypergod-SP",
  50737. height: math.unit(9.45532e+195, "meters")
  50738. },
  50739. ]
  50740. ))
  50741. characterMakers.push(() => makeCharacter(
  50742. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50743. {
  50744. side: {
  50745. height: math.unit(0.6, "meters"),
  50746. weight: math.unit(24, "kg"),
  50747. name: "Side",
  50748. image: {
  50749. source: "./media/characters/celeste/side.svg",
  50750. extra: 810/517,
  50751. bottom: 53/863
  50752. }
  50753. },
  50754. },
  50755. [
  50756. {
  50757. name: "Velociraptor",
  50758. height: math.unit(0.6, "meters"),
  50759. default: true
  50760. },
  50761. {
  50762. name: "Utahraptor",
  50763. height: math.unit(1.8, "meters")
  50764. },
  50765. {
  50766. name: "Gallimimus",
  50767. height: math.unit(4.0, "meters")
  50768. },
  50769. {
  50770. name: "Large",
  50771. height: math.unit(20, "meters")
  50772. },
  50773. {
  50774. name: "Planetary",
  50775. height: math.unit(50, "megameters")
  50776. },
  50777. {
  50778. name: "Stellar",
  50779. height: math.unit(1.5, "gigameters")
  50780. },
  50781. {
  50782. name: "Galactic",
  50783. height: math.unit(100, "exameters")
  50784. },
  50785. ]
  50786. ))
  50787. characterMakers.push(() => makeCharacter(
  50788. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50789. {
  50790. front: {
  50791. height: math.unit(6, "feet"),
  50792. weight: math.unit(210, "lb"),
  50793. name: "Front",
  50794. image: {
  50795. source: "./media/characters/glacia/front.svg",
  50796. extra: 958/901,
  50797. bottom: 45/1003
  50798. }
  50799. },
  50800. },
  50801. [
  50802. {
  50803. name: "Macro",
  50804. height: math.unit(1000, "meters"),
  50805. default: true
  50806. },
  50807. ]
  50808. ))
  50809. characterMakers.push(() => makeCharacter(
  50810. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50811. {
  50812. front: {
  50813. height: math.unit(4, "meters"),
  50814. name: "Front",
  50815. image: {
  50816. source: "./media/characters/giri/front.svg",
  50817. extra: 966/894,
  50818. bottom: 21/987
  50819. }
  50820. },
  50821. },
  50822. [
  50823. {
  50824. name: "Normal",
  50825. height: math.unit(4, "meters"),
  50826. default: true
  50827. },
  50828. ]
  50829. ))
  50830. characterMakers.push(() => makeCharacter(
  50831. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50832. {
  50833. back: {
  50834. height: math.unit(4, "feet"),
  50835. weight: math.unit(37, "lb"),
  50836. name: "Back",
  50837. image: {
  50838. source: "./media/characters/tin/back.svg",
  50839. extra: 845/780,
  50840. bottom: 28/873
  50841. }
  50842. },
  50843. },
  50844. [
  50845. {
  50846. name: "Normal",
  50847. height: math.unit(4, "feet"),
  50848. default: true
  50849. },
  50850. ]
  50851. ))
  50852. characterMakers.push(() => makeCharacter(
  50853. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50854. {
  50855. front: {
  50856. height: math.unit(25, "feet"),
  50857. name: "Front",
  50858. image: {
  50859. source: "./media/characters/cadenza-vivace/front.svg",
  50860. extra: 1842/1578,
  50861. bottom: 30/1872
  50862. }
  50863. },
  50864. },
  50865. [
  50866. {
  50867. name: "Macro",
  50868. height: math.unit(25, "feet"),
  50869. default: true
  50870. },
  50871. ]
  50872. ))
  50873. characterMakers.push(() => makeCharacter(
  50874. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50875. {
  50876. front: {
  50877. height: math.unit(10, "feet"),
  50878. weight: math.unit(625, "kg"),
  50879. name: "Front",
  50880. image: {
  50881. source: "./media/characters/zain/front.svg",
  50882. extra: 1682/1498,
  50883. bottom: 223/1905
  50884. }
  50885. },
  50886. back: {
  50887. height: math.unit(10, "feet"),
  50888. weight: math.unit(625, "kg"),
  50889. name: "Back",
  50890. image: {
  50891. source: "./media/characters/zain/back.svg",
  50892. extra: 1814/1657,
  50893. bottom: 152/1966
  50894. }
  50895. },
  50896. head: {
  50897. height: math.unit(10, "feet"),
  50898. weight: math.unit(625, "kg"),
  50899. name: "Head",
  50900. image: {
  50901. source: "./media/characters/zain/head.svg",
  50902. extra: 1059/762,
  50903. bottom: 0/1059
  50904. }
  50905. },
  50906. },
  50907. [
  50908. {
  50909. name: "Normal",
  50910. height: math.unit(10, "feet"),
  50911. default: true
  50912. },
  50913. ]
  50914. ))
  50915. characterMakers.push(() => makeCharacter(
  50916. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50917. {
  50918. front: {
  50919. height: math.unit(6 + 5/12, "feet"),
  50920. weight: math.unit(750, "lb"),
  50921. name: "Front",
  50922. image: {
  50923. source: "./media/characters/ruchex/front.svg",
  50924. extra: 877/820,
  50925. bottom: 17/894
  50926. },
  50927. extraAttributes: {
  50928. "width": {
  50929. name: "Width",
  50930. power: 1,
  50931. type: "length",
  50932. base: math.unit(4.757, "feet")
  50933. },
  50934. }
  50935. },
  50936. },
  50937. [
  50938. {
  50939. name: "Normal",
  50940. height: math.unit(6 + 5/12, "feet"),
  50941. default: true
  50942. },
  50943. ]
  50944. ))
  50945. characterMakers.push(() => makeCharacter(
  50946. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50947. {
  50948. dressedFront: {
  50949. height: math.unit(191, "cm"),
  50950. weight: math.unit(80, "kg"),
  50951. name: "Front",
  50952. image: {
  50953. source: "./media/characters/buster/dressed-front.svg",
  50954. extra: 1022/973,
  50955. bottom: 69/1091
  50956. }
  50957. },
  50958. dressedBack: {
  50959. height: math.unit(191, "cm"),
  50960. weight: math.unit(80, "kg"),
  50961. name: "Back",
  50962. image: {
  50963. source: "./media/characters/buster/dressed-back.svg",
  50964. extra: 1018/970,
  50965. bottom: 55/1073
  50966. }
  50967. },
  50968. nudeFront: {
  50969. height: math.unit(191, "cm"),
  50970. weight: math.unit(80, "kg"),
  50971. name: "Front (Nude)",
  50972. image: {
  50973. source: "./media/characters/buster/nude-front.svg",
  50974. extra: 1022/973,
  50975. bottom: 69/1091
  50976. }
  50977. },
  50978. nudeBack: {
  50979. height: math.unit(191, "cm"),
  50980. weight: math.unit(80, "kg"),
  50981. name: "Back (Nude)",
  50982. image: {
  50983. source: "./media/characters/buster/nude-back.svg",
  50984. extra: 1018/970,
  50985. bottom: 55/1073
  50986. }
  50987. },
  50988. dick: {
  50989. height: math.unit(2.59, "feet"),
  50990. name: "Dick",
  50991. image: {
  50992. source: "./media/characters/buster/dick.svg"
  50993. }
  50994. },
  50995. ass: {
  50996. height: math.unit(1.2, "feet"),
  50997. name: "Ass",
  50998. image: {
  50999. source: "./media/characters/buster/ass.svg"
  51000. }
  51001. },
  51002. },
  51003. [
  51004. {
  51005. name: "Normal",
  51006. height: math.unit(191, "cm"),
  51007. default: true
  51008. },
  51009. ]
  51010. ))
  51011. characterMakers.push(() => makeCharacter(
  51012. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51013. {
  51014. side: {
  51015. height: math.unit(8.1, "feet"),
  51016. weight: math.unit(3500, "lb"),
  51017. name: "Side",
  51018. image: {
  51019. source: "./media/characters/sonya/side.svg",
  51020. extra: 1730/1317,
  51021. bottom: 86/1816
  51022. }
  51023. },
  51024. },
  51025. [
  51026. {
  51027. name: "Normal",
  51028. height: math.unit(8.1, "feet"),
  51029. default: true
  51030. },
  51031. ]
  51032. ))
  51033. characterMakers.push(() => makeCharacter(
  51034. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51035. {
  51036. front: {
  51037. height: math.unit(6, "feet"),
  51038. weight: math.unit(150, "lb"),
  51039. name: "Front",
  51040. image: {
  51041. source: "./media/characters/cadence-andrysiak/front.svg",
  51042. extra: 1164/1121,
  51043. bottom: 60/1224
  51044. }
  51045. },
  51046. back: {
  51047. height: math.unit(6, "feet"),
  51048. weight: math.unit(150, "lb"),
  51049. name: "Back",
  51050. image: {
  51051. source: "./media/characters/cadence-andrysiak/back.svg",
  51052. extra: 1200/1165,
  51053. bottom: 9/1209
  51054. }
  51055. },
  51056. dressed: {
  51057. height: math.unit(6, "feet"),
  51058. weight: math.unit(150, "lb"),
  51059. name: "Dressed",
  51060. image: {
  51061. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51062. extra: 1164/1121,
  51063. bottom: 60/1224
  51064. }
  51065. },
  51066. },
  51067. [
  51068. {
  51069. name: "Micro",
  51070. height: math.unit(1, "mm")
  51071. },
  51072. {
  51073. name: "Normal",
  51074. height: math.unit(6, "feet"),
  51075. default: true
  51076. },
  51077. ]
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51081. {
  51082. front: {
  51083. height: math.unit(60, "inches"),
  51084. weight: math.unit(16, "lb"),
  51085. preyCapacity: math.unit(80, "liters"),
  51086. name: "Front",
  51087. image: {
  51088. source: "./media/characters/penny-lynx/front.svg",
  51089. extra: 1959/1769,
  51090. bottom: 49/2008
  51091. }
  51092. },
  51093. },
  51094. [
  51095. {
  51096. name: "Nokia",
  51097. height: math.unit(2, "inches")
  51098. },
  51099. {
  51100. name: "Desktop",
  51101. height: math.unit(24, "inches")
  51102. },
  51103. {
  51104. name: "TV",
  51105. height: math.unit(60, "inches")
  51106. },
  51107. {
  51108. name: "Jumbotron",
  51109. height: math.unit(12, "feet")
  51110. },
  51111. {
  51112. name: "Billboard",
  51113. height: math.unit(48, "feet"),
  51114. default: true
  51115. },
  51116. {
  51117. name: "IMAX",
  51118. height: math.unit(96, "feet")
  51119. },
  51120. {
  51121. name: "SINGULARITY",
  51122. height: math.unit(864938, "miles")
  51123. },
  51124. ]
  51125. ))
  51126. characterMakers.push(() => makeCharacter(
  51127. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51128. {
  51129. front: {
  51130. height: math.unit(5 + 4/12, "feet"),
  51131. weight: math.unit(230, "lb"),
  51132. name: "Front",
  51133. image: {
  51134. source: "./media/characters/sukebe/front.svg",
  51135. extra: 2130/2038,
  51136. bottom: 90/2220
  51137. }
  51138. },
  51139. back: {
  51140. height: math.unit(3.48, "feet"),
  51141. weight: math.unit(230, "lb"),
  51142. name: "Back",
  51143. image: {
  51144. source: "./media/characters/sukebe/back.svg",
  51145. extra: 1670/1604,
  51146. bottom: 0/1670
  51147. }
  51148. },
  51149. },
  51150. [
  51151. {
  51152. name: "Normal",
  51153. height: math.unit(5 + 4/12, "feet"),
  51154. default: true
  51155. },
  51156. ]
  51157. ))
  51158. characterMakers.push(() => makeCharacter(
  51159. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51160. {
  51161. front: {
  51162. height: math.unit(6, "feet"),
  51163. name: "Front",
  51164. image: {
  51165. source: "./media/characters/nylla/front.svg",
  51166. extra: 1868/1699,
  51167. bottom: 97/1965
  51168. }
  51169. },
  51170. back: {
  51171. height: math.unit(6, "feet"),
  51172. name: "Back",
  51173. image: {
  51174. source: "./media/characters/nylla/back.svg",
  51175. extra: 1889/1712,
  51176. bottom: 93/1982
  51177. }
  51178. },
  51179. frontNsfw: {
  51180. height: math.unit(6, "feet"),
  51181. name: "Front (NSFW)",
  51182. image: {
  51183. source: "./media/characters/nylla/front-nsfw.svg",
  51184. extra: 1868/1699,
  51185. bottom: 97/1965
  51186. },
  51187. extraAttributes: {
  51188. "dickLength": {
  51189. name: "Dick Length",
  51190. power: 1,
  51191. type: "length",
  51192. base: math.unit(1.4, "feet")
  51193. },
  51194. "cumVolume": {
  51195. name: "Cum Volume",
  51196. power: 3,
  51197. type: "volume",
  51198. base: math.unit(100, "mL")
  51199. },
  51200. }
  51201. },
  51202. backNsfw: {
  51203. height: math.unit(6, "feet"),
  51204. name: "Back (NSFW)",
  51205. image: {
  51206. source: "./media/characters/nylla/back-nsfw.svg",
  51207. extra: 1889/1712,
  51208. bottom: 93/1982
  51209. }
  51210. },
  51211. maw: {
  51212. height: math.unit(2.10, "feet"),
  51213. name: "Maw",
  51214. image: {
  51215. source: "./media/characters/nylla/maw.svg"
  51216. }
  51217. },
  51218. paws: {
  51219. height: math.unit(2.06, "feet"),
  51220. name: "Paws",
  51221. image: {
  51222. source: "./media/characters/nylla/paws.svg"
  51223. }
  51224. },
  51225. muzzle: {
  51226. height: math.unit(0.61, "feet"),
  51227. name: "Muzzle",
  51228. image: {
  51229. source: "./media/characters/nylla/muzzle.svg"
  51230. }
  51231. },
  51232. sheath: {
  51233. height: math.unit(1.305, "feet"),
  51234. name: "Sheath",
  51235. image: {
  51236. source: "./media/characters/nylla/sheath.svg"
  51237. }
  51238. },
  51239. },
  51240. [
  51241. {
  51242. name: "Micro",
  51243. height: math.unit(7.5, "inches")
  51244. },
  51245. {
  51246. name: "Normal",
  51247. height: math.unit(7, "feet"),
  51248. default: true
  51249. },
  51250. {
  51251. name: "Macro",
  51252. height: math.unit(60, "feet")
  51253. },
  51254. {
  51255. name: "Mega",
  51256. height: math.unit(200, "feet")
  51257. },
  51258. ]
  51259. ))
  51260. characterMakers.push(() => makeCharacter(
  51261. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51262. {
  51263. front: {
  51264. height: math.unit(10, "feet"),
  51265. weight: math.unit(2300, "lb"),
  51266. name: "Front",
  51267. image: {
  51268. source: "./media/characters/hunt3r/front.svg",
  51269. extra: 1909/1742,
  51270. bottom: 46/1955
  51271. }
  51272. },
  51273. },
  51274. [
  51275. {
  51276. name: "Normal",
  51277. height: math.unit(10, "feet"),
  51278. default: true
  51279. },
  51280. ]
  51281. ))
  51282. characterMakers.push(() => makeCharacter(
  51283. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51284. {
  51285. dressed: {
  51286. height: math.unit(11, "feet"),
  51287. weight: math.unit(18500, "lb"),
  51288. preyCapacity: math.unit(9, "people"),
  51289. name: "Dressed",
  51290. image: {
  51291. source: "./media/characters/cylphis/dressed.svg",
  51292. extra: 1028/1003,
  51293. bottom: 75/1103
  51294. },
  51295. },
  51296. undressed: {
  51297. height: math.unit(11, "feet"),
  51298. weight: math.unit(18500, "lb"),
  51299. preyCapacity: math.unit(9, "people"),
  51300. name: "Undressed",
  51301. image: {
  51302. source: "./media/characters/cylphis/undressed.svg",
  51303. extra: 1028/1003,
  51304. bottom: 75/1103
  51305. }
  51306. },
  51307. full: {
  51308. height: math.unit(11, "feet"),
  51309. weight: math.unit(18500 + 150*9, "lb"),
  51310. preyCapacity: math.unit(9, "people"),
  51311. name: "Full",
  51312. image: {
  51313. source: "./media/characters/cylphis/full.svg",
  51314. extra: 1028/1003,
  51315. bottom: 75/1103
  51316. }
  51317. },
  51318. },
  51319. [
  51320. {
  51321. name: "Small",
  51322. height: math.unit(8, "feet")
  51323. },
  51324. {
  51325. name: "Normal",
  51326. height: math.unit(11, "feet"),
  51327. default: true
  51328. },
  51329. ]
  51330. ))
  51331. characterMakers.push(() => makeCharacter(
  51332. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51333. {
  51334. front: {
  51335. height: math.unit(2 + 7/12, "feet"),
  51336. name: "Front",
  51337. image: {
  51338. source: "./media/characters/orishan/front.svg",
  51339. extra: 1058/1023,
  51340. bottom: 23/1081
  51341. }
  51342. },
  51343. back: {
  51344. height: math.unit(2 + 7/12, "feet"),
  51345. name: "Back",
  51346. image: {
  51347. source: "./media/characters/orishan/back.svg",
  51348. extra: 1058/1023,
  51349. bottom: 23/1081
  51350. }
  51351. },
  51352. },
  51353. [
  51354. {
  51355. name: "Micro",
  51356. height: math.unit(2, "cm")
  51357. },
  51358. {
  51359. name: "Normal",
  51360. height: math.unit(2 + 7/12, "feet"),
  51361. default: true
  51362. },
  51363. ]
  51364. ))
  51365. characterMakers.push(() => makeCharacter(
  51366. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51367. {
  51368. front: {
  51369. height: math.unit(3, "meters"),
  51370. weight: math.unit(508, "kg"),
  51371. name: "Front",
  51372. image: {
  51373. source: "./media/characters/seranis/front.svg",
  51374. extra: 1478/1454,
  51375. bottom: 41/1519
  51376. }
  51377. },
  51378. },
  51379. [
  51380. {
  51381. name: "Normal",
  51382. height: math.unit(3, "meters"),
  51383. default: true
  51384. },
  51385. {
  51386. name: "Macro",
  51387. height: math.unit(108, "meters")
  51388. },
  51389. {
  51390. name: "Megamacro",
  51391. height: math.unit(1250, "meters")
  51392. },
  51393. ]
  51394. ))
  51395. characterMakers.push(() => makeCharacter(
  51396. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51397. {
  51398. undressed: {
  51399. height: math.unit(5 + 3/12, "feet"),
  51400. name: "Undressed",
  51401. image: {
  51402. source: "./media/characters/ankou/undressed.svg",
  51403. extra: 1301/1213,
  51404. bottom: 87/1388
  51405. }
  51406. },
  51407. dressed: {
  51408. height: math.unit(5 + 3/12, "feet"),
  51409. name: "Dressed",
  51410. image: {
  51411. source: "./media/characters/ankou/dressed.svg",
  51412. extra: 1301/1213,
  51413. bottom: 87/1388
  51414. }
  51415. },
  51416. head: {
  51417. height: math.unit(1.61, "feet"),
  51418. name: "Head",
  51419. image: {
  51420. source: "./media/characters/ankou/head.svg"
  51421. }
  51422. },
  51423. },
  51424. [
  51425. {
  51426. name: "Normal",
  51427. height: math.unit(5 + 3/12, "feet"),
  51428. default: true
  51429. },
  51430. ]
  51431. ))
  51432. characterMakers.push(() => makeCharacter(
  51433. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51434. {
  51435. side: {
  51436. height: math.unit(6 + 3/12, "feet"),
  51437. weight: math.unit(200, "kg"),
  51438. name: "Side",
  51439. image: {
  51440. source: "./media/characters/juniper-skunktaur/side.svg",
  51441. extra: 1574/1229,
  51442. bottom: 38/1612
  51443. }
  51444. },
  51445. front: {
  51446. height: math.unit(6 + 3/12, "feet"),
  51447. weight: math.unit(200, "kg"),
  51448. name: "Front",
  51449. image: {
  51450. source: "./media/characters/juniper-skunktaur/front.svg",
  51451. extra: 1337/1278,
  51452. bottom: 22/1359
  51453. }
  51454. },
  51455. back: {
  51456. height: math.unit(6 + 3/12, "feet"),
  51457. weight: math.unit(200, "kg"),
  51458. name: "Back",
  51459. image: {
  51460. source: "./media/characters/juniper-skunktaur/back.svg",
  51461. extra: 1618/1273,
  51462. bottom: 13/1631
  51463. }
  51464. },
  51465. top: {
  51466. height: math.unit(2.62, "feet"),
  51467. weight: math.unit(200, "kg"),
  51468. name: "Top",
  51469. image: {
  51470. source: "./media/characters/juniper-skunktaur/top.svg"
  51471. }
  51472. },
  51473. },
  51474. [
  51475. {
  51476. name: "Normal",
  51477. height: math.unit(6 + 3/12, "feet"),
  51478. default: true
  51479. },
  51480. ]
  51481. ))
  51482. characterMakers.push(() => makeCharacter(
  51483. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51484. {
  51485. front: {
  51486. height: math.unit(20.5, "feet"),
  51487. name: "Front",
  51488. image: {
  51489. source: "./media/characters/rei/front.svg",
  51490. extra: 1349/1195,
  51491. bottom: 31/1380
  51492. }
  51493. },
  51494. back: {
  51495. height: math.unit(20.5, "feet"),
  51496. name: "Back",
  51497. image: {
  51498. source: "./media/characters/rei/back.svg",
  51499. extra: 1358/1204,
  51500. bottom: 22/1380
  51501. }
  51502. },
  51503. pawsDigi: {
  51504. height: math.unit(3.45, "feet"),
  51505. name: "Paws (Digi)",
  51506. image: {
  51507. source: "./media/characters/rei/paws-digi.svg"
  51508. }
  51509. },
  51510. pawsPlanti: {
  51511. height: math.unit(3.45, "feet"),
  51512. name: "Paws (Planti)",
  51513. image: {
  51514. source: "./media/characters/rei/paws-planti.svg"
  51515. }
  51516. },
  51517. },
  51518. [
  51519. {
  51520. name: "Normal",
  51521. height: math.unit(20.5, "feet"),
  51522. default: true
  51523. },
  51524. ]
  51525. ))
  51526. characterMakers.push(() => makeCharacter(
  51527. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51528. {
  51529. front: {
  51530. height: math.unit(5 + 11/12, "feet"),
  51531. name: "Front",
  51532. image: {
  51533. source: "./media/characters/carina/front.svg",
  51534. extra: 1720/1449,
  51535. bottom: 14/1734
  51536. }
  51537. },
  51538. back: {
  51539. height: math.unit(5 + 11/12, "feet"),
  51540. name: "Back",
  51541. image: {
  51542. source: "./media/characters/carina/back.svg",
  51543. extra: 1493/1445,
  51544. bottom: 17/1510
  51545. }
  51546. },
  51547. paw: {
  51548. height: math.unit(0.92, "feet"),
  51549. name: "Paw",
  51550. image: {
  51551. source: "./media/characters/carina/paw.svg"
  51552. }
  51553. },
  51554. },
  51555. [
  51556. {
  51557. name: "Normal",
  51558. height: math.unit(5 + 11/12, "feet"),
  51559. default: true
  51560. },
  51561. ]
  51562. ))
  51563. characterMakers.push(() => makeCharacter(
  51564. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51565. {
  51566. front: {
  51567. height: math.unit(4.88, "meters"),
  51568. name: "Front",
  51569. image: {
  51570. source: "./media/characters/maya/front.svg",
  51571. extra: 1222/1145,
  51572. bottom: 57/1279
  51573. }
  51574. },
  51575. },
  51576. [
  51577. {
  51578. name: "Normal",
  51579. height: math.unit(4.88, "meters"),
  51580. default: true
  51581. },
  51582. {
  51583. name: "Macro",
  51584. height: math.unit(38.1, "meters")
  51585. },
  51586. {
  51587. name: "Macro+",
  51588. height: math.unit(152.4, "meters")
  51589. },
  51590. {
  51591. name: "Macro++",
  51592. height: math.unit(16.09, "km")
  51593. },
  51594. {
  51595. name: "Mega-macro",
  51596. height: math.unit(700, "megameters")
  51597. },
  51598. ]
  51599. ))
  51600. characterMakers.push(() => makeCharacter(
  51601. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51602. {
  51603. front: {
  51604. height: math.unit(6 + 2/12, "feet"),
  51605. weight: math.unit(500, "lb"),
  51606. preyCapacity: math.unit(4, "people"),
  51607. name: "Front",
  51608. image: {
  51609. source: "./media/characters/yepir/front.svg"
  51610. }
  51611. },
  51612. side: {
  51613. height: math.unit(6 + 2/12, "feet"),
  51614. weight: math.unit(500, "lb"),
  51615. preyCapacity: math.unit(4, "people"),
  51616. name: "Side",
  51617. image: {
  51618. source: "./media/characters/yepir/side.svg"
  51619. }
  51620. },
  51621. paw: {
  51622. height: math.unit(1.05, "feet"),
  51623. name: "Paw",
  51624. image: {
  51625. source: "./media/characters/yepir/paw.svg"
  51626. }
  51627. },
  51628. },
  51629. [
  51630. {
  51631. name: "Normal",
  51632. height: math.unit(6 + 2/12, "feet"),
  51633. default: true
  51634. },
  51635. ]
  51636. ))
  51637. characterMakers.push(() => makeCharacter(
  51638. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51639. {
  51640. front: {
  51641. height: math.unit(5 + 4/12, "feet"),
  51642. name: "Front",
  51643. image: {
  51644. source: "./media/characters/russec/front.svg",
  51645. extra: 1926/1626,
  51646. bottom: 72/1998
  51647. }
  51648. },
  51649. back: {
  51650. height: math.unit(5 + 4/12, "feet"),
  51651. name: "Back",
  51652. image: {
  51653. source: "./media/characters/russec/back.svg",
  51654. extra: 1910/1591,
  51655. bottom: 48/1958
  51656. }
  51657. },
  51658. },
  51659. [
  51660. {
  51661. name: "Small",
  51662. height: math.unit(5 + 4/12, "feet")
  51663. },
  51664. {
  51665. name: "Normal",
  51666. height: math.unit(72, "feet"),
  51667. default: true
  51668. },
  51669. ]
  51670. ))
  51671. characterMakers.push(() => makeCharacter(
  51672. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51673. {
  51674. side: {
  51675. height: math.unit(12, "feet"),
  51676. name: "Side",
  51677. image: {
  51678. source: "./media/characters/cianus/side.svg",
  51679. extra: 808/526,
  51680. bottom: 61/869
  51681. }
  51682. },
  51683. },
  51684. [
  51685. {
  51686. name: "Normal",
  51687. height: math.unit(12, "feet"),
  51688. default: true
  51689. },
  51690. ]
  51691. ))
  51692. characterMakers.push(() => makeCharacter(
  51693. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51694. {
  51695. front: {
  51696. height: math.unit(9 + 6/12, "feet"),
  51697. weight: math.unit(300, "lb"),
  51698. name: "Front",
  51699. image: {
  51700. source: "./media/characters/ahab/front.svg",
  51701. extra: 1897/1868,
  51702. bottom: 121/2018
  51703. }
  51704. },
  51705. frontNsfw: {
  51706. height: math.unit(9 + 6/12, "feet"),
  51707. weight: math.unit(300, "lb"),
  51708. name: "Front-nsfw",
  51709. image: {
  51710. source: "./media/characters/ahab/front-nsfw.svg",
  51711. extra: 1897/1868,
  51712. bottom: 121/2018
  51713. }
  51714. },
  51715. },
  51716. [
  51717. {
  51718. name: "Normal",
  51719. height: math.unit(9 + 6/12, "feet")
  51720. },
  51721. {
  51722. name: "Macro",
  51723. height: math.unit(657, "feet"),
  51724. default: true
  51725. },
  51726. ]
  51727. ))
  51728. characterMakers.push(() => makeCharacter(
  51729. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51730. {
  51731. front: {
  51732. height: math.unit(2.69, "meters"),
  51733. weight: math.unit(132, "kg"),
  51734. name: "Front",
  51735. image: {
  51736. source: "./media/characters/aarkus/front.svg",
  51737. extra: 1400/1231,
  51738. bottom: 34/1434
  51739. }
  51740. },
  51741. back: {
  51742. height: math.unit(2.69, "meters"),
  51743. weight: math.unit(132, "kg"),
  51744. name: "Back",
  51745. image: {
  51746. source: "./media/characters/aarkus/back.svg",
  51747. extra: 1381/1218,
  51748. bottom: 30/1411
  51749. }
  51750. },
  51751. frontNsfw: {
  51752. height: math.unit(2.69, "meters"),
  51753. weight: math.unit(132, "kg"),
  51754. name: "Front (NSFW)",
  51755. image: {
  51756. source: "./media/characters/aarkus/front-nsfw.svg",
  51757. extra: 1400/1231,
  51758. bottom: 34/1434
  51759. }
  51760. },
  51761. foot: {
  51762. height: math.unit(1.45, "feet"),
  51763. name: "Foot",
  51764. image: {
  51765. source: "./media/characters/aarkus/foot.svg"
  51766. }
  51767. },
  51768. head: {
  51769. height: math.unit(2.85, "feet"),
  51770. name: "Head",
  51771. image: {
  51772. source: "./media/characters/aarkus/head.svg"
  51773. }
  51774. },
  51775. headAlt: {
  51776. height: math.unit(3.07, "feet"),
  51777. name: "Head (Alt)",
  51778. image: {
  51779. source: "./media/characters/aarkus/head-alt.svg"
  51780. }
  51781. },
  51782. mouth: {
  51783. height: math.unit(1.25, "feet"),
  51784. name: "Mouth",
  51785. image: {
  51786. source: "./media/characters/aarkus/mouth.svg"
  51787. }
  51788. },
  51789. dick: {
  51790. height: math.unit(1.77, "feet"),
  51791. name: "Dick",
  51792. image: {
  51793. source: "./media/characters/aarkus/dick.svg"
  51794. }
  51795. },
  51796. },
  51797. [
  51798. {
  51799. name: "Normal",
  51800. height: math.unit(2.69, "meters"),
  51801. default: true
  51802. },
  51803. {
  51804. name: "Macro",
  51805. height: math.unit(269, "meters")
  51806. },
  51807. {
  51808. name: "Macro+",
  51809. height: math.unit(672.5, "meters")
  51810. },
  51811. {
  51812. name: "Megamacro",
  51813. height: math.unit(2.017, "meters")
  51814. },
  51815. ]
  51816. ))
  51817. characterMakers.push(() => makeCharacter(
  51818. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51819. {
  51820. front: {
  51821. height: math.unit(23.47, "cm"),
  51822. weight: math.unit(600, "grams"),
  51823. name: "Front",
  51824. image: {
  51825. source: "./media/characters/diode/front.svg",
  51826. extra: 1778/1396,
  51827. bottom: 95/1873
  51828. }
  51829. },
  51830. side: {
  51831. height: math.unit(23.47, "cm"),
  51832. weight: math.unit(600, "grams"),
  51833. name: "Side",
  51834. image: {
  51835. source: "./media/characters/diode/side.svg",
  51836. extra: 1831/1404,
  51837. bottom: 86/1917
  51838. }
  51839. },
  51840. wings: {
  51841. height: math.unit(0.683, "feet"),
  51842. name: "Wings",
  51843. image: {
  51844. source: "./media/characters/diode/wings.svg"
  51845. }
  51846. },
  51847. },
  51848. [
  51849. {
  51850. name: "Normal",
  51851. height: math.unit(23.47, "cm"),
  51852. default: true
  51853. },
  51854. ]
  51855. ))
  51856. //characters
  51857. function makeCharacters() {
  51858. const results = [];
  51859. characterMakers.forEach(character => {
  51860. results.push(character());
  51861. });
  51862. return results;
  51863. }