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

52500 строки
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. }
  2007. //species
  2008. function getSpeciesInfo(speciesList) {
  2009. let result = new Set();
  2010. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2011. result.add(entry)
  2012. });
  2013. return Array.from(result);
  2014. };
  2015. function getSpeciesInfoHelper(species) {
  2016. if (!speciesData[species]) {
  2017. console.warn(species + " doesn't exist");
  2018. return [];
  2019. }
  2020. if (speciesData[species].parents) {
  2021. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2022. } else {
  2023. return [species];
  2024. }
  2025. }
  2026. characterMakers.push(() => makeCharacter(
  2027. {
  2028. name: "Fen",
  2029. species: ["crux"],
  2030. description: {
  2031. title: "Bio",
  2032. text: "Very furry. Sheds on everything."
  2033. },
  2034. tags: [
  2035. "anthro",
  2036. "goo"
  2037. ]
  2038. },
  2039. {
  2040. front: {
  2041. height: math.unit(12, "feet"),
  2042. weight: math.unit(2400, "lb"),
  2043. name: "Front",
  2044. image: {
  2045. source: "./media/characters/fen/front.svg",
  2046. extra: 1804/1562,
  2047. bottom: 205/2009
  2048. },
  2049. extraAttributes: {
  2050. pawSize: {
  2051. name: "Paw Size",
  2052. power: 2,
  2053. type: "area",
  2054. base: math.unit(0.35, "m^2")
  2055. }
  2056. }
  2057. },
  2058. diving: {
  2059. height: math.unit(4.9, "meters"),
  2060. weight: math.unit(2400, "lb"),
  2061. name: "Diving",
  2062. image: {
  2063. source: "./media/characters/fen/diving.svg"
  2064. }
  2065. },
  2066. goo: {
  2067. height: math.unit(12, "feet"),
  2068. weight: math.unit(3600, "lb"),
  2069. volume: math.unit(1000, "liters"),
  2070. preyCapacity: math.unit(6, "people"),
  2071. name: "Goo",
  2072. image: {
  2073. source: "./media/characters/fen/goo.svg",
  2074. extra: 1307/1071,
  2075. bottom: 134/1441
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(5.03, "feet"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/fen/maw.svg"
  2083. }
  2084. },
  2085. gooCeiling: {
  2086. height: math.unit(6.6, "feet"),
  2087. weight: math.unit(3000, "lb"),
  2088. volume: math.unit(1000, "liters"),
  2089. preyCapacity: math.unit(6, "people"),
  2090. name: "Goo (Ceiling)",
  2091. image: {
  2092. source: "./media/characters/fen/goo-ceiling.svg"
  2093. }
  2094. },
  2095. tail: {
  2096. height: math.unit(12.1, "feet"),
  2097. name: "Tail",
  2098. image: {
  2099. source: "./media/characters/fen/tail.svg"
  2100. }
  2101. },
  2102. tailFull: {
  2103. height: math.unit(12.1, "feet"),
  2104. name: "Full Tail",
  2105. image: {
  2106. source: "./media/characters/fen/tail-full.svg"
  2107. }
  2108. },
  2109. back: {
  2110. height: math.unit(12, "feet"),
  2111. weight: math.unit(2400, "lb"),
  2112. name: "Back",
  2113. image: {
  2114. source: "./media/characters/fen/back.svg",
  2115. },
  2116. info: {
  2117. description: {
  2118. mode: "append",
  2119. text: "\n\nHe is not currently looking at you."
  2120. }
  2121. }
  2122. },
  2123. full: {
  2124. height: math.unit(1.85, "meter"),
  2125. weight: math.unit(3200, "lb"),
  2126. name: "Full",
  2127. image: {
  2128. source: "./media/characters/fen/full.svg",
  2129. extra: 1133/859,
  2130. bottom: 145/1278
  2131. },
  2132. info: {
  2133. description: {
  2134. mode: "append",
  2135. text: "\n\nMunch."
  2136. }
  2137. }
  2138. },
  2139. gooLounging: {
  2140. height: math.unit(4.53, "feet"),
  2141. weight: math.unit(3000, "lb"),
  2142. preyCapacity: math.unit(6, "people"),
  2143. name: "Goo (Lounging)",
  2144. image: {
  2145. source: "./media/characters/fen/goo-lounging.svg",
  2146. bottom: 116 / 613
  2147. }
  2148. },
  2149. lounging: {
  2150. height: math.unit(10.52, "feet"),
  2151. weight: math.unit(2400, "lb"),
  2152. name: "Lounging",
  2153. image: {
  2154. source: "./media/characters/fen/lounging.svg"
  2155. }
  2156. },
  2157. },
  2158. [
  2159. {
  2160. name: "Small",
  2161. height: math.unit(2.2428, "meter")
  2162. },
  2163. {
  2164. name: "Normal",
  2165. height: math.unit(12, "feet"),
  2166. default: true,
  2167. },
  2168. {
  2169. name: "Big",
  2170. height: math.unit(20, "feet")
  2171. },
  2172. {
  2173. name: "Minimacro",
  2174. height: math.unit(40, "feet"),
  2175. info: {
  2176. description: {
  2177. mode: "append",
  2178. text: "\n\nTOO DAMN BIG"
  2179. }
  2180. }
  2181. },
  2182. {
  2183. name: "Macro",
  2184. height: math.unit(100, "feet"),
  2185. info: {
  2186. description: {
  2187. mode: "append",
  2188. text: "\n\nTOO DAMN BIG"
  2189. }
  2190. }
  2191. },
  2192. {
  2193. name: "Megamacro",
  2194. height: math.unit(2, "miles")
  2195. },
  2196. {
  2197. name: "Gigamacro",
  2198. height: math.unit(10, "earths")
  2199. },
  2200. ]
  2201. ))
  2202. characterMakers.push(() => makeCharacter(
  2203. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2204. {
  2205. front: {
  2206. height: math.unit(183, "cm"),
  2207. weight: math.unit(80, "kg"),
  2208. name: "Front",
  2209. image: {
  2210. source: "./media/characters/sofia-fluttertail/front.svg",
  2211. bottom: 0.01,
  2212. extra: 2154 / 2081
  2213. }
  2214. },
  2215. frontAlt: {
  2216. height: math.unit(183, "cm"),
  2217. weight: math.unit(80, "kg"),
  2218. name: "Front (alt)",
  2219. image: {
  2220. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2221. }
  2222. },
  2223. back: {
  2224. height: math.unit(183, "cm"),
  2225. weight: math.unit(80, "kg"),
  2226. name: "Back",
  2227. image: {
  2228. source: "./media/characters/sofia-fluttertail/back.svg"
  2229. }
  2230. },
  2231. kneeling: {
  2232. height: math.unit(125, "cm"),
  2233. weight: math.unit(80, "kg"),
  2234. name: "Kneeling",
  2235. image: {
  2236. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2237. extra: 1033 / 977,
  2238. bottom: 23.7 / 1057
  2239. }
  2240. },
  2241. maw: {
  2242. height: math.unit(183 / 5, "cm"),
  2243. name: "Maw",
  2244. image: {
  2245. source: "./media/characters/sofia-fluttertail/maw.svg"
  2246. }
  2247. },
  2248. mawcloseup: {
  2249. height: math.unit(183 / 5 * 0.41, "cm"),
  2250. name: "Maw (Closeup)",
  2251. image: {
  2252. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2253. }
  2254. },
  2255. paws: {
  2256. height: math.unit(1.17, "feet"),
  2257. name: "Paws",
  2258. image: {
  2259. source: "./media/characters/sofia-fluttertail/paws.svg",
  2260. extra: 851 / 851,
  2261. bottom: 17 / 868
  2262. }
  2263. },
  2264. },
  2265. [
  2266. {
  2267. name: "Normal",
  2268. height: math.unit(1.83, "meter")
  2269. },
  2270. {
  2271. name: "Size Thief",
  2272. height: math.unit(18, "feet")
  2273. },
  2274. {
  2275. name: "50 Foot Collie",
  2276. height: math.unit(50, "feet")
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(96, "feet"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Megamerger",
  2285. height: math.unit(650, "feet")
  2286. },
  2287. ]
  2288. ))
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(7, "feet"),
  2294. weight: math.unit(100, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/march/front.svg",
  2298. extra: 1992/1851,
  2299. bottom: 39/2031
  2300. }
  2301. },
  2302. foot: {
  2303. height: math.unit(0.9, "feet"),
  2304. name: "Foot",
  2305. image: {
  2306. source: "./media/characters/march/foot.svg"
  2307. }
  2308. },
  2309. },
  2310. [
  2311. {
  2312. name: "Normal",
  2313. height: math.unit(7.9, "feet")
  2314. },
  2315. {
  2316. name: "Macro",
  2317. height: math.unit(220, "meters")
  2318. },
  2319. {
  2320. name: "Megamacro",
  2321. height: math.unit(2.98, "km"),
  2322. default: true
  2323. },
  2324. {
  2325. name: "Gigamacro",
  2326. height: math.unit(15963, "km")
  2327. },
  2328. {
  2329. name: "Teramacro",
  2330. height: math.unit(2980000000, "km")
  2331. },
  2332. {
  2333. name: "Examacro",
  2334. height: math.unit(250, "parsecs")
  2335. },
  2336. ]
  2337. ))
  2338. characterMakers.push(() => makeCharacter(
  2339. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2340. {
  2341. front: {
  2342. height: math.unit(6, "feet"),
  2343. weight: math.unit(60, "kg"),
  2344. name: "Front",
  2345. image: {
  2346. source: "./media/characters/noir/front.svg",
  2347. extra: 1,
  2348. bottom: 0.032
  2349. }
  2350. },
  2351. },
  2352. [
  2353. {
  2354. name: "Normal",
  2355. height: math.unit(6.6, "feet")
  2356. },
  2357. {
  2358. name: "Macro",
  2359. height: math.unit(500, "feet")
  2360. },
  2361. {
  2362. name: "Megamacro",
  2363. height: math.unit(2.5, "km"),
  2364. default: true
  2365. },
  2366. {
  2367. name: "Gigamacro",
  2368. height: math.unit(22500, "km")
  2369. },
  2370. {
  2371. name: "Teramacro",
  2372. height: math.unit(2500000000, "km")
  2373. },
  2374. {
  2375. name: "Examacro",
  2376. height: math.unit(200, "parsecs")
  2377. },
  2378. ]
  2379. ))
  2380. characterMakers.push(() => makeCharacter(
  2381. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2382. {
  2383. front: {
  2384. height: math.unit(7, "feet"),
  2385. weight: math.unit(100, "kg"),
  2386. name: "Front",
  2387. image: {
  2388. source: "./media/characters/okuri/front.svg",
  2389. extra: 739/665,
  2390. bottom: 39/778
  2391. }
  2392. },
  2393. back: {
  2394. height: math.unit(7, "feet"),
  2395. weight: math.unit(100, "kg"),
  2396. name: "Back",
  2397. image: {
  2398. source: "./media/characters/okuri/back.svg",
  2399. extra: 734/653,
  2400. bottom: 13/747
  2401. }
  2402. },
  2403. sitting: {
  2404. height: math.unit(2.95, "feet"),
  2405. weight: math.unit(100, "kg"),
  2406. name: "Sitting",
  2407. image: {
  2408. source: "./media/characters/okuri/sitting.svg",
  2409. extra: 370/318,
  2410. bottom: 99/469
  2411. }
  2412. },
  2413. },
  2414. [
  2415. {
  2416. name: "Smallest",
  2417. height: math.unit(5 + 2/12, "feet")
  2418. },
  2419. {
  2420. name: "Smaller",
  2421. height: math.unit(300, "feet")
  2422. },
  2423. {
  2424. name: "Small",
  2425. height: math.unit(1000, "feet")
  2426. },
  2427. {
  2428. name: "Macro",
  2429. height: math.unit(1, "mile")
  2430. },
  2431. {
  2432. name: "Mega Macro (Small)",
  2433. height: math.unit(20, "km")
  2434. },
  2435. {
  2436. name: "Mega Macro (Large)",
  2437. height: math.unit(600, "km")
  2438. },
  2439. {
  2440. name: "Giga Macro",
  2441. height: math.unit(10000, "km")
  2442. },
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(577560, "km"),
  2446. default: true
  2447. },
  2448. {
  2449. name: "Large",
  2450. height: math.unit(4, "galaxies")
  2451. },
  2452. {
  2453. name: "Largest",
  2454. height: math.unit(15, "multiverses")
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2460. {
  2461. front: {
  2462. height: math.unit(7, "feet"),
  2463. weight: math.unit(100, "kg"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/manny/front.svg",
  2467. extra: 1,
  2468. bottom: 0.06
  2469. }
  2470. },
  2471. back: {
  2472. height: math.unit(7, "feet"),
  2473. weight: math.unit(100, "kg"),
  2474. name: "Back",
  2475. image: {
  2476. source: "./media/characters/manny/back.svg",
  2477. extra: 1,
  2478. bottom: 0.014
  2479. }
  2480. },
  2481. },
  2482. [
  2483. {
  2484. name: "Normal",
  2485. height: math.unit(7, "feet"),
  2486. },
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(78, "feet"),
  2490. default: true
  2491. },
  2492. {
  2493. name: "Macro+",
  2494. height: math.unit(300, "meters")
  2495. },
  2496. {
  2497. name: "Macro++",
  2498. height: math.unit(2400, "meters")
  2499. },
  2500. {
  2501. name: "Megamacro",
  2502. height: math.unit(5167, "meters")
  2503. },
  2504. {
  2505. name: "Gigamacro",
  2506. height: math.unit(41769, "miles")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(7, "feet"),
  2515. weight: math.unit(100, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/adake/front-1.svg"
  2519. }
  2520. },
  2521. frontAlt: {
  2522. height: math.unit(7, "feet"),
  2523. weight: math.unit(100, "kg"),
  2524. name: "Front (Alt)",
  2525. image: {
  2526. source: "./media/characters/adake/front-2.svg",
  2527. extra: 1,
  2528. bottom: 0.01
  2529. }
  2530. },
  2531. back: {
  2532. height: math.unit(7, "feet"),
  2533. weight: math.unit(100, "kg"),
  2534. name: "Back",
  2535. image: {
  2536. source: "./media/characters/adake/back.svg",
  2537. }
  2538. },
  2539. kneel: {
  2540. height: math.unit(5.385, "feet"),
  2541. weight: math.unit(100, "kg"),
  2542. name: "Kneeling",
  2543. image: {
  2544. source: "./media/characters/adake/kneel.svg",
  2545. bottom: 0.052
  2546. }
  2547. },
  2548. },
  2549. [
  2550. {
  2551. name: "Normal",
  2552. height: math.unit(7, "feet"),
  2553. },
  2554. {
  2555. name: "Macro",
  2556. height: math.unit(78, "feet"),
  2557. default: true
  2558. },
  2559. {
  2560. name: "Macro+",
  2561. height: math.unit(300, "meters")
  2562. },
  2563. {
  2564. name: "Macro++",
  2565. height: math.unit(2400, "meters")
  2566. },
  2567. {
  2568. name: "Megamacro",
  2569. height: math.unit(5167, "meters")
  2570. },
  2571. {
  2572. name: "Gigamacro",
  2573. height: math.unit(41769, "miles")
  2574. },
  2575. ]
  2576. ))
  2577. characterMakers.push(() => makeCharacter(
  2578. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2579. {
  2580. front: {
  2581. height: math.unit(1.65, "meters"),
  2582. weight: math.unit(50, "kg"),
  2583. name: "Front",
  2584. image: {
  2585. source: "./media/characters/elijah/front.svg",
  2586. extra: 858 / 830,
  2587. bottom: 95.5 / 953.8559
  2588. }
  2589. },
  2590. back: {
  2591. height: math.unit(1.65, "meters"),
  2592. weight: math.unit(50, "kg"),
  2593. name: "Back",
  2594. image: {
  2595. source: "./media/characters/elijah/back.svg",
  2596. extra: 895 / 850,
  2597. bottom: 5.3 / 897.956
  2598. }
  2599. },
  2600. frontNsfw: {
  2601. height: math.unit(1.65, "meters"),
  2602. weight: math.unit(50, "kg"),
  2603. name: "Front (NSFW)",
  2604. image: {
  2605. source: "./media/characters/elijah/front-nsfw.svg",
  2606. extra: 858 / 830,
  2607. bottom: 95.5 / 953.8559
  2608. }
  2609. },
  2610. backNsfw: {
  2611. height: math.unit(1.65, "meters"),
  2612. weight: math.unit(50, "kg"),
  2613. name: "Back (NSFW)",
  2614. image: {
  2615. source: "./media/characters/elijah/back-nsfw.svg",
  2616. extra: 895 / 850,
  2617. bottom: 5.3 / 897.956
  2618. }
  2619. },
  2620. dick: {
  2621. height: math.unit(1, "feet"),
  2622. name: "Dick",
  2623. image: {
  2624. source: "./media/characters/elijah/dick.svg"
  2625. }
  2626. },
  2627. beakOpen: {
  2628. height: math.unit(1.25, "feet"),
  2629. name: "Beak (Open)",
  2630. image: {
  2631. source: "./media/characters/elijah/beak-open.svg"
  2632. }
  2633. },
  2634. beakShut: {
  2635. height: math.unit(1.25, "feet"),
  2636. name: "Beak (Shut)",
  2637. image: {
  2638. source: "./media/characters/elijah/beak-shut.svg"
  2639. }
  2640. },
  2641. footFlexing: {
  2642. height: math.unit(1.61, "feet"),
  2643. name: "Foot (Flexing)",
  2644. image: {
  2645. source: "./media/characters/elijah/foot-flexing.svg"
  2646. }
  2647. },
  2648. footStepping: {
  2649. height: math.unit(1.44, "feet"),
  2650. name: "Foot (Stepping)",
  2651. image: {
  2652. source: "./media/characters/elijah/foot-stepping.svg"
  2653. }
  2654. },
  2655. plantigradeLeg: {
  2656. height: math.unit(2.34, "feet"),
  2657. name: "Plantigrade Leg",
  2658. image: {
  2659. source: "./media/characters/elijah/plantigrade-leg.svg"
  2660. }
  2661. },
  2662. plantigradeFootLeft: {
  2663. height: math.unit(0.9, "feet"),
  2664. name: "Plantigrade Foot (Left)",
  2665. image: {
  2666. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2667. }
  2668. },
  2669. plantigradeFootRight: {
  2670. height: math.unit(0.9, "feet"),
  2671. name: "Plantigrade Foot (Right)",
  2672. image: {
  2673. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2674. }
  2675. },
  2676. },
  2677. [
  2678. {
  2679. name: "Normal",
  2680. height: math.unit(1.65, "meters")
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(55, "meters"),
  2685. default: true
  2686. },
  2687. {
  2688. name: "Macro+",
  2689. height: math.unit(105, "meters")
  2690. },
  2691. ]
  2692. ))
  2693. characterMakers.push(() => makeCharacter(
  2694. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2695. {
  2696. front: {
  2697. height: math.unit(7 + 2/12, "feet"),
  2698. weight: math.unit(320, "kg"),
  2699. name: "Front",
  2700. image: {
  2701. source: "./media/characters/rai/front.svg",
  2702. extra: 1802/1696,
  2703. bottom: 68/1870
  2704. }
  2705. },
  2706. frontDressed: {
  2707. height: math.unit(7 + 2/12, "feet"),
  2708. weight: math.unit(320, "kg"),
  2709. name: "Front (Dressed)",
  2710. image: {
  2711. source: "./media/characters/rai/front-dressed.svg",
  2712. extra: 1802/1696,
  2713. bottom: 68/1870
  2714. }
  2715. },
  2716. side: {
  2717. height: math.unit(7 + 2/12, "feet"),
  2718. weight: math.unit(320, "kg"),
  2719. name: "Side",
  2720. image: {
  2721. source: "./media/characters/rai/side.svg",
  2722. extra: 1789/1710,
  2723. bottom: 115/1904
  2724. }
  2725. },
  2726. back: {
  2727. height: math.unit(7 + 2/12, "feet"),
  2728. weight: math.unit(320, "kg"),
  2729. name: "Back",
  2730. image: {
  2731. source: "./media/characters/rai/back.svg",
  2732. extra: 1770/1707,
  2733. bottom: 28/1798
  2734. }
  2735. },
  2736. feral: {
  2737. height: math.unit(9.5, "feet"),
  2738. weight: math.unit(640, "kg"),
  2739. name: "Feral",
  2740. image: {
  2741. source: "./media/characters/rai/feral.svg",
  2742. extra: 945/553,
  2743. bottom: 176/1121
  2744. }
  2745. },
  2746. dragon: {
  2747. height: math.unit(23, "feet"),
  2748. weight: math.unit(50000, "lb"),
  2749. name: "Dragon",
  2750. image: {
  2751. source: "./media/characters/rai/dragon.svg",
  2752. extra: 2498 / 2030,
  2753. bottom: 85.2 / 2584
  2754. }
  2755. },
  2756. maw: {
  2757. height: math.unit(1.69, "feet"),
  2758. name: "Maw",
  2759. image: {
  2760. source: "./media/characters/rai/maw.svg"
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Normal",
  2767. height: math.unit(7 + 2/12, "feet")
  2768. },
  2769. {
  2770. name: "Big",
  2771. height: math.unit(11, "feet")
  2772. },
  2773. {
  2774. name: "Macro",
  2775. height: math.unit(302, "feet"),
  2776. default: true
  2777. },
  2778. ]
  2779. ))
  2780. characterMakers.push(() => makeCharacter(
  2781. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2782. {
  2783. frontDressed: {
  2784. height: math.unit(216, "feet"),
  2785. weight: math.unit(7000000, "lb"),
  2786. name: "Front (Dressed)",
  2787. image: {
  2788. source: "./media/characters/jazzy/front-dressed.svg",
  2789. extra: 2738 / 2651,
  2790. bottom: 41.8 / 2786
  2791. }
  2792. },
  2793. backDressed: {
  2794. height: math.unit(216, "feet"),
  2795. weight: math.unit(7000000, "lb"),
  2796. name: "Back (Dressed)",
  2797. image: {
  2798. source: "./media/characters/jazzy/back-dressed.svg",
  2799. extra: 2775 / 2673,
  2800. bottom: 36.8 / 2817
  2801. }
  2802. },
  2803. front: {
  2804. height: math.unit(216, "feet"),
  2805. weight: math.unit(7000000, "lb"),
  2806. name: "Front",
  2807. image: {
  2808. source: "./media/characters/jazzy/front.svg",
  2809. extra: 2738 / 2651,
  2810. bottom: 41.8 / 2786
  2811. }
  2812. },
  2813. back: {
  2814. height: math.unit(216, "feet"),
  2815. weight: math.unit(7000000, "lb"),
  2816. name: "Back",
  2817. image: {
  2818. source: "./media/characters/jazzy/back.svg",
  2819. extra: 2775 / 2673,
  2820. bottom: 36.8 / 2817
  2821. }
  2822. },
  2823. maw: {
  2824. height: math.unit(20, "feet"),
  2825. name: "Maw",
  2826. image: {
  2827. source: "./media/characters/jazzy/maw.svg"
  2828. }
  2829. },
  2830. paws: {
  2831. height: math.unit(27.5, "feet"),
  2832. name: "Paws",
  2833. image: {
  2834. source: "./media/characters/jazzy/paws.svg"
  2835. }
  2836. },
  2837. eye: {
  2838. height: math.unit(4.4, "feet"),
  2839. name: "Eye",
  2840. image: {
  2841. source: "./media/characters/jazzy/eye.svg"
  2842. }
  2843. },
  2844. droneOffense: {
  2845. height: math.unit(9.5, "inches"),
  2846. name: "Drone (Offense)",
  2847. image: {
  2848. source: "./media/characters/jazzy/drone-offense.svg"
  2849. }
  2850. },
  2851. droneRecon: {
  2852. height: math.unit(9.5, "inches"),
  2853. name: "Drone (Recon)",
  2854. image: {
  2855. source: "./media/characters/jazzy/drone-recon.svg"
  2856. }
  2857. },
  2858. droneDefense: {
  2859. height: math.unit(9.5, "inches"),
  2860. name: "Drone (Defense)",
  2861. image: {
  2862. source: "./media/characters/jazzy/drone-defense.svg"
  2863. }
  2864. },
  2865. },
  2866. [
  2867. {
  2868. name: "Macro",
  2869. height: math.unit(216, "feet"),
  2870. default: true
  2871. },
  2872. ]
  2873. ))
  2874. characterMakers.push(() => makeCharacter(
  2875. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2876. {
  2877. front: {
  2878. height: math.unit(9 + 6/12, "feet"),
  2879. weight: math.unit(700, "lb"),
  2880. name: "Front",
  2881. image: {
  2882. source: "./media/characters/flamm/front.svg",
  2883. extra: 1751/1632,
  2884. bottom: 46/1797
  2885. }
  2886. },
  2887. buff: {
  2888. height: math.unit(9 + 6/12, "feet"),
  2889. weight: math.unit(950, "lb"),
  2890. name: "Buff",
  2891. image: {
  2892. source: "./media/characters/flamm/buff.svg",
  2893. extra: 3018/2874,
  2894. bottom: 221/3239
  2895. }
  2896. },
  2897. },
  2898. [
  2899. {
  2900. name: "Normal",
  2901. height: math.unit(9.5, "feet")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(200, "feet"),
  2906. default: true
  2907. },
  2908. ]
  2909. ))
  2910. characterMakers.push(() => makeCharacter(
  2911. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2912. {
  2913. front: {
  2914. height: math.unit(5 + 3/12, "feet"),
  2915. weight: math.unit(60, "kg"),
  2916. name: "Front",
  2917. image: {
  2918. source: "./media/characters/zephiro/front.svg",
  2919. extra: 2309 / 2162,
  2920. bottom: 0.069
  2921. }
  2922. },
  2923. side: {
  2924. height: math.unit(5 + 3/12, "feet"),
  2925. weight: math.unit(60, "kg"),
  2926. name: "Side",
  2927. image: {
  2928. source: "./media/characters/zephiro/side.svg",
  2929. extra: 2403 / 2279,
  2930. bottom: 0.015
  2931. }
  2932. },
  2933. back: {
  2934. height: math.unit(5 + 3/12, "feet"),
  2935. weight: math.unit(60, "kg"),
  2936. name: "Back",
  2937. image: {
  2938. source: "./media/characters/zephiro/back.svg",
  2939. extra: 2373 / 2244,
  2940. bottom: 0.013
  2941. }
  2942. },
  2943. hand: {
  2944. height: math.unit(0.68, "feet"),
  2945. name: "Hand",
  2946. image: {
  2947. source: "./media/characters/zephiro/hand.svg"
  2948. }
  2949. },
  2950. paw: {
  2951. height: math.unit(1, "feet"),
  2952. name: "Paw",
  2953. image: {
  2954. source: "./media/characters/zephiro/paw.svg"
  2955. }
  2956. },
  2957. beans: {
  2958. height: math.unit(0.93, "feet"),
  2959. name: "Beans",
  2960. image: {
  2961. source: "./media/characters/zephiro/beans.svg"
  2962. }
  2963. },
  2964. },
  2965. [
  2966. {
  2967. name: "Micro",
  2968. height: math.unit(3, "inches")
  2969. },
  2970. {
  2971. name: "Normal",
  2972. height: math.unit(5 + 3 / 12, "feet"),
  2973. default: true
  2974. },
  2975. {
  2976. name: "Macro",
  2977. height: math.unit(118, "feet")
  2978. },
  2979. ]
  2980. ))
  2981. characterMakers.push(() => makeCharacter(
  2982. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2983. {
  2984. front: {
  2985. height: math.unit(5, "feet"),
  2986. weight: math.unit(90, "kg"),
  2987. name: "Front",
  2988. image: {
  2989. source: "./media/characters/fory/front.svg",
  2990. extra: 2862 / 2674,
  2991. bottom: 180 / 3043.8
  2992. }
  2993. },
  2994. back: {
  2995. height: math.unit(5, "feet"),
  2996. weight: math.unit(90, "kg"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/fory/back.svg",
  3000. extra: 2962 / 2791,
  3001. bottom: 106 / 3071.8
  3002. }
  3003. },
  3004. foot: {
  3005. height: math.unit(2.14, "feet"),
  3006. name: "Foot",
  3007. image: {
  3008. source: "./media/characters/fory/foot.svg"
  3009. }
  3010. },
  3011. },
  3012. [
  3013. {
  3014. name: "Normal",
  3015. height: math.unit(5, "feet")
  3016. },
  3017. {
  3018. name: "Macro",
  3019. height: math.unit(50, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(10, "miles")
  3025. },
  3026. {
  3027. name: "Gigamacro",
  3028. height: math.unit(5, "earths")
  3029. },
  3030. ]
  3031. ))
  3032. characterMakers.push(() => makeCharacter(
  3033. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3034. {
  3035. front: {
  3036. height: math.unit(7, "feet"),
  3037. weight: math.unit(90, "kg"),
  3038. name: "Front",
  3039. image: {
  3040. source: "./media/characters/kurrikage/front.svg",
  3041. extra: 1845/1733,
  3042. bottom: 119/1964
  3043. }
  3044. },
  3045. back: {
  3046. height: math.unit(7, "feet"),
  3047. weight: math.unit(90, "kg"),
  3048. name: "Back",
  3049. image: {
  3050. source: "./media/characters/kurrikage/back.svg",
  3051. extra: 1790/1677,
  3052. bottom: 61/1851
  3053. }
  3054. },
  3055. dressed: {
  3056. height: math.unit(7, "feet"),
  3057. weight: math.unit(90, "kg"),
  3058. name: "Dressed",
  3059. image: {
  3060. source: "./media/characters/kurrikage/dressed.svg",
  3061. extra: 1845/1733,
  3062. bottom: 119/1964
  3063. }
  3064. },
  3065. foot: {
  3066. height: math.unit(1.5, "feet"),
  3067. name: "Foot",
  3068. image: {
  3069. source: "./media/characters/kurrikage/foot.svg"
  3070. }
  3071. },
  3072. staff: {
  3073. height: math.unit(6.7, "feet"),
  3074. name: "Staff",
  3075. image: {
  3076. source: "./media/characters/kurrikage/staff.svg"
  3077. }
  3078. },
  3079. peek: {
  3080. height: math.unit(1.05, "feet"),
  3081. name: "Peeking",
  3082. image: {
  3083. source: "./media/characters/kurrikage/peek.svg",
  3084. bottom: 0.08
  3085. }
  3086. },
  3087. },
  3088. [
  3089. {
  3090. name: "Normal",
  3091. height: math.unit(12, "feet"),
  3092. default: true
  3093. },
  3094. {
  3095. name: "Big",
  3096. height: math.unit(20, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(500, "feet")
  3101. },
  3102. {
  3103. name: "Megamacro",
  3104. height: math.unit(20, "miles")
  3105. },
  3106. ]
  3107. ))
  3108. characterMakers.push(() => makeCharacter(
  3109. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3110. {
  3111. front: {
  3112. height: math.unit(6, "feet"),
  3113. weight: math.unit(75, "kg"),
  3114. name: "Front",
  3115. image: {
  3116. source: "./media/characters/shingo/front.svg",
  3117. extra: 1900/1825,
  3118. bottom: 82/1982
  3119. }
  3120. },
  3121. side: {
  3122. height: math.unit(6, "feet"),
  3123. weight: math.unit(75, "kg"),
  3124. name: "Side",
  3125. image: {
  3126. source: "./media/characters/shingo/side.svg",
  3127. extra: 1930/1865,
  3128. bottom: 16/1946
  3129. }
  3130. },
  3131. back: {
  3132. height: math.unit(6, "feet"),
  3133. weight: math.unit(75, "kg"),
  3134. name: "Back",
  3135. image: {
  3136. source: "./media/characters/shingo/back.svg",
  3137. extra: 1922/1852,
  3138. bottom: 16/1938
  3139. }
  3140. },
  3141. frontDressed: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(150, "lb"),
  3144. name: "Front-dressed",
  3145. image: {
  3146. source: "./media/characters/shingo/front-dressed.svg",
  3147. extra: 1900/1825,
  3148. bottom: 82/1982
  3149. }
  3150. },
  3151. paw: {
  3152. height: math.unit(1.29, "feet"),
  3153. name: "Paw",
  3154. image: {
  3155. source: "./media/characters/shingo/paw.svg"
  3156. }
  3157. },
  3158. hand: {
  3159. height: math.unit(1.07, "feet"),
  3160. name: "Hand",
  3161. image: {
  3162. source: "./media/characters/shingo/hand.svg"
  3163. }
  3164. },
  3165. frontAlt: {
  3166. height: math.unit(6, "feet"),
  3167. weight: math.unit(75, "kg"),
  3168. name: "Front (Alt)",
  3169. image: {
  3170. source: "./media/characters/shingo/front-alt.svg",
  3171. extra: 3511 / 3338,
  3172. bottom: 0.005
  3173. }
  3174. },
  3175. frontAlt2: {
  3176. height: math.unit(6, "feet"),
  3177. weight: math.unit(75, "kg"),
  3178. name: "Front (Alt 2)",
  3179. image: {
  3180. source: "./media/characters/shingo/front-alt-2.svg",
  3181. extra: 706/681,
  3182. bottom: 11/717
  3183. }
  3184. },
  3185. pawAlt: {
  3186. height: math.unit(1, "feet"),
  3187. name: "Paw (Alt)",
  3188. image: {
  3189. source: "./media/characters/shingo/paw-alt.svg"
  3190. }
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Micro",
  3196. height: math.unit(4, "inches")
  3197. },
  3198. {
  3199. name: "Normal",
  3200. height: math.unit(6, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Macro",
  3205. height: math.unit(108, "feet")
  3206. },
  3207. {
  3208. name: "Macro+",
  3209. height: math.unit(1500, "feet")
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3215. {
  3216. side: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(75, "kg"),
  3219. name: "Side",
  3220. image: {
  3221. source: "./media/characters/aigey/side.svg"
  3222. }
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(200, "feet"),
  3229. default: true
  3230. },
  3231. {
  3232. name: "Megamacro",
  3233. height: math.unit(100, "miles")
  3234. },
  3235. ]
  3236. )
  3237. )
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3240. {
  3241. front: {
  3242. height: math.unit(5 + 5 / 12, "feet"),
  3243. weight: math.unit(75, "kg"),
  3244. name: "Front",
  3245. image: {
  3246. source: "./media/characters/natasha/front.svg",
  3247. extra: 859 / 824,
  3248. bottom: 23 / 879.6
  3249. }
  3250. },
  3251. frontNsfw: {
  3252. height: math.unit(5 + 5 / 12, "feet"),
  3253. weight: math.unit(75, "kg"),
  3254. name: "Front (NSFW)",
  3255. image: {
  3256. source: "./media/characters/natasha/front-nsfw.svg",
  3257. extra: 859 / 824,
  3258. bottom: 23 / 879.6
  3259. }
  3260. },
  3261. frontErect: {
  3262. height: math.unit(5 + 5 / 12, "feet"),
  3263. weight: math.unit(75, "kg"),
  3264. name: "Front (Erect)",
  3265. image: {
  3266. source: "./media/characters/natasha/front-erect.svg",
  3267. extra: 859 / 824,
  3268. bottom: 23 / 879.6
  3269. }
  3270. },
  3271. back: {
  3272. height: math.unit(5 + 5 / 12, "feet"),
  3273. weight: math.unit(75, "kg"),
  3274. name: "Back",
  3275. image: {
  3276. source: "./media/characters/natasha/back.svg",
  3277. extra: 887.9 / 852.6,
  3278. bottom: 9.7 / 896.4
  3279. }
  3280. },
  3281. backAlt: {
  3282. height: math.unit(5 + 5 / 12, "feet"),
  3283. weight: math.unit(75, "kg"),
  3284. name: "Back (Alt)",
  3285. image: {
  3286. source: "./media/characters/natasha/back-alt.svg",
  3287. extra: 1236.7 / 1192,
  3288. bottom: 22.3 / 1258.2
  3289. }
  3290. },
  3291. dick: {
  3292. height: math.unit(1.772, "feet"),
  3293. name: "Dick",
  3294. image: {
  3295. source: "./media/characters/natasha/dick.svg"
  3296. }
  3297. },
  3298. paw: {
  3299. height: math.unit(0.250, "meters"),
  3300. name: "Paw",
  3301. image: {
  3302. source: "./media/characters/natasha/paw.svg"
  3303. },
  3304. extraAttributes: {
  3305. "toeSize": {
  3306. name: "Toe Size",
  3307. power: 2,
  3308. type: "area",
  3309. base: math.unit(0.0024, "m^2")
  3310. },
  3311. "padSize": {
  3312. name: "Pad Size",
  3313. power: 2,
  3314. type: "area",
  3315. base: math.unit(0.00889, "m^2")
  3316. },
  3317. "pawSize": {
  3318. name: "Paw Size",
  3319. power: 2,
  3320. type: "area",
  3321. base: math.unit(0.023667, "m^2")
  3322. },
  3323. }
  3324. },
  3325. },
  3326. [
  3327. {
  3328. name: "Normal",
  3329. height: math.unit(5 + 5 / 12, "feet")
  3330. },
  3331. {
  3332. name: "Large",
  3333. height: math.unit(12, "feet")
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(100, "feet"),
  3338. default: true
  3339. },
  3340. {
  3341. name: "Macro+",
  3342. height: math.unit(260, "feet")
  3343. },
  3344. {
  3345. name: "Macro++",
  3346. height: math.unit(1, "mile")
  3347. },
  3348. ]
  3349. ))
  3350. characterMakers.push(() => makeCharacter(
  3351. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3352. {
  3353. front: {
  3354. height: math.unit(6, "feet"),
  3355. weight: math.unit(75, "kg"),
  3356. name: "Front",
  3357. image: {
  3358. source: "./media/characters/malik/front.svg"
  3359. }
  3360. },
  3361. side: {
  3362. height: math.unit(6, "feet"),
  3363. weight: math.unit(75, "kg"),
  3364. name: "Side",
  3365. image: {
  3366. source: "./media/characters/malik/side.svg",
  3367. extra: 1.1539
  3368. }
  3369. },
  3370. back: {
  3371. height: math.unit(6, "feet"),
  3372. weight: math.unit(75, "kg"),
  3373. name: "Back",
  3374. image: {
  3375. source: "./media/characters/malik/back.svg"
  3376. }
  3377. },
  3378. },
  3379. [
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(156, "feet"),
  3383. default: true
  3384. },
  3385. {
  3386. name: "Macro+",
  3387. height: math.unit(1188, "feet")
  3388. },
  3389. ]
  3390. ))
  3391. characterMakers.push(() => makeCharacter(
  3392. { name: "Sefer", species: ["carbuncle"], 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/sefer/front.svg",
  3400. extra: 848 / 659,
  3401. bottom: 28.3 / 876.442
  3402. }
  3403. },
  3404. back: {
  3405. height: math.unit(6, "feet"),
  3406. weight: math.unit(75, "kg"),
  3407. name: "Back",
  3408. image: {
  3409. source: "./media/characters/sefer/back.svg",
  3410. extra: 864 / 695,
  3411. bottom: 10 / 871
  3412. }
  3413. },
  3414. frontDressed: {
  3415. height: math.unit(6, "feet"),
  3416. weight: math.unit(75, "kg"),
  3417. name: "Front (Dressed)",
  3418. image: {
  3419. source: "./media/characters/sefer/front-dressed.svg",
  3420. extra: 839 / 653,
  3421. bottom: 37.6 / 878
  3422. }
  3423. },
  3424. },
  3425. [
  3426. {
  3427. name: "Normal",
  3428. height: math.unit(6, "feet"),
  3429. default: true
  3430. },
  3431. ]
  3432. ))
  3433. characterMakers.push(() => makeCharacter(
  3434. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3435. {
  3436. body: {
  3437. height: math.unit(2.2428, "meter"),
  3438. weight: math.unit(124.738, "kg"),
  3439. name: "Body",
  3440. image: {
  3441. extra: 1225 / 1050,
  3442. source: "./media/characters/north/front.svg"
  3443. }
  3444. }
  3445. },
  3446. [
  3447. {
  3448. name: "Micro",
  3449. height: math.unit(4, "inches")
  3450. },
  3451. {
  3452. name: "Macro",
  3453. height: math.unit(63, "meters")
  3454. },
  3455. {
  3456. name: "Megamacro",
  3457. height: math.unit(101, "miles"),
  3458. default: true
  3459. }
  3460. ]
  3461. ))
  3462. characterMakers.push(() => makeCharacter(
  3463. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3464. {
  3465. angled: {
  3466. height: math.unit(4, "meter"),
  3467. weight: math.unit(150, "kg"),
  3468. name: "Angled",
  3469. image: {
  3470. source: "./media/characters/talan/angled-sfw.svg",
  3471. bottom: 29 / 3734
  3472. }
  3473. },
  3474. angledNsfw: {
  3475. height: math.unit(4, "meter"),
  3476. weight: math.unit(150, "kg"),
  3477. name: "Angled (NSFW)",
  3478. image: {
  3479. source: "./media/characters/talan/angled-nsfw.svg",
  3480. bottom: 29 / 3734
  3481. }
  3482. },
  3483. frontNsfw: {
  3484. height: math.unit(4, "meter"),
  3485. weight: math.unit(150, "kg"),
  3486. name: "Front (NSFW)",
  3487. image: {
  3488. source: "./media/characters/talan/front-nsfw.svg",
  3489. bottom: 29 / 3734
  3490. }
  3491. },
  3492. sideNsfw: {
  3493. height: math.unit(4, "meter"),
  3494. weight: math.unit(150, "kg"),
  3495. name: "Side (NSFW)",
  3496. image: {
  3497. source: "./media/characters/talan/side-nsfw.svg",
  3498. bottom: 29 / 3734
  3499. }
  3500. },
  3501. back: {
  3502. height: math.unit(4, "meter"),
  3503. weight: math.unit(150, "kg"),
  3504. name: "Back",
  3505. image: {
  3506. source: "./media/characters/talan/back.svg"
  3507. }
  3508. },
  3509. dickBottom: {
  3510. height: math.unit(0.621, "meter"),
  3511. name: "Dick (Bottom)",
  3512. image: {
  3513. source: "./media/characters/talan/dick-bottom.svg"
  3514. }
  3515. },
  3516. dickTop: {
  3517. height: math.unit(0.621, "meter"),
  3518. name: "Dick (Top)",
  3519. image: {
  3520. source: "./media/characters/talan/dick-top.svg"
  3521. }
  3522. },
  3523. dickSide: {
  3524. height: math.unit(0.305, "meter"),
  3525. name: "Dick (Side)",
  3526. image: {
  3527. source: "./media/characters/talan/dick-side.svg"
  3528. }
  3529. },
  3530. dickFront: {
  3531. height: math.unit(0.305, "meter"),
  3532. name: "Dick (Front)",
  3533. image: {
  3534. source: "./media/characters/talan/dick-front.svg"
  3535. }
  3536. },
  3537. },
  3538. [
  3539. {
  3540. name: "Normal",
  3541. height: math.unit(4, "meters")
  3542. },
  3543. {
  3544. name: "Macro",
  3545. height: math.unit(100, "meters")
  3546. },
  3547. {
  3548. name: "Megamacro",
  3549. height: math.unit(2, "miles"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Gigamacro",
  3554. height: math.unit(5000, "miles")
  3555. },
  3556. {
  3557. name: "Teramacro",
  3558. height: math.unit(100, "parsecs")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(90, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/gael'rathus/front.svg"
  3571. }
  3572. },
  3573. frontAlt: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(90, "kg"),
  3576. name: "Front (alt)",
  3577. image: {
  3578. source: "./media/characters/gael'rathus/front-alt.svg"
  3579. }
  3580. },
  3581. frontAlt2: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(90, "kg"),
  3584. name: "Front (alt 2)",
  3585. image: {
  3586. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3587. }
  3588. }
  3589. },
  3590. [
  3591. {
  3592. name: "Normal",
  3593. height: math.unit(9, "feet"),
  3594. default: true
  3595. },
  3596. {
  3597. name: "Large",
  3598. height: math.unit(25, "feet")
  3599. },
  3600. {
  3601. name: "Macro",
  3602. height: math.unit(0.25, "miles")
  3603. },
  3604. {
  3605. name: "Megamacro",
  3606. height: math.unit(10, "miles")
  3607. }
  3608. ]
  3609. ))
  3610. characterMakers.push(() => makeCharacter(
  3611. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3612. {
  3613. side: {
  3614. height: math.unit(2, "meter"),
  3615. weight: math.unit(140, "kg"),
  3616. name: "Side",
  3617. image: {
  3618. source: "./media/characters/sosha/side.svg",
  3619. extra: 1170/1006,
  3620. bottom: 94/1264
  3621. }
  3622. },
  3623. maw: {
  3624. height: math.unit(2.87, "feet"),
  3625. name: "Maw",
  3626. image: {
  3627. source: "./media/characters/sosha/maw.svg",
  3628. extra: 966/865,
  3629. bottom: 0/966
  3630. }
  3631. },
  3632. cooch: {
  3633. height: math.unit(5.6, "feet"),
  3634. name: "Cooch",
  3635. image: {
  3636. source: "./media/characters/sosha/cooch.svg"
  3637. }
  3638. },
  3639. },
  3640. [
  3641. {
  3642. name: "Normal",
  3643. height: math.unit(12, "feet"),
  3644. default: true
  3645. }
  3646. ]
  3647. ))
  3648. characterMakers.push(() => makeCharacter(
  3649. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3650. {
  3651. side: {
  3652. height: math.unit(5 + 5 / 12, "feet"),
  3653. weight: math.unit(170, "kg"),
  3654. name: "Side",
  3655. image: {
  3656. source: "./media/characters/runnola/side.svg",
  3657. extra: 741 / 448,
  3658. bottom: 0.05
  3659. }
  3660. },
  3661. },
  3662. [
  3663. {
  3664. name: "Small",
  3665. height: math.unit(3, "feet")
  3666. },
  3667. {
  3668. name: "Normal",
  3669. height: math.unit(5 + 5 / 12, "feet"),
  3670. default: true
  3671. },
  3672. {
  3673. name: "Big",
  3674. height: math.unit(10, "feet")
  3675. },
  3676. ]
  3677. ))
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3680. {
  3681. front: {
  3682. height: math.unit(2, "meter"),
  3683. weight: math.unit(50, "kg"),
  3684. name: "Front",
  3685. image: {
  3686. source: "./media/characters/kurribird/front.svg",
  3687. bottom: 0.015
  3688. }
  3689. },
  3690. frontAlt: {
  3691. height: math.unit(1.5, "meter"),
  3692. weight: math.unit(50, "kg"),
  3693. name: "Front (Alt)",
  3694. image: {
  3695. source: "./media/characters/kurribird/front-alt.svg",
  3696. extra: 1.45
  3697. }
  3698. },
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(7, "feet")
  3704. },
  3705. {
  3706. name: "Big",
  3707. height: math.unit(12, "feet"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Macro",
  3712. height: math.unit(1500, "feet")
  3713. },
  3714. {
  3715. name: "Megamacro",
  3716. height: math.unit(2, "miles")
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(2, "meter"),
  3725. weight: math.unit(80, "kg"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/elbial/front.svg",
  3729. extra: 1643 / 1556,
  3730. bottom: 60.2 / 1696
  3731. }
  3732. },
  3733. side: {
  3734. height: math.unit(2, "meter"),
  3735. weight: math.unit(80, "kg"),
  3736. name: "Side",
  3737. image: {
  3738. source: "./media/characters/elbial/side.svg",
  3739. extra: 1601/1528,
  3740. bottom: 97/1698
  3741. }
  3742. },
  3743. back: {
  3744. height: math.unit(2, "meter"),
  3745. weight: math.unit(80, "kg"),
  3746. name: "Back",
  3747. image: {
  3748. source: "./media/characters/elbial/back.svg",
  3749. extra: 1653/1569,
  3750. bottom: 20/1673
  3751. }
  3752. },
  3753. frontDressed: {
  3754. height: math.unit(2, "meter"),
  3755. weight: math.unit(80, "kg"),
  3756. name: "Front (Dressed)",
  3757. image: {
  3758. source: "./media/characters/elbial/front-dressed.svg",
  3759. extra: 1638/1569,
  3760. bottom: 70/1708
  3761. }
  3762. },
  3763. genitals: {
  3764. height: math.unit(2 / 3.367, "meter"),
  3765. name: "Genitals",
  3766. image: {
  3767. source: "./media/characters/elbial/genitals.svg"
  3768. }
  3769. },
  3770. },
  3771. [
  3772. {
  3773. name: "Large",
  3774. height: math.unit(100, "feet")
  3775. },
  3776. {
  3777. name: "Macro",
  3778. height: math.unit(500, "feet"),
  3779. default: true
  3780. },
  3781. {
  3782. name: "Megamacro",
  3783. height: math.unit(10, "miles")
  3784. },
  3785. {
  3786. name: "Gigamacro",
  3787. height: math.unit(25000, "miles")
  3788. },
  3789. {
  3790. name: "Full-Size",
  3791. height: math.unit(8000000, "gigaparsecs")
  3792. }
  3793. ]
  3794. ))
  3795. characterMakers.push(() => makeCharacter(
  3796. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3797. {
  3798. front: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(60, "kg"),
  3801. name: "Front",
  3802. image: {
  3803. source: "./media/characters/noah/front.svg"
  3804. }
  3805. },
  3806. talons: {
  3807. height: math.unit(0.315, "meter"),
  3808. name: "Talons",
  3809. image: {
  3810. source: "./media/characters/noah/talons.svg"
  3811. }
  3812. }
  3813. },
  3814. [
  3815. {
  3816. name: "Large",
  3817. height: math.unit(50, "feet")
  3818. },
  3819. {
  3820. name: "Macro",
  3821. height: math.unit(750, "feet"),
  3822. default: true
  3823. },
  3824. {
  3825. name: "Megamacro",
  3826. height: math.unit(50, "miles")
  3827. },
  3828. {
  3829. name: "Gigamacro",
  3830. height: math.unit(100000, "miles")
  3831. },
  3832. {
  3833. name: "Full-Size",
  3834. height: math.unit(3000000000, "miles")
  3835. }
  3836. ]
  3837. ))
  3838. characterMakers.push(() => makeCharacter(
  3839. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3840. {
  3841. front: {
  3842. height: math.unit(2, "meter"),
  3843. weight: math.unit(80, "kg"),
  3844. name: "Front",
  3845. image: {
  3846. source: "./media/characters/natalya/front.svg"
  3847. }
  3848. },
  3849. back: {
  3850. height: math.unit(2, "meter"),
  3851. weight: math.unit(80, "kg"),
  3852. name: "Back",
  3853. image: {
  3854. source: "./media/characters/natalya/back.svg"
  3855. }
  3856. }
  3857. },
  3858. [
  3859. {
  3860. name: "Normal",
  3861. height: math.unit(150, "feet"),
  3862. default: true
  3863. },
  3864. {
  3865. name: "Megamacro",
  3866. height: math.unit(5, "miles")
  3867. },
  3868. {
  3869. name: "Full-Size",
  3870. height: math.unit(600, "kiloparsecs")
  3871. }
  3872. ]
  3873. ))
  3874. characterMakers.push(() => makeCharacter(
  3875. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3876. {
  3877. front: {
  3878. height: math.unit(2, "meter"),
  3879. weight: math.unit(50, "kg"),
  3880. name: "Front",
  3881. image: {
  3882. source: "./media/characters/erestrebah/front.svg",
  3883. extra: 1262/1162,
  3884. bottom: 96/1358
  3885. }
  3886. },
  3887. back: {
  3888. height: math.unit(2, "meter"),
  3889. weight: math.unit(50, "kg"),
  3890. name: "Back",
  3891. image: {
  3892. source: "./media/characters/erestrebah/back.svg",
  3893. extra: 1257/1139,
  3894. bottom: 13/1270
  3895. }
  3896. },
  3897. wing: {
  3898. height: math.unit(2, "meter"),
  3899. weight: math.unit(50, "kg"),
  3900. name: "Wing",
  3901. image: {
  3902. source: "./media/characters/erestrebah/wing.svg",
  3903. extra: 1262/1162,
  3904. bottom: 96/1358
  3905. }
  3906. },
  3907. mouth: {
  3908. height: math.unit(0.39, "feet"),
  3909. name: "Mouth",
  3910. image: {
  3911. source: "./media/characters/erestrebah/mouth.svg"
  3912. }
  3913. }
  3914. },
  3915. [
  3916. {
  3917. name: "Normal",
  3918. height: math.unit(10, "feet")
  3919. },
  3920. {
  3921. name: "Large",
  3922. height: math.unit(50, "feet"),
  3923. default: true
  3924. },
  3925. {
  3926. name: "Macro",
  3927. height: math.unit(300, "feet")
  3928. },
  3929. {
  3930. name: "Macro+",
  3931. height: math.unit(750, "feet")
  3932. },
  3933. {
  3934. name: "Megamacro",
  3935. height: math.unit(3, "miles")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(2, "meter"),
  3944. weight: math.unit(80, "kg"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/jennifer/front.svg",
  3948. bottom: 0.11,
  3949. extra: 1.16
  3950. }
  3951. },
  3952. frontAlt: {
  3953. height: math.unit(2, "meter"),
  3954. weight: math.unit(80, "kg"),
  3955. name: "Front (Alt)",
  3956. image: {
  3957. source: "./media/characters/jennifer/front-alt.svg"
  3958. }
  3959. }
  3960. },
  3961. [
  3962. {
  3963. name: "Canon Height",
  3964. height: math.unit(120, "feet"),
  3965. default: true
  3966. },
  3967. {
  3968. name: "Macro+",
  3969. height: math.unit(300, "feet")
  3970. },
  3971. {
  3972. name: "Megamacro",
  3973. height: math.unit(20000, "feet")
  3974. }
  3975. ]
  3976. ))
  3977. characterMakers.push(() => makeCharacter(
  3978. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3979. {
  3980. front: {
  3981. height: math.unit(2, "meter"),
  3982. weight: math.unit(50, "kg"),
  3983. name: "Front",
  3984. image: {
  3985. source: "./media/characters/kalista/front.svg",
  3986. extra: 1314/1145,
  3987. bottom: 101/1415
  3988. }
  3989. },
  3990. back: {
  3991. height: math.unit(2, "meter"),
  3992. weight: math.unit(50, "kg"),
  3993. name: "Back",
  3994. image: {
  3995. source: "./media/characters/kalista/back.svg",
  3996. extra: 1366 / 1156,
  3997. bottom: 33.9 / 1362.78
  3998. }
  3999. }
  4000. },
  4001. [
  4002. {
  4003. name: "Uncomfortably Small",
  4004. height: math.unit(10, "feet")
  4005. },
  4006. {
  4007. name: "Small",
  4008. height: math.unit(30, "feet")
  4009. },
  4010. {
  4011. name: "Macro",
  4012. height: math.unit(100, "feet"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Macro+",
  4017. height: math.unit(2000, "feet")
  4018. },
  4019. {
  4020. name: "True Form",
  4021. height: math.unit(8924, "miles")
  4022. }
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4027. {
  4028. front: {
  4029. height: math.unit(2, "meter"),
  4030. weight: math.unit(120, "kg"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/ggv/front.svg"
  4034. }
  4035. },
  4036. side: {
  4037. height: math.unit(2, "meter"),
  4038. weight: math.unit(120, "kg"),
  4039. name: "Side",
  4040. image: {
  4041. source: "./media/characters/ggv/side.svg"
  4042. }
  4043. }
  4044. },
  4045. [
  4046. {
  4047. name: "Extremely Puny",
  4048. height: math.unit(9 + 5 / 12, "feet")
  4049. },
  4050. {
  4051. name: "Horribly Small",
  4052. height: math.unit(47.7, "miles"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Reasonably Sized",
  4057. height: math.unit(25000, "parsecs")
  4058. },
  4059. {
  4060. name: "Slightly Uncompressed",
  4061. height: math.unit(7.77e31, "parsecs")
  4062. },
  4063. {
  4064. name: "Omniversal",
  4065. height: math.unit(1e300, "meters")
  4066. },
  4067. ]
  4068. ))
  4069. characterMakers.push(() => makeCharacter(
  4070. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4071. {
  4072. front: {
  4073. height: math.unit(2, "meter"),
  4074. weight: math.unit(75, "lb"),
  4075. name: "Front",
  4076. image: {
  4077. source: "./media/characters/napalm/front.svg"
  4078. }
  4079. },
  4080. back: {
  4081. height: math.unit(2, "meter"),
  4082. weight: math.unit(75, "lb"),
  4083. name: "Back",
  4084. image: {
  4085. source: "./media/characters/napalm/back.svg"
  4086. }
  4087. }
  4088. },
  4089. [
  4090. {
  4091. name: "Standard",
  4092. height: math.unit(55, "feet"),
  4093. default: true
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(7 + 5 / 6, "feet"),
  4102. weight: math.unit(325, "lb"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/asana/front.svg",
  4106. extra: 1133 / 1060,
  4107. bottom: 15.2 / 1148.6
  4108. }
  4109. },
  4110. back: {
  4111. height: math.unit(7 + 5 / 6, "feet"),
  4112. weight: math.unit(325, "lb"),
  4113. name: "Back",
  4114. image: {
  4115. source: "./media/characters/asana/back.svg",
  4116. extra: 1114 / 1043,
  4117. bottom: 5 / 1120
  4118. }
  4119. },
  4120. dressedDark: {
  4121. height: math.unit(7 + 5 / 6, "feet"),
  4122. weight: math.unit(325, "lb"),
  4123. name: "Dressed (Dark)",
  4124. image: {
  4125. source: "./media/characters/asana/dressed-dark.svg",
  4126. extra: 1133 / 1060,
  4127. bottom: 15.2 / 1148.6
  4128. }
  4129. },
  4130. dressedLight: {
  4131. height: math.unit(7 + 5 / 6, "feet"),
  4132. weight: math.unit(325, "lb"),
  4133. name: "Dressed (Light)",
  4134. image: {
  4135. source: "./media/characters/asana/dressed-light.svg",
  4136. extra: 1133 / 1060,
  4137. bottom: 15.2 / 1148.6
  4138. }
  4139. },
  4140. },
  4141. [
  4142. {
  4143. name: "Standard",
  4144. height: math.unit(7 + 5 / 6, "feet"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Large",
  4149. height: math.unit(10, "meters")
  4150. },
  4151. {
  4152. name: "Macro",
  4153. height: math.unit(2500, "meters")
  4154. },
  4155. {
  4156. name: "Megamacro",
  4157. height: math.unit(5e6, "meters")
  4158. },
  4159. {
  4160. name: "Examacro",
  4161. height: math.unit(5e12, "lightyears")
  4162. },
  4163. {
  4164. name: "Max Size",
  4165. height: math.unit(1e31, "lightyears")
  4166. }
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4171. {
  4172. front: {
  4173. height: math.unit(2, "meter"),
  4174. weight: math.unit(60, "kg"),
  4175. name: "Front",
  4176. image: {
  4177. source: "./media/characters/ebony/front.svg",
  4178. bottom: 0.03,
  4179. extra: 1045 / 810 + 0.03
  4180. }
  4181. },
  4182. side: {
  4183. height: math.unit(2, "meter"),
  4184. weight: math.unit(60, "kg"),
  4185. name: "Side",
  4186. image: {
  4187. source: "./media/characters/ebony/side.svg",
  4188. bottom: 0.03,
  4189. extra: 1045 / 810 + 0.03
  4190. }
  4191. },
  4192. back: {
  4193. height: math.unit(2, "meter"),
  4194. weight: math.unit(60, "kg"),
  4195. name: "Back",
  4196. image: {
  4197. source: "./media/characters/ebony/back.svg",
  4198. bottom: 0.01,
  4199. extra: 1045 / 810 + 0.01
  4200. }
  4201. },
  4202. },
  4203. [
  4204. // TODO check why I did this lol
  4205. {
  4206. name: "Standard",
  4207. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4208. default: true
  4209. },
  4210. {
  4211. name: "Macro",
  4212. height: math.unit(200, "feet")
  4213. },
  4214. {
  4215. name: "Gigamacro",
  4216. height: math.unit(13000, "km")
  4217. }
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4222. {
  4223. front: {
  4224. height: math.unit(6, "feet"),
  4225. weight: math.unit(175, "lb"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/mountain/front.svg",
  4229. extra: 972 / 955,
  4230. bottom: 64 / 1036.6
  4231. }
  4232. },
  4233. back: {
  4234. height: math.unit(6, "feet"),
  4235. weight: math.unit(175, "lb"),
  4236. name: "Back",
  4237. image: {
  4238. source: "./media/characters/mountain/back.svg",
  4239. extra: 970 / 950,
  4240. bottom: 28.25 / 999
  4241. }
  4242. },
  4243. },
  4244. [
  4245. {
  4246. name: "Large",
  4247. height: math.unit(20, "meters")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(300, "meters")
  4252. },
  4253. {
  4254. name: "Gigamacro",
  4255. height: math.unit(10000, "km"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Examacro",
  4260. height: math.unit(10e9, "lightyears")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(8, "feet"),
  4269. weight: math.unit(500, "lb"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/rick/front.svg"
  4273. }
  4274. }
  4275. },
  4276. [
  4277. {
  4278. name: "Normal",
  4279. height: math.unit(8, "feet"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(5, "km")
  4285. }
  4286. ]
  4287. ))
  4288. characterMakers.push(() => makeCharacter(
  4289. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4290. {
  4291. front: {
  4292. height: math.unit(8, "feet"),
  4293. weight: math.unit(120, "lb"),
  4294. name: "Front",
  4295. image: {
  4296. source: "./media/characters/ona/front.svg"
  4297. }
  4298. },
  4299. frontAlt: {
  4300. height: math.unit(8, "feet"),
  4301. weight: math.unit(120, "lb"),
  4302. name: "Front (Alt)",
  4303. image: {
  4304. source: "./media/characters/ona/front-alt.svg"
  4305. }
  4306. },
  4307. back: {
  4308. height: math.unit(8, "feet"),
  4309. weight: math.unit(120, "lb"),
  4310. name: "Back",
  4311. image: {
  4312. source: "./media/characters/ona/back.svg"
  4313. }
  4314. },
  4315. foot: {
  4316. height: math.unit(1.1, "feet"),
  4317. name: "Foot",
  4318. image: {
  4319. source: "./media/characters/ona/foot.svg"
  4320. }
  4321. }
  4322. },
  4323. [
  4324. {
  4325. name: "Megamacro",
  4326. height: math.unit(70, "km"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Gigamacro",
  4331. height: math.unit(681818, "miles")
  4332. },
  4333. {
  4334. name: "Examacro",
  4335. height: math.unit(3800000, "lightyears")
  4336. },
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(12, "feet"),
  4344. weight: math.unit(3000, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/mech/front.svg",
  4348. extra: 2900 / 2770,
  4349. bottom: 110 / 3010
  4350. }
  4351. },
  4352. back: {
  4353. height: math.unit(12, "feet"),
  4354. weight: math.unit(3000, "lb"),
  4355. name: "Back",
  4356. image: {
  4357. source: "./media/characters/mech/back.svg",
  4358. extra: 3011 / 2890,
  4359. bottom: 94 / 3105
  4360. }
  4361. },
  4362. maw: {
  4363. height: math.unit(3.07, "feet"),
  4364. name: "Maw",
  4365. image: {
  4366. source: "./media/characters/mech/maw.svg"
  4367. }
  4368. },
  4369. head: {
  4370. height: math.unit(2.82, "feet"),
  4371. name: "Head",
  4372. image: {
  4373. source: "./media/characters/mech/head.svg"
  4374. }
  4375. },
  4376. dick: {
  4377. height: math.unit(1.43, "feet"),
  4378. name: "Dick",
  4379. image: {
  4380. source: "./media/characters/mech/dick.svg"
  4381. }
  4382. },
  4383. },
  4384. [
  4385. {
  4386. name: "Normal",
  4387. height: math.unit(12, "feet")
  4388. },
  4389. {
  4390. name: "Macro",
  4391. height: math.unit(300, "feet"),
  4392. default: true
  4393. },
  4394. {
  4395. name: "Macro+",
  4396. height: math.unit(1500, "feet")
  4397. },
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4402. {
  4403. front: {
  4404. height: math.unit(1.3, "meter"),
  4405. weight: math.unit(30, "kg"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/gregory/front.svg",
  4409. }
  4410. }
  4411. },
  4412. [
  4413. {
  4414. name: "Normal",
  4415. height: math.unit(1.3, "meter"),
  4416. default: true
  4417. },
  4418. {
  4419. name: "Macro",
  4420. height: math.unit(20, "meter")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4426. {
  4427. front: {
  4428. height: math.unit(2.8, "meter"),
  4429. weight: math.unit(200, "kg"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/elory/front.svg",
  4433. }
  4434. }
  4435. },
  4436. [
  4437. {
  4438. name: "Normal",
  4439. height: math.unit(2.8, "meter"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(38, "meter")
  4445. }
  4446. ]
  4447. ))
  4448. characterMakers.push(() => makeCharacter(
  4449. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4450. {
  4451. front: {
  4452. height: math.unit(470, "feet"),
  4453. weight: math.unit(924, "tons"),
  4454. name: "Front",
  4455. image: {
  4456. source: "./media/characters/angelpatamon/front.svg",
  4457. }
  4458. }
  4459. },
  4460. [
  4461. {
  4462. name: "Normal",
  4463. height: math.unit(470, "feet"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Deity Size I",
  4468. height: math.unit(28651.2, "km")
  4469. },
  4470. {
  4471. name: "Deity Size II",
  4472. height: math.unit(171907.2, "km")
  4473. }
  4474. ]
  4475. ))
  4476. characterMakers.push(() => makeCharacter(
  4477. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4478. {
  4479. side: {
  4480. height: math.unit(7.2, "meter"),
  4481. weight: math.unit(8.2, "tons"),
  4482. name: "Side",
  4483. image: {
  4484. source: "./media/characters/cryae/side.svg",
  4485. extra: 3500 / 1500
  4486. }
  4487. }
  4488. },
  4489. [
  4490. {
  4491. name: "Normal",
  4492. height: math.unit(7.2, "meter"),
  4493. default: true
  4494. }
  4495. ]
  4496. ))
  4497. characterMakers.push(() => makeCharacter(
  4498. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4499. {
  4500. front: {
  4501. height: math.unit(6, "feet"),
  4502. weight: math.unit(175, "lb"),
  4503. name: "Front",
  4504. image: {
  4505. source: "./media/characters/xera/front.svg",
  4506. extra: 2377 / 1972,
  4507. bottom: 75.5 / 2452
  4508. }
  4509. },
  4510. side: {
  4511. height: math.unit(6, "feet"),
  4512. weight: math.unit(175, "lb"),
  4513. name: "Side",
  4514. image: {
  4515. source: "./media/characters/xera/side.svg",
  4516. extra: 2345 / 2019,
  4517. bottom: 39.7 / 2384
  4518. }
  4519. },
  4520. back: {
  4521. height: math.unit(6, "feet"),
  4522. weight: math.unit(175, "lb"),
  4523. name: "Back",
  4524. image: {
  4525. source: "./media/characters/xera/back.svg",
  4526. extra: 2095 / 1984,
  4527. bottom: 67 / 2166
  4528. }
  4529. },
  4530. },
  4531. [
  4532. {
  4533. name: "Small",
  4534. height: math.unit(10, "feet")
  4535. },
  4536. {
  4537. name: "Macro",
  4538. height: math.unit(500, "meters"),
  4539. default: true
  4540. },
  4541. {
  4542. name: "Macro+",
  4543. height: math.unit(10, "km")
  4544. },
  4545. {
  4546. name: "Gigamacro",
  4547. height: math.unit(25000, "km")
  4548. },
  4549. {
  4550. name: "Teramacro",
  4551. height: math.unit(3e6, "km")
  4552. }
  4553. ]
  4554. ))
  4555. characterMakers.push(() => makeCharacter(
  4556. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4557. {
  4558. front: {
  4559. height: math.unit(6, "feet"),
  4560. weight: math.unit(175, "lb"),
  4561. name: "Front",
  4562. image: {
  4563. source: "./media/characters/nebula/front.svg",
  4564. extra: 2566 / 2362,
  4565. bottom: 81 / 2644
  4566. }
  4567. }
  4568. },
  4569. [
  4570. {
  4571. name: "Small",
  4572. height: math.unit(4.5, "meters")
  4573. },
  4574. {
  4575. name: "Macro",
  4576. height: math.unit(1500, "meters"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Megamacro",
  4581. height: math.unit(150, "km")
  4582. },
  4583. {
  4584. name: "Gigamacro",
  4585. height: math.unit(27000, "km")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(225, "lb"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/abysgar/front.svg",
  4598. extra: 1739/1614,
  4599. bottom: 71/1810
  4600. }
  4601. },
  4602. frontNsfw: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(225, "lb"),
  4605. name: "Front (NSFW)",
  4606. image: {
  4607. source: "./media/characters/abysgar/front-nsfw.svg",
  4608. extra: 1739/1614,
  4609. bottom: 71/1810
  4610. }
  4611. },
  4612. back: {
  4613. height: math.unit(4.6, "feet"),
  4614. weight: math.unit(225, "lb"),
  4615. name: "Back",
  4616. image: {
  4617. source: "./media/characters/abysgar/back.svg",
  4618. extra: 1384/1327,
  4619. bottom: 0/1384
  4620. }
  4621. },
  4622. head: {
  4623. height: math.unit(1.25, "feet"),
  4624. name: "Head",
  4625. image: {
  4626. source: "./media/characters/abysgar/head.svg",
  4627. extra: 669/569,
  4628. bottom: 0/669
  4629. }
  4630. },
  4631. },
  4632. [
  4633. {
  4634. name: "Small",
  4635. height: math.unit(4.5, "meters")
  4636. },
  4637. {
  4638. name: "Macro",
  4639. height: math.unit(1250, "meters"),
  4640. default: true
  4641. },
  4642. {
  4643. name: "Megamacro",
  4644. height: math.unit(125, "km")
  4645. },
  4646. {
  4647. name: "Gigamacro",
  4648. height: math.unit(26000, "km")
  4649. }
  4650. ]
  4651. ))
  4652. characterMakers.push(() => makeCharacter(
  4653. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4654. {
  4655. front: {
  4656. height: math.unit(6, "feet"),
  4657. weight: math.unit(180, "lb"),
  4658. name: "Front",
  4659. image: {
  4660. source: "./media/characters/yakuz/front.svg"
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Small",
  4667. height: math.unit(5, "meters")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(1500, "meters"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Megamacro",
  4676. height: math.unit(200, "km")
  4677. },
  4678. {
  4679. name: "Gigamacro",
  4680. height: math.unit(100000, "km")
  4681. }
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4686. {
  4687. front: {
  4688. height: math.unit(6, "feet"),
  4689. weight: math.unit(175, "lb"),
  4690. name: "Front",
  4691. image: {
  4692. source: "./media/characters/mirova/front.svg",
  4693. extra: 3334 / 3071,
  4694. bottom: 42 / 3375.6
  4695. }
  4696. }
  4697. },
  4698. [
  4699. {
  4700. name: "Small",
  4701. height: math.unit(5, "meters")
  4702. },
  4703. {
  4704. name: "Macro",
  4705. height: math.unit(900, "meters"),
  4706. default: true
  4707. },
  4708. {
  4709. name: "Megamacro",
  4710. height: math.unit(135, "km")
  4711. },
  4712. {
  4713. name: "Gigamacro",
  4714. height: math.unit(20000, "km")
  4715. }
  4716. ]
  4717. ))
  4718. characterMakers.push(() => makeCharacter(
  4719. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4720. {
  4721. side: {
  4722. height: math.unit(28.35, "feet"),
  4723. weight: math.unit(99.75, "tons"),
  4724. name: "Side",
  4725. image: {
  4726. source: "./media/characters/asana-mech/side.svg",
  4727. extra: 923 / 699,
  4728. bottom: 50 / 975
  4729. }
  4730. },
  4731. chaingun: {
  4732. height: math.unit(7, "feet"),
  4733. weight: math.unit(2400, "lb"),
  4734. name: "Chaingun",
  4735. image: {
  4736. source: "./media/characters/asana-mech/chaingun.svg"
  4737. }
  4738. },
  4739. laser: {
  4740. height: math.unit(7.12, "feet"),
  4741. weight: math.unit(2000, "lb"),
  4742. name: "Laser",
  4743. image: {
  4744. source: "./media/characters/asana-mech/laser.svg"
  4745. }
  4746. },
  4747. },
  4748. [
  4749. {
  4750. name: "Normal",
  4751. height: math.unit(28.35, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro",
  4756. height: math.unit(2500, "feet")
  4757. },
  4758. {
  4759. name: "Megamacro",
  4760. height: math.unit(25, "miles")
  4761. },
  4762. {
  4763. name: "Examacro",
  4764. height: math.unit(6e8, "lightyears")
  4765. },
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(5, "meters"),
  4773. weight: math.unit(1000, "kg"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/asche/front.svg",
  4777. extra: 1258 / 1190,
  4778. bottom: 47 / 1305
  4779. }
  4780. },
  4781. frontUnderwear: {
  4782. height: math.unit(5, "meters"),
  4783. weight: math.unit(1000, "kg"),
  4784. name: "Front (Underwear)",
  4785. image: {
  4786. source: "./media/characters/asche/front-underwear.svg",
  4787. extra: 1258 / 1190,
  4788. bottom: 47 / 1305
  4789. }
  4790. },
  4791. frontDressed: {
  4792. height: math.unit(5, "meters"),
  4793. weight: math.unit(1000, "kg"),
  4794. name: "Front (Dressed)",
  4795. image: {
  4796. source: "./media/characters/asche/front-dressed.svg",
  4797. extra: 1258 / 1190,
  4798. bottom: 47 / 1305
  4799. }
  4800. },
  4801. frontArmor: {
  4802. height: math.unit(5, "meters"),
  4803. weight: math.unit(1000, "kg"),
  4804. name: "Front (Armored)",
  4805. image: {
  4806. source: "./media/characters/asche/front-armored.svg",
  4807. extra: 1374 / 1308,
  4808. bottom: 23 / 1397
  4809. }
  4810. },
  4811. mp724: {
  4812. height: math.unit(0.96, "meters"),
  4813. weight: math.unit(38, "kg"),
  4814. name: "H&K MP724",
  4815. image: {
  4816. source: "./media/characters/asche/h&k-mp724.svg"
  4817. }
  4818. },
  4819. side: {
  4820. height: math.unit(5, "meters"),
  4821. weight: math.unit(1000, "kg"),
  4822. name: "Side",
  4823. image: {
  4824. source: "./media/characters/asche/side.svg",
  4825. extra: 1717 / 1609,
  4826. bottom: 0.005
  4827. }
  4828. },
  4829. back: {
  4830. height: math.unit(5, "meters"),
  4831. weight: math.unit(1000, "kg"),
  4832. name: "Back",
  4833. image: {
  4834. source: "./media/characters/asche/back.svg",
  4835. extra: 1570 / 1501
  4836. }
  4837. },
  4838. },
  4839. [
  4840. {
  4841. name: "DEFCON 5",
  4842. height: math.unit(5, "meters")
  4843. },
  4844. {
  4845. name: "DEFCON 4",
  4846. height: math.unit(500, "meters"),
  4847. default: true
  4848. },
  4849. {
  4850. name: "DEFCON 3",
  4851. height: math.unit(5, "km")
  4852. },
  4853. {
  4854. name: "DEFCON 2",
  4855. height: math.unit(500, "km")
  4856. },
  4857. {
  4858. name: "DEFCON 1",
  4859. height: math.unit(500000, "km")
  4860. },
  4861. {
  4862. name: "DEFCON 0",
  4863. height: math.unit(3, "gigaparsecs")
  4864. },
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4869. {
  4870. front: {
  4871. height: math.unit(2, "meters"),
  4872. weight: math.unit(76, "kg"),
  4873. name: "Front",
  4874. image: {
  4875. source: "./media/characters/gale/front.svg"
  4876. }
  4877. },
  4878. frontAlt1: {
  4879. height: math.unit(2, "meters"),
  4880. weight: math.unit(76, "kg"),
  4881. name: "Front (Alt 1)",
  4882. image: {
  4883. source: "./media/characters/gale/front-alt-1.svg"
  4884. }
  4885. },
  4886. frontAlt2: {
  4887. height: math.unit(2, "meters"),
  4888. weight: math.unit(76, "kg"),
  4889. name: "Front (Alt 2)",
  4890. image: {
  4891. source: "./media/characters/gale/front-alt-2.svg"
  4892. }
  4893. },
  4894. },
  4895. [
  4896. {
  4897. name: "Normal",
  4898. height: math.unit(7, "feet")
  4899. },
  4900. {
  4901. name: "Macro",
  4902. height: math.unit(150, "feet"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Macro+",
  4907. height: math.unit(300, "feet")
  4908. },
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4913. {
  4914. front: {
  4915. height: math.unit(5 + 10/12, "feet"),
  4916. weight: math.unit(67, "kg"),
  4917. name: "Front",
  4918. image: {
  4919. source: "./media/characters/draylen/front.svg",
  4920. extra: 832/777,
  4921. bottom: 85/917
  4922. }
  4923. }
  4924. },
  4925. [
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(5 + 10/12, "feet")
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(150, "feet"),
  4933. default: true
  4934. }
  4935. ]
  4936. ))
  4937. characterMakers.push(() => makeCharacter(
  4938. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4939. {
  4940. front: {
  4941. height: math.unit(7 + 9 / 12, "feet"),
  4942. weight: math.unit(379, "lbs"),
  4943. name: "Front",
  4944. image: {
  4945. source: "./media/characters/chez/front.svg"
  4946. }
  4947. },
  4948. side: {
  4949. height: math.unit(7 + 9 / 12, "feet"),
  4950. weight: math.unit(379, "lbs"),
  4951. name: "Side",
  4952. image: {
  4953. source: "./media/characters/chez/side.svg"
  4954. }
  4955. }
  4956. },
  4957. [
  4958. {
  4959. name: "Normal",
  4960. height: math.unit(7 + 9 / 12, "feet"),
  4961. default: true
  4962. },
  4963. {
  4964. name: "God King",
  4965. height: math.unit(9750000, "meters")
  4966. }
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4971. {
  4972. front: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(275, "lbs"),
  4975. name: "Front",
  4976. image: {
  4977. source: "./media/characters/kaylum/front.svg",
  4978. bottom: 0.01,
  4979. extra: 1166 / 1031
  4980. }
  4981. },
  4982. frontWingless: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(275, "lbs"),
  4985. name: "Front (Wingless)",
  4986. image: {
  4987. source: "./media/characters/kaylum/front-wingless.svg",
  4988. bottom: 0.01,
  4989. extra: 1117 / 1031
  4990. }
  4991. }
  4992. },
  4993. [
  4994. {
  4995. name: "Normal",
  4996. height: math.unit(3.05, "meters")
  4997. },
  4998. {
  4999. name: "Master",
  5000. height: math.unit(5.5, "meters")
  5001. },
  5002. {
  5003. name: "Rampage",
  5004. height: math.unit(19, "meters")
  5005. },
  5006. {
  5007. name: "Macro Lite",
  5008. height: math.unit(37, "meters")
  5009. },
  5010. {
  5011. name: "Hyper Predator",
  5012. height: math.unit(61, "meters")
  5013. },
  5014. {
  5015. name: "Macro",
  5016. height: math.unit(138, "meters"),
  5017. default: true
  5018. }
  5019. ]
  5020. ))
  5021. characterMakers.push(() => makeCharacter(
  5022. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5023. {
  5024. front: {
  5025. height: math.unit(5 + 5 / 12, "feet"),
  5026. weight: math.unit(120, "lbs"),
  5027. name: "Front",
  5028. image: {
  5029. source: "./media/characters/geta/front.svg",
  5030. extra: 1003/933,
  5031. bottom: 21/1024
  5032. }
  5033. },
  5034. paw: {
  5035. height: math.unit(0.35, "feet"),
  5036. name: "Paw",
  5037. image: {
  5038. source: "./media/characters/geta/paw.svg"
  5039. }
  5040. },
  5041. },
  5042. [
  5043. {
  5044. name: "Micro",
  5045. height: math.unit(3, "inches"),
  5046. default: true
  5047. },
  5048. {
  5049. name: "Normal",
  5050. height: math.unit(5 + 5 / 12, "feet")
  5051. }
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5056. {
  5057. front: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(300, "lbs"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/tyrnn/front.svg"
  5063. }
  5064. }
  5065. },
  5066. [
  5067. {
  5068. name: "Main Height",
  5069. height: math.unit(355, "feet"),
  5070. default: true
  5071. },
  5072. {
  5073. name: "Fave. Height",
  5074. height: math.unit(2400, "feet")
  5075. }
  5076. ]
  5077. ))
  5078. characterMakers.push(() => makeCharacter(
  5079. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5080. {
  5081. front: {
  5082. height: math.unit(6, "feet"),
  5083. weight: math.unit(300, "lbs"),
  5084. name: "Front",
  5085. image: {
  5086. source: "./media/characters/appledectomy/front.svg"
  5087. }
  5088. }
  5089. },
  5090. [
  5091. {
  5092. name: "Macro",
  5093. height: math.unit(2500, "feet")
  5094. },
  5095. {
  5096. name: "Megamacro",
  5097. height: math.unit(50, "miles"),
  5098. default: true
  5099. },
  5100. {
  5101. name: "Gigamacro",
  5102. height: math.unit(5000, "miles")
  5103. },
  5104. {
  5105. name: "Teramacro",
  5106. height: math.unit(250000, "miles")
  5107. },
  5108. ]
  5109. ))
  5110. characterMakers.push(() => makeCharacter(
  5111. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5112. {
  5113. front: {
  5114. height: math.unit(6, "feet"),
  5115. weight: math.unit(200, "lbs"),
  5116. name: "Front",
  5117. image: {
  5118. source: "./media/characters/vulpes/front.svg",
  5119. extra: 573 / 543,
  5120. bottom: 0.033
  5121. }
  5122. },
  5123. side: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(200, "lbs"),
  5126. name: "Side",
  5127. image: {
  5128. source: "./media/characters/vulpes/side.svg",
  5129. extra: 577 / 549,
  5130. bottom: 11 / 588
  5131. }
  5132. },
  5133. back: {
  5134. height: math.unit(6, "feet"),
  5135. weight: math.unit(200, "lbs"),
  5136. name: "Back",
  5137. image: {
  5138. source: "./media/characters/vulpes/back.svg",
  5139. extra: 573 / 549,
  5140. bottom: 20 / 593
  5141. }
  5142. },
  5143. feet: {
  5144. height: math.unit(1.276, "feet"),
  5145. name: "Feet",
  5146. image: {
  5147. source: "./media/characters/vulpes/feet.svg"
  5148. }
  5149. },
  5150. maw: {
  5151. height: math.unit(1.18, "feet"),
  5152. name: "Maw",
  5153. image: {
  5154. source: "./media/characters/vulpes/maw.svg"
  5155. }
  5156. },
  5157. },
  5158. [
  5159. {
  5160. name: "Micro",
  5161. height: math.unit(2, "inches")
  5162. },
  5163. {
  5164. name: "Normal",
  5165. height: math.unit(6.3, "feet")
  5166. },
  5167. {
  5168. name: "Macro",
  5169. height: math.unit(850, "feet")
  5170. },
  5171. {
  5172. name: "Megamacro",
  5173. height: math.unit(7500, "feet"),
  5174. default: true
  5175. },
  5176. {
  5177. name: "Gigamacro",
  5178. height: math.unit(570000, "miles")
  5179. }
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5184. {
  5185. front: {
  5186. height: math.unit(6, "feet"),
  5187. weight: math.unit(210, "lbs"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/rain-fallen/front.svg"
  5191. }
  5192. },
  5193. side: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(210, "lbs"),
  5196. name: "Side",
  5197. image: {
  5198. source: "./media/characters/rain-fallen/side.svg"
  5199. }
  5200. },
  5201. back: {
  5202. height: math.unit(6, "feet"),
  5203. weight: math.unit(210, "lbs"),
  5204. name: "Back",
  5205. image: {
  5206. source: "./media/characters/rain-fallen/back.svg"
  5207. }
  5208. },
  5209. feral: {
  5210. height: math.unit(9, "feet"),
  5211. weight: math.unit(700, "lbs"),
  5212. name: "Feral",
  5213. image: {
  5214. source: "./media/characters/rain-fallen/feral.svg"
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Meddling with Mortals",
  5221. height: math.unit(8 + 8/12, "feet")
  5222. },
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(5, "meter")
  5226. },
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(150, "meter"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Megamacro",
  5234. height: math.unit(278e6, "meter")
  5235. },
  5236. {
  5237. name: "Gigamacro",
  5238. height: math.unit(2e9, "meter")
  5239. },
  5240. {
  5241. name: "Teramacro",
  5242. height: math.unit(8e12, "meter")
  5243. },
  5244. {
  5245. name: "Devourer",
  5246. height: math.unit(14, "zettameters")
  5247. },
  5248. {
  5249. name: "Scarlet King",
  5250. height: math.unit(18, "yottameters")
  5251. },
  5252. {
  5253. name: "Void",
  5254. height: math.unit(1e88, "yottameters")
  5255. }
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5260. {
  5261. standing: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(180, "lbs"),
  5264. name: "Standing",
  5265. image: {
  5266. source: "./media/characters/zaakira/standing.svg",
  5267. extra: 1599/1504,
  5268. bottom: 39/1638
  5269. }
  5270. },
  5271. laying: {
  5272. height: math.unit(3.3, "feet"),
  5273. weight: math.unit(180, "lbs"),
  5274. name: "Laying",
  5275. image: {
  5276. source: "./media/characters/zaakira/laying.svg"
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(12, "feet")
  5284. },
  5285. {
  5286. name: "Macro",
  5287. height: math.unit(279, "feet"),
  5288. default: true
  5289. }
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5294. {
  5295. femSfw: {
  5296. height: math.unit(8, "feet"),
  5297. weight: math.unit(350, "lb"),
  5298. name: "Fem",
  5299. image: {
  5300. source: "./media/characters/sigvald/fem-sfw.svg",
  5301. extra: 182 / 164,
  5302. bottom: 8.7 / 190.5
  5303. }
  5304. },
  5305. femNsfw: {
  5306. height: math.unit(8, "feet"),
  5307. weight: math.unit(350, "lb"),
  5308. name: "Fem (NSFW)",
  5309. image: {
  5310. source: "./media/characters/sigvald/fem-nsfw.svg",
  5311. extra: 182 / 164,
  5312. bottom: 8.7 / 190.5
  5313. }
  5314. },
  5315. maleNsfw: {
  5316. height: math.unit(8, "feet"),
  5317. weight: math.unit(350, "lb"),
  5318. name: "Male (NSFW)",
  5319. image: {
  5320. source: "./media/characters/sigvald/male-nsfw.svg",
  5321. extra: 182 / 164,
  5322. bottom: 8.7 / 190.5
  5323. }
  5324. },
  5325. hermNsfw: {
  5326. height: math.unit(8, "feet"),
  5327. weight: math.unit(350, "lb"),
  5328. name: "Herm (NSFW)",
  5329. image: {
  5330. source: "./media/characters/sigvald/herm-nsfw.svg",
  5331. extra: 182 / 164,
  5332. bottom: 8.7 / 190.5
  5333. }
  5334. },
  5335. dick: {
  5336. height: math.unit(2.36, "feet"),
  5337. name: "Dick",
  5338. image: {
  5339. source: "./media/characters/sigvald/dick.svg"
  5340. }
  5341. },
  5342. eye: {
  5343. height: math.unit(0.31, "feet"),
  5344. name: "Eye",
  5345. image: {
  5346. source: "./media/characters/sigvald/eye.svg"
  5347. }
  5348. },
  5349. mouth: {
  5350. height: math.unit(0.92, "feet"),
  5351. name: "Mouth",
  5352. image: {
  5353. source: "./media/characters/sigvald/mouth.svg"
  5354. }
  5355. },
  5356. paws: {
  5357. height: math.unit(2.2, "feet"),
  5358. name: "Paws",
  5359. image: {
  5360. source: "./media/characters/sigvald/paws.svg"
  5361. }
  5362. }
  5363. },
  5364. [
  5365. {
  5366. name: "Normal",
  5367. height: math.unit(8, "feet")
  5368. },
  5369. {
  5370. name: "Large",
  5371. height: math.unit(12, "feet")
  5372. },
  5373. {
  5374. name: "Larger",
  5375. height: math.unit(20, "feet")
  5376. },
  5377. {
  5378. name: "Macro",
  5379. height: math.unit(150, "feet")
  5380. },
  5381. {
  5382. name: "Macro+",
  5383. height: math.unit(200, "feet"),
  5384. default: true
  5385. },
  5386. ]
  5387. ))
  5388. characterMakers.push(() => makeCharacter(
  5389. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5390. {
  5391. side: {
  5392. height: math.unit(12, "feet"),
  5393. weight: math.unit(2000, "kg"),
  5394. name: "Side",
  5395. image: {
  5396. source: "./media/characters/scott/side.svg",
  5397. extra: 754 / 724,
  5398. bottom: 0.069
  5399. }
  5400. },
  5401. upright: {
  5402. height: math.unit(12, "feet"),
  5403. weight: math.unit(2000, "kg"),
  5404. name: "Upright",
  5405. image: {
  5406. source: "./media/characters/scott/upright.svg",
  5407. extra: 3881 / 3722,
  5408. bottom: 0.05
  5409. }
  5410. },
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(12, "feet"),
  5416. default: true
  5417. },
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5422. {
  5423. side: {
  5424. height: math.unit(8, "meters"),
  5425. weight: math.unit(84755, "lbs"),
  5426. name: "Side",
  5427. image: {
  5428. source: "./media/characters/tobias/side.svg",
  5429. extra: 1474 / 1096,
  5430. bottom: 38.9 / 1513.1235
  5431. }
  5432. },
  5433. },
  5434. [
  5435. {
  5436. name: "Normal",
  5437. height: math.unit(8, "meters"),
  5438. default: true
  5439. },
  5440. ]
  5441. ))
  5442. characterMakers.push(() => makeCharacter(
  5443. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5444. {
  5445. front: {
  5446. height: math.unit(5.5, "feet"),
  5447. weight: math.unit(400, "lbs"),
  5448. name: "Front",
  5449. image: {
  5450. source: "./media/characters/kieran/front.svg",
  5451. extra: 2694 / 2364,
  5452. bottom: 217 / 2908
  5453. }
  5454. },
  5455. side: {
  5456. height: math.unit(5.5, "feet"),
  5457. weight: math.unit(400, "lbs"),
  5458. name: "Side",
  5459. image: {
  5460. source: "./media/characters/kieran/side.svg",
  5461. extra: 875 / 777,
  5462. bottom: 84.6 / 959
  5463. }
  5464. },
  5465. },
  5466. [
  5467. {
  5468. name: "Normal",
  5469. height: math.unit(5.5, "feet"),
  5470. default: true
  5471. },
  5472. ]
  5473. ))
  5474. characterMakers.push(() => makeCharacter(
  5475. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5476. {
  5477. side: {
  5478. height: math.unit(2, "meters"),
  5479. weight: math.unit(70, "kg"),
  5480. name: "Side",
  5481. image: {
  5482. source: "./media/characters/sanya/side.svg",
  5483. bottom: 0.02,
  5484. extra: 1.02
  5485. }
  5486. },
  5487. },
  5488. [
  5489. {
  5490. name: "Small",
  5491. height: math.unit(2, "meters")
  5492. },
  5493. {
  5494. name: "Normal",
  5495. height: math.unit(3, "meters")
  5496. },
  5497. {
  5498. name: "Macro",
  5499. height: math.unit(16, "meters"),
  5500. default: true
  5501. },
  5502. ]
  5503. ))
  5504. characterMakers.push(() => makeCharacter(
  5505. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5506. {
  5507. front: {
  5508. height: math.unit(2, "meters"),
  5509. weight: math.unit(120, "kg"),
  5510. name: "Front",
  5511. image: {
  5512. source: "./media/characters/miranda/front.svg",
  5513. extra: 195 / 185,
  5514. bottom: 10.9 / 206.5
  5515. }
  5516. },
  5517. back: {
  5518. height: math.unit(2, "meters"),
  5519. weight: math.unit(120, "kg"),
  5520. name: "Back",
  5521. image: {
  5522. source: "./media/characters/miranda/back.svg",
  5523. extra: 201 / 193,
  5524. bottom: 2.3 / 203.7
  5525. }
  5526. },
  5527. },
  5528. [
  5529. {
  5530. name: "Normal",
  5531. height: math.unit(10, "feet"),
  5532. default: true
  5533. }
  5534. ]
  5535. ))
  5536. characterMakers.push(() => makeCharacter(
  5537. { name: "James", species: ["deer"], tags: ["anthro"] },
  5538. {
  5539. side: {
  5540. height: math.unit(2, "meters"),
  5541. weight: math.unit(100, "kg"),
  5542. name: "Front",
  5543. image: {
  5544. source: "./media/characters/james/front.svg",
  5545. extra: 10 / 8.5
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(8.5, "feet"),
  5553. default: true
  5554. }
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5559. {
  5560. side: {
  5561. height: math.unit(9.5, "feet"),
  5562. weight: math.unit(2500, "lbs"),
  5563. name: "Side",
  5564. image: {
  5565. source: "./media/characters/heather/side.svg"
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(9.5, "feet"),
  5573. default: true
  5574. }
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5579. {
  5580. side: {
  5581. height: math.unit(6.5, "feet"),
  5582. weight: math.unit(400, "lbs"),
  5583. name: "Side",
  5584. image: {
  5585. source: "./media/characters/lukas/side.svg",
  5586. extra: 7.25 / 6.5
  5587. }
  5588. },
  5589. },
  5590. [
  5591. {
  5592. name: "Normal",
  5593. height: math.unit(6.5, "feet"),
  5594. default: true
  5595. }
  5596. ]
  5597. ))
  5598. characterMakers.push(() => makeCharacter(
  5599. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5600. {
  5601. side: {
  5602. height: math.unit(5, "feet"),
  5603. weight: math.unit(3000, "lbs"),
  5604. name: "Side",
  5605. image: {
  5606. source: "./media/characters/louise/side.svg"
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Normal",
  5613. height: math.unit(5, "feet"),
  5614. default: true
  5615. }
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5620. {
  5621. side: {
  5622. height: math.unit(6, "feet"),
  5623. weight: math.unit(150, "lbs"),
  5624. name: "Side",
  5625. image: {
  5626. source: "./media/characters/ramona/side.svg",
  5627. extra: 871/854,
  5628. bottom: 41/912
  5629. }
  5630. },
  5631. },
  5632. [
  5633. {
  5634. name: "Normal",
  5635. height: math.unit(5.3, "meters"),
  5636. default: true
  5637. },
  5638. {
  5639. name: "Macro",
  5640. height: math.unit(20, "stories")
  5641. },
  5642. {
  5643. name: "Macro+",
  5644. height: math.unit(50, "stories")
  5645. },
  5646. ]
  5647. ))
  5648. characterMakers.push(() => makeCharacter(
  5649. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5650. {
  5651. standing: {
  5652. height: math.unit(5.75, "feet"),
  5653. weight: math.unit(160, "lbs"),
  5654. name: "Standing",
  5655. image: {
  5656. source: "./media/characters/deerpuff/standing.svg",
  5657. extra: 682 / 624
  5658. }
  5659. },
  5660. sitting: {
  5661. height: math.unit(5.75 / 1.79, "feet"),
  5662. weight: math.unit(160, "lbs"),
  5663. name: "Sitting",
  5664. image: {
  5665. source: "./media/characters/deerpuff/sitting.svg",
  5666. bottom: 44 / 400,
  5667. extra: 1
  5668. }
  5669. },
  5670. taurLaying: {
  5671. height: math.unit(6, "feet"),
  5672. weight: math.unit(400, "lbs"),
  5673. name: "Taur (Laying)",
  5674. image: {
  5675. source: "./media/characters/deerpuff/taur-laying.svg"
  5676. }
  5677. },
  5678. },
  5679. [
  5680. {
  5681. name: "Puffball",
  5682. height: math.unit(6, "inches")
  5683. },
  5684. {
  5685. name: "Normalpuff",
  5686. height: math.unit(5.75, "feet")
  5687. },
  5688. {
  5689. name: "Macropuff",
  5690. height: math.unit(1500, "feet"),
  5691. default: true
  5692. },
  5693. {
  5694. name: "Megapuff",
  5695. height: math.unit(500, "miles")
  5696. },
  5697. {
  5698. name: "Gigapuff",
  5699. height: math.unit(250000, "miles")
  5700. },
  5701. {
  5702. name: "Omegapuff",
  5703. height: math.unit(1000, "lightyears")
  5704. },
  5705. ]
  5706. ))
  5707. characterMakers.push(() => makeCharacter(
  5708. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5709. {
  5710. stomping: {
  5711. height: math.unit(6, "feet"),
  5712. weight: math.unit(170, "lbs"),
  5713. name: "Stomping",
  5714. image: {
  5715. source: "./media/characters/vivian/stomping.svg"
  5716. }
  5717. },
  5718. sitting: {
  5719. height: math.unit(6 / 1.75, "feet"),
  5720. weight: math.unit(170, "lbs"),
  5721. name: "Sitting",
  5722. image: {
  5723. source: "./media/characters/vivian/sitting.svg",
  5724. bottom: 1 / 6.4,
  5725. extra: 1,
  5726. }
  5727. },
  5728. },
  5729. [
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(7, "feet"),
  5733. default: true
  5734. },
  5735. {
  5736. name: "Macro",
  5737. height: math.unit(10, "stories")
  5738. },
  5739. {
  5740. name: "Macro+",
  5741. height: math.unit(30, "stories")
  5742. },
  5743. {
  5744. name: "Megamacro",
  5745. height: math.unit(10, "miles")
  5746. },
  5747. {
  5748. name: "Megamacro+",
  5749. height: math.unit(2750000, "meters")
  5750. },
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5755. {
  5756. front: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(160, "lbs"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/prince/front.svg",
  5762. extra: 3400 / 3000
  5763. }
  5764. },
  5765. jumping: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(160, "lbs"),
  5768. name: "Jumping",
  5769. image: {
  5770. source: "./media/characters/prince/jump.svg",
  5771. extra: 2555 / 2134
  5772. }
  5773. },
  5774. },
  5775. [
  5776. {
  5777. name: "Normal",
  5778. height: math.unit(7.75, "feet"),
  5779. default: true
  5780. },
  5781. {
  5782. name: "Not cute",
  5783. height: math.unit(17, "feet")
  5784. },
  5785. {
  5786. name: "I said NOT",
  5787. height: math.unit(91, "feet")
  5788. },
  5789. {
  5790. name: "Please stop",
  5791. height: math.unit(560, "feet")
  5792. },
  5793. {
  5794. name: "What have you done",
  5795. height: math.unit(2200, "feet")
  5796. },
  5797. {
  5798. name: "Deer God",
  5799. height: math.unit(3.6, "miles")
  5800. },
  5801. ]
  5802. ))
  5803. characterMakers.push(() => makeCharacter(
  5804. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5805. {
  5806. standing: {
  5807. height: math.unit(6, "feet"),
  5808. weight: math.unit(300, "lbs"),
  5809. name: "Standing",
  5810. image: {
  5811. source: "./media/characters/psymon/standing.svg",
  5812. extra: 1888 / 1810,
  5813. bottom: 0.05
  5814. }
  5815. },
  5816. slithering: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(300, "lbs"),
  5819. name: "Slithering",
  5820. image: {
  5821. source: "./media/characters/psymon/slithering.svg",
  5822. extra: 1330 / 1224
  5823. }
  5824. },
  5825. slitheringAlt: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(300, "lbs"),
  5828. name: "Slithering (Alt)",
  5829. image: {
  5830. source: "./media/characters/psymon/slithering-alt.svg",
  5831. extra: 1330 / 1224
  5832. }
  5833. },
  5834. },
  5835. [
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(11.25, "feet"),
  5839. default: true
  5840. },
  5841. {
  5842. name: "Large",
  5843. height: math.unit(27, "feet")
  5844. },
  5845. {
  5846. name: "Giant",
  5847. height: math.unit(87, "feet")
  5848. },
  5849. {
  5850. name: "Macro",
  5851. height: math.unit(365, "feet")
  5852. },
  5853. {
  5854. name: "Megamacro",
  5855. height: math.unit(3, "miles")
  5856. },
  5857. {
  5858. name: "World Serpent",
  5859. height: math.unit(8000, "miles")
  5860. },
  5861. ]
  5862. ))
  5863. characterMakers.push(() => makeCharacter(
  5864. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5865. {
  5866. front: {
  5867. height: math.unit(6, "feet"),
  5868. weight: math.unit(180, "lbs"),
  5869. name: "Front",
  5870. image: {
  5871. source: "./media/characters/daimos/front.svg",
  5872. extra: 4160 / 3897,
  5873. bottom: 0.021
  5874. }
  5875. }
  5876. },
  5877. [
  5878. {
  5879. name: "Normal",
  5880. height: math.unit(8, "feet"),
  5881. default: true
  5882. },
  5883. {
  5884. name: "Big Dog",
  5885. height: math.unit(22, "feet")
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(127, "feet")
  5890. },
  5891. {
  5892. name: "Megamacro",
  5893. height: math.unit(3600, "feet")
  5894. },
  5895. ]
  5896. ))
  5897. characterMakers.push(() => makeCharacter(
  5898. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5899. {
  5900. side: {
  5901. height: math.unit(6, "feet"),
  5902. weight: math.unit(180, "lbs"),
  5903. name: "Side",
  5904. image: {
  5905. source: "./media/characters/blake/side.svg",
  5906. extra: 1212 / 1120,
  5907. bottom: 0.05
  5908. }
  5909. },
  5910. crouched: {
  5911. height: math.unit(6 * 0.57, "feet"),
  5912. weight: math.unit(180, "lbs"),
  5913. name: "Crouched",
  5914. image: {
  5915. source: "./media/characters/blake/crouched.svg",
  5916. extra: 840 / 587,
  5917. bottom: 0.04
  5918. }
  5919. },
  5920. bent: {
  5921. height: math.unit(6 * 0.75, "feet"),
  5922. weight: math.unit(180, "lbs"),
  5923. name: "Bent",
  5924. image: {
  5925. source: "./media/characters/blake/bent.svg",
  5926. extra: 592 / 544,
  5927. bottom: 0.035
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Normal",
  5934. height: math.unit(8 + 1 / 6, "feet"),
  5935. default: true
  5936. },
  5937. {
  5938. name: "Big Backside",
  5939. height: math.unit(37, "feet")
  5940. },
  5941. {
  5942. name: "Subway Shredder",
  5943. height: math.unit(72, "feet")
  5944. },
  5945. {
  5946. name: "City Carver",
  5947. height: math.unit(1675, "feet")
  5948. },
  5949. {
  5950. name: "Tectonic Tweaker",
  5951. height: math.unit(2300, "miles")
  5952. },
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Guisetto", species: ["beetle", "moth"], 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/guisetto/front.svg",
  5964. extra: 856 / 817,
  5965. bottom: 0.06
  5966. }
  5967. },
  5968. airborne: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(180, "lbs"),
  5971. name: "Airborne",
  5972. image: {
  5973. source: "./media/characters/guisetto/airborne.svg",
  5974. extra: 584 / 525
  5975. }
  5976. },
  5977. },
  5978. [
  5979. {
  5980. name: "Normal",
  5981. height: math.unit(10 + 11 / 12, "feet"),
  5982. default: true
  5983. },
  5984. {
  5985. name: "Large",
  5986. height: math.unit(35, "feet")
  5987. },
  5988. {
  5989. name: "Macro",
  5990. height: math.unit(475, "feet")
  5991. },
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5996. {
  5997. front: {
  5998. height: math.unit(6, "feet"),
  5999. weight: math.unit(180, "lbs"),
  6000. name: "Front",
  6001. image: {
  6002. source: "./media/characters/luxor/front.svg",
  6003. extra: 2940 / 2152
  6004. }
  6005. },
  6006. back: {
  6007. height: math.unit(6, "feet"),
  6008. weight: math.unit(180, "lbs"),
  6009. name: "Back",
  6010. image: {
  6011. source: "./media/characters/luxor/back.svg",
  6012. extra: 1083 / 960
  6013. }
  6014. },
  6015. },
  6016. [
  6017. {
  6018. name: "Normal",
  6019. height: math.unit(5 + 5 / 6, "feet"),
  6020. default: true
  6021. },
  6022. {
  6023. name: "Lamp",
  6024. height: math.unit(50, "feet")
  6025. },
  6026. {
  6027. name: "Lämp",
  6028. height: math.unit(300, "feet")
  6029. },
  6030. {
  6031. name: "The sun is a lamp",
  6032. height: math.unit(250000, "miles")
  6033. },
  6034. ]
  6035. ))
  6036. characterMakers.push(() => makeCharacter(
  6037. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6038. {
  6039. front: {
  6040. height: math.unit(6, "feet"),
  6041. weight: math.unit(50, "lbs"),
  6042. name: "Front",
  6043. image: {
  6044. source: "./media/characters/huoyan/front.svg"
  6045. }
  6046. },
  6047. side: {
  6048. height: math.unit(6, "feet"),
  6049. weight: math.unit(180, "lbs"),
  6050. name: "Side",
  6051. image: {
  6052. source: "./media/characters/huoyan/side.svg"
  6053. }
  6054. },
  6055. },
  6056. [
  6057. {
  6058. name: "Chef",
  6059. height: math.unit(9, "feet")
  6060. },
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(65, "feet"),
  6064. default: true
  6065. },
  6066. {
  6067. name: "Macro",
  6068. height: math.unit(780, "feet")
  6069. },
  6070. {
  6071. name: "Flaming Mountain",
  6072. height: math.unit(4.8, "miles")
  6073. },
  6074. {
  6075. name: "Celestial",
  6076. height: math.unit(765000, "miles")
  6077. },
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6082. {
  6083. front: {
  6084. height: math.unit(5 + 3 / 4, "feet"),
  6085. weight: math.unit(120, "lbs"),
  6086. name: "Front",
  6087. image: {
  6088. source: "./media/characters/tails/front.svg"
  6089. }
  6090. }
  6091. },
  6092. [
  6093. {
  6094. name: "Normal",
  6095. height: math.unit(5 + 3 / 4, "feet"),
  6096. default: true
  6097. }
  6098. ]
  6099. ))
  6100. characterMakers.push(() => makeCharacter(
  6101. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6102. {
  6103. front: {
  6104. height: math.unit(4, "feet"),
  6105. weight: math.unit(50, "lbs"),
  6106. name: "Front",
  6107. image: {
  6108. source: "./media/characters/rainy/front.svg"
  6109. }
  6110. }
  6111. },
  6112. [
  6113. {
  6114. name: "Macro",
  6115. height: math.unit(800, "feet"),
  6116. default: true
  6117. }
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6122. {
  6123. front: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(150, "lbs"),
  6126. name: "Front",
  6127. image: {
  6128. source: "./media/characters/rainier/front.svg"
  6129. }
  6130. }
  6131. },
  6132. [
  6133. {
  6134. name: "Micro",
  6135. height: math.unit(2, "mm"),
  6136. default: true
  6137. }
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6142. {
  6143. front: {
  6144. height: math.unit(8 + 4/12, "feet"),
  6145. weight: math.unit(450, "kilograms"),
  6146. volume: math.unit(5, "cups"),
  6147. name: "Front",
  6148. image: {
  6149. source: "./media/characters/andy-renard/front.svg",
  6150. extra: 1839/1726,
  6151. bottom: 134/1973
  6152. }
  6153. },
  6154. back: {
  6155. height: math.unit(8 + 4/12, "feet"),
  6156. weight: math.unit(450, "kilograms"),
  6157. volume: math.unit(5, "cups"),
  6158. name: "Back",
  6159. image: {
  6160. source: "./media/characters/andy-renard/back.svg",
  6161. extra: 1838/1710,
  6162. bottom: 105/1943
  6163. }
  6164. },
  6165. },
  6166. [
  6167. {
  6168. name: "Tall",
  6169. height: math.unit(8 + 4/12, "feet")
  6170. },
  6171. {
  6172. name: "Mini Macro",
  6173. height: math.unit(15, "feet"),
  6174. default: true
  6175. },
  6176. {
  6177. name: "Macro",
  6178. height: math.unit(100, "feet")
  6179. },
  6180. {
  6181. name: "Mega Macro",
  6182. height: math.unit(1000, "feet")
  6183. },
  6184. {
  6185. name: "Giga Macro",
  6186. height: math.unit(10, "miles")
  6187. },
  6188. {
  6189. name: "God Macro",
  6190. height: math.unit(1, "multiverse")
  6191. },
  6192. ]
  6193. ))
  6194. characterMakers.push(() => makeCharacter(
  6195. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6196. {
  6197. front: {
  6198. height: math.unit(6, "feet"),
  6199. weight: math.unit(210, "lbs"),
  6200. name: "Front",
  6201. image: {
  6202. source: "./media/characters/cimmaron/front-sfw.svg",
  6203. extra: 701 / 676,
  6204. bottom: 0.046
  6205. }
  6206. },
  6207. back: {
  6208. height: math.unit(6, "feet"),
  6209. weight: math.unit(210, "lbs"),
  6210. name: "Back",
  6211. image: {
  6212. source: "./media/characters/cimmaron/back-sfw.svg",
  6213. extra: 701 / 676,
  6214. bottom: 0.046
  6215. }
  6216. },
  6217. frontNsfw: {
  6218. height: math.unit(6, "feet"),
  6219. weight: math.unit(210, "lbs"),
  6220. name: "Front (NSFW)",
  6221. image: {
  6222. source: "./media/characters/cimmaron/front-nsfw.svg",
  6223. extra: 701 / 676,
  6224. bottom: 0.046
  6225. }
  6226. },
  6227. backNsfw: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(210, "lbs"),
  6230. name: "Back (NSFW)",
  6231. image: {
  6232. source: "./media/characters/cimmaron/back-nsfw.svg",
  6233. extra: 701 / 676,
  6234. bottom: 0.046
  6235. }
  6236. },
  6237. dick: {
  6238. height: math.unit(1.714, "feet"),
  6239. name: "Dick",
  6240. image: {
  6241. source: "./media/characters/cimmaron/dick.svg"
  6242. }
  6243. },
  6244. },
  6245. [
  6246. {
  6247. name: "Normal",
  6248. height: math.unit(6, "feet"),
  6249. default: true
  6250. },
  6251. {
  6252. name: "Macro Mayor",
  6253. height: math.unit(350, "meters")
  6254. },
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6259. {
  6260. front: {
  6261. height: math.unit(6, "feet"),
  6262. weight: math.unit(200, "lbs"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/akari/front.svg",
  6266. extra: 962 / 901,
  6267. bottom: 0.04
  6268. }
  6269. }
  6270. },
  6271. [
  6272. {
  6273. name: "Micro",
  6274. height: math.unit(5, "inches"),
  6275. default: true
  6276. },
  6277. {
  6278. name: "Normal",
  6279. height: math.unit(7, "feet")
  6280. },
  6281. ]
  6282. ))
  6283. characterMakers.push(() => makeCharacter(
  6284. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6285. {
  6286. front: {
  6287. height: math.unit(6, "feet"),
  6288. weight: math.unit(140, "lbs"),
  6289. name: "Front",
  6290. image: {
  6291. source: "./media/characters/cynosura/front.svg",
  6292. extra: 896 / 847
  6293. }
  6294. },
  6295. back: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(140, "lbs"),
  6298. name: "Back",
  6299. image: {
  6300. source: "./media/characters/cynosura/back.svg",
  6301. extra: 1365 / 1250
  6302. }
  6303. },
  6304. },
  6305. [
  6306. {
  6307. name: "Micro",
  6308. height: math.unit(4, "inches")
  6309. },
  6310. {
  6311. name: "Normal",
  6312. height: math.unit(5.75, "feet"),
  6313. default: true
  6314. },
  6315. {
  6316. name: "Tall",
  6317. height: math.unit(10, "feet")
  6318. },
  6319. {
  6320. name: "Big",
  6321. height: math.unit(20, "feet")
  6322. },
  6323. {
  6324. name: "Macro",
  6325. height: math.unit(50, "feet")
  6326. },
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6331. {
  6332. front: {
  6333. height: math.unit(13 + 2/12, "feet"),
  6334. weight: math.unit(800, "kg"),
  6335. name: "Front",
  6336. image: {
  6337. source: "./media/characters/gin/front.svg",
  6338. extra: 1312/1191,
  6339. bottom: 45/1357
  6340. }
  6341. },
  6342. mouth: {
  6343. height: math.unit(2.39 * 1.8, "feet"),
  6344. name: "Mouth",
  6345. image: {
  6346. source: "./media/characters/gin/mouth.svg"
  6347. }
  6348. },
  6349. hand: {
  6350. height: math.unit(1.57 * 2.19, "feet"),
  6351. name: "Hand",
  6352. image: {
  6353. source: "./media/characters/gin/hand.svg"
  6354. }
  6355. },
  6356. foot: {
  6357. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6358. name: "Foot",
  6359. image: {
  6360. source: "./media/characters/gin/foot.svg"
  6361. }
  6362. },
  6363. sole: {
  6364. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6365. name: "Sole",
  6366. image: {
  6367. source: "./media/characters/gin/sole.svg"
  6368. }
  6369. },
  6370. },
  6371. [
  6372. {
  6373. name: "Very Small",
  6374. height: math.unit(13 + 2 / 12, "feet")
  6375. },
  6376. {
  6377. name: "Micro",
  6378. height: math.unit(600, "miles")
  6379. },
  6380. {
  6381. name: "Regular",
  6382. height: math.unit(20, "earths"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(2.2, "solarradii")
  6388. },
  6389. {
  6390. name: "Teramacro",
  6391. height: math.unit(1.2, "galaxies")
  6392. },
  6393. {
  6394. name: "Omegamacro",
  6395. height: math.unit(200, "universes")
  6396. },
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6401. {
  6402. front: {
  6403. height: math.unit(6 + 1 / 6, "feet"),
  6404. weight: math.unit(178, "lbs"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/guy/front.svg"
  6408. }
  6409. }
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(6 + 1 / 6, "feet"),
  6415. default: true
  6416. },
  6417. {
  6418. name: "Large",
  6419. height: math.unit(25 + 7 / 12, "feet")
  6420. },
  6421. {
  6422. name: "Macro",
  6423. height: math.unit(60 + 9 / 12, "feet")
  6424. },
  6425. {
  6426. name: "Macro+",
  6427. height: math.unit(246, "feet")
  6428. },
  6429. {
  6430. name: "Macro++",
  6431. height: math.unit(878, "feet")
  6432. }
  6433. ]
  6434. ))
  6435. characterMakers.push(() => makeCharacter(
  6436. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6437. {
  6438. front: {
  6439. height: math.unit(9, "feet"),
  6440. weight: math.unit(800, "lbs"),
  6441. name: "Front",
  6442. image: {
  6443. source: "./media/characters/tiberius/front.svg",
  6444. extra: 2295 / 2071
  6445. }
  6446. },
  6447. back: {
  6448. height: math.unit(9, "feet"),
  6449. weight: math.unit(800, "lbs"),
  6450. name: "Back",
  6451. image: {
  6452. source: "./media/characters/tiberius/back.svg",
  6453. extra: 2373 / 2160
  6454. }
  6455. },
  6456. },
  6457. [
  6458. {
  6459. name: "Normal",
  6460. height: math.unit(9, "feet"),
  6461. default: true
  6462. }
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6467. {
  6468. front: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(600, "lbs"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/surgo/front.svg",
  6474. extra: 3591 / 2227
  6475. }
  6476. },
  6477. back: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(600, "lbs"),
  6480. name: "Back",
  6481. image: {
  6482. source: "./media/characters/surgo/back.svg",
  6483. extra: 3557 / 2228
  6484. }
  6485. },
  6486. laying: {
  6487. height: math.unit(6 * 0.85, "feet"),
  6488. weight: math.unit(600, "lbs"),
  6489. name: "Laying",
  6490. image: {
  6491. source: "./media/characters/surgo/laying.svg"
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(6, "feet"),
  6499. default: true
  6500. }
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6505. {
  6506. side: {
  6507. height: math.unit(6, "feet"),
  6508. weight: math.unit(150, "lbs"),
  6509. name: "Side",
  6510. image: {
  6511. source: "./media/characters/cibus/side.svg",
  6512. extra: 800 / 400
  6513. }
  6514. },
  6515. },
  6516. [
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(6, "feet"),
  6520. default: true
  6521. }
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6526. {
  6527. front: {
  6528. height: math.unit(6, "feet"),
  6529. weight: math.unit(240, "lbs"),
  6530. name: "Front",
  6531. image: {
  6532. source: "./media/characters/nibbles/front.svg"
  6533. }
  6534. },
  6535. side: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(240, "lbs"),
  6538. name: "Side",
  6539. image: {
  6540. source: "./media/characters/nibbles/side.svg"
  6541. }
  6542. },
  6543. },
  6544. [
  6545. {
  6546. name: "Normal",
  6547. height: math.unit(9, "feet"),
  6548. default: true
  6549. }
  6550. ]
  6551. ))
  6552. characterMakers.push(() => makeCharacter(
  6553. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6554. {
  6555. side: {
  6556. height: math.unit(5 + 1 / 6, "feet"),
  6557. weight: math.unit(130, "lbs"),
  6558. name: "Side",
  6559. image: {
  6560. source: "./media/characters/rikky/side.svg",
  6561. extra: 851 / 801
  6562. }
  6563. },
  6564. },
  6565. [
  6566. {
  6567. name: "Normal",
  6568. height: math.unit(5 + 1 / 6, "feet")
  6569. },
  6570. {
  6571. name: "Macro",
  6572. height: math.unit(152, "feet"),
  6573. default: true
  6574. },
  6575. {
  6576. name: "Megamacro",
  6577. height: math.unit(7, "miles")
  6578. }
  6579. ]
  6580. ))
  6581. characterMakers.push(() => makeCharacter(
  6582. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6583. {
  6584. side: {
  6585. height: math.unit(370, "cm"),
  6586. weight: math.unit(350, "lbs"),
  6587. name: "Side",
  6588. image: {
  6589. source: "./media/characters/malfressa/side.svg"
  6590. }
  6591. },
  6592. walking: {
  6593. height: math.unit(370, "cm"),
  6594. weight: math.unit(350, "lbs"),
  6595. name: "Walking",
  6596. image: {
  6597. source: "./media/characters/malfressa/walking.svg"
  6598. }
  6599. },
  6600. feral: {
  6601. height: math.unit(2500, "cm"),
  6602. weight: math.unit(100000, "lbs"),
  6603. name: "Feral",
  6604. image: {
  6605. source: "./media/characters/malfressa/feral.svg",
  6606. extra: 2108 / 837,
  6607. bottom: 0.02
  6608. }
  6609. },
  6610. },
  6611. [
  6612. {
  6613. name: "Normal",
  6614. height: math.unit(370, "cm")
  6615. },
  6616. {
  6617. name: "Macro",
  6618. height: math.unit(300, "meters"),
  6619. default: true
  6620. }
  6621. ]
  6622. ))
  6623. characterMakers.push(() => makeCharacter(
  6624. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6625. {
  6626. front: {
  6627. height: math.unit(6, "feet"),
  6628. weight: math.unit(60, "kg"),
  6629. name: "Front",
  6630. image: {
  6631. source: "./media/characters/jaro/front.svg",
  6632. extra: 845/817,
  6633. bottom: 45/890
  6634. }
  6635. },
  6636. back: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(60, "kg"),
  6639. name: "Back",
  6640. image: {
  6641. source: "./media/characters/jaro/back.svg",
  6642. extra: 847/817,
  6643. bottom: 34/881
  6644. }
  6645. },
  6646. },
  6647. [
  6648. {
  6649. name: "Micro",
  6650. height: math.unit(7, "inches")
  6651. },
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(5.5, "feet"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Minimacro",
  6659. height: math.unit(20, "feet")
  6660. },
  6661. {
  6662. name: "Macro",
  6663. height: math.unit(200, "meters")
  6664. }
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(6, "feet"),
  6672. weight: math.unit(195, "lb"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/rogue/front.svg"
  6676. }
  6677. },
  6678. },
  6679. [
  6680. {
  6681. name: "Macro",
  6682. height: math.unit(90, "feet"),
  6683. default: true
  6684. },
  6685. ]
  6686. ))
  6687. characterMakers.push(() => makeCharacter(
  6688. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6689. {
  6690. standing: {
  6691. height: math.unit(5 + 8 / 12, "feet"),
  6692. weight: math.unit(140, "lb"),
  6693. name: "Standing",
  6694. image: {
  6695. source: "./media/characters/piper/standing.svg",
  6696. extra: 1440/1284,
  6697. bottom: 66/1506
  6698. }
  6699. },
  6700. running: {
  6701. height: math.unit(5 + 8 / 12, "feet"),
  6702. weight: math.unit(140, "lb"),
  6703. name: "Running",
  6704. image: {
  6705. source: "./media/characters/piper/running.svg",
  6706. extra: 3948/3655,
  6707. bottom: 0/3948
  6708. }
  6709. },
  6710. sole: {
  6711. height: math.unit(0.81, "feet"),
  6712. weight: math.unit(2, "kg"),
  6713. name: "Sole",
  6714. image: {
  6715. source: "./media/characters/piper/sole.svg"
  6716. }
  6717. },
  6718. nipple: {
  6719. height: math.unit(0.25, "feet"),
  6720. weight: math.unit(1.5, "lb"),
  6721. name: "Nipple",
  6722. image: {
  6723. source: "./media/characters/piper/nipple.svg"
  6724. }
  6725. },
  6726. head: {
  6727. height: math.unit(1.1, "feet"),
  6728. name: "Head",
  6729. image: {
  6730. source: "./media/characters/piper/head.svg"
  6731. }
  6732. },
  6733. },
  6734. [
  6735. {
  6736. name: "Micro",
  6737. height: math.unit(2, "inches")
  6738. },
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(5 + 8 / 12, "feet")
  6742. },
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(250, "feet"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Megamacro",
  6750. height: math.unit(7, "miles")
  6751. },
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(6, "feet"),
  6759. weight: math.unit(220, "lb"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/gemini/front.svg"
  6763. }
  6764. },
  6765. back: {
  6766. height: math.unit(6, "feet"),
  6767. weight: math.unit(220, "lb"),
  6768. name: "Back",
  6769. image: {
  6770. source: "./media/characters/gemini/back.svg"
  6771. }
  6772. },
  6773. kneeling: {
  6774. height: math.unit(6 / 1.5, "feet"),
  6775. weight: math.unit(220, "lb"),
  6776. name: "Kneeling",
  6777. image: {
  6778. source: "./media/characters/gemini/kneeling.svg",
  6779. bottom: 0.02
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(300, "meters"),
  6787. default: true
  6788. },
  6789. {
  6790. name: "Megamacro",
  6791. height: math.unit(6900, "meters")
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6797. {
  6798. anthro: {
  6799. height: math.unit(2.35, "meters"),
  6800. weight: math.unit(73, "kg"),
  6801. name: "Anthro",
  6802. image: {
  6803. source: "./media/characters/alicia/anthro.svg",
  6804. extra: 2571 / 2385,
  6805. bottom: 75 / 2648
  6806. }
  6807. },
  6808. paw: {
  6809. height: math.unit(1.32, "feet"),
  6810. name: "Paw",
  6811. image: {
  6812. source: "./media/characters/alicia/paw.svg"
  6813. }
  6814. },
  6815. feral: {
  6816. height: math.unit(1.69, "meters"),
  6817. weight: math.unit(73, "kg"),
  6818. name: "Feral",
  6819. image: {
  6820. source: "./media/characters/alicia/feral.svg",
  6821. extra: 2123 / 1715,
  6822. bottom: 222 / 2349
  6823. }
  6824. },
  6825. },
  6826. [
  6827. {
  6828. name: "Normal",
  6829. height: math.unit(2.35, "meters")
  6830. },
  6831. {
  6832. name: "Macro",
  6833. height: math.unit(60, "meters"),
  6834. default: true
  6835. },
  6836. {
  6837. name: "Megamacro",
  6838. height: math.unit(10000, "kilometers")
  6839. },
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6844. {
  6845. front: {
  6846. height: math.unit(7, "feet"),
  6847. weight: math.unit(250, "lbs"),
  6848. name: "Front",
  6849. image: {
  6850. source: "./media/characters/archy/front.svg"
  6851. }
  6852. }
  6853. },
  6854. [
  6855. {
  6856. name: "Micro",
  6857. height: math.unit(1, "inch")
  6858. },
  6859. {
  6860. name: "Shorty",
  6861. height: math.unit(5, "feet")
  6862. },
  6863. {
  6864. name: "Normal",
  6865. height: math.unit(7, "feet")
  6866. },
  6867. {
  6868. name: "Macro",
  6869. height: math.unit(600, "meters"),
  6870. default: true
  6871. },
  6872. {
  6873. name: "Megamacro",
  6874. height: math.unit(1, "mile")
  6875. },
  6876. ]
  6877. ))
  6878. characterMakers.push(() => makeCharacter(
  6879. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6880. {
  6881. front: {
  6882. height: math.unit(1.65, "meters"),
  6883. weight: math.unit(74, "kg"),
  6884. name: "Front",
  6885. image: {
  6886. source: "./media/characters/berri/front.svg",
  6887. extra: 857 / 837,
  6888. bottom: 18 / 877
  6889. }
  6890. },
  6891. bum: {
  6892. height: math.unit(1.46, "feet"),
  6893. name: "Bum",
  6894. image: {
  6895. source: "./media/characters/berri/bum.svg"
  6896. }
  6897. },
  6898. mouth: {
  6899. height: math.unit(0.44, "feet"),
  6900. name: "Mouth",
  6901. image: {
  6902. source: "./media/characters/berri/mouth.svg"
  6903. }
  6904. },
  6905. paw: {
  6906. height: math.unit(0.826, "feet"),
  6907. name: "Paw",
  6908. image: {
  6909. source: "./media/characters/berri/paw.svg"
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Normal",
  6916. height: math.unit(1.65, "meters")
  6917. },
  6918. {
  6919. name: "Macro",
  6920. height: math.unit(60, "m"),
  6921. default: true
  6922. },
  6923. {
  6924. name: "Megamacro",
  6925. height: math.unit(9.213, "km")
  6926. },
  6927. {
  6928. name: "Planet Eater",
  6929. height: math.unit(489, "megameters")
  6930. },
  6931. {
  6932. name: "Teramacro",
  6933. height: math.unit(2471635000000, "meters")
  6934. },
  6935. {
  6936. name: "Examacro",
  6937. height: math.unit(8.0624e+26, "meters")
  6938. }
  6939. ]
  6940. ))
  6941. characterMakers.push(() => makeCharacter(
  6942. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6943. {
  6944. front: {
  6945. height: math.unit(1.72, "meters"),
  6946. weight: math.unit(68, "kg"),
  6947. name: "Front",
  6948. image: {
  6949. source: "./media/characters/lexi/front.svg"
  6950. }
  6951. }
  6952. },
  6953. [
  6954. {
  6955. name: "Very Smol",
  6956. height: math.unit(10, "mm")
  6957. },
  6958. {
  6959. name: "Micro",
  6960. height: math.unit(6.8, "cm"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(1.72, "m")
  6966. }
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6971. {
  6972. front: {
  6973. height: math.unit(1.69, "meters"),
  6974. weight: math.unit(68, "kg"),
  6975. name: "Front",
  6976. image: {
  6977. source: "./media/characters/martin/front.svg",
  6978. extra: 596 / 581
  6979. }
  6980. }
  6981. },
  6982. [
  6983. {
  6984. name: "Micro",
  6985. height: math.unit(6.85, "cm"),
  6986. default: true
  6987. },
  6988. {
  6989. name: "Normal",
  6990. height: math.unit(1.69, "m")
  6991. }
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(1.69, "meters"),
  6999. weight: math.unit(68, "kg"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/juno/front.svg"
  7003. }
  7004. }
  7005. },
  7006. [
  7007. {
  7008. name: "Micro",
  7009. height: math.unit(7, "cm")
  7010. },
  7011. {
  7012. name: "Normal",
  7013. height: math.unit(1.89, "m")
  7014. },
  7015. {
  7016. name: "Macro",
  7017. height: math.unit(353, "meters"),
  7018. default: true
  7019. }
  7020. ]
  7021. ))
  7022. characterMakers.push(() => makeCharacter(
  7023. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7024. {
  7025. front: {
  7026. height: math.unit(1.93, "meters"),
  7027. weight: math.unit(83, "kg"),
  7028. name: "Front",
  7029. image: {
  7030. source: "./media/characters/samantha/front.svg"
  7031. }
  7032. },
  7033. frontClothed: {
  7034. height: math.unit(1.93, "meters"),
  7035. weight: math.unit(83, "kg"),
  7036. name: "Front (Clothed)",
  7037. image: {
  7038. source: "./media/characters/samantha/front-clothed.svg"
  7039. }
  7040. },
  7041. back: {
  7042. height: math.unit(1.93, "meters"),
  7043. weight: math.unit(83, "kg"),
  7044. name: "Back",
  7045. image: {
  7046. source: "./media/characters/samantha/back.svg"
  7047. }
  7048. },
  7049. },
  7050. [
  7051. {
  7052. name: "Normal",
  7053. height: math.unit(1.93, "m")
  7054. },
  7055. {
  7056. name: "Macro",
  7057. height: math.unit(74, "meters"),
  7058. default: true
  7059. },
  7060. {
  7061. name: "Macro+",
  7062. height: math.unit(223, "meters"),
  7063. },
  7064. {
  7065. name: "Megamacro",
  7066. height: math.unit(8381, "meters"),
  7067. },
  7068. {
  7069. name: "Megamacro+",
  7070. height: math.unit(12000, "kilometers")
  7071. },
  7072. ]
  7073. ))
  7074. characterMakers.push(() => makeCharacter(
  7075. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7076. {
  7077. front: {
  7078. height: math.unit(1.92, "meters"),
  7079. weight: math.unit(80, "kg"),
  7080. name: "Front",
  7081. image: {
  7082. source: "./media/characters/dr-clay/front.svg"
  7083. }
  7084. },
  7085. frontClothed: {
  7086. height: math.unit(1.92, "meters"),
  7087. weight: math.unit(80, "kg"),
  7088. name: "Front (Clothed)",
  7089. image: {
  7090. source: "./media/characters/dr-clay/front-clothed.svg"
  7091. }
  7092. }
  7093. },
  7094. [
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(1.92, "m")
  7098. },
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(214, "meters"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Macro+",
  7106. height: math.unit(12.237, "meters"),
  7107. },
  7108. {
  7109. name: "Megamacro",
  7110. height: math.unit(557, "megameters"),
  7111. },
  7112. {
  7113. name: "Unimaginable",
  7114. height: math.unit(120e9, "lightyears")
  7115. },
  7116. ]
  7117. ))
  7118. characterMakers.push(() => makeCharacter(
  7119. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7120. {
  7121. front: {
  7122. height: math.unit(2, "meters"),
  7123. weight: math.unit(80, "kg"),
  7124. name: "Front",
  7125. image: {
  7126. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7127. }
  7128. }
  7129. },
  7130. [
  7131. {
  7132. name: "Teramacro",
  7133. height: math.unit(500000, "lightyears"),
  7134. default: true
  7135. },
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7140. {
  7141. crux: {
  7142. height: math.unit(2, "meters"),
  7143. weight: math.unit(150, "kg"),
  7144. name: "Crux",
  7145. image: {
  7146. source: "./media/characters/vemus/crux.svg",
  7147. extra: 1074/936,
  7148. bottom: 23/1097
  7149. }
  7150. },
  7151. skunkTanuki: {
  7152. height: math.unit(2, "meters"),
  7153. weight: math.unit(150, "kg"),
  7154. name: "Skunk-Tanuki",
  7155. image: {
  7156. source: "./media/characters/vemus/skunk-tanuki.svg",
  7157. extra: 926/893,
  7158. bottom: 20/946
  7159. }
  7160. },
  7161. },
  7162. [
  7163. {
  7164. name: "Normal",
  7165. height: math.unit(3.75, "meters"),
  7166. default: true
  7167. },
  7168. {
  7169. name: "Big",
  7170. height: math.unit(8, "meters")
  7171. },
  7172. {
  7173. name: "Macro",
  7174. height: math.unit(100, "meters")
  7175. },
  7176. {
  7177. name: "Macro+",
  7178. height: math.unit(1500, "meters")
  7179. },
  7180. {
  7181. name: "Stellar",
  7182. height: math.unit(14e8, "meters")
  7183. },
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7188. {
  7189. front: {
  7190. height: math.unit(2, "meters"),
  7191. weight: math.unit(70, "kg"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/beherit/front.svg",
  7195. extra: 1234/1109,
  7196. bottom: 55/1289
  7197. }
  7198. }
  7199. },
  7200. [
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(6, "feet")
  7204. },
  7205. {
  7206. name: "Lorg",
  7207. height: math.unit(25, "feet"),
  7208. default: true
  7209. },
  7210. {
  7211. name: "Lorger",
  7212. height: math.unit(75, "feet")
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(200, "meters")
  7217. },
  7218. ]
  7219. ))
  7220. characterMakers.push(() => makeCharacter(
  7221. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7222. {
  7223. front: {
  7224. height: math.unit(2, "meters"),
  7225. weight: math.unit(150, "kg"),
  7226. name: "Front",
  7227. image: {
  7228. source: "./media/characters/everett/front.svg",
  7229. extra: 1017/866,
  7230. bottom: 86/1103
  7231. }
  7232. },
  7233. paw: {
  7234. height: math.unit(2 / 3.6, "meters"),
  7235. name: "Paw",
  7236. image: {
  7237. source: "./media/characters/everett/paw.svg"
  7238. }
  7239. },
  7240. },
  7241. [
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(15, "feet"),
  7245. default: true
  7246. },
  7247. {
  7248. name: "Lorg",
  7249. height: math.unit(70, "feet"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Lorger",
  7254. height: math.unit(250, "feet")
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(500, "meters")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(2, "meters"),
  7267. weight: math.unit(86, "kg"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/rose/front.svg",
  7271. extra: 1785/1636,
  7272. bottom: 30/1815
  7273. },
  7274. form: "liom",
  7275. default: true
  7276. },
  7277. frontSporty: {
  7278. height: math.unit(2, "meters"),
  7279. weight: math.unit(86, "kg"),
  7280. name: "Front (Sporty)",
  7281. image: {
  7282. source: "./media/characters/rose/front-sporty.svg",
  7283. extra: 350/335,
  7284. bottom: 10/360
  7285. },
  7286. form: "liom"
  7287. },
  7288. frontAlt: {
  7289. height: math.unit(1.6, "meters"),
  7290. weight: math.unit(86, "kg"),
  7291. name: "Front (Alt)",
  7292. image: {
  7293. source: "./media/characters/rose/front-alt.svg",
  7294. extra: 299/283,
  7295. bottom: 3/302
  7296. },
  7297. form: "liom"
  7298. },
  7299. plush: {
  7300. height: math.unit(2, "meters"),
  7301. weight: math.unit(86/3, "kg"),
  7302. name: "Plush",
  7303. image: {
  7304. source: "./media/characters/rose/plush.svg",
  7305. extra: 361/337,
  7306. bottom: 11/372
  7307. },
  7308. form: "plush",
  7309. default: true
  7310. },
  7311. faeStanding: {
  7312. height: math.unit(10, "cm"),
  7313. weight: math.unit(10, "grams"),
  7314. name: "Standing",
  7315. image: {
  7316. source: "./media/characters/rose/fae-standing.svg",
  7317. extra: 1189/1060,
  7318. bottom: 27/1216
  7319. },
  7320. form: "fae",
  7321. default: true
  7322. },
  7323. faeSitting: {
  7324. height: math.unit(5, "cm"),
  7325. weight: math.unit(10, "grams"),
  7326. name: "Sitting",
  7327. image: {
  7328. source: "./media/characters/rose/fae-sitting.svg",
  7329. extra: 737/577,
  7330. bottom: 356/1093
  7331. },
  7332. form: "fae"
  7333. },
  7334. faePaw: {
  7335. height: math.unit(1.35, "cm"),
  7336. name: "Paw",
  7337. image: {
  7338. source: "./media/characters/rose/fae-paw.svg"
  7339. },
  7340. form: "fae"
  7341. },
  7342. },
  7343. [
  7344. {
  7345. name: "True Micro",
  7346. height: math.unit(9, "cm"),
  7347. form: "liom"
  7348. },
  7349. {
  7350. name: "Micro",
  7351. height: math.unit(16, "cm"),
  7352. form: "liom"
  7353. },
  7354. {
  7355. name: "Normal",
  7356. height: math.unit(1.85, "meters"),
  7357. default: true,
  7358. form: "liom"
  7359. },
  7360. {
  7361. name: "Mini-Macro",
  7362. height: math.unit(5, "meters"),
  7363. form: "liom"
  7364. },
  7365. {
  7366. name: "Macro",
  7367. height: math.unit(15, "meters"),
  7368. form: "liom"
  7369. },
  7370. {
  7371. name: "True Macro",
  7372. height: math.unit(40, "meters"),
  7373. form: "liom"
  7374. },
  7375. {
  7376. name: "City Scale",
  7377. height: math.unit(1, "km"),
  7378. form: "liom"
  7379. },
  7380. {
  7381. name: "Plushie",
  7382. height: math.unit(9, "cm"),
  7383. form: "plush",
  7384. default: true
  7385. },
  7386. {
  7387. name: "Fae",
  7388. height: math.unit(10, "cm"),
  7389. form: "fae",
  7390. default: true
  7391. },
  7392. ],
  7393. {
  7394. "liom": {
  7395. name: "Liom"
  7396. },
  7397. "plush": {
  7398. name: "Plush"
  7399. },
  7400. "fae": {
  7401. name: "Fae Fox",
  7402. default: true
  7403. }
  7404. }
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(2, "meters"),
  7411. weight: math.unit(350, "lbs"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/regal/front.svg"
  7415. }
  7416. },
  7417. back: {
  7418. height: math.unit(2, "meters"),
  7419. weight: math.unit(350, "lbs"),
  7420. name: "Back",
  7421. image: {
  7422. source: "./media/characters/regal/back.svg"
  7423. }
  7424. },
  7425. },
  7426. [
  7427. {
  7428. name: "Macro",
  7429. height: math.unit(350, "feet"),
  7430. default: true
  7431. }
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(4 + 11 / 12, "feet"),
  7439. weight: math.unit(100, "lbs"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/opal/front.svg"
  7443. }
  7444. },
  7445. frontAlt: {
  7446. height: math.unit(4 + 11 / 12, "feet"),
  7447. weight: math.unit(100, "lbs"),
  7448. name: "Front (Alt)",
  7449. image: {
  7450. source: "./media/characters/opal/front-alt.svg"
  7451. }
  7452. },
  7453. },
  7454. [
  7455. {
  7456. name: "Small",
  7457. height: math.unit(4 + 11 / 12, "feet")
  7458. },
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(20, "feet"),
  7462. default: true
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(120, "feet")
  7467. },
  7468. {
  7469. name: "Megamacro",
  7470. height: math.unit(80, "miles")
  7471. },
  7472. {
  7473. name: "True Size",
  7474. height: math.unit(100000, "lightyears")
  7475. },
  7476. ]
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7480. {
  7481. front: {
  7482. height: math.unit(6, "feet"),
  7483. weight: math.unit(200, "lbs"),
  7484. name: "Front",
  7485. image: {
  7486. source: "./media/characters/vector-wuff/front.svg"
  7487. }
  7488. }
  7489. },
  7490. [
  7491. {
  7492. name: "Normal",
  7493. height: math.unit(2.8, "meters")
  7494. },
  7495. {
  7496. name: "Macro",
  7497. height: math.unit(450, "meters"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Megamacro",
  7502. height: math.unit(15, "kilometers")
  7503. }
  7504. ]
  7505. ))
  7506. characterMakers.push(() => makeCharacter(
  7507. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7508. {
  7509. front: {
  7510. height: math.unit(6, "feet"),
  7511. weight: math.unit(256, "lbs"),
  7512. name: "Front",
  7513. image: {
  7514. source: "./media/characters/dannik/front.svg"
  7515. }
  7516. }
  7517. },
  7518. [
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(69.57, "meters"),
  7522. default: true
  7523. },
  7524. ]
  7525. ))
  7526. characterMakers.push(() => makeCharacter(
  7527. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7528. {
  7529. front: {
  7530. height: math.unit(6, "feet"),
  7531. weight: math.unit(120, "lbs"),
  7532. name: "Front",
  7533. image: {
  7534. source: "./media/characters/azura-saharah/front.svg"
  7535. }
  7536. },
  7537. back: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(120, "lbs"),
  7540. name: "Back",
  7541. image: {
  7542. source: "./media/characters/azura-saharah/back.svg"
  7543. }
  7544. },
  7545. },
  7546. [
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(100, "feet"),
  7550. default: true
  7551. },
  7552. ]
  7553. ))
  7554. characterMakers.push(() => makeCharacter(
  7555. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7556. {
  7557. side: {
  7558. height: math.unit(5 + 4 / 12, "feet"),
  7559. weight: math.unit(163, "lbs"),
  7560. name: "Side",
  7561. image: {
  7562. source: "./media/characters/kennedy/side.svg"
  7563. }
  7564. }
  7565. },
  7566. [
  7567. {
  7568. name: "Standard Doggo",
  7569. height: math.unit(5 + 4 / 12, "feet")
  7570. },
  7571. {
  7572. name: "Big Doggo",
  7573. height: math.unit(25 + 3 / 12, "feet"),
  7574. default: true
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(5 + 5/12, "feet"),
  7583. weight: math.unit(100, "lbs"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/odios-de-lunar/front.svg",
  7587. extra: 1468/1323,
  7588. bottom: 22/1490
  7589. }
  7590. }
  7591. },
  7592. [
  7593. {
  7594. name: "Micro",
  7595. height: math.unit(3, "inches")
  7596. },
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(5.5, "feet"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(100, "feet")
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7610. {
  7611. back: {
  7612. height: math.unit(6, "feet"),
  7613. weight: math.unit(220, "lbs"),
  7614. name: "Back",
  7615. image: {
  7616. source: "./media/characters/mandake/back.svg"
  7617. }
  7618. }
  7619. },
  7620. [
  7621. {
  7622. name: "Normal",
  7623. height: math.unit(7, "feet"),
  7624. default: true
  7625. },
  7626. {
  7627. name: "Macro",
  7628. height: math.unit(78, "feet")
  7629. },
  7630. {
  7631. name: "Macro+",
  7632. height: math.unit(300, "meters")
  7633. },
  7634. {
  7635. name: "Macro++",
  7636. height: math.unit(2400, "feet")
  7637. },
  7638. {
  7639. name: "Megamacro",
  7640. height: math.unit(5167, "meters")
  7641. },
  7642. {
  7643. name: "Gigamacro",
  7644. height: math.unit(41769, "miles")
  7645. },
  7646. ]
  7647. ))
  7648. characterMakers.push(() => makeCharacter(
  7649. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7650. {
  7651. front: {
  7652. height: math.unit(6, "feet"),
  7653. weight: math.unit(120, "lbs"),
  7654. name: "Front",
  7655. image: {
  7656. source: "./media/characters/yozey/front.svg"
  7657. }
  7658. },
  7659. frontAlt: {
  7660. height: math.unit(6, "feet"),
  7661. weight: math.unit(120, "lbs"),
  7662. name: "Front (Alt)",
  7663. image: {
  7664. source: "./media/characters/yozey/front-alt.svg"
  7665. }
  7666. },
  7667. side: {
  7668. height: math.unit(6, "feet"),
  7669. weight: math.unit(120, "lbs"),
  7670. name: "Side",
  7671. image: {
  7672. source: "./media/characters/yozey/side.svg"
  7673. }
  7674. },
  7675. },
  7676. [
  7677. {
  7678. name: "Micro",
  7679. height: math.unit(3, "inches"),
  7680. default: true
  7681. },
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(6, "feet")
  7685. }
  7686. ]
  7687. ))
  7688. characterMakers.push(() => makeCharacter(
  7689. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7690. {
  7691. front: {
  7692. height: math.unit(6, "feet"),
  7693. weight: math.unit(103, "lbs"),
  7694. name: "Front",
  7695. image: {
  7696. source: "./media/characters/valeska-voss/front.svg"
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Mini-Sized Sub",
  7703. height: math.unit(3.1, "inches")
  7704. },
  7705. {
  7706. name: "Mid-Sized Sub",
  7707. height: math.unit(6.2, "inches")
  7708. },
  7709. {
  7710. name: "Full-Sized Sub",
  7711. height: math.unit(9.3, "inches")
  7712. },
  7713. {
  7714. name: "Normal",
  7715. height: math.unit(5 + 2 / 12, "foot"),
  7716. default: true
  7717. },
  7718. ]
  7719. ))
  7720. characterMakers.push(() => makeCharacter(
  7721. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7722. {
  7723. front: {
  7724. height: math.unit(6, "feet"),
  7725. weight: math.unit(160, "lbs"),
  7726. name: "Front",
  7727. image: {
  7728. source: "./media/characters/gene-zeta/front.svg",
  7729. extra: 3006 / 2826,
  7730. bottom: 182 / 3188
  7731. }
  7732. }
  7733. },
  7734. [
  7735. {
  7736. name: "Micro",
  7737. height: math.unit(6, "inches")
  7738. },
  7739. {
  7740. name: "Normal",
  7741. height: math.unit(5 + 11 / 12, "foot"),
  7742. default: true
  7743. },
  7744. {
  7745. name: "Macro",
  7746. height: math.unit(140, "feet")
  7747. },
  7748. {
  7749. name: "Supercharged",
  7750. height: math.unit(2500, "feet")
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(6, "feet"),
  7759. weight: math.unit(350, "lbs"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/razinox/front.svg",
  7763. extra: 1686 / 1548,
  7764. bottom: 28.2 / 1868
  7765. }
  7766. },
  7767. back: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(350, "lbs"),
  7770. name: "Back",
  7771. image: {
  7772. source: "./media/characters/razinox/back.svg",
  7773. extra: 1660 / 1590,
  7774. bottom: 15 / 1665
  7775. }
  7776. },
  7777. },
  7778. [
  7779. {
  7780. name: "Normal",
  7781. height: math.unit(10 + 8 / 12, "foot")
  7782. },
  7783. {
  7784. name: "Minimacro",
  7785. height: math.unit(15, "foot")
  7786. },
  7787. {
  7788. name: "Macro",
  7789. height: math.unit(60, "foot"),
  7790. default: true
  7791. },
  7792. {
  7793. name: "Megamacro",
  7794. height: math.unit(5, "miles")
  7795. },
  7796. {
  7797. name: "Gigamacro",
  7798. height: math.unit(6000, "miles")
  7799. },
  7800. ]
  7801. ))
  7802. characterMakers.push(() => makeCharacter(
  7803. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7804. {
  7805. front: {
  7806. height: math.unit(6, "feet"),
  7807. weight: math.unit(150, "lbs"),
  7808. name: "Front",
  7809. image: {
  7810. source: "./media/characters/cobalt/front.svg"
  7811. }
  7812. }
  7813. },
  7814. [
  7815. {
  7816. name: "Normal",
  7817. height: math.unit(8 + 1 / 12, "foot")
  7818. },
  7819. {
  7820. name: "Macro",
  7821. height: math.unit(111, "foot"),
  7822. default: true
  7823. },
  7824. {
  7825. name: "Supracosmic",
  7826. height: math.unit(1e42, "feet")
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(5, "inches"),
  7835. name: "Front",
  7836. image: {
  7837. source: "./media/characters/amanda/front.svg",
  7838. extra: 926/791,
  7839. bottom: 38/964
  7840. }
  7841. },
  7842. back: {
  7843. height: math.unit(5, "inches"),
  7844. name: "Back",
  7845. image: {
  7846. source: "./media/characters/amanda/back.svg",
  7847. extra: 909/805,
  7848. bottom: 43/952
  7849. }
  7850. },
  7851. },
  7852. [
  7853. {
  7854. name: "Micro",
  7855. height: math.unit(5, "inches"),
  7856. default: true
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(2.75, "meters"),
  7865. weight: math.unit(1200, "lb"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/teal/front.svg",
  7869. extra: 2463 / 2320,
  7870. bottom: 166 / 2629
  7871. }
  7872. },
  7873. back: {
  7874. height: math.unit(2.75, "meters"),
  7875. weight: math.unit(1200, "lb"),
  7876. name: "Back",
  7877. image: {
  7878. source: "./media/characters/teal/back.svg",
  7879. extra: 2580 / 2489,
  7880. bottom: 151 / 2731
  7881. }
  7882. },
  7883. sitting: {
  7884. height: math.unit(1.9, "meters"),
  7885. weight: math.unit(1200, "lb"),
  7886. name: "Sitting",
  7887. image: {
  7888. source: "./media/characters/teal/sitting.svg",
  7889. extra: 623 / 590,
  7890. bottom: 121 / 744
  7891. }
  7892. },
  7893. standing: {
  7894. height: math.unit(2.75, "meters"),
  7895. weight: math.unit(1200, "lb"),
  7896. name: "Standing",
  7897. image: {
  7898. source: "./media/characters/teal/standing.svg",
  7899. extra: 923 / 893,
  7900. bottom: 60 / 983
  7901. }
  7902. },
  7903. stretching: {
  7904. height: math.unit(3.65, "meters"),
  7905. weight: math.unit(1200, "lb"),
  7906. name: "Stretching",
  7907. image: {
  7908. source: "./media/characters/teal/stretching.svg",
  7909. extra: 1276 / 1244,
  7910. bottom: 0 / 1276
  7911. }
  7912. },
  7913. legged: {
  7914. height: math.unit(1.3, "meters"),
  7915. weight: math.unit(100, "lb"),
  7916. name: "Legged",
  7917. image: {
  7918. source: "./media/characters/teal/legged.svg",
  7919. extra: 462 / 437,
  7920. bottom: 24 / 486
  7921. }
  7922. },
  7923. naga: {
  7924. height: math.unit(5.4, "meters"),
  7925. weight: math.unit(4000, "lb"),
  7926. name: "Naga",
  7927. image: {
  7928. source: "./media/characters/teal/naga.svg",
  7929. extra: 1902 / 1858,
  7930. bottom: 0 / 1902
  7931. }
  7932. },
  7933. hand: {
  7934. height: math.unit(0.52, "meters"),
  7935. name: "Hand",
  7936. image: {
  7937. source: "./media/characters/teal/hand.svg"
  7938. }
  7939. },
  7940. maw: {
  7941. height: math.unit(0.43, "meters"),
  7942. name: "Maw",
  7943. image: {
  7944. source: "./media/characters/teal/maw.svg"
  7945. }
  7946. },
  7947. slit: {
  7948. height: math.unit(0.25, "meters"),
  7949. name: "Slit",
  7950. image: {
  7951. source: "./media/characters/teal/slit.svg"
  7952. }
  7953. },
  7954. },
  7955. [
  7956. {
  7957. name: "Normal",
  7958. height: math.unit(2.75, "meters"),
  7959. default: true
  7960. },
  7961. {
  7962. name: "Macro",
  7963. height: math.unit(300, "feet")
  7964. },
  7965. {
  7966. name: "Macro+",
  7967. height: math.unit(2000, "feet")
  7968. },
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7973. {
  7974. frontCat: {
  7975. height: math.unit(6, "feet"),
  7976. weight: math.unit(180, "lbs"),
  7977. name: "Front (Cat)",
  7978. image: {
  7979. source: "./media/characters/ravin-amulet/front-cat.svg"
  7980. }
  7981. },
  7982. frontCatAlt: {
  7983. height: math.unit(6, "feet"),
  7984. weight: math.unit(180, "lbs"),
  7985. name: "Front (Alt, Cat)",
  7986. image: {
  7987. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7988. }
  7989. },
  7990. frontWerewolf: {
  7991. height: math.unit(6 * 1.2, "feet"),
  7992. weight: math.unit(225, "lbs"),
  7993. name: "Front (Werewolf)",
  7994. image: {
  7995. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7996. }
  7997. },
  7998. backWerewolf: {
  7999. height: math.unit(6 * 1.2, "feet"),
  8000. weight: math.unit(225, "lbs"),
  8001. name: "Back (Werewolf)",
  8002. image: {
  8003. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8004. }
  8005. },
  8006. },
  8007. [
  8008. {
  8009. name: "Nano",
  8010. height: math.unit(1, "micrometer")
  8011. },
  8012. {
  8013. name: "Micro",
  8014. height: math.unit(1, "inch")
  8015. },
  8016. {
  8017. name: "Normal",
  8018. height: math.unit(6, "feet"),
  8019. default: true
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(60, "feet")
  8024. }
  8025. ]
  8026. ))
  8027. characterMakers.push(() => makeCharacter(
  8028. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8029. {
  8030. front: {
  8031. height: math.unit(6, "feet"),
  8032. weight: math.unit(165, "lbs"),
  8033. name: "Front",
  8034. image: {
  8035. source: "./media/characters/fluoresce/front.svg"
  8036. }
  8037. }
  8038. },
  8039. [
  8040. {
  8041. name: "Micro",
  8042. height: math.unit(6, "cm")
  8043. },
  8044. {
  8045. name: "Normal",
  8046. height: math.unit(5 + 7 / 12, "feet"),
  8047. default: true
  8048. },
  8049. {
  8050. name: "Macro",
  8051. height: math.unit(56, "feet")
  8052. },
  8053. {
  8054. name: "Megamacro",
  8055. height: math.unit(1.9, "miles")
  8056. },
  8057. ]
  8058. ))
  8059. characterMakers.push(() => makeCharacter(
  8060. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8061. {
  8062. front: {
  8063. height: math.unit(9 + 6 / 12, "feet"),
  8064. weight: math.unit(523, "lbs"),
  8065. name: "Side",
  8066. image: {
  8067. source: "./media/characters/aurora/side.svg"
  8068. }
  8069. }
  8070. },
  8071. [
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(9 + 6 / 12, "feet")
  8075. },
  8076. {
  8077. name: "Macro",
  8078. height: math.unit(96, "feet"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "Macro+",
  8083. height: math.unit(243, "feet")
  8084. },
  8085. ]
  8086. ))
  8087. characterMakers.push(() => makeCharacter(
  8088. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8089. {
  8090. front: {
  8091. height: math.unit(194, "cm"),
  8092. weight: math.unit(90, "kg"),
  8093. name: "Front",
  8094. image: {
  8095. source: "./media/characters/ranek/front.svg",
  8096. extra: 1862/1791,
  8097. bottom: 80/1942
  8098. }
  8099. },
  8100. back: {
  8101. height: math.unit(194, "cm"),
  8102. weight: math.unit(90, "kg"),
  8103. name: "Back",
  8104. image: {
  8105. source: "./media/characters/ranek/back.svg",
  8106. extra: 1853/1787,
  8107. bottom: 74/1927
  8108. }
  8109. },
  8110. feral: {
  8111. height: math.unit(30, "cm"),
  8112. weight: math.unit(1.6, "lbs"),
  8113. name: "Feral",
  8114. image: {
  8115. source: "./media/characters/ranek/feral.svg",
  8116. extra: 990/631,
  8117. bottom: 29/1019
  8118. }
  8119. },
  8120. },
  8121. [
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(194, "cm"),
  8125. default: true
  8126. },
  8127. {
  8128. name: "Macro",
  8129. height: math.unit(100, "meters")
  8130. },
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8135. {
  8136. front: {
  8137. height: math.unit(5 + 6 / 12, "feet"),
  8138. weight: math.unit(153, "lbs"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/andrew-cooper/front.svg"
  8142. }
  8143. },
  8144. },
  8145. [
  8146. {
  8147. name: "Nano",
  8148. height: math.unit(1, "mm")
  8149. },
  8150. {
  8151. name: "Micro",
  8152. height: math.unit(2, "inches")
  8153. },
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(5 + 6 / 12, "feet"),
  8157. default: true
  8158. }
  8159. ]
  8160. ))
  8161. characterMakers.push(() => makeCharacter(
  8162. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8163. {
  8164. front: {
  8165. height: math.unit(6, "feet"),
  8166. weight: math.unit(180, "lbs"),
  8167. name: "Front",
  8168. image: {
  8169. source: "./media/characters/akane-sato/front.svg",
  8170. extra: 1219 / 1140
  8171. }
  8172. },
  8173. back: {
  8174. height: math.unit(6, "feet"),
  8175. weight: math.unit(180, "lbs"),
  8176. name: "Back",
  8177. image: {
  8178. source: "./media/characters/akane-sato/back.svg",
  8179. extra: 1219 / 1170
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(2.5, "meters")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(250, "meters"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Megamacro",
  8195. height: math.unit(25, "km")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(65, "kg"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/rook/front.svg",
  8208. extra: 960 / 950
  8209. }
  8210. }
  8211. },
  8212. [
  8213. {
  8214. name: "Normal",
  8215. height: math.unit(8.8, "feet")
  8216. },
  8217. {
  8218. name: "Macro",
  8219. height: math.unit(88, "feet"),
  8220. default: true
  8221. },
  8222. {
  8223. name: "Megamacro",
  8224. height: math.unit(8, "miles")
  8225. },
  8226. ]
  8227. ))
  8228. characterMakers.push(() => makeCharacter(
  8229. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8230. {
  8231. front: {
  8232. height: math.unit(12 + 2 / 12, "feet"),
  8233. weight: math.unit(808, "lbs"),
  8234. name: "Front",
  8235. image: {
  8236. source: "./media/characters/prodigy/front.svg"
  8237. }
  8238. }
  8239. },
  8240. [
  8241. {
  8242. name: "Normal",
  8243. height: math.unit(12 + 2 / 12, "feet"),
  8244. default: true
  8245. },
  8246. {
  8247. name: "Macro",
  8248. height: math.unit(143, "feet")
  8249. },
  8250. {
  8251. name: "Macro+",
  8252. height: math.unit(400, "feet")
  8253. },
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8258. {
  8259. front: {
  8260. height: math.unit(6, "feet"),
  8261. weight: math.unit(225, "lbs"),
  8262. name: "Front",
  8263. image: {
  8264. source: "./media/characters/daniel/front.svg"
  8265. }
  8266. },
  8267. leaning: {
  8268. height: math.unit(6, "feet"),
  8269. weight: math.unit(225, "lbs"),
  8270. name: "Leaning",
  8271. image: {
  8272. source: "./media/characters/daniel/leaning.svg"
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(1000, "feet"),
  8280. default: true
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(6, "feet"),
  8289. weight: math.unit(88, "lbs"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/chiros/front.svg",
  8293. extra: 306 / 226
  8294. }
  8295. },
  8296. side: {
  8297. height: math.unit(6, "feet"),
  8298. weight: math.unit(88, "lbs"),
  8299. name: "Side",
  8300. image: {
  8301. source: "./media/characters/chiros/side.svg",
  8302. extra: 306 / 226
  8303. }
  8304. },
  8305. },
  8306. [
  8307. {
  8308. name: "Normal",
  8309. height: math.unit(6, "cm"),
  8310. default: true
  8311. },
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8316. {
  8317. front: {
  8318. height: math.unit(6, "feet"),
  8319. weight: math.unit(100, "lbs"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/selka/front.svg",
  8323. extra: 947 / 887
  8324. }
  8325. }
  8326. },
  8327. [
  8328. {
  8329. name: "Normal",
  8330. height: math.unit(5, "cm"),
  8331. default: true
  8332. },
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(8 + 3 / 12, "feet"),
  8340. weight: math.unit(424, "lbs"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/verin/front.svg",
  8344. extra: 1845 / 1550
  8345. }
  8346. },
  8347. frontArmored: {
  8348. height: math.unit(8 + 3 / 12, "feet"),
  8349. weight: math.unit(424, "lbs"),
  8350. name: "Front (Armored)",
  8351. image: {
  8352. source: "./media/characters/verin/front-armor.svg",
  8353. extra: 1845 / 1550,
  8354. bottom: 0.01
  8355. }
  8356. },
  8357. back: {
  8358. height: math.unit(8 + 3 / 12, "feet"),
  8359. weight: math.unit(424, "lbs"),
  8360. name: "Back",
  8361. image: {
  8362. source: "./media/characters/verin/back.svg",
  8363. bottom: 0.1,
  8364. extra: 1
  8365. }
  8366. },
  8367. foot: {
  8368. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8369. name: "Foot",
  8370. image: {
  8371. source: "./media/characters/verin/foot.svg"
  8372. }
  8373. },
  8374. },
  8375. [
  8376. {
  8377. name: "Normal",
  8378. height: math.unit(8 + 3 / 12, "feet")
  8379. },
  8380. {
  8381. name: "Minimacro",
  8382. height: math.unit(21, "feet"),
  8383. default: true
  8384. },
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(626, "feet")
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(2.718, "meters"),
  8396. weight: math.unit(150, "lbs"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/sovrim-terraquian/front.svg",
  8400. extra: 1752/1689,
  8401. bottom: 36/1788
  8402. }
  8403. },
  8404. back: {
  8405. height: math.unit(2.718, "meters"),
  8406. weight: math.unit(150, "lbs"),
  8407. name: "Back",
  8408. image: {
  8409. source: "./media/characters/sovrim-terraquian/back.svg",
  8410. extra: 1698/1657,
  8411. bottom: 58/1756
  8412. }
  8413. },
  8414. tongue: {
  8415. height: math.unit(2.865, "feet"),
  8416. name: "Tongue",
  8417. image: {
  8418. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8419. }
  8420. },
  8421. hand: {
  8422. height: math.unit(1.61, "feet"),
  8423. name: "Hand",
  8424. image: {
  8425. source: "./media/characters/sovrim-terraquian/hand.svg"
  8426. }
  8427. },
  8428. foot: {
  8429. height: math.unit(1.05, "feet"),
  8430. name: "Foot",
  8431. image: {
  8432. source: "./media/characters/sovrim-terraquian/foot.svg"
  8433. }
  8434. },
  8435. footAlt: {
  8436. height: math.unit(0.88, "feet"),
  8437. name: "Foot (Alt)",
  8438. image: {
  8439. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Micro",
  8446. height: math.unit(2, "inches")
  8447. },
  8448. {
  8449. name: "Small",
  8450. height: math.unit(1, "meter")
  8451. },
  8452. {
  8453. name: "Normal",
  8454. height: math.unit(Math.E, "meters"),
  8455. default: true
  8456. },
  8457. {
  8458. name: "Macro",
  8459. height: math.unit(20, "meters")
  8460. },
  8461. {
  8462. name: "Macro+",
  8463. height: math.unit(400, "meters")
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(7, "feet"),
  8472. weight: math.unit(489, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/reece-silvermane/front.svg",
  8476. bottom: 0.02,
  8477. extra: 1
  8478. }
  8479. },
  8480. },
  8481. [
  8482. {
  8483. name: "Macro",
  8484. height: math.unit(1.5, "miles"),
  8485. default: true
  8486. },
  8487. ]
  8488. ))
  8489. characterMakers.push(() => makeCharacter(
  8490. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8491. {
  8492. front: {
  8493. height: math.unit(6, "feet"),
  8494. weight: math.unit(78, "kg"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/kane/front.svg",
  8498. extra: 978 / 899
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(2.1, "m"),
  8506. },
  8507. {
  8508. name: "Macro",
  8509. height: math.unit(1, "km"),
  8510. default: true
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(6, "feet"),
  8519. weight: math.unit(200, "kg"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/tegon/front.svg",
  8523. bottom: 0.01,
  8524. extra: 1
  8525. }
  8526. },
  8527. },
  8528. [
  8529. {
  8530. name: "Micro",
  8531. height: math.unit(1, "inch")
  8532. },
  8533. {
  8534. name: "Normal",
  8535. height: math.unit(6 + 3 / 12, "feet"),
  8536. default: true
  8537. },
  8538. {
  8539. name: "Macro",
  8540. height: math.unit(300, "feet")
  8541. },
  8542. {
  8543. name: "Megamacro",
  8544. height: math.unit(69, "miles")
  8545. },
  8546. ]
  8547. ))
  8548. characterMakers.push(() => makeCharacter(
  8549. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8550. {
  8551. side: {
  8552. height: math.unit(6, "feet"),
  8553. weight: math.unit(2304, "lbs"),
  8554. name: "Side",
  8555. image: {
  8556. source: "./media/characters/arcturax/side.svg",
  8557. extra: 790 / 376,
  8558. bottom: 0.01
  8559. }
  8560. },
  8561. },
  8562. [
  8563. {
  8564. name: "Micro",
  8565. height: math.unit(2, "inch")
  8566. },
  8567. {
  8568. name: "Normal",
  8569. height: math.unit(6, "feet")
  8570. },
  8571. {
  8572. name: "Macro",
  8573. height: math.unit(39, "feet"),
  8574. default: true
  8575. },
  8576. {
  8577. name: "Megamacro",
  8578. height: math.unit(7, "miles")
  8579. },
  8580. ]
  8581. ))
  8582. characterMakers.push(() => makeCharacter(
  8583. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8584. {
  8585. front: {
  8586. height: math.unit(6, "feet"),
  8587. weight: math.unit(50, "lbs"),
  8588. name: "Front",
  8589. image: {
  8590. source: "./media/characters/sentri/front.svg",
  8591. extra: 1750 / 1570,
  8592. bottom: 0.025
  8593. }
  8594. },
  8595. frontAlt: {
  8596. height: math.unit(6, "feet"),
  8597. weight: math.unit(50, "lbs"),
  8598. name: "Front (Alt)",
  8599. image: {
  8600. source: "./media/characters/sentri/front-alt.svg",
  8601. extra: 1750 / 1570,
  8602. bottom: 0.025
  8603. }
  8604. },
  8605. },
  8606. [
  8607. {
  8608. name: "Normal",
  8609. height: math.unit(15, "feet"),
  8610. default: true
  8611. },
  8612. {
  8613. name: "Macro",
  8614. height: math.unit(2500, "feet")
  8615. }
  8616. ]
  8617. ))
  8618. characterMakers.push(() => makeCharacter(
  8619. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8620. {
  8621. front: {
  8622. height: math.unit(5 + 8 / 12, "feet"),
  8623. weight: math.unit(130, "lbs"),
  8624. name: "Front",
  8625. image: {
  8626. source: "./media/characters/corvin/front.svg",
  8627. extra: 1803 / 1629
  8628. }
  8629. },
  8630. frontShirt: {
  8631. height: math.unit(5 + 8 / 12, "feet"),
  8632. weight: math.unit(130, "lbs"),
  8633. name: "Front (Shirt)",
  8634. image: {
  8635. source: "./media/characters/corvin/front-shirt.svg",
  8636. extra: 1803 / 1629
  8637. }
  8638. },
  8639. frontPoncho: {
  8640. height: math.unit(5 + 8 / 12, "feet"),
  8641. weight: math.unit(130, "lbs"),
  8642. name: "Front (Poncho)",
  8643. image: {
  8644. source: "./media/characters/corvin/front-poncho.svg",
  8645. extra: 1803 / 1629
  8646. }
  8647. },
  8648. side: {
  8649. height: math.unit(5 + 8 / 12, "feet"),
  8650. weight: math.unit(130, "lbs"),
  8651. name: "Side",
  8652. image: {
  8653. source: "./media/characters/corvin/side.svg",
  8654. extra: 1012 / 945
  8655. }
  8656. },
  8657. back: {
  8658. height: math.unit(5 + 8 / 12, "feet"),
  8659. weight: math.unit(130, "lbs"),
  8660. name: "Back",
  8661. image: {
  8662. source: "./media/characters/corvin/back.svg",
  8663. extra: 1803 / 1629
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Micro",
  8670. height: math.unit(3, "inches")
  8671. },
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(5 + 8 / 12, "feet")
  8675. },
  8676. {
  8677. name: "Macro",
  8678. height: math.unit(300, "feet"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Megamacro",
  8683. height: math.unit(500, "miles")
  8684. }
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(6, "feet"),
  8692. weight: math.unit(135, "lbs"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/q/front.svg",
  8696. extra: 854 / 752,
  8697. bottom: 0.005
  8698. }
  8699. },
  8700. back: {
  8701. height: math.unit(6, "feet"),
  8702. weight: math.unit(130, "lbs"),
  8703. name: "Back",
  8704. image: {
  8705. source: "./media/characters/q/back.svg",
  8706. extra: 854 / 752
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Macro",
  8713. height: math.unit(90, "feet"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Extra Macro",
  8718. height: math.unit(300, "feet"),
  8719. },
  8720. {
  8721. name: "BIG WALF",
  8722. height: math.unit(750, "feet"),
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(150, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/carley/front.svg",
  8735. extra: 3927 / 3540,
  8736. bottom: 29.2 / 735
  8737. }
  8738. }
  8739. },
  8740. [
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(6 + 3 / 12, "feet")
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(185, "feet"),
  8748. default: true
  8749. },
  8750. {
  8751. name: "Megamacro",
  8752. height: math.unit(8, "miles"),
  8753. },
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8758. {
  8759. front: {
  8760. height: math.unit(3, "feet"),
  8761. weight: math.unit(28, "lbs"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/citrine/front.svg"
  8765. }
  8766. }
  8767. },
  8768. [
  8769. {
  8770. name: "Normal",
  8771. height: math.unit(3, "feet"),
  8772. default: true
  8773. }
  8774. ]
  8775. ))
  8776. characterMakers.push(() => makeCharacter(
  8777. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8778. {
  8779. front: {
  8780. height: math.unit(14, "feet"),
  8781. weight: math.unit(1450, "kg"),
  8782. preyCapacity: math.unit(15, "people"),
  8783. name: "Front",
  8784. image: {
  8785. source: "./media/characters/aura-starwind/front.svg",
  8786. extra: 1440/1327,
  8787. bottom: 11/1451
  8788. }
  8789. },
  8790. side: {
  8791. height: math.unit(14, "feet"),
  8792. weight: math.unit(1450, "kg"),
  8793. preyCapacity: math.unit(15, "people"),
  8794. name: "Side",
  8795. image: {
  8796. source: "./media/characters/aura-starwind/side.svg",
  8797. extra: 1654 / 1497
  8798. }
  8799. },
  8800. taur: {
  8801. height: math.unit(18, "feet"),
  8802. weight: math.unit(5500, "kg"),
  8803. preyCapacity: math.unit(50, "people"),
  8804. name: "Taur",
  8805. image: {
  8806. source: "./media/characters/aura-starwind/taur.svg",
  8807. extra: 1760 / 1650
  8808. }
  8809. },
  8810. feral: {
  8811. height: math.unit(46, "feet"),
  8812. weight: math.unit(25000, "kg"),
  8813. preyCapacity: math.unit(120, "people"),
  8814. name: "Feral",
  8815. image: {
  8816. source: "./media/characters/aura-starwind/feral.svg"
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(14, "feet"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Macro",
  8828. height: math.unit(50, "meters")
  8829. },
  8830. {
  8831. name: "Megamacro",
  8832. height: math.unit(5000, "meters")
  8833. },
  8834. {
  8835. name: "Gigamacro",
  8836. height: math.unit(100000, "kilometers")
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8842. {
  8843. front: {
  8844. height: math.unit(2 + 7 / 12, "feet"),
  8845. weight: math.unit(32, "lbs"),
  8846. name: "Front",
  8847. image: {
  8848. source: "./media/characters/rivet/front.svg",
  8849. extra: 1716 / 1658,
  8850. bottom: 0.03
  8851. }
  8852. },
  8853. foot: {
  8854. height: math.unit(0.551, "feet"),
  8855. name: "Rivet's Foot",
  8856. image: {
  8857. source: "./media/characters/rivet/foot.svg"
  8858. },
  8859. rename: true
  8860. }
  8861. },
  8862. [
  8863. {
  8864. name: "Micro",
  8865. height: math.unit(1.5, "inches"),
  8866. },
  8867. {
  8868. name: "Normal",
  8869. height: math.unit(2 + 7 / 12, "feet"),
  8870. default: true
  8871. },
  8872. {
  8873. name: "Macro",
  8874. height: math.unit(85, "feet")
  8875. },
  8876. {
  8877. name: "Megamacro",
  8878. height: math.unit(2.2, "km")
  8879. }
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8884. {
  8885. front: {
  8886. height: math.unit(5 + 9 / 12, "feet"),
  8887. weight: math.unit(150, "lbs"),
  8888. name: "Front",
  8889. image: {
  8890. source: "./media/characters/coffee/front.svg",
  8891. extra: 3666 / 3032,
  8892. bottom: 0.04
  8893. }
  8894. },
  8895. foot: {
  8896. height: math.unit(1.29, "feet"),
  8897. name: "Foot",
  8898. image: {
  8899. source: "./media/characters/coffee/foot.svg"
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Micro",
  8906. height: math.unit(2, "inches"),
  8907. },
  8908. {
  8909. name: "Normal",
  8910. height: math.unit(5 + 9 / 12, "feet"),
  8911. default: true
  8912. },
  8913. {
  8914. name: "Macro",
  8915. height: math.unit(800, "feet")
  8916. },
  8917. {
  8918. name: "Megamacro",
  8919. height: math.unit(25, "miles")
  8920. }
  8921. ]
  8922. ))
  8923. characterMakers.push(() => makeCharacter(
  8924. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8925. {
  8926. front: {
  8927. height: math.unit(6, "feet"),
  8928. weight: math.unit(200, "lbs"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/chari-gal/front.svg",
  8932. extra: 1568 / 1385,
  8933. bottom: 0.047
  8934. }
  8935. },
  8936. gigantamax: {
  8937. height: math.unit(6 * 16, "feet"),
  8938. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8939. name: "Gigantamax",
  8940. image: {
  8941. source: "./media/characters/chari-gal/gigantamax.svg",
  8942. extra: 1124 / 888,
  8943. bottom: 0.03
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Normal",
  8950. height: math.unit(5 + 7 / 12, "feet")
  8951. },
  8952. {
  8953. name: "Macro",
  8954. height: math.unit(200, "feet"),
  8955. default: true
  8956. }
  8957. ]
  8958. ))
  8959. characterMakers.push(() => makeCharacter(
  8960. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8961. {
  8962. front: {
  8963. height: math.unit(6, "feet"),
  8964. weight: math.unit(150, "lbs"),
  8965. name: "Front",
  8966. image: {
  8967. source: "./media/characters/nova/front.svg",
  8968. extra: 5000 / 4722,
  8969. bottom: 0.02
  8970. }
  8971. }
  8972. },
  8973. [
  8974. {
  8975. name: "Micro-",
  8976. height: math.unit(0.8, "inches")
  8977. },
  8978. {
  8979. name: "Micro",
  8980. height: math.unit(2, "inches"),
  8981. default: true
  8982. },
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(3 + 1 / 12, "feet"),
  8990. weight: math.unit(21.7, "lbs"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/argent/front.svg",
  8994. extra: 1471 / 1331,
  8995. bottom: 100.8 / 1575.5
  8996. }
  8997. }
  8998. },
  8999. [
  9000. {
  9001. name: "Micro",
  9002. height: math.unit(2, "inches")
  9003. },
  9004. {
  9005. name: "Normal",
  9006. height: math.unit(3 + 1 / 12, "feet"),
  9007. default: true
  9008. },
  9009. {
  9010. name: "Macro",
  9011. height: math.unit(120, "feet")
  9012. },
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9017. {
  9018. lamp: {
  9019. height: math.unit(7 * 1559 / 989, "feet"),
  9020. name: "Magic Lamp",
  9021. image: {
  9022. source: "./media/characters/mira-al-cul/lamp.svg",
  9023. extra: 1617 / 1559
  9024. }
  9025. },
  9026. front: {
  9027. height: math.unit(7, "feet"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/mira-al-cul/front.svg",
  9031. extra: 1044 / 990
  9032. }
  9033. },
  9034. },
  9035. [
  9036. {
  9037. name: "Heavily Restricted",
  9038. height: math.unit(7 * 1559 / 989, "feet")
  9039. },
  9040. {
  9041. name: "Freshly Freed",
  9042. height: math.unit(50 * 1559 / 989, "feet")
  9043. },
  9044. {
  9045. name: "World Encompassing",
  9046. height: math.unit(10000 * 1559 / 989, "miles")
  9047. },
  9048. {
  9049. name: "Galactic",
  9050. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9051. },
  9052. {
  9053. name: "Palmed Universe",
  9054. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9055. default: true
  9056. },
  9057. {
  9058. name: "Multiversal Matriarch",
  9059. height: math.unit(8.87e10, "yottameters")
  9060. },
  9061. {
  9062. name: "Void Mother",
  9063. height: math.unit(3.14e110, "yottaparsecs")
  9064. },
  9065. {
  9066. name: "Toying with Transcendence",
  9067. height: math.unit(1e307, "meters")
  9068. },
  9069. ]
  9070. ))
  9071. characterMakers.push(() => makeCharacter(
  9072. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9073. {
  9074. front: {
  9075. height: math.unit(17 + 1 / 12, "feet"),
  9076. weight: math.unit(476.2 * 5, "lbs"),
  9077. name: "Front",
  9078. image: {
  9079. source: "./media/characters/kuro-shi-uchū/front.svg",
  9080. extra: 2329 / 1835,
  9081. bottom: 0.02
  9082. }
  9083. },
  9084. },
  9085. [
  9086. {
  9087. name: "Micro",
  9088. height: math.unit(2, "inches")
  9089. },
  9090. {
  9091. name: "Normal",
  9092. height: math.unit(12, "meters")
  9093. },
  9094. {
  9095. name: "Planetary",
  9096. height: math.unit(0.00929, "AU"),
  9097. default: true
  9098. },
  9099. {
  9100. name: "Universal",
  9101. height: math.unit(20, "gigaparsecs")
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(5 + 2 / 12, "feet"),
  9110. weight: math.unit(120, "lbs"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/katherine/front.svg",
  9114. extra: 2075 / 1969
  9115. }
  9116. },
  9117. dress: {
  9118. height: math.unit(5 + 2 / 12, "feet"),
  9119. weight: math.unit(120, "lbs"),
  9120. name: "Dress",
  9121. image: {
  9122. source: "./media/characters/katherine/dress.svg",
  9123. extra: 2258 / 2064
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Micro",
  9130. height: math.unit(1, "inches"),
  9131. default: true
  9132. },
  9133. {
  9134. name: "Normal",
  9135. height: math.unit(5 + 2 / 12, "feet")
  9136. },
  9137. {
  9138. name: "Macro",
  9139. height: math.unit(100, "meters")
  9140. },
  9141. {
  9142. name: "Megamacro",
  9143. height: math.unit(80, "miles")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(7 + 8 / 12, "feet"),
  9152. weight: math.unit(250, "lbs"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/yevis/front.svg",
  9156. extra: 1938 / 1755
  9157. }
  9158. }
  9159. },
  9160. [
  9161. {
  9162. name: "Mortal",
  9163. height: math.unit(7 + 8 / 12, "feet")
  9164. },
  9165. {
  9166. name: "Battle",
  9167. height: math.unit(25 + 11 / 12, "feet")
  9168. },
  9169. {
  9170. name: "Wrath",
  9171. height: math.unit(1654 + 11 / 12, "feet")
  9172. },
  9173. {
  9174. name: "Planet Destroyer",
  9175. height: math.unit(12000, "miles")
  9176. },
  9177. {
  9178. name: "Galaxy Conqueror",
  9179. height: math.unit(1.45, "zettameters"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Universal War",
  9184. height: math.unit(184, "gigaparsecs")
  9185. },
  9186. {
  9187. name: "Eternity War",
  9188. height: math.unit(1.98e55, "yottaparsecs")
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(5 + 8 / 12, "feet"),
  9197. weight: math.unit(63, "kg"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/xavier/front.svg",
  9201. extra: 944 / 883
  9202. }
  9203. },
  9204. frontStretch: {
  9205. height: math.unit(5 + 8 / 12, "feet"),
  9206. weight: math.unit(63, "kg"),
  9207. name: "Stretching",
  9208. image: {
  9209. source: "./media/characters/xavier/front-stretch.svg",
  9210. extra: 962 / 820
  9211. }
  9212. },
  9213. },
  9214. [
  9215. {
  9216. name: "Normal",
  9217. height: math.unit(5 + 8 / 12, "feet")
  9218. },
  9219. {
  9220. name: "Macro",
  9221. height: math.unit(100, "meters"),
  9222. default: true
  9223. },
  9224. {
  9225. name: "McLargeHuge",
  9226. height: math.unit(10, "miles")
  9227. },
  9228. ]
  9229. ))
  9230. characterMakers.push(() => makeCharacter(
  9231. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9232. {
  9233. front: {
  9234. height: math.unit(5 + 5 / 12, "feet"),
  9235. weight: math.unit(150, "lb"),
  9236. name: "Front",
  9237. image: {
  9238. source: "./media/characters/joshii/front.svg",
  9239. extra: 765 / 653,
  9240. bottom: 51 / 816
  9241. }
  9242. },
  9243. foot: {
  9244. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9245. name: "Foot",
  9246. image: {
  9247. source: "./media/characters/joshii/foot.svg"
  9248. }
  9249. },
  9250. },
  9251. [
  9252. {
  9253. name: "Micro",
  9254. height: math.unit(2, "inches"),
  9255. default: true
  9256. },
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(5 + 5 / 12, "feet")
  9260. },
  9261. {
  9262. name: "Macro",
  9263. height: math.unit(785, "feet")
  9264. },
  9265. {
  9266. name: "Megamacro",
  9267. height: math.unit(24.5, "miles")
  9268. },
  9269. ]
  9270. ))
  9271. characterMakers.push(() => makeCharacter(
  9272. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9273. {
  9274. front: {
  9275. height: math.unit(6, "feet"),
  9276. weight: math.unit(150, "lb"),
  9277. name: "Front",
  9278. image: {
  9279. source: "./media/characters/goddess-elizabeth/front.svg",
  9280. extra: 1800 / 1525,
  9281. bottom: 0.005
  9282. }
  9283. },
  9284. foot: {
  9285. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9286. name: "Foot",
  9287. image: {
  9288. source: "./media/characters/goddess-elizabeth/foot.svg"
  9289. }
  9290. },
  9291. mouth: {
  9292. height: math.unit(6, "feet"),
  9293. name: "Mouth",
  9294. image: {
  9295. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9296. }
  9297. },
  9298. },
  9299. [
  9300. {
  9301. name: "Micro",
  9302. height: math.unit(12, "feet")
  9303. },
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(80, "miles"),
  9307. default: true
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(15000, "parsecs")
  9312. },
  9313. ]
  9314. ))
  9315. characterMakers.push(() => makeCharacter(
  9316. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9317. {
  9318. front: {
  9319. height: math.unit(5 + 9 / 12, "feet"),
  9320. weight: math.unit(144, "lb"),
  9321. name: "Front",
  9322. image: {
  9323. source: "./media/characters/kara/front.svg"
  9324. }
  9325. },
  9326. feet: {
  9327. height: math.unit(6 / 6.765, "feet"),
  9328. name: "Kara's Feet",
  9329. rename: true,
  9330. image: {
  9331. source: "./media/characters/kara/feet.svg"
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Normal",
  9338. height: math.unit(5 + 9 / 12, "feet")
  9339. },
  9340. {
  9341. name: "Macro",
  9342. height: math.unit(174, "feet"),
  9343. default: true
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9349. {
  9350. front: {
  9351. height: math.unit(18, "feet"),
  9352. weight: math.unit(4050, "lb"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/tyrone/front.svg",
  9356. extra: 2405 / 2270,
  9357. bottom: 182 / 2587
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(18, "feet"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(300, "feet")
  9370. },
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(15, "km")
  9374. },
  9375. {
  9376. name: "Gigamacro",
  9377. height: math.unit(500, "km")
  9378. },
  9379. {
  9380. name: "Teramacro",
  9381. height: math.unit(0.5, "gigameters")
  9382. },
  9383. {
  9384. name: "Omnimacro",
  9385. height: math.unit(1e252, "yottauniverse")
  9386. },
  9387. ]
  9388. ))
  9389. characterMakers.push(() => makeCharacter(
  9390. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9391. {
  9392. front: {
  9393. height: math.unit(7 + 8 / 12, "feet"),
  9394. weight: math.unit(120, "lb"),
  9395. name: "Front",
  9396. image: {
  9397. source: "./media/characters/danny/front.svg",
  9398. extra: 1490 / 1350
  9399. }
  9400. },
  9401. back: {
  9402. height: math.unit(7 + 8 / 12, "feet"),
  9403. weight: math.unit(120, "lb"),
  9404. name: "Back",
  9405. image: {
  9406. source: "./media/characters/danny/back.svg",
  9407. extra: 1490 / 1350
  9408. }
  9409. },
  9410. },
  9411. [
  9412. {
  9413. name: "Normal",
  9414. height: math.unit(7 + 8 / 12, "feet"),
  9415. default: true
  9416. },
  9417. ]
  9418. ))
  9419. characterMakers.push(() => makeCharacter(
  9420. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9421. {
  9422. front: {
  9423. height: math.unit(3.5, "inches"),
  9424. weight: math.unit(19, "grams"),
  9425. name: "Front",
  9426. image: {
  9427. source: "./media/characters/mallow/front.svg",
  9428. extra: 471 / 431
  9429. }
  9430. },
  9431. back: {
  9432. height: math.unit(3.5, "inches"),
  9433. weight: math.unit(19, "grams"),
  9434. name: "Back",
  9435. image: {
  9436. source: "./media/characters/mallow/back.svg",
  9437. extra: 471 / 431
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Normal",
  9444. height: math.unit(3.5, "inches"),
  9445. default: true
  9446. },
  9447. ]
  9448. ))
  9449. characterMakers.push(() => makeCharacter(
  9450. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9451. {
  9452. front: {
  9453. height: math.unit(9, "feet"),
  9454. weight: math.unit(230, "kg"),
  9455. name: "Front",
  9456. image: {
  9457. source: "./media/characters/starry-aqua/front.svg"
  9458. }
  9459. },
  9460. back: {
  9461. height: math.unit(9, "feet"),
  9462. weight: math.unit(230, "kg"),
  9463. name: "Back",
  9464. image: {
  9465. source: "./media/characters/starry-aqua/back.svg"
  9466. }
  9467. },
  9468. hand: {
  9469. height: math.unit(9 * 0.1168, "feet"),
  9470. name: "Hand",
  9471. image: {
  9472. source: "./media/characters/starry-aqua/hand.svg"
  9473. }
  9474. },
  9475. foot: {
  9476. height: math.unit(9 * 0.18, "feet"),
  9477. name: "Foot",
  9478. image: {
  9479. source: "./media/characters/starry-aqua/foot.svg"
  9480. }
  9481. }
  9482. },
  9483. [
  9484. {
  9485. name: "Micro",
  9486. height: math.unit(3, "inches")
  9487. },
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(9, "feet")
  9491. },
  9492. {
  9493. name: "Macro",
  9494. height: math.unit(300, "feet"),
  9495. default: true
  9496. },
  9497. {
  9498. name: "Megamacro",
  9499. height: math.unit(3200, "feet")
  9500. }
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(15, "feet"),
  9508. weight: math.unit(5026, "lb"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/luka-towers/front.svg",
  9512. extra: 1269/1133,
  9513. bottom: 51/1320
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(15, "feet"),
  9521. default: true
  9522. },
  9523. {
  9524. name: "Minimacro",
  9525. height: math.unit(25, "feet")
  9526. },
  9527. {
  9528. name: "Macro",
  9529. height: math.unit(320, "feet")
  9530. },
  9531. {
  9532. name: "Megamacro",
  9533. height: math.unit(35000, "feet")
  9534. },
  9535. {
  9536. name: "Gigamacro",
  9537. height: math.unit(4000, "miles")
  9538. },
  9539. {
  9540. name: "Teramacro",
  9541. height: math.unit(15000, "miles")
  9542. },
  9543. ]
  9544. ))
  9545. characterMakers.push(() => makeCharacter(
  9546. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9547. {
  9548. front: {
  9549. height: math.unit(6, "feet"),
  9550. weight: math.unit(150, "lb"),
  9551. name: "Front",
  9552. image: {
  9553. source: "./media/characters/natalie-nightring/front.svg",
  9554. extra: 1,
  9555. bottom: 0.06
  9556. }
  9557. },
  9558. },
  9559. [
  9560. {
  9561. name: "Uh Oh",
  9562. height: math.unit(0.1, "mm")
  9563. },
  9564. {
  9565. name: "Small",
  9566. height: math.unit(3, "inches")
  9567. },
  9568. {
  9569. name: "Human Scale",
  9570. height: math.unit(6, "feet")
  9571. },
  9572. {
  9573. name: "Librarian",
  9574. height: math.unit(50, "feet"),
  9575. default: true
  9576. },
  9577. {
  9578. name: "Immense",
  9579. height: math.unit(200, "miles")
  9580. },
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(6, "feet"),
  9588. weight: math.unit(180, "lbs"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/danni-rosie/front.svg",
  9592. extra: 1260 / 1128,
  9593. bottom: 0.022
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Micro",
  9600. height: math.unit(2, "inches"),
  9601. default: true
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(5 + 9 / 12, "feet"),
  9610. weight: math.unit(220, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/samantha-kruse/front.svg",
  9614. extra: (985 / 935),
  9615. bottom: 0.03
  9616. }
  9617. },
  9618. frontUndressed: {
  9619. height: math.unit(5 + 9 / 12, "feet"),
  9620. weight: math.unit(220, "lb"),
  9621. name: "Front (Undressed)",
  9622. image: {
  9623. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9624. extra: (973 / 923),
  9625. bottom: 0.025
  9626. }
  9627. },
  9628. fat: {
  9629. height: math.unit(5 + 9 / 12, "feet"),
  9630. weight: math.unit(900, "lb"),
  9631. name: "Front (Fat)",
  9632. image: {
  9633. source: "./media/characters/samantha-kruse/fat.svg",
  9634. extra: 2688 / 2561
  9635. }
  9636. },
  9637. },
  9638. [
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(5 + 9 / 12, "feet"),
  9642. default: true
  9643. }
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9648. {
  9649. back: {
  9650. height: math.unit(5 + 4 / 12, "feet"),
  9651. weight: math.unit(4963, "lb"),
  9652. name: "Back",
  9653. image: {
  9654. source: "./media/characters/amelia-rosie/back.svg",
  9655. extra: 1113 / 963,
  9656. bottom: 0.01
  9657. }
  9658. },
  9659. },
  9660. [
  9661. {
  9662. name: "Level 0",
  9663. height: math.unit(5 + 4 / 12, "feet")
  9664. },
  9665. {
  9666. name: "Level 1",
  9667. height: math.unit(164597, "feet"),
  9668. default: true
  9669. },
  9670. {
  9671. name: "Level 2",
  9672. height: math.unit(956243, "miles")
  9673. },
  9674. {
  9675. name: "Level 3",
  9676. height: math.unit(29421709423, "miles")
  9677. },
  9678. {
  9679. name: "Level 4",
  9680. height: math.unit(154, "lightyears")
  9681. },
  9682. {
  9683. name: "Level 5",
  9684. height: math.unit(4738272, "lightyears")
  9685. },
  9686. {
  9687. name: "Level 6",
  9688. height: math.unit(145787152896, "lightyears")
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9694. {
  9695. front: {
  9696. height: math.unit(5 + 11 / 12, "feet"),
  9697. weight: math.unit(65, "kg"),
  9698. name: "Front",
  9699. image: {
  9700. source: "./media/characters/rook-kitara/front.svg",
  9701. extra: 1347 / 1274,
  9702. bottom: 0.005
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Totally Unfair",
  9709. height: math.unit(1.8, "mm")
  9710. },
  9711. {
  9712. name: "Lap Rookie",
  9713. height: math.unit(1.4, "feet")
  9714. },
  9715. {
  9716. name: "Normal",
  9717. height: math.unit(5 + 11 / 12, "feet"),
  9718. default: true
  9719. },
  9720. {
  9721. name: "How Did This Happen",
  9722. height: math.unit(80, "miles")
  9723. }
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9728. {
  9729. front: {
  9730. height: math.unit(7, "feet"),
  9731. weight: math.unit(300, "lb"),
  9732. name: "Front",
  9733. image: {
  9734. source: "./media/characters/pisces/front.svg",
  9735. extra: 2255 / 2115,
  9736. bottom: 0.03
  9737. }
  9738. },
  9739. back: {
  9740. height: math.unit(7, "feet"),
  9741. weight: math.unit(300, "lb"),
  9742. name: "Back",
  9743. image: {
  9744. source: "./media/characters/pisces/back.svg",
  9745. extra: 2146 / 2055,
  9746. bottom: 0.04
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(7, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Swimming Pool",
  9758. height: math.unit(12.2, "meters")
  9759. },
  9760. {
  9761. name: "Olympic Swimming Pool",
  9762. height: math.unit(56.3, "meters")
  9763. },
  9764. {
  9765. name: "Lake Superior",
  9766. height: math.unit(93900, "meters")
  9767. },
  9768. {
  9769. name: "Mediterranean Sea",
  9770. height: math.unit(644457, "meters")
  9771. },
  9772. {
  9773. name: "World's Oceans",
  9774. height: math.unit(4567491, "meters")
  9775. },
  9776. ]
  9777. ))
  9778. characterMakers.push(() => makeCharacter(
  9779. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9780. {
  9781. front: {
  9782. height: math.unit(2.3, "meters"),
  9783. weight: math.unit(120, "kg"),
  9784. name: "Front",
  9785. image: {
  9786. source: "./media/characters/zelas/front.svg"
  9787. }
  9788. },
  9789. side: {
  9790. height: math.unit(2.3, "meters"),
  9791. weight: math.unit(120, "kg"),
  9792. name: "Side",
  9793. image: {
  9794. source: "./media/characters/zelas/side.svg"
  9795. }
  9796. },
  9797. back: {
  9798. height: math.unit(2.3, "meters"),
  9799. weight: math.unit(120, "kg"),
  9800. name: "Back",
  9801. image: {
  9802. source: "./media/characters/zelas/back.svg"
  9803. }
  9804. },
  9805. foot: {
  9806. height: math.unit(1.116, "feet"),
  9807. name: "Foot",
  9808. image: {
  9809. source: "./media/characters/zelas/foot.svg"
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(2.3, "meters")
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(30, "meters"),
  9821. default: true
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9827. {
  9828. front: {
  9829. height: math.unit(1, "inch"),
  9830. weight: math.unit(0.21, "grams"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/talbot/front.svg",
  9834. extra: 594 / 544
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Micro",
  9841. height: math.unit(1, "inch"),
  9842. default: true
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9848. {
  9849. front: {
  9850. height: math.unit(3 + 3 / 12, "feet"),
  9851. weight: math.unit(51.8, "lb"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/fliss/front.svg",
  9855. extra: 840 / 640
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Teeny Tiny",
  9862. height: math.unit(1, "mm")
  9863. },
  9864. {
  9865. name: "Small",
  9866. height: math.unit(1, "inch"),
  9867. default: true
  9868. },
  9869. {
  9870. name: "Standard Sylveon",
  9871. height: math.unit(3 + 3 / 12, "feet")
  9872. },
  9873. {
  9874. name: "Large Nuisance",
  9875. height: math.unit(33, "feet")
  9876. },
  9877. {
  9878. name: "City Filler",
  9879. height: math.unit(3000, "feet")
  9880. },
  9881. {
  9882. name: "New Horizon",
  9883. height: math.unit(6000, "miles")
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9889. {
  9890. front: {
  9891. height: math.unit(5, "cm"),
  9892. weight: math.unit(1.94, "g"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/fleta/front.svg",
  9896. extra: 835 / 803
  9897. }
  9898. },
  9899. back: {
  9900. height: math.unit(5, "cm"),
  9901. weight: math.unit(1.94, "g"),
  9902. name: "Back",
  9903. image: {
  9904. source: "./media/characters/fleta/back.svg",
  9905. extra: 835 / 803
  9906. }
  9907. },
  9908. },
  9909. [
  9910. {
  9911. name: "Micro",
  9912. height: math.unit(5, "cm"),
  9913. default: true
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9919. {
  9920. front: {
  9921. height: math.unit(6, "feet"),
  9922. weight: math.unit(225, "lb"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/dominic/front.svg",
  9926. extra: 1770 / 1620,
  9927. bottom: 0.025
  9928. }
  9929. },
  9930. back: {
  9931. height: math.unit(6, "feet"),
  9932. weight: math.unit(225, "lb"),
  9933. name: "Back",
  9934. image: {
  9935. source: "./media/characters/dominic/back.svg",
  9936. extra: 1745 / 1620,
  9937. bottom: 0.065
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Nano",
  9944. height: math.unit(0.1, "mm")
  9945. },
  9946. {
  9947. name: "Micro-",
  9948. height: math.unit(1, "mm")
  9949. },
  9950. {
  9951. name: "Micro",
  9952. height: math.unit(4, "inches")
  9953. },
  9954. {
  9955. name: "Normal",
  9956. height: math.unit(6 + 4 / 12, "feet"),
  9957. default: true
  9958. },
  9959. {
  9960. name: "Macro",
  9961. height: math.unit(115, "feet")
  9962. },
  9963. {
  9964. name: "Macro+",
  9965. height: math.unit(955, "feet")
  9966. },
  9967. {
  9968. name: "Megamacro",
  9969. height: math.unit(8990, "feet")
  9970. },
  9971. {
  9972. name: "Gigmacro",
  9973. height: math.unit(9310, "miles")
  9974. },
  9975. {
  9976. name: "Teramacro",
  9977. height: math.unit(1567005010, "miles")
  9978. },
  9979. {
  9980. name: "Examacro",
  9981. height: math.unit(1425, "parsecs")
  9982. },
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(400, "feet"),
  9990. weight: math.unit(44444444, "lb"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/major-colonel/front.svg"
  9994. }
  9995. },
  9996. back: {
  9997. height: math.unit(400, "feet"),
  9998. weight: math.unit(44444444, "lb"),
  9999. name: "Back",
  10000. image: {
  10001. source: "./media/characters/major-colonel/back.svg"
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(400, "feet"),
  10009. default: true
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10015. {
  10016. catFront: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(120, "lb"),
  10019. name: "Front (Cat Side)",
  10020. image: {
  10021. source: "./media/characters/axel-lycan/cat-front.svg",
  10022. extra: 430 / 402,
  10023. bottom: 43 / 472.35
  10024. }
  10025. },
  10026. catBack: {
  10027. height: math.unit(6, "feet"),
  10028. weight: math.unit(120, "lb"),
  10029. name: "Back (Cat Side)",
  10030. image: {
  10031. source: "./media/characters/axel-lycan/cat-back.svg",
  10032. extra: 447 / 419,
  10033. bottom: 23.3 / 469
  10034. }
  10035. },
  10036. wolfFront: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(120, "lb"),
  10039. name: "Front (Wolf Side)",
  10040. image: {
  10041. source: "./media/characters/axel-lycan/wolf-front.svg",
  10042. extra: 485 / 456,
  10043. bottom: 19 / 504
  10044. }
  10045. },
  10046. wolfBack: {
  10047. height: math.unit(6, "feet"),
  10048. weight: math.unit(120, "lb"),
  10049. name: "Back (Wolf Side)",
  10050. image: {
  10051. source: "./media/characters/axel-lycan/wolf-back.svg",
  10052. extra: 475 / 438,
  10053. bottom: 39.2 / 514
  10054. }
  10055. },
  10056. },
  10057. [
  10058. {
  10059. name: "Macro",
  10060. height: math.unit(1, "km"),
  10061. default: true
  10062. },
  10063. ]
  10064. ))
  10065. characterMakers.push(() => makeCharacter(
  10066. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10067. {
  10068. front: {
  10069. height: math.unit(5 + 9 / 12, "feet"),
  10070. weight: math.unit(175, "lb"),
  10071. name: "Front",
  10072. image: {
  10073. source: "./media/characters/vanrel-hyena/front.svg",
  10074. extra: 1086 / 1010,
  10075. bottom: 0.04
  10076. }
  10077. },
  10078. },
  10079. [
  10080. {
  10081. name: "Normal",
  10082. height: math.unit(5 + 9 / 12, "feet"),
  10083. default: true
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10089. {
  10090. front: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(103, "lb"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/abbott-absol/front.svg",
  10096. extra: 2010 / 1842
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Megamicro",
  10103. height: math.unit(0.1, "mm")
  10104. },
  10105. {
  10106. name: "Micro",
  10107. height: math.unit(1, "inch")
  10108. },
  10109. {
  10110. name: "Normal",
  10111. height: math.unit(6, "feet"),
  10112. default: true
  10113. },
  10114. ]
  10115. ))
  10116. characterMakers.push(() => makeCharacter(
  10117. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10118. {
  10119. front: {
  10120. height: math.unit(6, "feet"),
  10121. weight: math.unit(264, "lb"),
  10122. name: "Front",
  10123. image: {
  10124. source: "./media/characters/hector/front.svg",
  10125. extra: 2280 / 2130,
  10126. bottom: 0.07
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(12.25, "foot"),
  10134. default: true
  10135. },
  10136. {
  10137. name: "Macro",
  10138. height: math.unit(160, "feet")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(6, "feet"),
  10147. weight: math.unit(150, "lb"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/sal/front.svg",
  10151. extra: 1846 / 1699,
  10152. bottom: 0.04
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Megamacro",
  10159. height: math.unit(10, "miles"),
  10160. default: true
  10161. },
  10162. ]
  10163. ))
  10164. characterMakers.push(() => makeCharacter(
  10165. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10166. {
  10167. front: {
  10168. height: math.unit(3, "meters"),
  10169. weight: math.unit(450, "kg"),
  10170. name: "front",
  10171. image: {
  10172. source: "./media/characters/ranger/front.svg",
  10173. extra: 2401 / 2243,
  10174. bottom: 0.05
  10175. }
  10176. },
  10177. },
  10178. [
  10179. {
  10180. name: "Normal",
  10181. height: math.unit(3, "meters"),
  10182. default: true
  10183. },
  10184. ]
  10185. ))
  10186. characterMakers.push(() => makeCharacter(
  10187. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10188. {
  10189. front: {
  10190. height: math.unit(14, "feet"),
  10191. weight: math.unit(800, "kg"),
  10192. name: "Front",
  10193. image: {
  10194. source: "./media/characters/theresa/front.svg",
  10195. extra: 3575 / 3346,
  10196. bottom: 0.03
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Normal",
  10203. height: math.unit(14, "feet"),
  10204. default: true
  10205. },
  10206. ]
  10207. ))
  10208. characterMakers.push(() => makeCharacter(
  10209. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10210. {
  10211. front: {
  10212. height: math.unit(6, "feet"),
  10213. weight: math.unit(3, "kg"),
  10214. name: "Front",
  10215. image: {
  10216. source: "./media/characters/ine/front.svg",
  10217. extra: 678 / 539,
  10218. bottom: 0.023
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(2.265, "feet"),
  10226. default: true
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(5, "feet"),
  10235. weight: math.unit(30, "kg"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/vial/front.svg",
  10239. extra: 1365 / 1277,
  10240. bottom: 0.04
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(5, "feet"),
  10248. default: true
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10254. {
  10255. side: {
  10256. height: math.unit(3.4, "meters"),
  10257. weight: math.unit(1000, "lb"),
  10258. name: "Side",
  10259. image: {
  10260. source: "./media/characters/rovoska/side.svg",
  10261. extra: 4403 / 1515
  10262. }
  10263. },
  10264. },
  10265. [
  10266. {
  10267. name: "Normal",
  10268. height: math.unit(3.4, "meters"),
  10269. default: true
  10270. },
  10271. ]
  10272. ))
  10273. characterMakers.push(() => makeCharacter(
  10274. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10275. {
  10276. front: {
  10277. height: math.unit(8, "feet"),
  10278. weight: math.unit(315, "lb"),
  10279. name: "Front",
  10280. image: {
  10281. source: "./media/characters/gunner-rotthbauer/front.svg"
  10282. }
  10283. },
  10284. back: {
  10285. height: math.unit(8, "feet"),
  10286. weight: math.unit(315, "lb"),
  10287. name: "Back",
  10288. image: {
  10289. source: "./media/characters/gunner-rotthbauer/back.svg"
  10290. }
  10291. },
  10292. },
  10293. [
  10294. {
  10295. name: "Micro",
  10296. height: math.unit(3.5, "inches")
  10297. },
  10298. {
  10299. name: "Normal",
  10300. height: math.unit(8, "feet"),
  10301. default: true
  10302. },
  10303. {
  10304. name: "Macro",
  10305. height: math.unit(250, "feet")
  10306. },
  10307. {
  10308. name: "Megamacro",
  10309. height: math.unit(1, "AU")
  10310. },
  10311. ]
  10312. ))
  10313. characterMakers.push(() => makeCharacter(
  10314. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10315. {
  10316. front: {
  10317. height: math.unit(5 + 5 / 12, "feet"),
  10318. weight: math.unit(140, "lb"),
  10319. name: "Front",
  10320. image: {
  10321. source: "./media/characters/allatia/front.svg",
  10322. extra: 1227 / 1180,
  10323. bottom: 0.027
  10324. }
  10325. },
  10326. },
  10327. [
  10328. {
  10329. name: "Normal",
  10330. height: math.unit(5 + 5 / 12, "feet")
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(250, "feet"),
  10335. default: true
  10336. },
  10337. {
  10338. name: "Megamacro",
  10339. height: math.unit(8, "miles")
  10340. }
  10341. ]
  10342. ))
  10343. characterMakers.push(() => makeCharacter(
  10344. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10345. {
  10346. front: {
  10347. height: math.unit(6, "feet"),
  10348. weight: math.unit(120, "lb"),
  10349. name: "Front",
  10350. image: {
  10351. source: "./media/characters/tene/front.svg",
  10352. extra: 814/750,
  10353. bottom: 36/850
  10354. }
  10355. },
  10356. stomping: {
  10357. height: math.unit(2.025, "meters"),
  10358. weight: math.unit(120, "lb"),
  10359. name: "Stomping",
  10360. image: {
  10361. source: "./media/characters/tene/stomping.svg",
  10362. extra: 885/821,
  10363. bottom: 15/900
  10364. }
  10365. },
  10366. sitting: {
  10367. height: math.unit(1, "meter"),
  10368. weight: math.unit(120, "lb"),
  10369. name: "Sitting",
  10370. image: {
  10371. source: "./media/characters/tene/sitting.svg",
  10372. extra: 396/366,
  10373. bottom: 79/475
  10374. }
  10375. },
  10376. smiling: {
  10377. height: math.unit(1.2, "feet"),
  10378. name: "Smiling",
  10379. image: {
  10380. source: "./media/characters/tene/smiling.svg",
  10381. extra: 1364/1071,
  10382. bottom: 0/1364
  10383. }
  10384. },
  10385. smug: {
  10386. height: math.unit(1.3, "feet"),
  10387. name: "Smug",
  10388. image: {
  10389. source: "./media/characters/tene/smug.svg",
  10390. extra: 1323/1082,
  10391. bottom: 0/1323
  10392. }
  10393. },
  10394. feral: {
  10395. height: math.unit(3.9, "feet"),
  10396. weight: math.unit(250, "lb"),
  10397. name: "Feral",
  10398. image: {
  10399. source: "./media/characters/tene/feral.svg",
  10400. extra: 717 / 458,
  10401. bottom: 0.179
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(6, "feet")
  10409. },
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(300, "feet"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "Megamacro",
  10417. height: math.unit(5, "miles")
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10423. {
  10424. side: {
  10425. height: math.unit(6, "feet"),
  10426. name: "Side",
  10427. image: {
  10428. source: "./media/characters/evander/side.svg",
  10429. extra: 877 / 477
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(0.83, "meters"),
  10437. default: true
  10438. },
  10439. ]
  10440. ))
  10441. characterMakers.push(() => makeCharacter(
  10442. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10443. {
  10444. front: {
  10445. height: math.unit(12, "feet"),
  10446. weight: math.unit(1000, "lb"),
  10447. name: "Front",
  10448. image: {
  10449. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10450. extra: 1762 / 1611
  10451. }
  10452. },
  10453. back: {
  10454. height: math.unit(12, "feet"),
  10455. weight: math.unit(1000, "lb"),
  10456. name: "Back",
  10457. image: {
  10458. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10459. extra: 1762 / 1611
  10460. }
  10461. },
  10462. },
  10463. [
  10464. {
  10465. name: "Normal",
  10466. height: math.unit(12, "feet"),
  10467. default: true
  10468. },
  10469. {
  10470. name: "Kaiju",
  10471. height: math.unit(150, "feet")
  10472. },
  10473. ]
  10474. ))
  10475. characterMakers.push(() => makeCharacter(
  10476. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10477. {
  10478. front: {
  10479. height: math.unit(6, "feet"),
  10480. weight: math.unit(150, "lb"),
  10481. name: "Front",
  10482. image: {
  10483. source: "./media/characters/zero-alurus/front.svg"
  10484. }
  10485. },
  10486. back: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(150, "lb"),
  10489. name: "Back",
  10490. image: {
  10491. source: "./media/characters/zero-alurus/back.svg"
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(5 + 10 / 12, "feet")
  10499. },
  10500. {
  10501. name: "Macro",
  10502. height: math.unit(60, "feet"),
  10503. default: true
  10504. },
  10505. {
  10506. name: "Macro+",
  10507. height: math.unit(450, "feet")
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(6, "feet"),
  10516. weight: math.unit(200, "lb"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/mega-shi/front.svg",
  10520. extra: 1279 / 1250,
  10521. bottom: 0.02
  10522. }
  10523. },
  10524. back: {
  10525. height: math.unit(6, "feet"),
  10526. weight: math.unit(200, "lb"),
  10527. name: "Back",
  10528. image: {
  10529. source: "./media/characters/mega-shi/back.svg",
  10530. extra: 1279 / 1250,
  10531. bottom: 0.02
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Micro",
  10538. height: math.unit(16 + 6 / 12, "feet")
  10539. },
  10540. {
  10541. name: "Third Dimension",
  10542. height: math.unit(40, "meters")
  10543. },
  10544. {
  10545. name: "Normal",
  10546. height: math.unit(660, "feet"),
  10547. default: true
  10548. },
  10549. {
  10550. name: "Megamacro",
  10551. height: math.unit(10, "miles")
  10552. },
  10553. {
  10554. name: "Planetary Launch",
  10555. height: math.unit(500, "miles")
  10556. },
  10557. {
  10558. name: "Interstellar",
  10559. height: math.unit(1e9, "miles")
  10560. },
  10561. {
  10562. name: "Leaving the Universe",
  10563. height: math.unit(1, "gigaparsec")
  10564. },
  10565. {
  10566. name: "Travelling Universes",
  10567. height: math.unit(30e15, "parsecs")
  10568. },
  10569. ]
  10570. ))
  10571. characterMakers.push(() => makeCharacter(
  10572. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10573. {
  10574. front: {
  10575. height: math.unit(5 + 4/12, "feet"),
  10576. weight: math.unit(120, "lb"),
  10577. name: "Front",
  10578. image: {
  10579. source: "./media/characters/odyssey/front.svg",
  10580. extra: 1747/1571,
  10581. bottom: 47/1794
  10582. }
  10583. },
  10584. side: {
  10585. height: math.unit(5.1, "feet"),
  10586. weight: math.unit(120, "lb"),
  10587. name: "Side",
  10588. image: {
  10589. source: "./media/characters/odyssey/side.svg",
  10590. extra: 1847/1619,
  10591. bottom: 47/1894
  10592. }
  10593. },
  10594. lounging: {
  10595. height: math.unit(1.464, "feet"),
  10596. weight: math.unit(120, "lb"),
  10597. name: "Lounging",
  10598. image: {
  10599. source: "./media/characters/odyssey/lounging.svg",
  10600. extra: 1235/837,
  10601. bottom: 551/1786
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(5 + 4 / 12, "feet")
  10609. },
  10610. {
  10611. name: "Macro",
  10612. height: math.unit(1, "km")
  10613. },
  10614. {
  10615. name: "Megamacro",
  10616. height: math.unit(3000, "km")
  10617. },
  10618. {
  10619. name: "Gigamacro",
  10620. height: math.unit(1, "AU"),
  10621. default: true
  10622. },
  10623. {
  10624. name: "Omniversal",
  10625. height: math.unit(100e14, "lightyears")
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10631. {
  10632. front: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(300, "lb"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/mekuto/front.svg",
  10638. extra: 921 / 832,
  10639. bottom: 0.03
  10640. }
  10641. },
  10642. hand: {
  10643. height: math.unit(6 / 10.24, "feet"),
  10644. name: "Hand",
  10645. image: {
  10646. source: "./media/characters/mekuto/hand.svg"
  10647. }
  10648. },
  10649. foot: {
  10650. height: math.unit(6 / 5.05, "feet"),
  10651. name: "Foot",
  10652. image: {
  10653. source: "./media/characters/mekuto/foot.svg"
  10654. }
  10655. },
  10656. },
  10657. [
  10658. {
  10659. name: "Minimicro",
  10660. height: math.unit(0.2, "inches")
  10661. },
  10662. {
  10663. name: "Micro",
  10664. height: math.unit(1.5, "inches")
  10665. },
  10666. {
  10667. name: "Normal",
  10668. height: math.unit(5 + 11 / 12, "feet"),
  10669. default: true
  10670. },
  10671. {
  10672. name: "Minimacro",
  10673. height: math.unit(17 + 9 / 12, "feet")
  10674. },
  10675. {
  10676. name: "Macro",
  10677. height: math.unit(177.5, "feet")
  10678. },
  10679. {
  10680. name: "Megamacro",
  10681. height: math.unit(152, "miles")
  10682. },
  10683. ]
  10684. ))
  10685. characterMakers.push(() => makeCharacter(
  10686. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10687. {
  10688. front: {
  10689. height: math.unit(6.5, "inches"),
  10690. weight: math.unit(13, "oz"),
  10691. name: "Front",
  10692. image: {
  10693. source: "./media/characters/dafydd-tomos/front.svg",
  10694. extra: 2990 / 2603,
  10695. bottom: 0.03
  10696. }
  10697. },
  10698. },
  10699. [
  10700. {
  10701. name: "Micro",
  10702. height: math.unit(6.5, "inches"),
  10703. default: true
  10704. },
  10705. ]
  10706. ))
  10707. characterMakers.push(() => makeCharacter(
  10708. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10709. {
  10710. front: {
  10711. height: math.unit(6, "feet"),
  10712. weight: math.unit(150, "lb"),
  10713. name: "Front",
  10714. image: {
  10715. source: "./media/characters/splinter/front.svg",
  10716. extra: 2990 / 2882,
  10717. bottom: 0.04
  10718. }
  10719. },
  10720. back: {
  10721. height: math.unit(6, "feet"),
  10722. weight: math.unit(150, "lb"),
  10723. name: "Back",
  10724. image: {
  10725. source: "./media/characters/splinter/back.svg",
  10726. extra: 2990 / 2882,
  10727. bottom: 0.04
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Normal",
  10734. height: math.unit(6, "feet")
  10735. },
  10736. {
  10737. name: "Macro",
  10738. height: math.unit(230, "meters"),
  10739. default: true
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(4 + 10 / 12, "feet"),
  10748. weight: math.unit(480, "lb"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/snow-gabumon/front.svg",
  10752. extra: 1140 / 963,
  10753. bottom: 0.058
  10754. }
  10755. },
  10756. back: {
  10757. height: math.unit(4 + 10 / 12, "feet"),
  10758. weight: math.unit(480, "lb"),
  10759. name: "Back",
  10760. image: {
  10761. source: "./media/characters/snow-gabumon/back.svg",
  10762. extra: 1115 / 962,
  10763. bottom: 0.041
  10764. }
  10765. },
  10766. frontUndresed: {
  10767. height: math.unit(4 + 10 / 12, "feet"),
  10768. weight: math.unit(480, "lb"),
  10769. name: "Front (Undressed)",
  10770. image: {
  10771. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10772. extra: 1061 / 960,
  10773. bottom: 0.045
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Micro",
  10780. height: math.unit(1, "inch")
  10781. },
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(4 + 10 / 12, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Macro",
  10789. height: math.unit(200, "feet")
  10790. },
  10791. {
  10792. name: "Megamacro",
  10793. height: math.unit(120, "miles")
  10794. },
  10795. {
  10796. name: "Gigamacro",
  10797. height: math.unit(9800, "miles")
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10803. {
  10804. front: {
  10805. height: math.unit(1.7, "meters"),
  10806. weight: math.unit(140, "lb"),
  10807. name: "Front",
  10808. image: {
  10809. source: "./media/characters/moody/front.svg",
  10810. extra: 3226 / 3007,
  10811. bottom: 0.087
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Micro",
  10818. height: math.unit(1, "mm")
  10819. },
  10820. {
  10821. name: "Normal",
  10822. height: math.unit(1.7, "meters"),
  10823. default: true
  10824. },
  10825. {
  10826. name: "Macro",
  10827. height: math.unit(80, "meters")
  10828. },
  10829. {
  10830. name: "Macro+",
  10831. height: math.unit(500, "meters")
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10837. {
  10838. front: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(150, "lb"),
  10841. name: "Front",
  10842. image: {
  10843. source: "./media/characters/zyas/front.svg",
  10844. extra: 1180 / 1120,
  10845. bottom: 0.045
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Normal",
  10852. height: math.unit(10, "feet"),
  10853. default: true
  10854. },
  10855. {
  10856. name: "Macro",
  10857. height: math.unit(500, "feet")
  10858. },
  10859. {
  10860. name: "Megamacro",
  10861. height: math.unit(5, "miles")
  10862. },
  10863. {
  10864. name: "Teramacro",
  10865. height: math.unit(150000, "miles")
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10871. {
  10872. front: {
  10873. height: math.unit(6, "feet"),
  10874. weight: math.unit(150, "lb"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/cuon/front.svg",
  10878. extra: 1390 / 1320,
  10879. bottom: 0.008
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(3, "inches")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(18 + 9 / 12, "feet"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(360, "feet")
  10896. },
  10897. {
  10898. name: "Megamacro",
  10899. height: math.unit(360, "miles")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(2.4, "meters"),
  10908. weight: math.unit(70, "kg"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/nyanuxk/front.svg",
  10912. extra: 1172 / 1084,
  10913. bottom: 0.065
  10914. }
  10915. },
  10916. side: {
  10917. height: math.unit(2.4, "meters"),
  10918. weight: math.unit(70, "kg"),
  10919. name: "Side",
  10920. image: {
  10921. source: "./media/characters/nyanuxk/side.svg",
  10922. extra: 1190 / 1132,
  10923. bottom: 0.007
  10924. }
  10925. },
  10926. back: {
  10927. height: math.unit(2.4, "meters"),
  10928. weight: math.unit(70, "kg"),
  10929. name: "Back",
  10930. image: {
  10931. source: "./media/characters/nyanuxk/back.svg",
  10932. extra: 1200 / 1141,
  10933. bottom: 0.015
  10934. }
  10935. },
  10936. foot: {
  10937. height: math.unit(0.52, "meters"),
  10938. name: "Foot",
  10939. image: {
  10940. source: "./media/characters/nyanuxk/foot.svg"
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Micro",
  10947. height: math.unit(2, "cm")
  10948. },
  10949. {
  10950. name: "Normal",
  10951. height: math.unit(2.4, "meters"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Smaller Macro",
  10956. height: math.unit(120, "meters")
  10957. },
  10958. {
  10959. name: "Bigger Macro",
  10960. height: math.unit(1.2, "km")
  10961. },
  10962. {
  10963. name: "Megamacro",
  10964. height: math.unit(15, "kilometers")
  10965. },
  10966. {
  10967. name: "Gigamacro",
  10968. height: math.unit(2000, "km")
  10969. },
  10970. {
  10971. name: "Teramacro",
  10972. height: math.unit(500000, "km")
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10978. {
  10979. side: {
  10980. height: math.unit(6, "feet"),
  10981. name: "Side",
  10982. image: {
  10983. source: "./media/characters/ailbhe/side.svg",
  10984. extra: 757 / 464,
  10985. bottom: 0.041
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Normal",
  10992. height: math.unit(1.07, "meters"),
  10993. default: true
  10994. },
  10995. ]
  10996. ))
  10997. characterMakers.push(() => makeCharacter(
  10998. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10999. {
  11000. front: {
  11001. height: math.unit(6, "feet"),
  11002. weight: math.unit(120, "kg"),
  11003. name: "Front",
  11004. image: {
  11005. source: "./media/characters/zevulfius/front.svg",
  11006. extra: 965 / 903
  11007. }
  11008. },
  11009. side: {
  11010. height: math.unit(6, "feet"),
  11011. weight: math.unit(120, "kg"),
  11012. name: "Side",
  11013. image: {
  11014. source: "./media/characters/zevulfius/side.svg",
  11015. extra: 939 / 900
  11016. }
  11017. },
  11018. back: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(120, "kg"),
  11021. name: "Back",
  11022. image: {
  11023. source: "./media/characters/zevulfius/back.svg",
  11024. extra: 918 / 854,
  11025. bottom: 0.005
  11026. }
  11027. },
  11028. foot: {
  11029. height: math.unit(6 / 3.72, "feet"),
  11030. name: "Foot",
  11031. image: {
  11032. source: "./media/characters/zevulfius/foot.svg"
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Macro",
  11039. height: math.unit(750, "meters")
  11040. },
  11041. {
  11042. name: "Megamacro",
  11043. height: math.unit(20, "km"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Gigamacro",
  11048. height: math.unit(2000, "km")
  11049. },
  11050. {
  11051. name: "Teramacro",
  11052. height: math.unit(250000, "km")
  11053. },
  11054. ]
  11055. ))
  11056. characterMakers.push(() => makeCharacter(
  11057. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11058. {
  11059. front: {
  11060. height: math.unit(100, "feet"),
  11061. weight: math.unit(350, "kg"),
  11062. name: "Front",
  11063. image: {
  11064. source: "./media/characters/rikes/front.svg",
  11065. extra: 1565 / 1483,
  11066. bottom: 0.017
  11067. }
  11068. },
  11069. },
  11070. [
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(100, "feet"),
  11074. default: true
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(8, "feet"),
  11083. weight: math.unit(356, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/adam-silver-mane/front.svg",
  11087. extra: 1036/937,
  11088. bottom: 63/1099
  11089. }
  11090. },
  11091. side: {
  11092. height: math.unit(8, "feet"),
  11093. weight: math.unit(356, "lb"),
  11094. name: "Side",
  11095. image: {
  11096. source: "./media/characters/adam-silver-mane/side.svg",
  11097. extra: 997/901,
  11098. bottom: 59/1056
  11099. }
  11100. },
  11101. frontNsfw: {
  11102. height: math.unit(8, "feet"),
  11103. weight: math.unit(356, "lb"),
  11104. name: "Front (NSFW)",
  11105. image: {
  11106. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11107. extra: 1036/937,
  11108. bottom: 63/1099
  11109. }
  11110. },
  11111. sideNsfw: {
  11112. height: math.unit(8, "feet"),
  11113. weight: math.unit(356, "lb"),
  11114. name: "Side (NSFW)",
  11115. image: {
  11116. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11117. extra: 997/901,
  11118. bottom: 59/1056
  11119. }
  11120. },
  11121. dick: {
  11122. height: math.unit(2.1, "feet"),
  11123. name: "Dick",
  11124. image: {
  11125. source: "./media/characters/adam-silver-mane/dick.svg"
  11126. }
  11127. },
  11128. taur: {
  11129. height: math.unit(16, "feet"),
  11130. weight: math.unit(1500, "kg"),
  11131. name: "Taur",
  11132. image: {
  11133. source: "./media/characters/adam-silver-mane/taur.svg",
  11134. extra: 1713 / 1571,
  11135. bottom: 0.01
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Normal",
  11142. height: math.unit(8, "feet")
  11143. },
  11144. {
  11145. name: "Minimacro",
  11146. height: math.unit(80, "feet")
  11147. },
  11148. {
  11149. name: "MDA",
  11150. height: math.unit(80, "meters")
  11151. },
  11152. {
  11153. name: "Macro",
  11154. height: math.unit(800, "feet"),
  11155. default: true
  11156. },
  11157. {
  11158. name: "Megamacro",
  11159. height: math.unit(8000, "feet")
  11160. },
  11161. {
  11162. name: "Gigamacro",
  11163. height: math.unit(800, "miles")
  11164. },
  11165. {
  11166. name: "Teramacro",
  11167. height: math.unit(80000, "miles")
  11168. },
  11169. {
  11170. name: "Celestial",
  11171. height: math.unit(8e6, "miles")
  11172. },
  11173. {
  11174. name: "Star Dragon",
  11175. height: math.unit(800000, "parsecs")
  11176. },
  11177. {
  11178. name: "Godly",
  11179. height: math.unit(800, "teraparsecs")
  11180. },
  11181. ]
  11182. ))
  11183. characterMakers.push(() => makeCharacter(
  11184. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11185. {
  11186. front: {
  11187. height: math.unit(6, "feet"),
  11188. weight: math.unit(150, "lb"),
  11189. name: "Front",
  11190. image: {
  11191. source: "./media/characters/ky'owin/front.svg",
  11192. extra: 3888 / 3068,
  11193. bottom: 0.015
  11194. }
  11195. },
  11196. },
  11197. [
  11198. {
  11199. name: "Normal",
  11200. height: math.unit(6 + 8 / 12, "feet")
  11201. },
  11202. {
  11203. name: "Large",
  11204. height: math.unit(68, "feet")
  11205. },
  11206. {
  11207. name: "Macro",
  11208. height: math.unit(132, "feet")
  11209. },
  11210. {
  11211. name: "Macro+",
  11212. height: math.unit(340, "feet")
  11213. },
  11214. {
  11215. name: "Macro++",
  11216. height: math.unit(680, "feet"),
  11217. default: true
  11218. },
  11219. {
  11220. name: "Megamacro",
  11221. height: math.unit(1, "mile")
  11222. },
  11223. {
  11224. name: "Megamacro+",
  11225. height: math.unit(10, "miles")
  11226. },
  11227. ]
  11228. ))
  11229. characterMakers.push(() => makeCharacter(
  11230. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11231. {
  11232. front: {
  11233. height: math.unit(4, "feet"),
  11234. weight: math.unit(50, "lb"),
  11235. name: "Front",
  11236. image: {
  11237. source: "./media/characters/mal/front.svg",
  11238. extra: 785 / 724,
  11239. bottom: 0.07
  11240. }
  11241. },
  11242. },
  11243. [
  11244. {
  11245. name: "Micro",
  11246. height: math.unit(4, "inches")
  11247. },
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(4, "feet"),
  11251. default: true
  11252. },
  11253. {
  11254. name: "Macro",
  11255. height: math.unit(200, "feet")
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(150, "lb"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/jordan-deware/front.svg",
  11268. extra: 1191 / 1012
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Nano",
  11275. height: math.unit(0.01, "mm")
  11276. },
  11277. {
  11278. name: "Minimicro",
  11279. height: math.unit(1, "mm")
  11280. },
  11281. {
  11282. name: "Micro",
  11283. height: math.unit(0.5, "inches")
  11284. },
  11285. {
  11286. name: "Normal",
  11287. height: math.unit(4, "feet"),
  11288. default: true
  11289. },
  11290. {
  11291. name: "Minimacro",
  11292. height: math.unit(40, "meters")
  11293. },
  11294. {
  11295. name: "Small Macro",
  11296. height: math.unit(400, "meters")
  11297. },
  11298. {
  11299. name: "Macro",
  11300. height: math.unit(4, "miles")
  11301. },
  11302. {
  11303. name: "Megamacro",
  11304. height: math.unit(40, "miles")
  11305. },
  11306. {
  11307. name: "Megamacro+",
  11308. height: math.unit(400, "miles")
  11309. },
  11310. {
  11311. name: "Gigamacro",
  11312. height: math.unit(400000, "miles")
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11318. {
  11319. side: {
  11320. height: math.unit(6, "feet"),
  11321. weight: math.unit(150, "lb"),
  11322. name: "Side",
  11323. image: {
  11324. source: "./media/characters/kimiko/side.svg",
  11325. extra: 600 / 358
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Normal",
  11332. height: math.unit(15, "feet"),
  11333. default: true
  11334. },
  11335. {
  11336. name: "Macro",
  11337. height: math.unit(220, "feet")
  11338. },
  11339. {
  11340. name: "Macro+",
  11341. height: math.unit(1450, "feet")
  11342. },
  11343. {
  11344. name: "Megamacro",
  11345. height: math.unit(11500, "feet")
  11346. },
  11347. {
  11348. name: "Gigamacro",
  11349. height: math.unit(9500, "miles")
  11350. },
  11351. {
  11352. name: "Teramacro",
  11353. height: math.unit(2208005005, "miles")
  11354. },
  11355. {
  11356. name: "Examacro",
  11357. height: math.unit(2750, "parsecs")
  11358. },
  11359. {
  11360. name: "Zettamacro",
  11361. height: math.unit(101500, "parsecs")
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(6, "feet"),
  11370. weight: math.unit(70, "kg"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/andrew-sleepy/front.svg"
  11374. }
  11375. },
  11376. side: {
  11377. height: math.unit(6, "feet"),
  11378. weight: math.unit(70, "kg"),
  11379. name: "Side",
  11380. image: {
  11381. source: "./media/characters/andrew-sleepy/side.svg"
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Micro",
  11388. height: math.unit(1, "mm"),
  11389. default: true
  11390. },
  11391. ]
  11392. ))
  11393. characterMakers.push(() => makeCharacter(
  11394. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11395. {
  11396. front: {
  11397. height: math.unit(6, "feet"),
  11398. weight: math.unit(150, "lb"),
  11399. name: "Front",
  11400. image: {
  11401. source: "./media/characters/judio/front.svg",
  11402. extra: 1258 / 1110
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(5 + 6 / 12, "feet")
  11410. },
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(1000, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(10, "miles")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11424. {
  11425. frontDressed: {
  11426. height: math.unit(6, "feet"),
  11427. weight: math.unit(68, "kg"),
  11428. name: "Front (Dressed)",
  11429. image: {
  11430. source: "./media/characters/nomaxice/front-dressed.svg",
  11431. extra: 1137/824,
  11432. bottom: 74/1211
  11433. }
  11434. },
  11435. frontShorts: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(68, "kg"),
  11438. name: "Front (Shorts)",
  11439. image: {
  11440. source: "./media/characters/nomaxice/front-shorts.svg",
  11441. extra: 1137/824,
  11442. bottom: 74/1211
  11443. }
  11444. },
  11445. back: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(68, "kg"),
  11448. name: "Back",
  11449. image: {
  11450. source: "./media/characters/nomaxice/back.svg",
  11451. extra: 822/786,
  11452. bottom: 39/861
  11453. }
  11454. },
  11455. hand: {
  11456. height: math.unit(0.565, "feet"),
  11457. name: "Hand",
  11458. image: {
  11459. source: "./media/characters/nomaxice/hand.svg"
  11460. }
  11461. },
  11462. foot: {
  11463. height: math.unit(1, "feet"),
  11464. name: "Foot",
  11465. image: {
  11466. source: "./media/characters/nomaxice/foot.svg"
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Micro",
  11473. height: math.unit(8, "cm")
  11474. },
  11475. {
  11476. name: "Norm",
  11477. height: math.unit(1.82, "m")
  11478. },
  11479. {
  11480. name: "Norm+",
  11481. height: math.unit(8.8, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Big",
  11486. height: math.unit(8, "meters")
  11487. },
  11488. {
  11489. name: "Macro",
  11490. height: math.unit(18, "meters")
  11491. },
  11492. {
  11493. name: "Macro+",
  11494. height: math.unit(88, "meters")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11500. {
  11501. front: {
  11502. height: math.unit(12, "feet"),
  11503. weight: math.unit(1.5, "tons"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/dydros/front.svg",
  11507. extra: 863 / 800,
  11508. bottom: 0.015
  11509. }
  11510. },
  11511. back: {
  11512. height: math.unit(12, "feet"),
  11513. weight: math.unit(1.5, "tons"),
  11514. name: "Back",
  11515. image: {
  11516. source: "./media/characters/dydros/back.svg",
  11517. extra: 900 / 843,
  11518. bottom: 0.005
  11519. }
  11520. },
  11521. },
  11522. [
  11523. {
  11524. name: "Normal",
  11525. height: math.unit(12, "feet"),
  11526. default: true
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(6, "feet"),
  11535. weight: math.unit(100, "kg"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/riggi/front.svg",
  11539. extra: 5787 / 5303
  11540. }
  11541. },
  11542. hyper: {
  11543. height: math.unit(6 * 5 / 3, "feet"),
  11544. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11545. name: "Hyper",
  11546. image: {
  11547. source: "./media/characters/riggi/hyper.svg",
  11548. extra: 3595 / 3485
  11549. }
  11550. },
  11551. },
  11552. [
  11553. {
  11554. name: "Small Macro",
  11555. height: math.unit(50, "feet")
  11556. },
  11557. {
  11558. name: "Default",
  11559. height: math.unit(200, "feet"),
  11560. default: true
  11561. },
  11562. {
  11563. name: "Loom",
  11564. height: math.unit(10000, "feet")
  11565. },
  11566. {
  11567. name: "Cruising Altitude",
  11568. height: math.unit(30000, "feet")
  11569. },
  11570. {
  11571. name: "Megamacro",
  11572. height: math.unit(100, "miles")
  11573. },
  11574. {
  11575. name: "Continent Sized",
  11576. height: math.unit(2800, "miles")
  11577. },
  11578. {
  11579. name: "Earth Sized",
  11580. height: math.unit(8000, "miles")
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11586. {
  11587. front: {
  11588. height: math.unit(6, "feet"),
  11589. weight: math.unit(250, "lb"),
  11590. name: "Front",
  11591. image: {
  11592. source: "./media/characters/alexi/front.svg",
  11593. extra: 3483 / 3291,
  11594. bottom: 0.04
  11595. }
  11596. },
  11597. back: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(250, "lb"),
  11600. name: "Back",
  11601. image: {
  11602. source: "./media/characters/alexi/back.svg",
  11603. extra: 3533 / 3356,
  11604. bottom: 0.021
  11605. }
  11606. },
  11607. frontTransforming: {
  11608. height: math.unit(8.58, "feet"),
  11609. weight: math.unit(1300, "lb"),
  11610. name: "Transforming",
  11611. image: {
  11612. source: "./media/characters/alexi/front-transforming.svg",
  11613. extra: 437 / 409,
  11614. bottom: 19 / 458.66
  11615. }
  11616. },
  11617. frontTransformed: {
  11618. height: math.unit(12.5, "feet"),
  11619. weight: math.unit(4000, "lb"),
  11620. name: "Transformed",
  11621. image: {
  11622. source: "./media/characters/alexi/front-transformed.svg",
  11623. extra: 639 / 614,
  11624. bottom: 30.55 / 671
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(14, "feet"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Minimacro",
  11636. height: math.unit(30, "meters")
  11637. },
  11638. {
  11639. name: "Macro",
  11640. height: math.unit(500, "meters")
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(9000, "km")
  11645. },
  11646. {
  11647. name: "Teramacro",
  11648. height: math.unit(384000, "km")
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(6, "feet"),
  11657. weight: math.unit(150, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/kayroo/front.svg",
  11661. extra: 1153 / 1038,
  11662. bottom: 0.06
  11663. }
  11664. },
  11665. foot: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(150, "lb"),
  11668. name: "Foot",
  11669. image: {
  11670. source: "./media/characters/kayroo/foot.svg"
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Normal",
  11677. height: math.unit(8, "feet"),
  11678. default: true
  11679. },
  11680. {
  11681. name: "Minimacro",
  11682. height: math.unit(250, "feet")
  11683. },
  11684. {
  11685. name: "Macro",
  11686. height: math.unit(2800, "feet")
  11687. },
  11688. {
  11689. name: "Megamacro",
  11690. height: math.unit(5200, "feet")
  11691. },
  11692. {
  11693. name: "Gigamacro",
  11694. height: math.unit(27000, "feet")
  11695. },
  11696. {
  11697. name: "Omega",
  11698. height: math.unit(45000, "feet")
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(18, "feet"),
  11707. weight: math.unit(5800, "lb"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/rhys/front.svg",
  11711. extra: 3386 / 3090,
  11712. bottom: 0.07
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Normal",
  11719. height: math.unit(18, "feet"),
  11720. default: true
  11721. },
  11722. {
  11723. name: "Working Size",
  11724. height: math.unit(200, "feet")
  11725. },
  11726. {
  11727. name: "Demolition Size",
  11728. height: math.unit(2000, "feet")
  11729. },
  11730. {
  11731. name: "Maximum Licensed Size",
  11732. height: math.unit(5, "miles")
  11733. },
  11734. {
  11735. name: "Maximum Observed Size",
  11736. height: math.unit(10, "yottameters")
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11742. {
  11743. front: {
  11744. height: math.unit(6, "feet"),
  11745. weight: math.unit(250, "lb"),
  11746. name: "Front",
  11747. image: {
  11748. source: "./media/characters/toto/front.svg",
  11749. extra: 527 / 479,
  11750. bottom: 0.05
  11751. }
  11752. },
  11753. },
  11754. [
  11755. {
  11756. name: "Micro",
  11757. height: math.unit(3, "feet")
  11758. },
  11759. {
  11760. name: "Normal",
  11761. height: math.unit(10, "feet")
  11762. },
  11763. {
  11764. name: "Macro",
  11765. height: math.unit(150, "feet"),
  11766. default: true
  11767. },
  11768. {
  11769. name: "Megamacro",
  11770. height: math.unit(1200, "feet")
  11771. },
  11772. ]
  11773. ))
  11774. characterMakers.push(() => makeCharacter(
  11775. { name: "King", species: ["lion"], tags: ["anthro"] },
  11776. {
  11777. back: {
  11778. height: math.unit(6, "feet"),
  11779. weight: math.unit(150, "lb"),
  11780. name: "Back",
  11781. image: {
  11782. source: "./media/characters/king/back.svg"
  11783. }
  11784. },
  11785. },
  11786. [
  11787. {
  11788. name: "Micro",
  11789. height: math.unit(2, "inches")
  11790. },
  11791. {
  11792. name: "Normal",
  11793. height: math.unit(8, "feet")
  11794. },
  11795. {
  11796. name: "Macro",
  11797. height: math.unit(200, "feet"),
  11798. default: true
  11799. },
  11800. {
  11801. name: "Megamacro",
  11802. height: math.unit(50, "miles")
  11803. },
  11804. ]
  11805. ))
  11806. characterMakers.push(() => makeCharacter(
  11807. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11808. {
  11809. front: {
  11810. height: math.unit(11, "feet"),
  11811. weight: math.unit(1400, "lb"),
  11812. name: "Front",
  11813. image: {
  11814. source: "./media/characters/cordite/front.svg",
  11815. extra: 1919/1827,
  11816. bottom: 40/1959
  11817. }
  11818. },
  11819. side: {
  11820. height: math.unit(11, "feet"),
  11821. weight: math.unit(1400, "lb"),
  11822. name: "Side",
  11823. image: {
  11824. source: "./media/characters/cordite/side.svg",
  11825. extra: 1908/1793,
  11826. bottom: 38/1946
  11827. }
  11828. },
  11829. back: {
  11830. height: math.unit(11, "feet"),
  11831. weight: math.unit(1400, "lb"),
  11832. name: "Back",
  11833. image: {
  11834. source: "./media/characters/cordite/back.svg",
  11835. extra: 1938/1837,
  11836. bottom: 10/1948
  11837. }
  11838. },
  11839. feral: {
  11840. height: math.unit(2, "feet"),
  11841. weight: math.unit(90, "lb"),
  11842. name: "Feral",
  11843. image: {
  11844. source: "./media/characters/cordite/feral.svg",
  11845. extra: 1260 / 755,
  11846. bottom: 0.05
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(11, "feet"),
  11854. default: true
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(6, "feet"),
  11863. weight: math.unit(150, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/pianostrong/front.svg",
  11867. extra: 6577 / 6254,
  11868. bottom: 0.02
  11869. }
  11870. },
  11871. side: {
  11872. height: math.unit(6, "feet"),
  11873. weight: math.unit(150, "lb"),
  11874. name: "Side",
  11875. image: {
  11876. source: "./media/characters/pianostrong/side.svg",
  11877. extra: 6106 / 5730
  11878. }
  11879. },
  11880. back: {
  11881. height: math.unit(6, "feet"),
  11882. weight: math.unit(150, "lb"),
  11883. name: "Back",
  11884. image: {
  11885. source: "./media/characters/pianostrong/back.svg",
  11886. extra: 6085 / 5733,
  11887. bottom: 0.01
  11888. }
  11889. },
  11890. },
  11891. [
  11892. {
  11893. name: "Macro",
  11894. height: math.unit(100, "feet")
  11895. },
  11896. {
  11897. name: "Macro+",
  11898. height: math.unit(300, "feet"),
  11899. default: true
  11900. },
  11901. {
  11902. name: "Macro++",
  11903. height: math.unit(1000, "feet")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(150, "lb"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/kona/front.svg",
  11916. extra: 2960 / 2629,
  11917. bottom: 0.005
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Normal",
  11924. height: math.unit(11 + 8 / 12, "feet")
  11925. },
  11926. {
  11927. name: "Macro",
  11928. height: math.unit(850, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Macro+",
  11933. height: math.unit(1.5, "km"),
  11934. default: true
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(80, "miles")
  11939. },
  11940. {
  11941. name: "Gigamacro",
  11942. height: math.unit(3500, "miles")
  11943. },
  11944. ]
  11945. ))
  11946. characterMakers.push(() => makeCharacter(
  11947. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11948. {
  11949. side: {
  11950. height: math.unit(1.9, "meters"),
  11951. weight: math.unit(326, "kg"),
  11952. name: "Side",
  11953. image: {
  11954. source: "./media/characters/levi/side.svg",
  11955. extra: 1704 / 1334,
  11956. bottom: 0.02
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(1.9, "meters"),
  11964. default: true
  11965. },
  11966. {
  11967. name: "Macro",
  11968. height: math.unit(20, "meters")
  11969. },
  11970. {
  11971. name: "Macro+",
  11972. height: math.unit(200, "meters")
  11973. },
  11974. {
  11975. name: "Megamacro",
  11976. height: math.unit(2, "km")
  11977. },
  11978. {
  11979. name: "Megamacro+",
  11980. height: math.unit(20, "km")
  11981. },
  11982. {
  11983. name: "Gigamacro",
  11984. height: math.unit(2500, "km")
  11985. },
  11986. {
  11987. name: "Gigamacro+",
  11988. height: math.unit(120000, "km")
  11989. },
  11990. {
  11991. name: "Teramacro",
  11992. height: math.unit(7.77e6, "km")
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(6 + 4/12, "feet"),
  12001. weight: math.unit(190, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/bmc/front.svg",
  12005. extra: 1626/1472,
  12006. bottom: 79/1705
  12007. }
  12008. },
  12009. back: {
  12010. height: math.unit(6 + 4/12, "feet"),
  12011. weight: math.unit(190, "lb"),
  12012. name: "Back",
  12013. image: {
  12014. source: "./media/characters/bmc/back.svg",
  12015. extra: 1640/1479,
  12016. bottom: 45/1685
  12017. }
  12018. },
  12019. frontArmor: {
  12020. height: math.unit(6 + 4/12, "feet"),
  12021. weight: math.unit(190, "lb"),
  12022. name: "Front-armor",
  12023. image: {
  12024. source: "./media/characters/bmc/front-armor.svg",
  12025. extra: 1538/1468,
  12026. bottom: 79/1617
  12027. }
  12028. },
  12029. },
  12030. [
  12031. {
  12032. name: "Human-sized",
  12033. height: math.unit(6 + 4 / 12, "feet")
  12034. },
  12035. {
  12036. name: "Interactive Size",
  12037. height: math.unit(25, "feet")
  12038. },
  12039. {
  12040. name: "Small",
  12041. height: math.unit(250, "feet")
  12042. },
  12043. {
  12044. name: "Normal",
  12045. height: math.unit(1250, "feet"),
  12046. default: true
  12047. },
  12048. {
  12049. name: "Good Day",
  12050. height: math.unit(88, "miles")
  12051. },
  12052. {
  12053. name: "Largest Measured Size",
  12054. height: math.unit(105.960, "galaxies")
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(20, "feet"),
  12063. weight: math.unit(2016, "kg"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/sven-the-kaiju/front.svg",
  12067. extra: 1277/1250,
  12068. bottom: 35/1312
  12069. }
  12070. },
  12071. mouth: {
  12072. height: math.unit(1.85, "feet"),
  12073. name: "Mouth",
  12074. image: {
  12075. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12076. }
  12077. },
  12078. },
  12079. [
  12080. {
  12081. name: "Fairy",
  12082. height: math.unit(6, "inches")
  12083. },
  12084. {
  12085. name: "Normal",
  12086. height: math.unit(20, "feet"),
  12087. default: true
  12088. },
  12089. {
  12090. name: "Rampage",
  12091. height: math.unit(200, "feet")
  12092. },
  12093. {
  12094. name: "Archfey Forest Guardian",
  12095. height: math.unit(1, "mile")
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12101. {
  12102. front: {
  12103. height: math.unit(4, "meters"),
  12104. weight: math.unit(2, "tons"),
  12105. name: "Front",
  12106. image: {
  12107. source: "./media/characters/marik/front.svg",
  12108. extra: 1057 / 1003,
  12109. bottom: 0.08
  12110. }
  12111. },
  12112. },
  12113. [
  12114. {
  12115. name: "Normal",
  12116. height: math.unit(4, "meters"),
  12117. default: true
  12118. },
  12119. {
  12120. name: "Macro",
  12121. height: math.unit(20, "meters")
  12122. },
  12123. {
  12124. name: "Megamacro",
  12125. height: math.unit(50, "km")
  12126. },
  12127. {
  12128. name: "Gigamacro",
  12129. height: math.unit(100, "km")
  12130. },
  12131. {
  12132. name: "Alpha Macro",
  12133. height: math.unit(7.88e7, "yottameters")
  12134. },
  12135. ]
  12136. ))
  12137. characterMakers.push(() => makeCharacter(
  12138. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12139. {
  12140. front: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(110, "lb"),
  12143. name: "Front",
  12144. image: {
  12145. source: "./media/characters/mel/front.svg",
  12146. extra: 736 / 617,
  12147. bottom: 0.017
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Pico",
  12154. height: math.unit(3, "pm")
  12155. },
  12156. {
  12157. name: "Nano",
  12158. height: math.unit(3, "nm")
  12159. },
  12160. {
  12161. name: "Micro",
  12162. height: math.unit(0.3, "mm"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Micro+",
  12167. height: math.unit(3, "mm")
  12168. },
  12169. {
  12170. name: "Normal",
  12171. height: math.unit(5 + 10.5 / 12, "feet")
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12177. {
  12178. kaiju: {
  12179. height: math.unit(1.75, "meters"),
  12180. weight: math.unit(55, "kg"),
  12181. name: "Kaiju",
  12182. image: {
  12183. source: "./media/characters/lykonous/kaiju.svg",
  12184. extra: 1055 / 946,
  12185. bottom: 0.135
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(2.5, "meters"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Kaiju Dragon",
  12197. height: math.unit(60, "meters")
  12198. },
  12199. {
  12200. name: "Mega Kaiju",
  12201. height: math.unit(120, "km")
  12202. },
  12203. {
  12204. name: "Giga Kaiju",
  12205. height: math.unit(200, "megameters")
  12206. },
  12207. {
  12208. name: "Terra Kaiju",
  12209. height: math.unit(400, "gigameters")
  12210. },
  12211. {
  12212. name: "Kaiju Dragon God",
  12213. height: math.unit(13000, "exaparsecs")
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(6, "feet"),
  12222. weight: math.unit(150, "lb"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/blü/front.svg",
  12226. extra: 1883 / 1564,
  12227. bottom: 0.031
  12228. }
  12229. },
  12230. },
  12231. [
  12232. {
  12233. name: "Normal",
  12234. height: math.unit(13, "feet"),
  12235. default: true
  12236. },
  12237. {
  12238. name: "Big Boi",
  12239. height: math.unit(150, "meters")
  12240. },
  12241. {
  12242. name: "Mini Stomper",
  12243. height: math.unit(300, "meters")
  12244. },
  12245. {
  12246. name: "Macro",
  12247. height: math.unit(1000, "meters")
  12248. },
  12249. {
  12250. name: "Megamacro",
  12251. height: math.unit(11000, "meters")
  12252. },
  12253. {
  12254. name: "Gigamacro",
  12255. height: math.unit(11000, "km")
  12256. },
  12257. {
  12258. name: "Teramacro",
  12259. height: math.unit(420000, "km")
  12260. },
  12261. {
  12262. name: "Examacro",
  12263. height: math.unit(120, "parsecs")
  12264. },
  12265. {
  12266. name: "God Tho",
  12267. height: math.unit(98000000000, "parsecs")
  12268. },
  12269. ]
  12270. ))
  12271. characterMakers.push(() => makeCharacter(
  12272. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12273. {
  12274. taurFront: {
  12275. height: math.unit(6, "feet"),
  12276. weight: math.unit(200, "lb"),
  12277. name: "Taur (Front)",
  12278. image: {
  12279. source: "./media/characters/scales/taur-front.svg",
  12280. extra: 1,
  12281. bottom: 0.05
  12282. }
  12283. },
  12284. taurBack: {
  12285. height: math.unit(6, "feet"),
  12286. weight: math.unit(200, "lb"),
  12287. name: "Taur (Back)",
  12288. image: {
  12289. source: "./media/characters/scales/taur-back.svg",
  12290. extra: 1,
  12291. bottom: 0.08
  12292. }
  12293. },
  12294. anthro: {
  12295. height: math.unit(6 * 7 / 12, "feet"),
  12296. weight: math.unit(100, "lb"),
  12297. name: "Anthro",
  12298. image: {
  12299. source: "./media/characters/scales/anthro.svg",
  12300. extra: 1,
  12301. bottom: 0.06
  12302. }
  12303. },
  12304. },
  12305. [
  12306. {
  12307. name: "Normal",
  12308. height: math.unit(12, "feet"),
  12309. default: true
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(6, "feet"),
  12318. weight: math.unit(150, "lb"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/koragos/front.svg",
  12322. extra: 841 / 794,
  12323. bottom: 0.035
  12324. }
  12325. },
  12326. back: {
  12327. height: math.unit(6, "feet"),
  12328. weight: math.unit(150, "lb"),
  12329. name: "Back",
  12330. image: {
  12331. source: "./media/characters/koragos/back.svg",
  12332. extra: 841 / 810,
  12333. bottom: 0.022
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(6 + 11 / 12, "feet"),
  12341. default: true
  12342. },
  12343. {
  12344. name: "Macro",
  12345. height: math.unit(490, "feet")
  12346. },
  12347. {
  12348. name: "Megamacro",
  12349. height: math.unit(10, "miles")
  12350. },
  12351. {
  12352. name: "Gigamacro",
  12353. height: math.unit(50, "miles")
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(250, "lb"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/xylrem/front.svg",
  12366. extra: 3323 / 3050,
  12367. bottom: 0.065
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Micro",
  12374. height: math.unit(4, "feet")
  12375. },
  12376. {
  12377. name: "Normal",
  12378. height: math.unit(16, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Macro",
  12383. height: math.unit(2720, "feet")
  12384. },
  12385. {
  12386. name: "Megamacro",
  12387. height: math.unit(25000, "miles")
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12393. {
  12394. front: {
  12395. height: math.unit(8, "feet"),
  12396. weight: math.unit(250, "kg"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/ikideru/front.svg",
  12400. extra: 930 / 870,
  12401. bottom: 0.087
  12402. }
  12403. },
  12404. back: {
  12405. height: math.unit(8, "feet"),
  12406. weight: math.unit(250, "kg"),
  12407. name: "Back",
  12408. image: {
  12409. source: "./media/characters/ikideru/back.svg",
  12410. extra: 919 / 852,
  12411. bottom: 0.055
  12412. }
  12413. },
  12414. },
  12415. [
  12416. {
  12417. name: "Rare",
  12418. height: math.unit(8, "feet"),
  12419. default: true
  12420. },
  12421. {
  12422. name: "Playful Loom",
  12423. height: math.unit(80, "feet")
  12424. },
  12425. {
  12426. name: "City Leaner",
  12427. height: math.unit(230, "feet")
  12428. },
  12429. {
  12430. name: "Megamacro",
  12431. height: math.unit(2500, "feet")
  12432. },
  12433. {
  12434. name: "Gigamacro",
  12435. height: math.unit(26400, "feet")
  12436. },
  12437. {
  12438. name: "Tectonic Shifter",
  12439. height: math.unit(1.7, "megameters")
  12440. },
  12441. {
  12442. name: "Planet Carer",
  12443. height: math.unit(21, "megameters")
  12444. },
  12445. {
  12446. name: "God",
  12447. height: math.unit(11157.22, "parsecs")
  12448. },
  12449. ]
  12450. ))
  12451. characterMakers.push(() => makeCharacter(
  12452. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12453. {
  12454. front: {
  12455. height: math.unit(6, "feet"),
  12456. weight: math.unit(120, "lb"),
  12457. name: "Front",
  12458. image: {
  12459. source: "./media/characters/neo/front.svg"
  12460. }
  12461. },
  12462. },
  12463. [
  12464. {
  12465. name: "Micro",
  12466. height: math.unit(2, "inches"),
  12467. default: true
  12468. },
  12469. {
  12470. name: "Human Size",
  12471. height: math.unit(5 + 8 / 12, "feet")
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(13 + 10 / 12, "feet"),
  12480. weight: math.unit(5320, "lb"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/chauncey-chantz/front.svg",
  12484. extra: 1587 / 1435,
  12485. bottom: 0.02
  12486. }
  12487. },
  12488. },
  12489. [
  12490. {
  12491. name: "Normal",
  12492. height: math.unit(13 + 10 / 12, "feet"),
  12493. default: true
  12494. },
  12495. {
  12496. name: "Macro",
  12497. height: math.unit(45, "feet")
  12498. },
  12499. {
  12500. name: "Megamacro",
  12501. height: math.unit(250, "miles")
  12502. },
  12503. {
  12504. name: "Planetary",
  12505. height: math.unit(10000, "miles")
  12506. },
  12507. {
  12508. name: "Galactic",
  12509. height: math.unit(40000, "parsecs")
  12510. },
  12511. {
  12512. name: "Universal",
  12513. height: math.unit(1, "yottameter")
  12514. },
  12515. ]
  12516. ))
  12517. characterMakers.push(() => makeCharacter(
  12518. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12519. {
  12520. front: {
  12521. height: math.unit(6, "feet"),
  12522. weight: math.unit(150, "lb"),
  12523. name: "Front",
  12524. image: {
  12525. source: "./media/characters/epifox/front.svg",
  12526. extra: 1,
  12527. bottom: 0.075
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Micro",
  12534. height: math.unit(6, "inches")
  12535. },
  12536. {
  12537. name: "Normal",
  12538. height: math.unit(12, "feet"),
  12539. default: true
  12540. },
  12541. {
  12542. name: "Macro",
  12543. height: math.unit(3810, "feet")
  12544. },
  12545. {
  12546. name: "Megamacro",
  12547. height: math.unit(500, "miles")
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12553. {
  12554. front: {
  12555. height: math.unit(1.8796, "m"),
  12556. weight: math.unit(230, "lb"),
  12557. name: "Front",
  12558. image: {
  12559. source: "./media/characters/colin-t/front.svg",
  12560. extra: 1272 / 1193,
  12561. bottom: 0.07
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Micro",
  12568. height: math.unit(0.571, "meters")
  12569. },
  12570. {
  12571. name: "Normal",
  12572. height: math.unit(1.8796, "meters"),
  12573. default: true
  12574. },
  12575. {
  12576. name: "Tall",
  12577. height: math.unit(4, "meters")
  12578. },
  12579. {
  12580. name: "Macro",
  12581. height: math.unit(67.241, "meters")
  12582. },
  12583. {
  12584. name: "Megamacro",
  12585. height: math.unit(371.856, "meters")
  12586. },
  12587. {
  12588. name: "Planetary",
  12589. height: math.unit(12631.5689, "km")
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12595. {
  12596. front: {
  12597. height: math.unit(1.85, "meters"),
  12598. weight: math.unit(80, "kg"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/matvei/front.svg",
  12602. extra: 614 / 594,
  12603. bottom: 0.01
  12604. }
  12605. },
  12606. },
  12607. [
  12608. {
  12609. name: "Normal",
  12610. height: math.unit(1.85, "meters"),
  12611. default: true
  12612. },
  12613. ]
  12614. ))
  12615. characterMakers.push(() => makeCharacter(
  12616. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12617. {
  12618. front: {
  12619. height: math.unit(5 + 9 / 12, "feet"),
  12620. weight: math.unit(70, "lb"),
  12621. name: "Front",
  12622. image: {
  12623. source: "./media/characters/quincy/front.svg",
  12624. extra: 3041 / 2751
  12625. }
  12626. },
  12627. back: {
  12628. height: math.unit(5 + 9 / 12, "feet"),
  12629. weight: math.unit(70, "lb"),
  12630. name: "Back",
  12631. image: {
  12632. source: "./media/characters/quincy/back.svg",
  12633. extra: 3041 / 2751
  12634. }
  12635. },
  12636. flying: {
  12637. height: math.unit(5 + 4 / 12, "feet"),
  12638. weight: math.unit(70, "lb"),
  12639. name: "Flying",
  12640. image: {
  12641. source: "./media/characters/quincy/flying.svg",
  12642. extra: 1044 / 930
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Micro",
  12649. height: math.unit(3, "cm")
  12650. },
  12651. {
  12652. name: "Normal",
  12653. height: math.unit(5 + 9 / 12, "feet")
  12654. },
  12655. {
  12656. name: "Macro",
  12657. height: math.unit(200, "meters"),
  12658. default: true
  12659. },
  12660. {
  12661. name: "Megamacro",
  12662. height: math.unit(1000, "meters")
  12663. },
  12664. ]
  12665. ))
  12666. characterMakers.push(() => makeCharacter(
  12667. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12668. {
  12669. front: {
  12670. height: math.unit(3 + 11/12, "feet"),
  12671. weight: math.unit(50, "lb"),
  12672. name: "Front",
  12673. image: {
  12674. source: "./media/characters/vanrel/front.svg",
  12675. extra: 1104/949,
  12676. bottom: 52/1156
  12677. }
  12678. },
  12679. back: {
  12680. height: math.unit(3 + 11/12, "feet"),
  12681. weight: math.unit(50, "lb"),
  12682. name: "Back",
  12683. image: {
  12684. source: "./media/characters/vanrel/back.svg",
  12685. extra: 1119/976,
  12686. bottom: 37/1156
  12687. }
  12688. },
  12689. tome: {
  12690. height: math.unit(1.35, "feet"),
  12691. weight: math.unit(10, "lb"),
  12692. name: "Vanrel's Tome",
  12693. rename: true,
  12694. image: {
  12695. source: "./media/characters/vanrel/tome.svg"
  12696. }
  12697. },
  12698. beans: {
  12699. height: math.unit(0.89, "feet"),
  12700. name: "Beans",
  12701. image: {
  12702. source: "./media/characters/vanrel/beans.svg"
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(3 + 11/12, "feet"),
  12710. default: true
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12716. {
  12717. front: {
  12718. height: math.unit(7 + 5 / 12, "feet"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/kuiper-vanrel/front.svg",
  12722. extra: 1219/1169,
  12723. bottom: 69/1288
  12724. }
  12725. },
  12726. back: {
  12727. height: math.unit(7 + 5 / 12, "feet"),
  12728. name: "Back",
  12729. image: {
  12730. source: "./media/characters/kuiper-vanrel/back.svg",
  12731. extra: 1236/1193,
  12732. bottom: 27/1263
  12733. }
  12734. },
  12735. foot: {
  12736. height: math.unit(0.55, "meters"),
  12737. name: "Foot",
  12738. image: {
  12739. source: "./media/characters/kuiper-vanrel/foot.svg",
  12740. }
  12741. },
  12742. battle: {
  12743. height: math.unit(6.824, "feet"),
  12744. name: "Battle",
  12745. image: {
  12746. source: "./media/characters/kuiper-vanrel/battle.svg",
  12747. extra: 1466 / 1327,
  12748. bottom: 29 / 1492.5
  12749. }
  12750. },
  12751. meerkui: {
  12752. height: math.unit(18, "inches"),
  12753. name: "Meerkui",
  12754. image: {
  12755. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12756. extra: 1354/1289,
  12757. bottom: 69/1423
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(7 + 5 / 12, "feet"),
  12765. default: true
  12766. },
  12767. ]
  12768. ))
  12769. characterMakers.push(() => makeCharacter(
  12770. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12771. {
  12772. front: {
  12773. height: math.unit(8 + 5 / 12, "feet"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/keset-vanrel/front.svg",
  12777. extra: 1231/1148,
  12778. bottom: 82/1313
  12779. }
  12780. },
  12781. back: {
  12782. height: math.unit(8 + 5 / 12, "feet"),
  12783. name: "Back",
  12784. image: {
  12785. source: "./media/characters/keset-vanrel/back.svg",
  12786. extra: 1240/1174,
  12787. bottom: 33/1273
  12788. }
  12789. },
  12790. hand: {
  12791. height: math.unit(0.6, "meters"),
  12792. name: "Hand",
  12793. image: {
  12794. source: "./media/characters/keset-vanrel/hand.svg"
  12795. }
  12796. },
  12797. foot: {
  12798. height: math.unit(0.94978, "meters"),
  12799. name: "Foot",
  12800. image: {
  12801. source: "./media/characters/keset-vanrel/foot.svg"
  12802. }
  12803. },
  12804. battle: {
  12805. height: math.unit(7.408, "feet"),
  12806. name: "Battle",
  12807. image: {
  12808. source: "./media/characters/keset-vanrel/battle.svg",
  12809. extra: 1890 / 1386,
  12810. bottom: 73.28 / 1970
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(8 + 5 / 12, "feet"),
  12818. default: true
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12824. {
  12825. front: {
  12826. height: math.unit(6, "feet"),
  12827. weight: math.unit(150, "lb"),
  12828. name: "Front",
  12829. image: {
  12830. source: "./media/characters/neos/front.svg",
  12831. extra: 1696 / 992,
  12832. bottom: 0.14
  12833. }
  12834. },
  12835. },
  12836. [
  12837. {
  12838. name: "Normal",
  12839. height: math.unit(54, "cm"),
  12840. default: true
  12841. },
  12842. {
  12843. name: "Macro",
  12844. height: math.unit(100, "m")
  12845. },
  12846. {
  12847. name: "Megamacro",
  12848. height: math.unit(10, "km")
  12849. },
  12850. {
  12851. name: "Megamacro+",
  12852. height: math.unit(100, "km")
  12853. },
  12854. {
  12855. name: "Gigamacro",
  12856. height: math.unit(100, "Mm")
  12857. },
  12858. {
  12859. name: "Teramacro",
  12860. height: math.unit(100, "Gm")
  12861. },
  12862. {
  12863. name: "Examacro",
  12864. height: math.unit(100, "Em")
  12865. },
  12866. {
  12867. name: "Godly",
  12868. height: math.unit(10000, "Ym")
  12869. },
  12870. {
  12871. name: "Beyond Godly",
  12872. height: math.unit(25, "multiverses")
  12873. },
  12874. ]
  12875. ))
  12876. characterMakers.push(() => makeCharacter(
  12877. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12878. {
  12879. feminine: {
  12880. height: math.unit(5, "feet"),
  12881. weight: math.unit(100, "lb"),
  12882. name: "Feminine",
  12883. image: {
  12884. source: "./media/characters/sammy-mouse/feminine.svg",
  12885. extra: 2526 / 2425,
  12886. bottom: 0.123
  12887. }
  12888. },
  12889. masculine: {
  12890. height: math.unit(5, "feet"),
  12891. weight: math.unit(100, "lb"),
  12892. name: "Masculine",
  12893. image: {
  12894. source: "./media/characters/sammy-mouse/masculine.svg",
  12895. extra: 2526 / 2425,
  12896. bottom: 0.123
  12897. }
  12898. },
  12899. },
  12900. [
  12901. {
  12902. name: "Micro",
  12903. height: math.unit(5, "inches")
  12904. },
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(5, "feet"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Macro",
  12912. height: math.unit(60, "feet")
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(4, "feet"),
  12921. weight: math.unit(50, "lb"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/kole/front.svg",
  12925. extra: 1423 / 1303,
  12926. bottom: 0.025
  12927. }
  12928. },
  12929. back: {
  12930. height: math.unit(4, "feet"),
  12931. weight: math.unit(50, "lb"),
  12932. name: "Back",
  12933. image: {
  12934. source: "./media/characters/kole/back.svg",
  12935. extra: 1426 / 1280,
  12936. bottom: 0.02
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Normal",
  12943. height: math.unit(4, "feet"),
  12944. default: true
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12950. {
  12951. front: {
  12952. height: math.unit(2.5, "feet"),
  12953. weight: math.unit(32, "lb"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/rufran/front.svg",
  12957. extra: 1313/885,
  12958. bottom: 94/1407
  12959. }
  12960. },
  12961. side: {
  12962. height: math.unit(2.5, "feet"),
  12963. weight: math.unit(32, "lb"),
  12964. name: "Side",
  12965. image: {
  12966. source: "./media/characters/rufran/side.svg",
  12967. extra: 1109/852,
  12968. bottom: 118/1227
  12969. }
  12970. },
  12971. back: {
  12972. height: math.unit(2.5, "feet"),
  12973. weight: math.unit(32, "lb"),
  12974. name: "Back",
  12975. image: {
  12976. source: "./media/characters/rufran/back.svg",
  12977. extra: 1280/878,
  12978. bottom: 131/1411
  12979. }
  12980. },
  12981. mouth: {
  12982. height: math.unit(1.13, "feet"),
  12983. name: "Mouth",
  12984. image: {
  12985. source: "./media/characters/rufran/mouth.svg"
  12986. }
  12987. },
  12988. foot: {
  12989. height: math.unit(1.33, "feet"),
  12990. name: "Foot",
  12991. image: {
  12992. source: "./media/characters/rufran/foot.svg"
  12993. }
  12994. },
  12995. koboldFront: {
  12996. height: math.unit(2 + 6 / 12, "feet"),
  12997. weight: math.unit(20, "lb"),
  12998. name: "Front (Kobold)",
  12999. image: {
  13000. source: "./media/characters/rufran/kobold-front.svg",
  13001. extra: 2041 / 1839,
  13002. bottom: 0.055
  13003. }
  13004. },
  13005. koboldBack: {
  13006. height: math.unit(2 + 6 / 12, "feet"),
  13007. weight: math.unit(20, "lb"),
  13008. name: "Back (Kobold)",
  13009. image: {
  13010. source: "./media/characters/rufran/kobold-back.svg",
  13011. extra: 2054 / 1839,
  13012. bottom: 0.01
  13013. }
  13014. },
  13015. koboldHand: {
  13016. height: math.unit(0.2166, "meters"),
  13017. name: "Hand (Kobold)",
  13018. image: {
  13019. source: "./media/characters/rufran/kobold-hand.svg"
  13020. }
  13021. },
  13022. koboldFoot: {
  13023. height: math.unit(0.185, "meters"),
  13024. name: "Foot (Kobold)",
  13025. image: {
  13026. source: "./media/characters/rufran/kobold-foot.svg"
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Micro",
  13033. height: math.unit(1, "inch")
  13034. },
  13035. {
  13036. name: "Normal",
  13037. height: math.unit(2 + 6 / 12, "feet"),
  13038. default: true
  13039. },
  13040. {
  13041. name: "Big",
  13042. height: math.unit(60, "feet")
  13043. },
  13044. {
  13045. name: "Macro",
  13046. height: math.unit(325, "feet")
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13052. {
  13053. front: {
  13054. height: math.unit(0.3, "meters"),
  13055. weight: math.unit(3.5, "kg"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/chip/front.svg",
  13059. extra: 748 / 674
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Micro",
  13066. height: math.unit(1, "inch"),
  13067. default: true
  13068. },
  13069. ]
  13070. ))
  13071. characterMakers.push(() => makeCharacter(
  13072. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13073. {
  13074. side: {
  13075. height: math.unit(2.3, "meters"),
  13076. weight: math.unit(3500, "lb"),
  13077. name: "Side",
  13078. image: {
  13079. source: "./media/characters/torvid/side.svg",
  13080. extra: 1972 / 722,
  13081. bottom: 0.035
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Normal",
  13088. height: math.unit(2.3, "meters"),
  13089. default: true
  13090. },
  13091. ]
  13092. ))
  13093. characterMakers.push(() => makeCharacter(
  13094. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13095. {
  13096. front: {
  13097. height: math.unit(2, "meters"),
  13098. weight: math.unit(150.5, "kg"),
  13099. name: "Front",
  13100. image: {
  13101. source: "./media/characters/susan/front.svg",
  13102. extra: 693 / 635,
  13103. bottom: 0.05
  13104. }
  13105. },
  13106. },
  13107. [
  13108. {
  13109. name: "Megamacro",
  13110. height: math.unit(505, "miles"),
  13111. default: true
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(150, "lb"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/raindrops/front.svg",
  13124. extra: 2655 / 2461,
  13125. bottom: 49 / 2705
  13126. }
  13127. },
  13128. back: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(150, "lb"),
  13131. name: "Back",
  13132. image: {
  13133. source: "./media/characters/raindrops/back.svg",
  13134. extra: 2574 / 2400,
  13135. bottom: 65 / 2634
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Micro",
  13142. height: math.unit(6, "inches")
  13143. },
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(6 + 2 / 12, "feet")
  13147. },
  13148. {
  13149. name: "Macro",
  13150. height: math.unit(131, "feet"),
  13151. default: true
  13152. },
  13153. {
  13154. name: "Megamacro",
  13155. height: math.unit(15, "miles")
  13156. },
  13157. {
  13158. name: "Gigamacro",
  13159. height: math.unit(4000, "miles")
  13160. },
  13161. {
  13162. name: "Teramacro",
  13163. height: math.unit(315000, "miles")
  13164. },
  13165. ]
  13166. ))
  13167. characterMakers.push(() => makeCharacter(
  13168. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13169. {
  13170. front: {
  13171. height: math.unit(2.794, "meters"),
  13172. weight: math.unit(325, "kg"),
  13173. name: "Front",
  13174. image: {
  13175. source: "./media/characters/tezwa/front.svg",
  13176. extra: 2083 / 1906,
  13177. bottom: 0.031
  13178. }
  13179. },
  13180. foot: {
  13181. height: math.unit(0.687, "meters"),
  13182. name: "Foot",
  13183. image: {
  13184. source: "./media/characters/tezwa/foot.svg"
  13185. }
  13186. },
  13187. },
  13188. [
  13189. {
  13190. name: "Normal",
  13191. height: math.unit(9 + 2 / 12, "feet"),
  13192. default: true
  13193. },
  13194. ]
  13195. ))
  13196. characterMakers.push(() => makeCharacter(
  13197. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13198. {
  13199. front: {
  13200. height: math.unit(58, "feet"),
  13201. weight: math.unit(89000, "lb"),
  13202. name: "Front",
  13203. image: {
  13204. source: "./media/characters/typhus/front.svg",
  13205. extra: 816 / 800,
  13206. bottom: 0.065
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Macro",
  13213. height: math.unit(58, "feet"),
  13214. default: true
  13215. },
  13216. ]
  13217. ))
  13218. characterMakers.push(() => makeCharacter(
  13219. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13220. {
  13221. front: {
  13222. height: math.unit(12, "feet"),
  13223. weight: math.unit(6, "tonnes"),
  13224. name: "Front",
  13225. image: {
  13226. source: "./media/characters/lyra-von-wulf/front.svg",
  13227. extra: 1,
  13228. bottom: 0.10
  13229. }
  13230. },
  13231. frontMecha: {
  13232. height: math.unit(12, "feet"),
  13233. weight: math.unit(12, "tonnes"),
  13234. name: "Front (Mecha)",
  13235. image: {
  13236. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13237. extra: 1,
  13238. bottom: 0.042
  13239. }
  13240. },
  13241. maw: {
  13242. height: math.unit(2.2, "feet"),
  13243. name: "Maw",
  13244. image: {
  13245. source: "./media/characters/lyra-von-wulf/maw.svg"
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Normal",
  13252. height: math.unit(12, "feet"),
  13253. default: true
  13254. },
  13255. {
  13256. name: "Classic",
  13257. height: math.unit(50, "feet")
  13258. },
  13259. {
  13260. name: "Macro",
  13261. height: math.unit(500, "feet")
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(1, "mile")
  13266. },
  13267. {
  13268. name: "Gigamacro",
  13269. height: math.unit(400, "miles")
  13270. },
  13271. {
  13272. name: "Teramacro",
  13273. height: math.unit(22000, "miles")
  13274. },
  13275. {
  13276. name: "Solarmacro",
  13277. height: math.unit(8600000, "miles")
  13278. },
  13279. {
  13280. name: "Galactic",
  13281. height: math.unit(1057000, "lightyears")
  13282. },
  13283. ]
  13284. ))
  13285. characterMakers.push(() => makeCharacter(
  13286. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13287. {
  13288. front: {
  13289. height: math.unit(6 + 10 / 12, "feet"),
  13290. weight: math.unit(150, "lb"),
  13291. name: "Front",
  13292. image: {
  13293. source: "./media/characters/dixon/front.svg",
  13294. extra: 3361 / 3209,
  13295. bottom: 0.01
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(6 + 10 / 12, "feet"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Big",
  13307. height: math.unit(12, "meters")
  13308. },
  13309. {
  13310. name: "Macro",
  13311. height: math.unit(500, "meters")
  13312. },
  13313. {
  13314. name: "Megamacro",
  13315. height: math.unit(2, "km")
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(185, "cm"),
  13324. weight: math.unit(68, "kg"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/kauko/front.svg",
  13328. extra: 1455 / 1421,
  13329. bottom: 0.03
  13330. }
  13331. },
  13332. back: {
  13333. height: math.unit(185, "cm"),
  13334. weight: math.unit(68, "kg"),
  13335. name: "Back",
  13336. image: {
  13337. source: "./media/characters/kauko/back.svg",
  13338. extra: 1455 / 1421,
  13339. bottom: 0.004
  13340. }
  13341. },
  13342. },
  13343. [
  13344. {
  13345. name: "Normal",
  13346. height: math.unit(185, "cm"),
  13347. default: true
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(6, "feet"),
  13356. weight: math.unit(150, "kg"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/varg/front.svg",
  13360. extra: 1108 / 1018,
  13361. bottom: 0.0375
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Normal",
  13368. height: math.unit(5, "meters")
  13369. },
  13370. {
  13371. name: "Macro",
  13372. height: math.unit(200, "meters")
  13373. },
  13374. {
  13375. name: "Megamacro",
  13376. height: math.unit(20, "kilometers")
  13377. },
  13378. {
  13379. name: "True Size",
  13380. height: math.unit(211, "km"),
  13381. default: true
  13382. },
  13383. {
  13384. name: "Gigamacro",
  13385. height: math.unit(1000, "km")
  13386. },
  13387. {
  13388. name: "Gigamacro+",
  13389. height: math.unit(8000, "km")
  13390. },
  13391. {
  13392. name: "Teramacro",
  13393. height: math.unit(1000000, "km")
  13394. },
  13395. ]
  13396. ))
  13397. characterMakers.push(() => makeCharacter(
  13398. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13399. {
  13400. front: {
  13401. height: math.unit(7 + 7 / 12, "feet"),
  13402. weight: math.unit(267, "lb"),
  13403. name: "Front",
  13404. image: {
  13405. source: "./media/characters/dayza/front.svg",
  13406. extra: 1262 / 1200,
  13407. bottom: 0.035
  13408. }
  13409. },
  13410. side: {
  13411. height: math.unit(7 + 7 / 12, "feet"),
  13412. weight: math.unit(267, "lb"),
  13413. name: "Side",
  13414. image: {
  13415. source: "./media/characters/dayza/side.svg",
  13416. extra: 1295 / 1245,
  13417. bottom: 0.05
  13418. }
  13419. },
  13420. back: {
  13421. height: math.unit(7 + 7 / 12, "feet"),
  13422. weight: math.unit(267, "lb"),
  13423. name: "Back",
  13424. image: {
  13425. source: "./media/characters/dayza/back.svg",
  13426. extra: 1241 / 1170
  13427. }
  13428. },
  13429. },
  13430. [
  13431. {
  13432. name: "Normal",
  13433. height: math.unit(7 + 7 / 12, "feet"),
  13434. default: true
  13435. },
  13436. {
  13437. name: "Macro",
  13438. height: math.unit(155, "feet")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(6 + 5 / 12, "feet"),
  13447. weight: math.unit(160, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/xanthos/front.svg",
  13451. extra: 1,
  13452. bottom: 0.04
  13453. }
  13454. },
  13455. back: {
  13456. height: math.unit(6 + 5 / 12, "feet"),
  13457. weight: math.unit(160, "lb"),
  13458. name: "Back",
  13459. image: {
  13460. source: "./media/characters/xanthos/back.svg",
  13461. extra: 1,
  13462. bottom: 0.03
  13463. }
  13464. },
  13465. hand: {
  13466. height: math.unit(0.928, "feet"),
  13467. name: "Hand",
  13468. image: {
  13469. source: "./media/characters/xanthos/hand.svg"
  13470. }
  13471. },
  13472. foot: {
  13473. height: math.unit(1.286, "feet"),
  13474. name: "Foot",
  13475. image: {
  13476. source: "./media/characters/xanthos/foot.svg"
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(6 + 5 / 12, "feet"),
  13484. default: true
  13485. },
  13486. {
  13487. name: "Normal+",
  13488. height: math.unit(6, "meters")
  13489. },
  13490. {
  13491. name: "Macro",
  13492. height: math.unit(40, "feet")
  13493. },
  13494. {
  13495. name: "Macro+",
  13496. height: math.unit(200, "meters")
  13497. },
  13498. {
  13499. name: "Megamacro",
  13500. height: math.unit(20, "km")
  13501. },
  13502. {
  13503. name: "Megamacro+",
  13504. height: math.unit(100, "km")
  13505. },
  13506. {
  13507. name: "Gigamacro",
  13508. height: math.unit(200, "megameters")
  13509. },
  13510. {
  13511. name: "Gigamacro+",
  13512. height: math.unit(1.5, "gigameters")
  13513. },
  13514. ]
  13515. ))
  13516. characterMakers.push(() => makeCharacter(
  13517. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13518. {
  13519. front: {
  13520. height: math.unit(6 + 3 / 12, "feet"),
  13521. weight: math.unit(215, "lb"),
  13522. name: "Front",
  13523. image: {
  13524. source: "./media/characters/grynn/front.svg",
  13525. extra: 4627 / 4209,
  13526. bottom: 0.047
  13527. }
  13528. },
  13529. },
  13530. [
  13531. {
  13532. name: "Micro",
  13533. height: math.unit(6, "inches")
  13534. },
  13535. {
  13536. name: "Normal",
  13537. height: math.unit(6 + 3 / 12, "feet"),
  13538. default: true
  13539. },
  13540. {
  13541. name: "Big",
  13542. height: math.unit(104, "feet")
  13543. },
  13544. {
  13545. name: "Macro",
  13546. height: math.unit(944, "feet")
  13547. },
  13548. {
  13549. name: "Macro+",
  13550. height: math.unit(9480, "feet")
  13551. },
  13552. {
  13553. name: "Megamacro",
  13554. height: math.unit(78752, "feet")
  13555. },
  13556. {
  13557. name: "Megamacro+",
  13558. height: math.unit(630128, "feet")
  13559. },
  13560. {
  13561. name: "Megamacro++",
  13562. height: math.unit(3150695, "feet")
  13563. },
  13564. ]
  13565. ))
  13566. characterMakers.push(() => makeCharacter(
  13567. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13568. {
  13569. front: {
  13570. height: math.unit(7 + 5 / 12, "feet"),
  13571. weight: math.unit(450, "lb"),
  13572. name: "Front",
  13573. image: {
  13574. source: "./media/characters/mocha-aura/front.svg",
  13575. extra: 1907 / 1817,
  13576. bottom: 0.04
  13577. }
  13578. },
  13579. back: {
  13580. height: math.unit(7 + 5 / 12, "feet"),
  13581. weight: math.unit(450, "lb"),
  13582. name: "Back",
  13583. image: {
  13584. source: "./media/characters/mocha-aura/back.svg",
  13585. extra: 1900 / 1825,
  13586. bottom: 0.045
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Nano",
  13593. height: math.unit(1, "nm")
  13594. },
  13595. {
  13596. name: "Megamicro",
  13597. height: math.unit(1, "mm")
  13598. },
  13599. {
  13600. name: "Micro",
  13601. height: math.unit(3, "inches")
  13602. },
  13603. {
  13604. name: "Normal",
  13605. height: math.unit(7 + 5 / 12, "feet"),
  13606. default: true
  13607. },
  13608. {
  13609. name: "Macro",
  13610. height: math.unit(30, "feet")
  13611. },
  13612. {
  13613. name: "Megamacro",
  13614. height: math.unit(3500, "feet")
  13615. },
  13616. {
  13617. name: "Teramacro",
  13618. height: math.unit(500000, "miles")
  13619. },
  13620. {
  13621. name: "Petamacro",
  13622. height: math.unit(50000000000000000, "parsecs")
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13628. {
  13629. front: {
  13630. height: math.unit(6, "feet"),
  13631. weight: math.unit(150, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/ilisha-devya/front.svg",
  13635. extra: 1053/1049,
  13636. bottom: 270/1323
  13637. }
  13638. },
  13639. back: {
  13640. height: math.unit(6, "feet"),
  13641. weight: math.unit(150, "lb"),
  13642. name: "Back",
  13643. image: {
  13644. source: "./media/characters/ilisha-devya/back.svg",
  13645. extra: 1131/1128,
  13646. bottom: 39/1170
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(500, "feet"),
  13654. default: true
  13655. },
  13656. {
  13657. name: "Megamacro",
  13658. height: math.unit(10, "miles")
  13659. },
  13660. {
  13661. name: "Gigamacro",
  13662. height: math.unit(100000, "miles")
  13663. },
  13664. {
  13665. name: "Examacro",
  13666. height: math.unit(1e9, "lightyears")
  13667. },
  13668. {
  13669. name: "Omniversal",
  13670. height: math.unit(1e33, "lightyears")
  13671. },
  13672. {
  13673. name: "Beyond Infinite",
  13674. height: math.unit(1e100, "lightyears")
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13680. {
  13681. Side: {
  13682. height: math.unit(6, "feet"),
  13683. weight: math.unit(150, "lb"),
  13684. name: "Side",
  13685. image: {
  13686. source: "./media/characters/mira/side.svg",
  13687. extra: 900 / 799,
  13688. bottom: 0.02
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Human Size",
  13695. height: math.unit(6, "feet")
  13696. },
  13697. {
  13698. name: "Macro",
  13699. height: math.unit(100, "feet"),
  13700. default: true
  13701. },
  13702. {
  13703. name: "Megamacro",
  13704. height: math.unit(10, "miles")
  13705. },
  13706. {
  13707. name: "Gigamacro",
  13708. height: math.unit(25000, "miles")
  13709. },
  13710. {
  13711. name: "Teramacro",
  13712. height: math.unit(300, "AU")
  13713. },
  13714. {
  13715. name: "Full Size",
  13716. height: math.unit(4.5e10, "lightyears")
  13717. },
  13718. ]
  13719. ))
  13720. characterMakers.push(() => makeCharacter(
  13721. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13722. {
  13723. front: {
  13724. height: math.unit(6, "feet"),
  13725. weight: math.unit(150, "lb"),
  13726. name: "Front",
  13727. image: {
  13728. source: "./media/characters/holly/front.svg",
  13729. extra: 639 / 606
  13730. }
  13731. },
  13732. back: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Back",
  13736. image: {
  13737. source: "./media/characters/holly/back.svg",
  13738. extra: 623 / 598
  13739. }
  13740. },
  13741. frontWorking: {
  13742. height: math.unit(6, "feet"),
  13743. weight: math.unit(150, "lb"),
  13744. name: "Front (Working)",
  13745. image: {
  13746. source: "./media/characters/holly/front-working.svg",
  13747. extra: 607 / 577,
  13748. bottom: 0.048
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Normal",
  13755. height: math.unit(12 + 3 / 12, "feet"),
  13756. default: true
  13757. },
  13758. ]
  13759. ))
  13760. characterMakers.push(() => makeCharacter(
  13761. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13762. {
  13763. front: {
  13764. height: math.unit(6, "feet"),
  13765. weight: math.unit(150, "lb"),
  13766. name: "Front",
  13767. image: {
  13768. source: "./media/characters/porter/front.svg",
  13769. extra: 1,
  13770. bottom: 0.01
  13771. }
  13772. },
  13773. frontRobes: {
  13774. height: math.unit(6, "feet"),
  13775. weight: math.unit(150, "lb"),
  13776. name: "Front (Robes)",
  13777. image: {
  13778. source: "./media/characters/porter/front-robes.svg",
  13779. extra: 1.01,
  13780. bottom: 0.01
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Normal",
  13787. height: math.unit(11 + 9 / 12, "feet"),
  13788. default: true
  13789. },
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13794. {
  13795. legendary: {
  13796. height: math.unit(6, "feet"),
  13797. weight: math.unit(150, "lb"),
  13798. name: "Legendary",
  13799. image: {
  13800. source: "./media/characters/lucy/legendary.svg",
  13801. extra: 1355 / 1100,
  13802. bottom: 0.045
  13803. }
  13804. },
  13805. },
  13806. [
  13807. {
  13808. name: "Legendary",
  13809. height: math.unit(86882 * 2, "miles"),
  13810. default: true
  13811. },
  13812. ]
  13813. ))
  13814. characterMakers.push(() => makeCharacter(
  13815. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13816. {
  13817. front: {
  13818. height: math.unit(6, "feet"),
  13819. weight: math.unit(150, "lb"),
  13820. name: "Front",
  13821. image: {
  13822. source: "./media/characters/drusilla/front.svg",
  13823. extra: 678 / 635,
  13824. bottom: 0.03
  13825. }
  13826. },
  13827. back: {
  13828. height: math.unit(6, "feet"),
  13829. weight: math.unit(150, "lb"),
  13830. name: "Back",
  13831. image: {
  13832. source: "./media/characters/drusilla/back.svg",
  13833. extra: 678 / 635,
  13834. bottom: 0.005
  13835. }
  13836. },
  13837. },
  13838. [
  13839. {
  13840. name: "Macro",
  13841. height: math.unit(100, "feet")
  13842. },
  13843. {
  13844. name: "Canon Height",
  13845. height: math.unit(2000, "feet"),
  13846. default: true
  13847. },
  13848. ]
  13849. ))
  13850. characterMakers.push(() => makeCharacter(
  13851. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13852. {
  13853. front: {
  13854. height: math.unit(6, "feet"),
  13855. weight: math.unit(180, "lb"),
  13856. name: "Front",
  13857. image: {
  13858. source: "./media/characters/renard-thatch/front.svg",
  13859. extra: 2411 / 2275,
  13860. bottom: 0.01
  13861. }
  13862. },
  13863. frontPosing: {
  13864. height: math.unit(6, "feet"),
  13865. weight: math.unit(180, "lb"),
  13866. name: "Front (Posing)",
  13867. image: {
  13868. source: "./media/characters/renard-thatch/front-posing.svg",
  13869. extra: 2381 / 2261,
  13870. bottom: 0.01
  13871. }
  13872. },
  13873. back: {
  13874. height: math.unit(6, "feet"),
  13875. weight: math.unit(180, "lb"),
  13876. name: "Back",
  13877. image: {
  13878. source: "./media/characters/renard-thatch/back.svg",
  13879. extra: 2428 / 2288
  13880. }
  13881. },
  13882. },
  13883. [
  13884. {
  13885. name: "Micro",
  13886. height: math.unit(3, "inches")
  13887. },
  13888. {
  13889. name: "Default",
  13890. height: math.unit(6, "feet"),
  13891. default: true
  13892. },
  13893. {
  13894. name: "Macro",
  13895. height: math.unit(75, "feet")
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(1450, "feet"),
  13904. weight: math.unit(1.21e6, "tons"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/sekvra/front.svg",
  13908. extra: 1193/1190,
  13909. bottom: 78/1271
  13910. }
  13911. },
  13912. side: {
  13913. height: math.unit(1450, "feet"),
  13914. weight: math.unit(1.21e6, "tons"),
  13915. name: "Side",
  13916. image: {
  13917. source: "./media/characters/sekvra/side.svg",
  13918. extra: 1193/1190,
  13919. bottom: 52/1245
  13920. }
  13921. },
  13922. back: {
  13923. height: math.unit(1450, "feet"),
  13924. weight: math.unit(1.21e6, "tons"),
  13925. name: "Back",
  13926. image: {
  13927. source: "./media/characters/sekvra/back.svg",
  13928. extra: 1219/1216,
  13929. bottom: 21/1240
  13930. }
  13931. },
  13932. frontClothed: {
  13933. height: math.unit(1450, "feet"),
  13934. weight: math.unit(1.21e6, "tons"),
  13935. name: "Front (Clothed)",
  13936. image: {
  13937. source: "./media/characters/sekvra/front-clothed.svg",
  13938. extra: 1192/1189,
  13939. bottom: 79/1271
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Macro",
  13946. height: math.unit(1450, "feet"),
  13947. default: true
  13948. },
  13949. {
  13950. name: "Megamacro",
  13951. height: math.unit(15000, "feet")
  13952. },
  13953. ]
  13954. ))
  13955. characterMakers.push(() => makeCharacter(
  13956. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13957. {
  13958. front: {
  13959. height: math.unit(6, "feet"),
  13960. weight: math.unit(150, "lb"),
  13961. name: "Front",
  13962. image: {
  13963. source: "./media/characters/carmine/front.svg",
  13964. extra: 1,
  13965. bottom: 0.035
  13966. }
  13967. },
  13968. frontArmor: {
  13969. height: math.unit(6, "feet"),
  13970. weight: math.unit(150, "lb"),
  13971. name: "Front (Armor)",
  13972. image: {
  13973. source: "./media/characters/carmine/front-armor.svg",
  13974. extra: 1,
  13975. bottom: 0.035
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "Large",
  13982. height: math.unit(1, "mile")
  13983. },
  13984. {
  13985. name: "Huge",
  13986. height: math.unit(40, "miles"),
  13987. default: true
  13988. },
  13989. {
  13990. name: "Colossal",
  13991. height: math.unit(2500, "miles")
  13992. },
  13993. ]
  13994. ))
  13995. characterMakers.push(() => makeCharacter(
  13996. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13997. {
  13998. front: {
  13999. height: math.unit(6, "feet"),
  14000. weight: math.unit(150, "lb"),
  14001. name: "Front",
  14002. image: {
  14003. source: "./media/characters/elyssia/front.svg",
  14004. extra: 2201 / 2035,
  14005. bottom: 0.05
  14006. }
  14007. },
  14008. frontClothed: {
  14009. height: math.unit(6, "feet"),
  14010. weight: math.unit(150, "lb"),
  14011. name: "Front (Clothed)",
  14012. image: {
  14013. source: "./media/characters/elyssia/front-clothed.svg",
  14014. extra: 2201 / 2035,
  14015. bottom: 0.05
  14016. }
  14017. },
  14018. back: {
  14019. height: math.unit(6, "feet"),
  14020. weight: math.unit(150, "lb"),
  14021. name: "Back",
  14022. image: {
  14023. source: "./media/characters/elyssia/back.svg",
  14024. extra: 2201 / 2035,
  14025. bottom: 0.013
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Smaller",
  14032. height: math.unit(150, "feet")
  14033. },
  14034. {
  14035. name: "Standard",
  14036. height: math.unit(1400, "feet"),
  14037. default: true
  14038. },
  14039. {
  14040. name: "Distracted",
  14041. height: math.unit(15000, "feet")
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14047. {
  14048. front: {
  14049. height: math.unit(7 + 4/12, "feet"),
  14050. weight: math.unit(690, "lb"),
  14051. name: "Front",
  14052. image: {
  14053. source: "./media/characters/geno-maxwell/front.svg",
  14054. extra: 984/856,
  14055. bottom: 87/1071
  14056. }
  14057. },
  14058. back: {
  14059. height: math.unit(7 + 4/12, "feet"),
  14060. weight: math.unit(690, "lb"),
  14061. name: "Back",
  14062. image: {
  14063. source: "./media/characters/geno-maxwell/back.svg",
  14064. extra: 981/854,
  14065. bottom: 57/1038
  14066. }
  14067. },
  14068. frontCostume: {
  14069. height: math.unit(7 + 4/12, "feet"),
  14070. weight: math.unit(690, "lb"),
  14071. name: "Front (Costume)",
  14072. image: {
  14073. source: "./media/characters/geno-maxwell/front-costume.svg",
  14074. extra: 984/856,
  14075. bottom: 87/1071
  14076. }
  14077. },
  14078. backcostume: {
  14079. height: math.unit(7 + 4/12, "feet"),
  14080. weight: math.unit(690, "lb"),
  14081. name: "Back (Costume)",
  14082. image: {
  14083. source: "./media/characters/geno-maxwell/back-costume.svg",
  14084. extra: 981/854,
  14085. bottom: 57/1038
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Micro",
  14092. height: math.unit(3, "inches")
  14093. },
  14094. {
  14095. name: "Normal",
  14096. height: math.unit(7 + 4 / 12, "feet"),
  14097. default: true
  14098. },
  14099. {
  14100. name: "Macro",
  14101. height: math.unit(220, "feet")
  14102. },
  14103. {
  14104. name: "Megamacro",
  14105. height: math.unit(11, "miles")
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(7 + 4/12, "feet"),
  14114. weight: math.unit(750, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/regena-maxwell/front.svg",
  14118. extra: 984/856,
  14119. bottom: 87/1071
  14120. }
  14121. },
  14122. back: {
  14123. height: math.unit(7 + 4/12, "feet"),
  14124. weight: math.unit(750, "lb"),
  14125. name: "Back",
  14126. image: {
  14127. source: "./media/characters/regena-maxwell/back.svg",
  14128. extra: 981/854,
  14129. bottom: 57/1038
  14130. }
  14131. },
  14132. frontCostume: {
  14133. height: math.unit(7 + 4/12, "feet"),
  14134. weight: math.unit(750, "lb"),
  14135. name: "Front (Costume)",
  14136. image: {
  14137. source: "./media/characters/regena-maxwell/front-costume.svg",
  14138. extra: 984/856,
  14139. bottom: 87/1071
  14140. }
  14141. },
  14142. backcostume: {
  14143. height: math.unit(7 + 4/12, "feet"),
  14144. weight: math.unit(750, "lb"),
  14145. name: "Back (Costume)",
  14146. image: {
  14147. source: "./media/characters/regena-maxwell/back-costume.svg",
  14148. extra: 981/854,
  14149. bottom: 57/1038
  14150. }
  14151. },
  14152. },
  14153. [
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(7 + 4 / 12, "feet"),
  14157. default: true
  14158. },
  14159. {
  14160. name: "Macro",
  14161. height: math.unit(220, "feet")
  14162. },
  14163. {
  14164. name: "Megamacro",
  14165. height: math.unit(11, "miles")
  14166. },
  14167. ]
  14168. ))
  14169. characterMakers.push(() => makeCharacter(
  14170. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14171. {
  14172. front: {
  14173. height: math.unit(6, "feet"),
  14174. weight: math.unit(150, "lb"),
  14175. name: "Front",
  14176. image: {
  14177. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14178. extra: 860 / 690,
  14179. bottom: 0.03
  14180. }
  14181. },
  14182. },
  14183. [
  14184. {
  14185. name: "Normal",
  14186. height: math.unit(1.7, "meters"),
  14187. default: true
  14188. },
  14189. ]
  14190. ))
  14191. characterMakers.push(() => makeCharacter(
  14192. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14193. {
  14194. front: {
  14195. height: math.unit(6, "feet"),
  14196. weight: math.unit(150, "lb"),
  14197. name: "Front",
  14198. image: {
  14199. source: "./media/characters/quilly/front.svg",
  14200. extra: 890 / 776
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Gigamacro",
  14207. height: math.unit(404090, "miles"),
  14208. default: true
  14209. },
  14210. ]
  14211. ))
  14212. characterMakers.push(() => makeCharacter(
  14213. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14214. {
  14215. front: {
  14216. height: math.unit(7 + 8 / 12, "feet"),
  14217. weight: math.unit(350, "lb"),
  14218. name: "Front",
  14219. image: {
  14220. source: "./media/characters/tempest/front.svg",
  14221. extra: 1175 / 1086,
  14222. bottom: 0.02
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(7 + 8 / 12, "feet"),
  14230. default: true
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14236. {
  14237. side: {
  14238. height: math.unit(4 + 5 / 12, "feet"),
  14239. weight: math.unit(80, "lb"),
  14240. name: "Side",
  14241. image: {
  14242. source: "./media/characters/rodger/side.svg",
  14243. extra: 1235 / 1118
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Micro",
  14250. height: math.unit(1, "inch")
  14251. },
  14252. {
  14253. name: "Normal",
  14254. height: math.unit(4 + 5 / 12, "feet"),
  14255. default: true
  14256. },
  14257. {
  14258. name: "Macro",
  14259. height: math.unit(120, "feet")
  14260. },
  14261. ]
  14262. ))
  14263. characterMakers.push(() => makeCharacter(
  14264. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14265. {
  14266. front: {
  14267. height: math.unit(6, "feet"),
  14268. weight: math.unit(150, "lb"),
  14269. name: "Front",
  14270. image: {
  14271. source: "./media/characters/danyel/front.svg",
  14272. extra: 1185 / 1123,
  14273. bottom: 0.05
  14274. }
  14275. },
  14276. },
  14277. [
  14278. {
  14279. name: "Shrunken",
  14280. height: math.unit(0.5, "mm")
  14281. },
  14282. {
  14283. name: "Micro",
  14284. height: math.unit(1, "mm"),
  14285. default: true
  14286. },
  14287. {
  14288. name: "Upsized",
  14289. height: math.unit(5 + 5 / 12, "feet")
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14295. {
  14296. front: {
  14297. height: math.unit(5 + 6 / 12, "feet"),
  14298. weight: math.unit(200, "lb"),
  14299. name: "Front",
  14300. image: {
  14301. source: "./media/characters/vivian-bijoux/front.svg",
  14302. extra: 1217/1209,
  14303. bottom: 76/1293
  14304. }
  14305. },
  14306. back: {
  14307. height: math.unit(5 + 6 / 12, "feet"),
  14308. weight: math.unit(200, "lb"),
  14309. name: "Back",
  14310. image: {
  14311. source: "./media/characters/vivian-bijoux/back.svg",
  14312. extra: 1214/1208,
  14313. bottom: 51/1265
  14314. }
  14315. },
  14316. dressed: {
  14317. height: math.unit(5 + 6 / 12, "feet"),
  14318. weight: math.unit(200, "lb"),
  14319. name: "Dressed",
  14320. image: {
  14321. source: "./media/characters/vivian-bijoux/dressed.svg",
  14322. extra: 1217/1209,
  14323. bottom: 76/1293
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(5 + 6 / 12, "feet"),
  14331. default: true
  14332. },
  14333. {
  14334. name: "Bad Dream",
  14335. height: math.unit(500, "feet")
  14336. },
  14337. {
  14338. name: "Nightmare",
  14339. height: math.unit(500, "miles")
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(6 + 1 / 12, "feet"),
  14348. weight: math.unit(260, "lb"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/zeta/front.svg",
  14352. extra: 1968 / 1889,
  14353. bottom: 0.06
  14354. }
  14355. },
  14356. back: {
  14357. height: math.unit(6 + 1 / 12, "feet"),
  14358. weight: math.unit(260, "lb"),
  14359. name: "Back",
  14360. image: {
  14361. source: "./media/characters/zeta/back.svg",
  14362. extra: 1944 / 1858,
  14363. bottom: 0.03
  14364. }
  14365. },
  14366. hand: {
  14367. height: math.unit(1.112, "feet"),
  14368. name: "Hand",
  14369. image: {
  14370. source: "./media/characters/zeta/hand.svg"
  14371. }
  14372. },
  14373. foot: {
  14374. height: math.unit(1.48, "feet"),
  14375. name: "Foot",
  14376. image: {
  14377. source: "./media/characters/zeta/foot.svg"
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Micro",
  14384. height: math.unit(6, "inches")
  14385. },
  14386. {
  14387. name: "Normal",
  14388. height: math.unit(6 + 1 / 12, "feet"),
  14389. default: true
  14390. },
  14391. {
  14392. name: "Macro",
  14393. height: math.unit(20, "feet")
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(6, "feet"),
  14402. weight: math.unit(150, "lb"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/jamie-larsen/front.svg",
  14406. extra: 962 / 933,
  14407. bottom: 0.02
  14408. }
  14409. },
  14410. back: {
  14411. height: math.unit(6, "feet"),
  14412. weight: math.unit(150, "lb"),
  14413. name: "Back",
  14414. image: {
  14415. source: "./media/characters/jamie-larsen/back.svg",
  14416. extra: 997 / 946
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Macro",
  14423. height: math.unit(28 + 7 / 12, "feet"),
  14424. default: true
  14425. },
  14426. {
  14427. name: "Macro+",
  14428. height: math.unit(180, "feet")
  14429. },
  14430. {
  14431. name: "Megamacro",
  14432. height: math.unit(10, "miles")
  14433. },
  14434. {
  14435. name: "Gigamacro",
  14436. height: math.unit(200000, "miles")
  14437. },
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14442. {
  14443. front: {
  14444. height: math.unit(6, "feet"),
  14445. weight: math.unit(120, "lb"),
  14446. name: "Front",
  14447. image: {
  14448. source: "./media/characters/vance/front.svg",
  14449. extra: 1980 / 1890,
  14450. bottom: 0.09
  14451. }
  14452. },
  14453. back: {
  14454. height: math.unit(6, "feet"),
  14455. weight: math.unit(120, "lb"),
  14456. name: "Back",
  14457. image: {
  14458. source: "./media/characters/vance/back.svg",
  14459. extra: 2081 / 1994,
  14460. bottom: 0.014
  14461. }
  14462. },
  14463. hand: {
  14464. height: math.unit(0.88, "feet"),
  14465. name: "Hand",
  14466. image: {
  14467. source: "./media/characters/vance/hand.svg"
  14468. }
  14469. },
  14470. foot: {
  14471. height: math.unit(0.64, "feet"),
  14472. name: "Foot",
  14473. image: {
  14474. source: "./media/characters/vance/foot.svg"
  14475. }
  14476. },
  14477. },
  14478. [
  14479. {
  14480. name: "Small",
  14481. height: math.unit(90, "feet"),
  14482. default: true
  14483. },
  14484. {
  14485. name: "Macro",
  14486. height: math.unit(100, "meters")
  14487. },
  14488. {
  14489. name: "Megamacro",
  14490. height: math.unit(15, "miles")
  14491. },
  14492. ]
  14493. ))
  14494. characterMakers.push(() => makeCharacter(
  14495. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14496. {
  14497. front: {
  14498. height: math.unit(6, "feet"),
  14499. weight: math.unit(180, "lb"),
  14500. name: "Front",
  14501. image: {
  14502. source: "./media/characters/xochitl/front.svg",
  14503. extra: 2297 / 2261,
  14504. bottom: 0.065
  14505. }
  14506. },
  14507. back: {
  14508. height: math.unit(6, "feet"),
  14509. weight: math.unit(180, "lb"),
  14510. name: "Back",
  14511. image: {
  14512. source: "./media/characters/xochitl/back.svg",
  14513. extra: 2386 / 2354,
  14514. bottom: 0.01
  14515. }
  14516. },
  14517. foot: {
  14518. height: math.unit(6 / 5 * 1.15, "feet"),
  14519. weight: math.unit(150, "lb"),
  14520. name: "Foot",
  14521. image: {
  14522. source: "./media/characters/xochitl/foot.svg"
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Macro",
  14529. height: math.unit(80, "feet")
  14530. },
  14531. {
  14532. name: "Macro+",
  14533. height: math.unit(400, "feet"),
  14534. default: true
  14535. },
  14536. {
  14537. name: "Gigamacro",
  14538. height: math.unit(80000, "miles")
  14539. },
  14540. {
  14541. name: "Gigamacro+",
  14542. height: math.unit(400000, "miles")
  14543. },
  14544. {
  14545. name: "Teramacro",
  14546. height: math.unit(300, "AU")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(6, "feet"),
  14555. weight: math.unit(150, "lb"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/vincent/front.svg",
  14559. extra: 1130 / 1080,
  14560. bottom: 0.055
  14561. }
  14562. },
  14563. beak: {
  14564. height: math.unit(6 * 0.1, "feet"),
  14565. name: "Beak",
  14566. image: {
  14567. source: "./media/characters/vincent/beak.svg"
  14568. }
  14569. },
  14570. hand: {
  14571. height: math.unit(6 * 0.85, "feet"),
  14572. weight: math.unit(150, "lb"),
  14573. name: "Hand",
  14574. image: {
  14575. source: "./media/characters/vincent/hand.svg"
  14576. }
  14577. },
  14578. foot: {
  14579. height: math.unit(6 * 0.19, "feet"),
  14580. weight: math.unit(150, "lb"),
  14581. name: "Foot",
  14582. image: {
  14583. source: "./media/characters/vincent/foot.svg"
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Base",
  14590. height: math.unit(6 + 5 / 12, "feet"),
  14591. default: true
  14592. },
  14593. {
  14594. name: "Macro",
  14595. height: math.unit(300, "feet")
  14596. },
  14597. {
  14598. name: "Megamacro",
  14599. height: math.unit(2, "miles")
  14600. },
  14601. {
  14602. name: "Gigamacro",
  14603. height: math.unit(1000, "miles")
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(2, "meters"),
  14612. weight: math.unit(500, "kg"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/coatl/front.svg",
  14616. extra: 3948 / 3500,
  14617. bottom: 0.082
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(4, "meters")
  14625. },
  14626. {
  14627. name: "Macro",
  14628. height: math.unit(100, "meters"),
  14629. default: true
  14630. },
  14631. {
  14632. name: "Macro+",
  14633. height: math.unit(300, "meters")
  14634. },
  14635. {
  14636. name: "Megamacro",
  14637. height: math.unit(3, "gigameters")
  14638. },
  14639. {
  14640. name: "Megamacro+",
  14641. height: math.unit(300, "terameters")
  14642. },
  14643. {
  14644. name: "Megamacro++",
  14645. height: math.unit(3, "lightyears")
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14651. {
  14652. front: {
  14653. height: math.unit(6, "feet"),
  14654. weight: math.unit(50, "kg"),
  14655. name: "front",
  14656. image: {
  14657. source: "./media/characters/shiroryu/front.svg",
  14658. extra: 1990 / 1935
  14659. }
  14660. },
  14661. },
  14662. [
  14663. {
  14664. name: "Mortal Mingling",
  14665. height: math.unit(3, "meters")
  14666. },
  14667. {
  14668. name: "Kaiju-ish",
  14669. height: math.unit(250, "meters")
  14670. },
  14671. {
  14672. name: "Somewhat Godly",
  14673. height: math.unit(400, "km"),
  14674. default: true
  14675. },
  14676. {
  14677. name: "Planetary",
  14678. height: math.unit(300, "megameters")
  14679. },
  14680. {
  14681. name: "Galaxy-dwarfing",
  14682. height: math.unit(450, "kiloparsecs")
  14683. },
  14684. {
  14685. name: "Universe Eater",
  14686. height: math.unit(150, "gigaparsecs")
  14687. },
  14688. {
  14689. name: "Almost Immeasurable",
  14690. height: math.unit(1.3e266, "yottaparsecs")
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(6, "feet"),
  14699. weight: math.unit(150, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/umeko/front.svg",
  14703. extra: 1,
  14704. bottom: 0.019
  14705. }
  14706. },
  14707. frontArmored: {
  14708. height: math.unit(6, "feet"),
  14709. weight: math.unit(150, "lb"),
  14710. name: "Front (Armored)",
  14711. image: {
  14712. source: "./media/characters/umeko/front-armored.svg",
  14713. extra: 1,
  14714. bottom: 0.021
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Macro",
  14721. height: math.unit(220, "feet"),
  14722. default: true
  14723. },
  14724. {
  14725. name: "Guardian Dragon",
  14726. height: math.unit(50, "miles")
  14727. },
  14728. {
  14729. name: "Cosmic",
  14730. height: math.unit(800000, "miles")
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(6, "feet"),
  14739. weight: math.unit(150, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/cassidy/front.svg",
  14743. extra: 810/808,
  14744. bottom: 41/851
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Canon Height",
  14751. height: math.unit(120, "feet"),
  14752. default: true
  14753. },
  14754. {
  14755. name: "Macro+",
  14756. height: math.unit(400, "feet")
  14757. },
  14758. {
  14759. name: "Macro++",
  14760. height: math.unit(4000, "feet")
  14761. },
  14762. {
  14763. name: "Megamacro",
  14764. height: math.unit(3, "miles")
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14770. {
  14771. front: {
  14772. height: math.unit(6, "feet"),
  14773. weight: math.unit(150, "lb"),
  14774. name: "Front",
  14775. image: {
  14776. source: "./media/characters/isaac/front.svg",
  14777. extra: 896 / 815,
  14778. bottom: 0.11
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Human Size",
  14785. height: math.unit(8, "feet"),
  14786. default: true
  14787. },
  14788. {
  14789. name: "Macro",
  14790. height: math.unit(400, "feet")
  14791. },
  14792. {
  14793. name: "Megamacro",
  14794. height: math.unit(50, "miles")
  14795. },
  14796. {
  14797. name: "Canon Height",
  14798. height: math.unit(200, "AU")
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(6, "feet"),
  14807. weight: math.unit(72, "kg"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/sleekit/front.svg",
  14811. extra: 4693 / 4487,
  14812. bottom: 0.012
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Minimum Height",
  14819. height: math.unit(10, "meters")
  14820. },
  14821. {
  14822. name: "Smaller",
  14823. height: math.unit(25, "meters")
  14824. },
  14825. {
  14826. name: "Larger",
  14827. height: math.unit(38, "meters"),
  14828. default: true
  14829. },
  14830. {
  14831. name: "Maximum height",
  14832. height: math.unit(100, "meters")
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(6, "feet"),
  14841. weight: math.unit(150, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/nillia/front.svg",
  14845. extra: 2195 / 2037,
  14846. bottom: 0.005
  14847. }
  14848. },
  14849. back: {
  14850. height: math.unit(6, "feet"),
  14851. weight: math.unit(150, "lb"),
  14852. name: "Back",
  14853. image: {
  14854. source: "./media/characters/nillia/back.svg",
  14855. extra: 2195 / 2037,
  14856. bottom: 0.005
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Canon Height",
  14863. height: math.unit(489, "feet"),
  14864. default: true
  14865. }
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(6, "feet"),
  14873. weight: math.unit(150, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/mesmyriza/front.svg",
  14877. extra: 2067 / 1784,
  14878. bottom: 0.035
  14879. }
  14880. },
  14881. foot: {
  14882. height: math.unit(6 / (250 / 35), "feet"),
  14883. name: "Foot",
  14884. image: {
  14885. source: "./media/characters/mesmyriza/foot.svg"
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Macro",
  14892. height: math.unit(457, "meters"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Megamacro",
  14897. height: math.unit(8, "megameters")
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14903. {
  14904. front: {
  14905. height: math.unit(6, "feet"),
  14906. weight: math.unit(250, "lb"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/saudade/front.svg",
  14910. extra: 1172 / 1139,
  14911. bottom: 0.035
  14912. }
  14913. },
  14914. },
  14915. [
  14916. {
  14917. name: "Micro",
  14918. height: math.unit(3, "inches")
  14919. },
  14920. {
  14921. name: "Normal",
  14922. height: math.unit(6, "feet"),
  14923. default: true
  14924. },
  14925. {
  14926. name: "Macro",
  14927. height: math.unit(50, "feet")
  14928. },
  14929. {
  14930. name: "Megamacro",
  14931. height: math.unit(2800, "feet")
  14932. },
  14933. ]
  14934. ))
  14935. characterMakers.push(() => makeCharacter(
  14936. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14937. {
  14938. front: {
  14939. height: math.unit(5 + 4 / 12, "feet"),
  14940. weight: math.unit(100, "lb"),
  14941. name: "Front",
  14942. image: {
  14943. source: "./media/characters/keireer/front.svg",
  14944. extra: 716 / 666,
  14945. bottom: 0.05
  14946. }
  14947. },
  14948. },
  14949. [
  14950. {
  14951. name: "Normal",
  14952. height: math.unit(5 + 4 / 12, "feet"),
  14953. default: true
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(6, "feet"),
  14962. weight: math.unit(90, "kg"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/mirja/front.svg",
  14966. extra: 1789 / 1683,
  14967. bottom: 0.05
  14968. }
  14969. },
  14970. frontDressed: {
  14971. height: math.unit(6, "feet"),
  14972. weight: math.unit(90, "lb"),
  14973. name: "Front (Dressed)",
  14974. image: {
  14975. source: "./media/characters/mirja/front-dressed.svg",
  14976. extra: 1789 / 1683,
  14977. bottom: 0.05
  14978. }
  14979. },
  14980. back: {
  14981. height: math.unit(6, "feet"),
  14982. weight: math.unit(90, "lb"),
  14983. name: "Back",
  14984. image: {
  14985. source: "./media/characters/mirja/back.svg",
  14986. extra: 953 / 917,
  14987. bottom: 0.017
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "\"Incognito\"",
  14994. height: math.unit(3, "meters")
  14995. },
  14996. {
  14997. name: "Strolling Size",
  14998. height: math.unit(15, "km")
  14999. },
  15000. {
  15001. name: "Larger Strolling Size",
  15002. height: math.unit(400, "km")
  15003. },
  15004. {
  15005. name: "Preferred Size",
  15006. height: math.unit(5000, "km")
  15007. },
  15008. {
  15009. name: "True Size",
  15010. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15011. default: true
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15017. {
  15018. front: {
  15019. height: math.unit(15, "feet"),
  15020. weight: math.unit(880, "kg"),
  15021. name: "Front",
  15022. image: {
  15023. source: "./media/characters/nightraver/front.svg",
  15024. extra: 2444 / 2160,
  15025. bottom: 0.027
  15026. }
  15027. },
  15028. back: {
  15029. height: math.unit(15, "feet"),
  15030. weight: math.unit(880, "kg"),
  15031. name: "Back",
  15032. image: {
  15033. source: "./media/characters/nightraver/back.svg",
  15034. extra: 2309 / 2180,
  15035. bottom: 0.005
  15036. }
  15037. },
  15038. sole: {
  15039. height: math.unit(2.878, "feet"),
  15040. name: "Sole",
  15041. image: {
  15042. source: "./media/characters/nightraver/sole.svg"
  15043. }
  15044. },
  15045. foot: {
  15046. height: math.unit(2.285, "feet"),
  15047. name: "Foot",
  15048. image: {
  15049. source: "./media/characters/nightraver/foot.svg"
  15050. }
  15051. },
  15052. maw: {
  15053. height: math.unit(2.67, "feet"),
  15054. name: "Maw",
  15055. image: {
  15056. source: "./media/characters/nightraver/maw.svg"
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Micro",
  15063. height: math.unit(1, "cm")
  15064. },
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(15, "feet"),
  15068. default: true
  15069. },
  15070. {
  15071. name: "Macro",
  15072. height: math.unit(300, "feet")
  15073. },
  15074. {
  15075. name: "Megamacro",
  15076. height: math.unit(300, "miles")
  15077. },
  15078. {
  15079. name: "Gigamacro",
  15080. height: math.unit(10000, "miles")
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15086. {
  15087. side: {
  15088. height: math.unit(2, "inches"),
  15089. weight: math.unit(5, "grams"),
  15090. name: "Side",
  15091. image: {
  15092. source: "./media/characters/arc/side.svg"
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Micro",
  15099. height: math.unit(2, "inches"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15106. {
  15107. front: {
  15108. height: math.unit(1.1938, "meters"),
  15109. weight: math.unit(54, "kg"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/nebula-shahar/front.svg",
  15113. extra: 1642 / 1436,
  15114. bottom: 0.06
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Megamicro",
  15121. height: math.unit(0.3, "mm")
  15122. },
  15123. {
  15124. name: "Micro",
  15125. height: math.unit(3, "cm")
  15126. },
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(138, "cm"),
  15130. default: true
  15131. },
  15132. {
  15133. name: "Macro",
  15134. height: math.unit(30, "m")
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(5.24, "feet"),
  15143. weight: math.unit(150, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/shayla/front.svg",
  15147. extra: 1512 / 1414,
  15148. bottom: 0.01
  15149. }
  15150. },
  15151. back: {
  15152. height: math.unit(5.24, "feet"),
  15153. weight: math.unit(150, "lb"),
  15154. name: "Back",
  15155. image: {
  15156. source: "./media/characters/shayla/back.svg",
  15157. extra: 1512 / 1414
  15158. }
  15159. },
  15160. hand: {
  15161. height: math.unit(0.7781496062992126, "feet"),
  15162. name: "Hand",
  15163. image: {
  15164. source: "./media/characters/shayla/hand.svg"
  15165. }
  15166. },
  15167. foot: {
  15168. height: math.unit(1.4206036745406823, "feet"),
  15169. name: "Foot",
  15170. image: {
  15171. source: "./media/characters/shayla/foot.svg"
  15172. }
  15173. },
  15174. },
  15175. [
  15176. {
  15177. name: "Micro",
  15178. height: math.unit(0.32, "feet")
  15179. },
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(5.24, "feet"),
  15183. default: true
  15184. },
  15185. {
  15186. name: "Macro",
  15187. height: math.unit(492.12, "feet")
  15188. },
  15189. {
  15190. name: "Megamacro",
  15191. height: math.unit(186.41, "miles")
  15192. },
  15193. ]
  15194. ))
  15195. characterMakers.push(() => makeCharacter(
  15196. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15197. {
  15198. front: {
  15199. height: math.unit(2.2, "m"),
  15200. weight: math.unit(120, "kg"),
  15201. name: "Front",
  15202. image: {
  15203. source: "./media/characters/pia-jr/front.svg",
  15204. extra: 1000 / 970,
  15205. bottom: 0.035
  15206. }
  15207. },
  15208. hand: {
  15209. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15210. name: "Hand",
  15211. image: {
  15212. source: "./media/characters/pia-jr/hand.svg"
  15213. }
  15214. },
  15215. paw: {
  15216. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15217. name: "Paw",
  15218. image: {
  15219. source: "./media/characters/pia-jr/paw.svg"
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Micro",
  15226. height: math.unit(1.2, "cm")
  15227. },
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(2.2, "m"),
  15231. default: true
  15232. },
  15233. {
  15234. name: "Macro",
  15235. height: math.unit(180, "m")
  15236. },
  15237. {
  15238. name: "Megamacro",
  15239. height: math.unit(420, "km")
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(2, "m"),
  15248. weight: math.unit(115, "kg"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/pia-sr/front.svg",
  15252. extra: 760 / 730,
  15253. bottom: 0.015
  15254. }
  15255. },
  15256. back: {
  15257. height: math.unit(2, "m"),
  15258. weight: math.unit(115, "kg"),
  15259. name: "Back",
  15260. image: {
  15261. source: "./media/characters/pia-sr/back.svg",
  15262. extra: 760 / 730,
  15263. bottom: 0.01
  15264. }
  15265. },
  15266. hand: {
  15267. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15268. name: "Hand",
  15269. image: {
  15270. source: "./media/characters/pia-sr/hand.svg"
  15271. }
  15272. },
  15273. foot: {
  15274. height: math.unit(1.83, "feet"),
  15275. name: "Foot",
  15276. image: {
  15277. source: "./media/characters/pia-sr/foot.svg"
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Micro",
  15284. height: math.unit(88, "mm")
  15285. },
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(2, "m"),
  15289. default: true
  15290. },
  15291. {
  15292. name: "Macro",
  15293. height: math.unit(200, "m")
  15294. },
  15295. {
  15296. name: "Megamacro",
  15297. height: math.unit(420, "km")
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(8 + 2 / 12, "feet"),
  15306. weight: math.unit(300, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/kibibyte/front.svg",
  15310. extra: 2221 / 2098,
  15311. bottom: 0.04
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(8 + 2 / 12, "feet"),
  15319. default: true
  15320. },
  15321. {
  15322. name: "Socialable Macro",
  15323. height: math.unit(50, "feet")
  15324. },
  15325. {
  15326. name: "Macro",
  15327. height: math.unit(300, "feet")
  15328. },
  15329. {
  15330. name: "Megamacro",
  15331. height: math.unit(500, "miles")
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(6, "feet"),
  15340. weight: math.unit(150, "lb"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/felix/front.svg",
  15344. extra: 762 / 722,
  15345. bottom: 0.02
  15346. }
  15347. },
  15348. frontClothed: {
  15349. height: math.unit(6, "feet"),
  15350. weight: math.unit(150, "lb"),
  15351. name: "Front (Clothed)",
  15352. image: {
  15353. source: "./media/characters/felix/front-clothed.svg",
  15354. extra: 762 / 722,
  15355. bottom: 0.02
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(6 + 8 / 12, "feet"),
  15363. default: true
  15364. },
  15365. {
  15366. name: "Macro",
  15367. height: math.unit(2600, "feet")
  15368. },
  15369. {
  15370. name: "Megamacro",
  15371. height: math.unit(450, "miles")
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15377. {
  15378. front: {
  15379. height: math.unit(6 + 1 / 12, "feet"),
  15380. weight: math.unit(250, "lb"),
  15381. name: "Front",
  15382. image: {
  15383. source: "./media/characters/tobo/front.svg",
  15384. extra: 608 / 586,
  15385. bottom: 0.023
  15386. }
  15387. },
  15388. back: {
  15389. height: math.unit(6 + 1 / 12, "feet"),
  15390. weight: math.unit(250, "lb"),
  15391. name: "Back",
  15392. image: {
  15393. source: "./media/characters/tobo/back.svg",
  15394. extra: 608 / 586
  15395. }
  15396. },
  15397. },
  15398. [
  15399. {
  15400. name: "Nano",
  15401. height: math.unit(2, "nm")
  15402. },
  15403. {
  15404. name: "Megamicro",
  15405. height: math.unit(0.1, "mm")
  15406. },
  15407. {
  15408. name: "Micro",
  15409. height: math.unit(1, "inch"),
  15410. default: true
  15411. },
  15412. {
  15413. name: "Human-sized",
  15414. height: math.unit(6 + 1 / 12, "feet")
  15415. },
  15416. {
  15417. name: "Macro",
  15418. height: math.unit(250, "feet")
  15419. },
  15420. {
  15421. name: "Megamacro",
  15422. height: math.unit(75, "miles")
  15423. },
  15424. {
  15425. name: "Texas-sized",
  15426. height: math.unit(750, "miles")
  15427. },
  15428. {
  15429. name: "Teramacro",
  15430. height: math.unit(50000, "miles")
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(269, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/danny-kapowsky/front.svg",
  15443. extra: 766 / 736,
  15444. bottom: 0.044
  15445. }
  15446. },
  15447. back: {
  15448. height: math.unit(6, "feet"),
  15449. weight: math.unit(269, "lb"),
  15450. name: "Back",
  15451. image: {
  15452. source: "./media/characters/danny-kapowsky/back.svg",
  15453. extra: 797 / 760,
  15454. bottom: 0.025
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Macro",
  15461. height: math.unit(150, "feet"),
  15462. default: true
  15463. },
  15464. {
  15465. name: "Macro+",
  15466. height: math.unit(200, "feet")
  15467. },
  15468. {
  15469. name: "Macro++",
  15470. height: math.unit(300, "feet")
  15471. },
  15472. {
  15473. name: "Macro+++",
  15474. height: math.unit(400, "feet")
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15480. {
  15481. side: {
  15482. height: math.unit(6, "feet"),
  15483. weight: math.unit(170, "lb"),
  15484. name: "Side",
  15485. image: {
  15486. source: "./media/characters/finn/side.svg",
  15487. extra: 1953 / 1807,
  15488. bottom: 0.057
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Megamacro",
  15495. height: math.unit(14445, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(5 + 6 / 12, "feet"),
  15505. weight: math.unit(125, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/roy/front.svg",
  15509. extra: 1,
  15510. bottom: 0.11
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Micro",
  15517. height: math.unit(3, "inches"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Normal",
  15522. height: math.unit(5 + 6 / 12, "feet")
  15523. },
  15524. {
  15525. name: "Lesser Macro",
  15526. height: math.unit(60, "feet")
  15527. },
  15528. {
  15529. name: "Greater Macro",
  15530. height: math.unit(120, "feet")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(6, "feet"),
  15539. weight: math.unit(100, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/aevsivs/front.svg",
  15543. extra: 1,
  15544. bottom: 0.03
  15545. }
  15546. },
  15547. back: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(100, "lb"),
  15550. name: "Back",
  15551. image: {
  15552. source: "./media/characters/aevsivs/back.svg"
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Micro",
  15559. height: math.unit(2, "inches"),
  15560. default: true
  15561. },
  15562. {
  15563. name: "Normal",
  15564. height: math.unit(5, "feet")
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(5 + 7 / 12, "feet"),
  15573. weight: math.unit(159, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/hildegard/front.svg",
  15577. extra: 289 / 269,
  15578. bottom: 7.63 / 297.8
  15579. }
  15580. },
  15581. back: {
  15582. height: math.unit(5 + 7 / 12, "feet"),
  15583. weight: math.unit(159, "lb"),
  15584. name: "Back",
  15585. image: {
  15586. source: "./media/characters/hildegard/back.svg",
  15587. extra: 280 / 260,
  15588. bottom: 2.3 / 282
  15589. }
  15590. },
  15591. },
  15592. [
  15593. {
  15594. name: "Normal",
  15595. height: math.unit(5 + 7 / 12, "feet"),
  15596. default: true
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15602. {
  15603. bernard: {
  15604. height: math.unit(2 + 7 / 12, "feet"),
  15605. weight: math.unit(66, "lb"),
  15606. name: "Bernard",
  15607. rename: true,
  15608. image: {
  15609. source: "./media/characters/bernard-wilder/bernard.svg",
  15610. extra: 192 / 128,
  15611. bottom: 0.05
  15612. }
  15613. },
  15614. wilder: {
  15615. height: math.unit(5 + 8 / 12, "feet"),
  15616. weight: math.unit(143, "lb"),
  15617. name: "Wilder",
  15618. rename: true,
  15619. image: {
  15620. source: "./media/characters/bernard-wilder/wilder.svg",
  15621. extra: 361 / 312,
  15622. bottom: 0.02
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Normal",
  15629. height: math.unit(2 + 7 / 12, "feet"),
  15630. default: true
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15636. {
  15637. anthro: {
  15638. height: math.unit(6 + 1 / 12, "feet"),
  15639. weight: math.unit(155, "lb"),
  15640. name: "Anthro",
  15641. image: {
  15642. source: "./media/characters/hearth/anthro.svg",
  15643. extra: 1178/1136,
  15644. bottom: 28/1206
  15645. }
  15646. },
  15647. feral: {
  15648. height: math.unit(3.78, "feet"),
  15649. weight: math.unit(35, "kg"),
  15650. name: "Feral",
  15651. image: {
  15652. source: "./media/characters/hearth/feral.svg",
  15653. extra: 153 / 135,
  15654. bottom: 0.03
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(6 + 1 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(6, "feet"),
  15671. weight: math.unit(182, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/ingrid/front.svg",
  15675. extra: 294 / 268,
  15676. bottom: 0.027
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(6, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15690. {
  15691. eevee: {
  15692. height: math.unit(2 + 10 / 12, "feet"),
  15693. weight: math.unit(86, "lb"),
  15694. name: "Malgam",
  15695. image: {
  15696. source: "./media/characters/malgam/eevee.svg",
  15697. extra: 952/784,
  15698. bottom: 38/990
  15699. }
  15700. },
  15701. sylveon: {
  15702. height: math.unit(4, "feet"),
  15703. weight: math.unit(101, "lb"),
  15704. name: "Future Malgam",
  15705. rename: true,
  15706. image: {
  15707. source: "./media/characters/malgam/sylveon.svg",
  15708. extra: 371 / 325,
  15709. bottom: 0.015
  15710. }
  15711. },
  15712. gigantamax: {
  15713. height: math.unit(50, "feet"),
  15714. name: "Gigantamax Malgam",
  15715. rename: true,
  15716. image: {
  15717. source: "./media/characters/malgam/gigantamax.svg"
  15718. }
  15719. },
  15720. },
  15721. [
  15722. {
  15723. name: "Normal",
  15724. height: math.unit(2 + 10 / 12, "feet"),
  15725. default: true
  15726. },
  15727. ]
  15728. ))
  15729. characterMakers.push(() => makeCharacter(
  15730. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15731. {
  15732. front: {
  15733. height: math.unit(5 + 11 / 12, "feet"),
  15734. weight: math.unit(188, "lb"),
  15735. name: "Front",
  15736. image: {
  15737. source: "./media/characters/fleur/front.svg",
  15738. extra: 309 / 283,
  15739. bottom: 0.007
  15740. }
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Normal",
  15746. height: math.unit(5 + 11 / 12, "feet"),
  15747. default: true
  15748. },
  15749. ]
  15750. ))
  15751. characterMakers.push(() => makeCharacter(
  15752. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15753. {
  15754. front: {
  15755. height: math.unit(5 + 4 / 12, "feet"),
  15756. weight: math.unit(122, "lb"),
  15757. name: "Front",
  15758. image: {
  15759. source: "./media/characters/jude/front.svg",
  15760. extra: 288 / 273,
  15761. bottom: 0.03
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Normal",
  15768. height: math.unit(5 + 4 / 12, "feet"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(5 + 11 / 12, "feet"),
  15778. weight: math.unit(190, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/seara/front.svg",
  15782. extra: 1,
  15783. bottom: 0.05
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Normal",
  15790. height: math.unit(5 + 11 / 12, "feet"),
  15791. default: true
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15797. {
  15798. front: {
  15799. height: math.unit(16 + 5 / 12, "feet"),
  15800. weight: math.unit(524, "lb"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/caspian-lugia/front.svg",
  15804. extra: 1,
  15805. bottom: 0.04
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(16 + 5 / 12, "feet"),
  15813. default: true
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(5 + 7 / 12, "feet"),
  15822. weight: math.unit(170, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/mika/front.svg",
  15826. extra: 1,
  15827. bottom: 0.016
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(5 + 7 / 12, "feet"),
  15835. default: true
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(6 + 2 / 12, "feet"),
  15844. weight: math.unit(268, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/sol/front.svg",
  15848. extra: 247 / 231,
  15849. bottom: 0.05
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(6 + 2 / 12, "feet"),
  15857. default: true
  15858. },
  15859. ]
  15860. ))
  15861. characterMakers.push(() => makeCharacter(
  15862. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15863. {
  15864. buizel: {
  15865. height: math.unit(2 + 5 / 12, "feet"),
  15866. weight: math.unit(87, "lb"),
  15867. name: "Front",
  15868. image: {
  15869. source: "./media/characters/umiko/buizel.svg",
  15870. extra: 172 / 157,
  15871. bottom: 0.01
  15872. },
  15873. form: "buizel",
  15874. default: true
  15875. },
  15876. floatzel: {
  15877. height: math.unit(5 + 9 / 12, "feet"),
  15878. weight: math.unit(250, "lb"),
  15879. name: "Front",
  15880. image: {
  15881. source: "./media/characters/umiko/floatzel.svg",
  15882. extra: 1076/1006,
  15883. bottom: 15/1091
  15884. },
  15885. form: "floatzel",
  15886. default: true
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(2 + 5 / 12, "feet"),
  15893. form: "buizel",
  15894. default: true
  15895. },
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(5 + 9 / 12, "feet"),
  15899. form: "floatzel",
  15900. default: true
  15901. },
  15902. ],
  15903. {
  15904. "buizel": {
  15905. name: "Buizel"
  15906. },
  15907. "floatzel": {
  15908. name: "Floatzel",
  15909. default: true
  15910. }
  15911. }
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(6 + 2 / 12, "feet"),
  15918. weight: math.unit(146, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/iliac/front.svg",
  15922. extra: 389 / 365,
  15923. bottom: 0.035
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(6 + 2 / 12, "feet"),
  15931. default: true
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(6, "feet"),
  15940. weight: math.unit(170, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/topaz/front.svg",
  15944. extra: 317 / 303,
  15945. bottom: 0.055
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(6, "feet"),
  15953. default: true
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15959. {
  15960. front: {
  15961. height: math.unit(5 + 11 / 12, "feet"),
  15962. weight: math.unit(144, "lb"),
  15963. name: "Front",
  15964. image: {
  15965. source: "./media/characters/gabriel/front.svg",
  15966. extra: 285 / 262,
  15967. bottom: 0.004
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(5 + 11 / 12, "feet"),
  15975. default: true
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15981. {
  15982. side: {
  15983. height: math.unit(6 + 5 / 12, "feet"),
  15984. weight: math.unit(300, "lb"),
  15985. name: "Side",
  15986. image: {
  15987. source: "./media/characters/tempest-suicune/side.svg",
  15988. extra: 195 / 154,
  15989. bottom: 0.04
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(6 + 5 / 12, "feet"),
  15997. default: true
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16003. {
  16004. front: {
  16005. height: math.unit(7 + 2 / 12, "feet"),
  16006. weight: math.unit(322, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/vulcan/front.svg",
  16010. extra: 154 / 147,
  16011. bottom: 0.04
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Normal",
  16018. height: math.unit(7 + 2 / 12, "feet"),
  16019. default: true
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16025. {
  16026. front: {
  16027. height: math.unit(5 + 10 / 12, "feet"),
  16028. weight: math.unit(264, "lb"),
  16029. name: "Front",
  16030. image: {
  16031. source: "./media/characters/gault/front.svg",
  16032. extra: 161 / 140,
  16033. bottom: 0.028
  16034. }
  16035. },
  16036. },
  16037. [
  16038. {
  16039. name: "Normal",
  16040. height: math.unit(5 + 10 / 12, "feet"),
  16041. default: true
  16042. },
  16043. ]
  16044. ))
  16045. characterMakers.push(() => makeCharacter(
  16046. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16047. {
  16048. front: {
  16049. height: math.unit(6, "feet"),
  16050. weight: math.unit(150, "lb"),
  16051. name: "Front",
  16052. image: {
  16053. source: "./media/characters/shard/front.svg",
  16054. extra: 273 / 238,
  16055. bottom: 0.02
  16056. }
  16057. },
  16058. },
  16059. [
  16060. {
  16061. name: "Normal",
  16062. height: math.unit(3 + 6 / 12, "feet"),
  16063. default: true
  16064. },
  16065. ]
  16066. ))
  16067. characterMakers.push(() => makeCharacter(
  16068. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16069. {
  16070. front: {
  16071. height: math.unit(5 + 11 / 12, "feet"),
  16072. weight: math.unit(146, "lb"),
  16073. name: "Front",
  16074. image: {
  16075. source: "./media/characters/ashe/front.svg",
  16076. extra: 400 / 373,
  16077. bottom: 0.01
  16078. }
  16079. },
  16080. },
  16081. [
  16082. {
  16083. name: "Normal",
  16084. height: math.unit(5 + 11 / 12, "feet"),
  16085. default: true
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16091. {
  16092. front: {
  16093. height: math.unit(5 + 5 / 12, "feet"),
  16094. weight: math.unit(135, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/beatrix/front.svg",
  16098. extra: 392 / 379,
  16099. bottom: 0.01
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(6, "feet"),
  16107. default: true
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16113. {
  16114. front: {
  16115. height: math.unit(6 + 2/12, "feet"),
  16116. weight: math.unit(135, "lb"),
  16117. name: "Front",
  16118. image: {
  16119. source: "./media/characters/ignatius/front.svg",
  16120. extra: 1380/1259,
  16121. bottom: 27/1407
  16122. }
  16123. },
  16124. },
  16125. [
  16126. {
  16127. name: "Normal",
  16128. height: math.unit(6 + 2/12, "feet"),
  16129. default: true
  16130. },
  16131. ]
  16132. ))
  16133. characterMakers.push(() => makeCharacter(
  16134. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16135. {
  16136. front: {
  16137. height: math.unit(6 + 2 / 12, "feet"),
  16138. weight: math.unit(138, "lb"),
  16139. name: "Front",
  16140. image: {
  16141. source: "./media/characters/mei-li/front.svg",
  16142. extra: 237 / 229,
  16143. bottom: 0.03
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Normal",
  16150. height: math.unit(6 + 2 / 12, "feet"),
  16151. default: true
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16157. {
  16158. front: {
  16159. height: math.unit(2 + 4 / 12, "feet"),
  16160. weight: math.unit(62, "lb"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/puru/front.svg",
  16164. extra: 206 / 149,
  16165. bottom: 0.06
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Normal",
  16172. height: math.unit(2 + 4 / 12, "feet"),
  16173. default: true
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16179. {
  16180. anthro: {
  16181. height: math.unit(5 + 8/12, "feet"),
  16182. weight: math.unit(200, "lb"),
  16183. energyNeed: math.unit(2000, "kcal"),
  16184. name: "Anthro",
  16185. image: {
  16186. source: "./media/characters/kee/anthro.svg",
  16187. extra: 3251/3184,
  16188. bottom: 250/3501
  16189. }
  16190. },
  16191. taur: {
  16192. height: math.unit(11, "feet"),
  16193. weight: math.unit(500, "lb"),
  16194. energyNeed: math.unit(5000, "kcal"),
  16195. name: "Taur",
  16196. image: {
  16197. source: "./media/characters/kee/taur.svg",
  16198. extra: 1362/1320,
  16199. bottom: 83/1445
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(5 + 8/12, "feet"),
  16207. default: true
  16208. },
  16209. {
  16210. name: "Macro",
  16211. height: math.unit(35, "feet")
  16212. },
  16213. ]
  16214. ))
  16215. characterMakers.push(() => makeCharacter(
  16216. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16217. {
  16218. anthro: {
  16219. height: math.unit(7, "feet"),
  16220. weight: math.unit(190, "lb"),
  16221. name: "Anthro",
  16222. image: {
  16223. source: "./media/characters/cobalt-dracha/anthro.svg",
  16224. extra: 231 / 225,
  16225. bottom: 0.04
  16226. }
  16227. },
  16228. feral: {
  16229. height: math.unit(9 + 7 / 12, "feet"),
  16230. weight: math.unit(294, "lb"),
  16231. name: "Feral",
  16232. image: {
  16233. source: "./media/characters/cobalt-dracha/feral.svg",
  16234. extra: 692 / 633,
  16235. bottom: 0.05
  16236. }
  16237. },
  16238. },
  16239. [
  16240. {
  16241. name: "Normal",
  16242. height: math.unit(7, "feet"),
  16243. default: true
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16249. {
  16250. fallen: {
  16251. height: math.unit(11 + 8 / 12, "feet"),
  16252. weight: math.unit(485, "lb"),
  16253. name: "Java (Fallen)",
  16254. rename: true,
  16255. image: {
  16256. source: "./media/characters/java/fallen.svg",
  16257. extra: 226 / 208,
  16258. bottom: 0.005
  16259. }
  16260. },
  16261. godkin: {
  16262. height: math.unit(10 + 6 / 12, "feet"),
  16263. weight: math.unit(328, "lb"),
  16264. name: "Java (Godkin)",
  16265. rename: true,
  16266. image: {
  16267. source: "./media/characters/java/godkin.svg",
  16268. extra: 1104/1068,
  16269. bottom: 36/1140
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Normal",
  16276. height: math.unit(11 + 8 / 12, "feet"),
  16277. default: true
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16283. {
  16284. front: {
  16285. height: math.unit(5 + 9 / 12, "feet"),
  16286. weight: math.unit(170, "lb"),
  16287. name: "Front",
  16288. image: {
  16289. source: "./media/characters/purna/front.svg",
  16290. extra: 239 / 229,
  16291. bottom: 0.01
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Normal",
  16298. height: math.unit(5 + 9 / 12, "feet"),
  16299. default: true
  16300. },
  16301. ]
  16302. ))
  16303. characterMakers.push(() => makeCharacter(
  16304. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16305. {
  16306. front: {
  16307. height: math.unit(5 + 9 / 12, "feet"),
  16308. weight: math.unit(142, "lb"),
  16309. name: "Front",
  16310. image: {
  16311. source: "./media/characters/kuva/front.svg",
  16312. extra: 281 / 271,
  16313. bottom: 0.006
  16314. }
  16315. },
  16316. },
  16317. [
  16318. {
  16319. name: "Normal",
  16320. height: math.unit(5 + 9 / 12, "feet"),
  16321. default: true
  16322. },
  16323. ]
  16324. ))
  16325. characterMakers.push(() => makeCharacter(
  16326. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16327. {
  16328. anthro: {
  16329. height: math.unit(9 + 2 / 12, "feet"),
  16330. weight: math.unit(270, "lb"),
  16331. name: "Anthro",
  16332. image: {
  16333. source: "./media/characters/embra/anthro.svg",
  16334. extra: 200 / 187,
  16335. bottom: 0.02
  16336. }
  16337. },
  16338. feral: {
  16339. height: math.unit(18 + 8 / 12, "feet"),
  16340. weight: math.unit(576, "lb"),
  16341. name: "Feral",
  16342. image: {
  16343. source: "./media/characters/embra/feral.svg",
  16344. extra: 152 / 137,
  16345. bottom: 0.037
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(9 + 2 / 12, "feet"),
  16353. default: true
  16354. },
  16355. ]
  16356. ))
  16357. characterMakers.push(() => makeCharacter(
  16358. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16359. {
  16360. anthro: {
  16361. height: math.unit(10 + 9 / 12, "feet"),
  16362. weight: math.unit(224, "lb"),
  16363. name: "Anthro",
  16364. image: {
  16365. source: "./media/characters/grottos/anthro.svg",
  16366. extra: 350 / 332,
  16367. bottom: 0.045
  16368. }
  16369. },
  16370. feral: {
  16371. height: math.unit(20 + 7 / 12, "feet"),
  16372. weight: math.unit(629, "lb"),
  16373. name: "Feral",
  16374. image: {
  16375. source: "./media/characters/grottos/feral.svg",
  16376. extra: 207 / 190,
  16377. bottom: 0.05
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Normal",
  16384. height: math.unit(10 + 9 / 12, "feet"),
  16385. default: true
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16391. {
  16392. anthro: {
  16393. height: math.unit(9 + 6 / 12, "feet"),
  16394. weight: math.unit(298, "lb"),
  16395. name: "Anthro",
  16396. image: {
  16397. source: "./media/characters/frifna/anthro.svg",
  16398. extra: 282 / 269,
  16399. bottom: 0.015
  16400. }
  16401. },
  16402. feral: {
  16403. height: math.unit(16 + 2 / 12, "feet"),
  16404. weight: math.unit(624, "lb"),
  16405. name: "Feral",
  16406. image: {
  16407. source: "./media/characters/frifna/feral.svg"
  16408. }
  16409. },
  16410. },
  16411. [
  16412. {
  16413. name: "Normal",
  16414. height: math.unit(9 + 6 / 12, "feet"),
  16415. default: true
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(6 + 2 / 12, "feet"),
  16424. weight: math.unit(168, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/elise/front.svg",
  16428. extra: 276 / 271
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(6 + 2 / 12, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16442. {
  16443. front: {
  16444. height: math.unit(5 + 10 / 12, "feet"),
  16445. weight: math.unit(210, "lb"),
  16446. name: "Front",
  16447. image: {
  16448. source: "./media/characters/glade/front.svg",
  16449. extra: 258 / 247,
  16450. bottom: 0.008
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(5 + 10 / 12, "feet"),
  16458. default: true
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16464. {
  16465. front: {
  16466. height: math.unit(5 + 10 / 12, "feet"),
  16467. weight: math.unit(129, "lb"),
  16468. name: "Front",
  16469. image: {
  16470. source: "./media/characters/rina/front.svg",
  16471. extra: 266 / 255,
  16472. bottom: 0.005
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(5 + 10 / 12, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16486. {
  16487. front: {
  16488. height: math.unit(6 + 1 / 12, "feet"),
  16489. weight: math.unit(192, "lb"),
  16490. name: "Front",
  16491. image: {
  16492. source: "./media/characters/veronica/front.svg",
  16493. extra: 319 / 309,
  16494. bottom: 0.005
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(6 + 1 / 12, "feet"),
  16502. default: true
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16508. {
  16509. front: {
  16510. height: math.unit(9 + 3 / 12, "feet"),
  16511. weight: math.unit(1100, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/braxton/front.svg",
  16515. extra: 1057 / 984,
  16516. bottom: 0.05
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Normal",
  16523. height: math.unit(9 + 3 / 12, "feet")
  16524. },
  16525. {
  16526. name: "Giant",
  16527. height: math.unit(300, "feet"),
  16528. default: true
  16529. },
  16530. {
  16531. name: "Macro",
  16532. height: math.unit(700, "feet")
  16533. },
  16534. {
  16535. name: "Megamacro",
  16536. height: math.unit(6000, "feet")
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16542. {
  16543. front: {
  16544. height: math.unit(6 + 7 / 12, "feet"),
  16545. weight: math.unit(150, "lb"),
  16546. name: "Front",
  16547. image: {
  16548. source: "./media/characters/blue-feyonics/front.svg",
  16549. extra: 1403 / 1306,
  16550. bottom: 0.047
  16551. }
  16552. },
  16553. },
  16554. [
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(6 + 7 / 12, "feet"),
  16558. default: true
  16559. },
  16560. ]
  16561. ))
  16562. characterMakers.push(() => makeCharacter(
  16563. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16564. {
  16565. front: {
  16566. height: math.unit(1.8, "meters"),
  16567. weight: math.unit(60, "kg"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/maxwell/front.svg",
  16571. extra: 2060 / 1873
  16572. }
  16573. },
  16574. },
  16575. [
  16576. {
  16577. name: "Micro",
  16578. height: math.unit(1, "mm")
  16579. },
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(1.8, "meter"),
  16583. default: true
  16584. },
  16585. {
  16586. name: "Macro",
  16587. height: math.unit(30, "meters")
  16588. },
  16589. {
  16590. name: "Megamacro",
  16591. height: math.unit(10, "km")
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(6, "feet"),
  16600. weight: math.unit(150, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/jack/front.svg",
  16604. extra: 1754 / 1640,
  16605. bottom: 0.01
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(80000, "feet"),
  16613. default: true
  16614. },
  16615. {
  16616. name: "Max size",
  16617. height: math.unit(10, "lightyears")
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16623. {
  16624. urban: {
  16625. height: math.unit(5, "feet"),
  16626. weight: math.unit(240, "lb"),
  16627. name: "Urban",
  16628. image: {
  16629. source: "./media/characters/cafat/urban.svg",
  16630. extra: 1223/1126,
  16631. bottom: 205/1428
  16632. }
  16633. },
  16634. summer: {
  16635. height: math.unit(5, "feet"),
  16636. weight: math.unit(240, "lb"),
  16637. name: "Summer",
  16638. image: {
  16639. source: "./media/characters/cafat/summer.svg",
  16640. extra: 1223/1126,
  16641. bottom: 205/1428
  16642. }
  16643. },
  16644. winter: {
  16645. height: math.unit(5, "feet"),
  16646. weight: math.unit(240, "lb"),
  16647. name: "Winter",
  16648. image: {
  16649. source: "./media/characters/cafat/winter.svg",
  16650. extra: 1223/1126,
  16651. bottom: 205/1428
  16652. }
  16653. },
  16654. lingerie: {
  16655. height: math.unit(5, "feet"),
  16656. weight: math.unit(240, "lb"),
  16657. name: "Lingerie",
  16658. image: {
  16659. source: "./media/characters/cafat/lingerie.svg",
  16660. extra: 1223/1126,
  16661. bottom: 205/1428
  16662. }
  16663. },
  16664. upright: {
  16665. height: math.unit(6.3, "feet"),
  16666. weight: math.unit(240, "lb"),
  16667. name: "Upright",
  16668. image: {
  16669. source: "./media/characters/cafat/upright.svg",
  16670. bottom: 0.01
  16671. }
  16672. },
  16673. uprightFull: {
  16674. height: math.unit(6.3, "feet"),
  16675. weight: math.unit(240, "lb"),
  16676. name: "Upright (Full)",
  16677. image: {
  16678. source: "./media/characters/cafat/upright-full.svg",
  16679. bottom: 0.01
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Small",
  16686. height: math.unit(5, "feet"),
  16687. default: true
  16688. },
  16689. {
  16690. name: "Large",
  16691. height: math.unit(13, "feet")
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16697. {
  16698. front: {
  16699. height: math.unit(6, "feet"),
  16700. weight: math.unit(150, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/verin-raharra/front.svg",
  16704. extra: 5019 / 4835,
  16705. bottom: 0.023
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(7 + 5 / 12, "feet"),
  16713. default: true
  16714. },
  16715. {
  16716. name: "Upsized",
  16717. height: math.unit(20, "feet")
  16718. },
  16719. ]
  16720. ))
  16721. characterMakers.push(() => makeCharacter(
  16722. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16723. {
  16724. front: {
  16725. height: math.unit(7, "feet"),
  16726. weight: math.unit(230, "lb"),
  16727. name: "Front",
  16728. image: {
  16729. source: "./media/characters/nakata/front.svg",
  16730. extra: 1.005,
  16731. bottom: 0.01
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(7, "feet"),
  16739. default: true
  16740. },
  16741. {
  16742. name: "Big",
  16743. height: math.unit(14, "feet")
  16744. },
  16745. {
  16746. name: "Macro",
  16747. height: math.unit(400, "feet")
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(4.91, "feet"),
  16756. weight: math.unit(100, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/lily/front.svg",
  16760. extra: 1585 / 1415,
  16761. bottom: 0.02
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(4.91, "feet"),
  16769. default: true
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16775. {
  16776. laying: {
  16777. height: math.unit(4 + 4 / 12, "feet"),
  16778. weight: math.unit(600, "lb"),
  16779. name: "Laying",
  16780. image: {
  16781. source: "./media/characters/sheila/laying.svg",
  16782. extra: 1333 / 1265,
  16783. bottom: 0.16
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(4 + 4 / 12, "feet"),
  16791. default: true
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(6, "feet"),
  16800. weight: math.unit(190, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/sax/front.svg",
  16804. extra: 1187 / 973,
  16805. bottom: 0.042
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Micro",
  16812. height: math.unit(4, "inches"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(6, "feet"),
  16822. weight: math.unit(150, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/pandora/front.svg",
  16826. extra: 2720 / 2556,
  16827. bottom: 0.015
  16828. }
  16829. },
  16830. back: {
  16831. height: math.unit(6, "feet"),
  16832. weight: math.unit(150, "lb"),
  16833. name: "Back",
  16834. image: {
  16835. source: "./media/characters/pandora/back.svg",
  16836. extra: 2720 / 2556,
  16837. bottom: 0.01
  16838. }
  16839. },
  16840. beans: {
  16841. height: math.unit(6 / 8, "feet"),
  16842. name: "Beans",
  16843. image: {
  16844. source: "./media/characters/pandora/beans.svg"
  16845. }
  16846. },
  16847. collar: {
  16848. height: math.unit(0.31, "feet"),
  16849. name: "Collar",
  16850. image: {
  16851. source: "./media/characters/pandora/collar.svg"
  16852. }
  16853. },
  16854. skirt: {
  16855. height: math.unit(6, "feet"),
  16856. weight: math.unit(150, "lb"),
  16857. name: "Skirt",
  16858. image: {
  16859. source: "./media/characters/pandora/skirt.svg",
  16860. extra: 1622 / 1525,
  16861. bottom: 0.015
  16862. }
  16863. },
  16864. hoodie: {
  16865. height: math.unit(6, "feet"),
  16866. weight: math.unit(150, "lb"),
  16867. name: "Hoodie",
  16868. image: {
  16869. source: "./media/characters/pandora/hoodie.svg",
  16870. extra: 1622 / 1525,
  16871. bottom: 0.015
  16872. }
  16873. },
  16874. casual: {
  16875. height: math.unit(6, "feet"),
  16876. weight: math.unit(150, "lb"),
  16877. name: "Casual",
  16878. image: {
  16879. source: "./media/characters/pandora/casual.svg",
  16880. extra: 1622 / 1525,
  16881. bottom: 0.015
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(6, "feet")
  16889. },
  16890. {
  16891. name: "Big Steppy",
  16892. height: math.unit(1, "km"),
  16893. default: true
  16894. },
  16895. {
  16896. name: "Galactic Steppy",
  16897. height: math.unit(2, "gigameters")
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16903. {
  16904. side: {
  16905. height: math.unit(10, "feet"),
  16906. weight: math.unit(800, "kg"),
  16907. name: "Side",
  16908. image: {
  16909. source: "./media/characters/venio-darcony/side.svg",
  16910. extra: 1373 / 1003,
  16911. bottom: 0.037
  16912. }
  16913. },
  16914. front: {
  16915. height: math.unit(19, "feet"),
  16916. weight: math.unit(800, "kg"),
  16917. name: "Front",
  16918. image: {
  16919. source: "./media/characters/venio-darcony/front.svg"
  16920. }
  16921. },
  16922. back: {
  16923. height: math.unit(19, "feet"),
  16924. weight: math.unit(800, "kg"),
  16925. name: "Back",
  16926. image: {
  16927. source: "./media/characters/venio-darcony/back.svg"
  16928. }
  16929. },
  16930. sideNsfw: {
  16931. height: math.unit(10, "feet"),
  16932. weight: math.unit(800, "kg"),
  16933. name: "Side (NSFW)",
  16934. image: {
  16935. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16936. extra: 1373 / 1003,
  16937. bottom: 0.037
  16938. }
  16939. },
  16940. frontNsfw: {
  16941. height: math.unit(19, "feet"),
  16942. weight: math.unit(800, "kg"),
  16943. name: "Front (NSFW)",
  16944. image: {
  16945. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16946. }
  16947. },
  16948. backNsfw: {
  16949. height: math.unit(19, "feet"),
  16950. weight: math.unit(800, "kg"),
  16951. name: "Back (NSFW)",
  16952. image: {
  16953. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16954. }
  16955. },
  16956. sideArmored: {
  16957. height: math.unit(10, "feet"),
  16958. weight: math.unit(800, "kg"),
  16959. name: "Side (Armored)",
  16960. image: {
  16961. source: "./media/characters/venio-darcony/side-armored.svg",
  16962. extra: 1373 / 1003,
  16963. bottom: 0.037
  16964. }
  16965. },
  16966. frontArmored: {
  16967. height: math.unit(19, "feet"),
  16968. weight: math.unit(900, "kg"),
  16969. name: "Front (Armored)",
  16970. image: {
  16971. source: "./media/characters/venio-darcony/front-armored.svg"
  16972. }
  16973. },
  16974. backArmored: {
  16975. height: math.unit(19, "feet"),
  16976. weight: math.unit(900, "kg"),
  16977. name: "Back (Armored)",
  16978. image: {
  16979. source: "./media/characters/venio-darcony/back-armored.svg"
  16980. }
  16981. },
  16982. sword: {
  16983. height: math.unit(10, "feet"),
  16984. weight: math.unit(50, "lb"),
  16985. name: "Sword",
  16986. image: {
  16987. source: "./media/characters/venio-darcony/sword.svg"
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Normal",
  16994. height: math.unit(10, "feet")
  16995. },
  16996. {
  16997. name: "Macro",
  16998. height: math.unit(130, "feet"),
  16999. default: true
  17000. },
  17001. {
  17002. name: "Macro+",
  17003. height: math.unit(240, "feet")
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17009. {
  17010. front: {
  17011. height: math.unit(6, "feet"),
  17012. weight: math.unit(150, "lb"),
  17013. name: "Front",
  17014. image: {
  17015. source: "./media/characters/veski/front.svg",
  17016. extra: 1299 / 1225,
  17017. bottom: 0.04
  17018. }
  17019. },
  17020. back: {
  17021. height: math.unit(6, "feet"),
  17022. weight: math.unit(150, "lb"),
  17023. name: "Back",
  17024. image: {
  17025. source: "./media/characters/veski/back.svg",
  17026. extra: 1299 / 1225,
  17027. bottom: 0.008
  17028. }
  17029. },
  17030. maw: {
  17031. height: math.unit(1.5 * 1.21, "feet"),
  17032. name: "Maw",
  17033. image: {
  17034. source: "./media/characters/veski/maw.svg"
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Macro",
  17041. height: math.unit(2, "km"),
  17042. default: true
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17048. {
  17049. front: {
  17050. height: math.unit(5 + 7 / 12, "feet"),
  17051. name: "Front",
  17052. image: {
  17053. source: "./media/characters/isabelle/front.svg",
  17054. extra: 2130 / 1976,
  17055. bottom: 0.05
  17056. }
  17057. },
  17058. },
  17059. [
  17060. {
  17061. name: "Supermicro",
  17062. height: math.unit(10, "micrometers")
  17063. },
  17064. {
  17065. name: "Micro",
  17066. height: math.unit(1, "inch")
  17067. },
  17068. {
  17069. name: "Tiny",
  17070. height: math.unit(5, "inches")
  17071. },
  17072. {
  17073. name: "Standard",
  17074. height: math.unit(5 + 7 / 12, "inches")
  17075. },
  17076. {
  17077. name: "Macro",
  17078. height: math.unit(80, "meters"),
  17079. default: true
  17080. },
  17081. {
  17082. name: "Megamacro",
  17083. height: math.unit(250, "meters")
  17084. },
  17085. {
  17086. name: "Gigamacro",
  17087. height: math.unit(5, "km")
  17088. },
  17089. {
  17090. name: "Cosmic",
  17091. height: math.unit(2.5e6, "miles")
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(6, "feet"),
  17100. weight: math.unit(150, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/hanzo/front.svg",
  17104. extra: 374 / 344,
  17105. bottom: 0.02
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(8, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(7, "feet"),
  17122. weight: math.unit(130, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/anna/front.svg",
  17126. extra: 169 / 145,
  17127. bottom: 0.06
  17128. }
  17129. },
  17130. full: {
  17131. height: math.unit(4.96, "feet"),
  17132. weight: math.unit(220, "lb"),
  17133. name: "Full",
  17134. image: {
  17135. source: "./media/characters/anna/full.svg",
  17136. extra: 138 / 114,
  17137. bottom: 0.15
  17138. }
  17139. },
  17140. tongue: {
  17141. height: math.unit(2.53, "feet"),
  17142. name: "Tongue",
  17143. image: {
  17144. source: "./media/characters/anna/tongue.svg"
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(7, "feet"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(7, "feet"),
  17161. weight: math.unit(150, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/ian-corvid/front.svg",
  17165. extra: 150 / 142,
  17166. bottom: 0.02
  17167. }
  17168. },
  17169. back: {
  17170. height: math.unit(7, "feet"),
  17171. weight: math.unit(150, "lb"),
  17172. name: "Back",
  17173. image: {
  17174. source: "./media/characters/ian-corvid/back.svg",
  17175. extra: 150 / 143,
  17176. bottom: 0.01
  17177. }
  17178. },
  17179. stomping: {
  17180. height: math.unit(7, "feet"),
  17181. weight: math.unit(150, "lb"),
  17182. name: "Stomping",
  17183. image: {
  17184. source: "./media/characters/ian-corvid/stomping.svg",
  17185. extra: 76 / 72
  17186. }
  17187. },
  17188. sitting: {
  17189. height: math.unit(7 / 1.8, "feet"),
  17190. weight: math.unit(150, "lb"),
  17191. name: "Sitting",
  17192. image: {
  17193. source: "./media/characters/ian-corvid/sitting.svg",
  17194. extra: 1400 / 1269,
  17195. bottom: 0.15
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Tiny Microw",
  17202. height: math.unit(1, "inch")
  17203. },
  17204. {
  17205. name: "Microw",
  17206. height: math.unit(6, "inches")
  17207. },
  17208. {
  17209. name: "Crow",
  17210. height: math.unit(7 + 1 / 12, "feet"),
  17211. default: true
  17212. },
  17213. {
  17214. name: "Macrow",
  17215. height: math.unit(176, "feet")
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(5 + 7 / 12, "feet"),
  17224. weight: math.unit(147, "lb"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/natalie-kellon/front.svg",
  17228. extra: 1214 / 1141,
  17229. bottom: 0.02
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Micro",
  17236. height: math.unit(1 / 16, "inch")
  17237. },
  17238. {
  17239. name: "Tiny",
  17240. height: math.unit(4, "inches")
  17241. },
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(5 + 7 / 12, "feet"),
  17245. default: true
  17246. },
  17247. {
  17248. name: "Amazon",
  17249. height: math.unit(12, "feet")
  17250. },
  17251. {
  17252. name: "Giantess",
  17253. height: math.unit(160, "meters")
  17254. },
  17255. {
  17256. name: "Titaness",
  17257. height: math.unit(800, "meters")
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(6, "feet"),
  17266. weight: math.unit(150, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/alluria/front.svg",
  17270. extra: 806 / 738,
  17271. bottom: 0.01
  17272. }
  17273. },
  17274. side: {
  17275. height: math.unit(6, "feet"),
  17276. weight: math.unit(150, "lb"),
  17277. name: "Side",
  17278. image: {
  17279. source: "./media/characters/alluria/side.svg",
  17280. extra: 800 / 750,
  17281. }
  17282. },
  17283. back: {
  17284. height: math.unit(6, "feet"),
  17285. weight: math.unit(150, "lb"),
  17286. name: "Back",
  17287. image: {
  17288. source: "./media/characters/alluria/back.svg",
  17289. extra: 806 / 738,
  17290. }
  17291. },
  17292. frontMaid: {
  17293. height: math.unit(6, "feet"),
  17294. weight: math.unit(150, "lb"),
  17295. name: "Front (Maid)",
  17296. image: {
  17297. source: "./media/characters/alluria/front-maid.svg",
  17298. extra: 806 / 738,
  17299. bottom: 0.01
  17300. }
  17301. },
  17302. sideMaid: {
  17303. height: math.unit(6, "feet"),
  17304. weight: math.unit(150, "lb"),
  17305. name: "Side (Maid)",
  17306. image: {
  17307. source: "./media/characters/alluria/side-maid.svg",
  17308. extra: 800 / 750,
  17309. bottom: 0.005
  17310. }
  17311. },
  17312. backMaid: {
  17313. height: math.unit(6, "feet"),
  17314. weight: math.unit(150, "lb"),
  17315. name: "Back (Maid)",
  17316. image: {
  17317. source: "./media/characters/alluria/back-maid.svg",
  17318. extra: 806 / 738,
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Micro",
  17325. height: math.unit(6, "inches"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17332. {
  17333. front: {
  17334. height: math.unit(6, "feet"),
  17335. weight: math.unit(150, "lb"),
  17336. name: "Front",
  17337. image: {
  17338. source: "./media/characters/kyle/front.svg",
  17339. extra: 1069 / 962,
  17340. bottom: 77.228 / 1727.45
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Macro",
  17347. height: math.unit(150, "feet"),
  17348. default: true
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17354. {
  17355. front: {
  17356. height: math.unit(6, "feet"),
  17357. weight: math.unit(300, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/duncan/front.svg",
  17361. extra: 1650 / 1482,
  17362. bottom: 0.05
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Macro",
  17369. height: math.unit(100, "feet"),
  17370. default: true
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17376. {
  17377. front: {
  17378. height: math.unit(5 + 4 / 12, "feet"),
  17379. weight: math.unit(220, "lb"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/memory/front.svg",
  17383. extra: 3641 / 3545,
  17384. bottom: 0.03
  17385. }
  17386. },
  17387. back: {
  17388. height: math.unit(5 + 4 / 12, "feet"),
  17389. weight: math.unit(220, "lb"),
  17390. name: "Back",
  17391. image: {
  17392. source: "./media/characters/memory/back.svg",
  17393. extra: 3641 / 3545,
  17394. bottom: 0.025
  17395. }
  17396. },
  17397. frontSkirt: {
  17398. height: math.unit(5 + 4 / 12, "feet"),
  17399. weight: math.unit(220, "lb"),
  17400. name: "Front (Skirt)",
  17401. image: {
  17402. source: "./media/characters/memory/front-skirt.svg",
  17403. extra: 3641 / 3545,
  17404. bottom: 0.03
  17405. }
  17406. },
  17407. frontDress: {
  17408. height: math.unit(5 + 4 / 12, "feet"),
  17409. weight: math.unit(220, "lb"),
  17410. name: "Front (Dress)",
  17411. image: {
  17412. source: "./media/characters/memory/front-dress.svg",
  17413. extra: 3641 / 3545,
  17414. bottom: 0.03
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Micro",
  17421. height: math.unit(6, "inches"),
  17422. default: true
  17423. },
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(5 + 4 / 12, "feet")
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17432. {
  17433. front: {
  17434. height: math.unit(4 + 11 / 12, "feet"),
  17435. weight: math.unit(100, "lb"),
  17436. name: "Front",
  17437. image: {
  17438. source: "./media/characters/luno/front.svg",
  17439. extra: 1535 / 1487,
  17440. bottom: 0.03
  17441. }
  17442. },
  17443. },
  17444. [
  17445. {
  17446. name: "Micro",
  17447. height: math.unit(3, "inches")
  17448. },
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(4 + 11 / 12, "feet"),
  17452. default: true
  17453. },
  17454. {
  17455. name: "Macro",
  17456. height: math.unit(300, "feet")
  17457. },
  17458. {
  17459. name: "Megamacro",
  17460. height: math.unit(700, "miles")
  17461. },
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17466. {
  17467. front: {
  17468. height: math.unit(6 + 2 / 12, "feet"),
  17469. weight: math.unit(170, "lb"),
  17470. name: "Front",
  17471. image: {
  17472. source: "./media/characters/jamesy/front.svg",
  17473. extra: 440 / 382,
  17474. bottom: 0.005
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Micro",
  17481. height: math.unit(3, "inches")
  17482. },
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(6 + 2 / 12, "feet"),
  17486. default: true
  17487. },
  17488. {
  17489. name: "Macro",
  17490. height: math.unit(300, "feet")
  17491. },
  17492. {
  17493. name: "Megamacro",
  17494. height: math.unit(700, "miles")
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(6, "feet"),
  17503. weight: math.unit(160, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/mark/front.svg",
  17507. extra: 3300 / 3100,
  17508. bottom: 136.42 / 3440.47
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Macro",
  17515. height: math.unit(120, "meters")
  17516. },
  17517. {
  17518. name: "Bigger Macro",
  17519. height: math.unit(350, "meters")
  17520. },
  17521. {
  17522. name: "Megamacro",
  17523. height: math.unit(8, "km"),
  17524. default: true
  17525. },
  17526. {
  17527. name: "Continental",
  17528. height: math.unit(4550, "km")
  17529. },
  17530. {
  17531. name: "Planetary",
  17532. height: math.unit(65000, "km")
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(6, "feet"),
  17541. weight: math.unit(400, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/mac/front.svg",
  17545. extra: 1048 / 987.7,
  17546. bottom: 60 / 1107.6,
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Macro",
  17553. height: math.unit(500, "feet"),
  17554. default: true
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(5 + 2 / 12, "feet"),
  17563. weight: math.unit(190, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/bari/front.svg",
  17567. extra: 3156 / 2880,
  17568. bottom: 0.03
  17569. }
  17570. },
  17571. back: {
  17572. height: math.unit(5 + 2 / 12, "feet"),
  17573. weight: math.unit(190, "lb"),
  17574. name: "Back",
  17575. image: {
  17576. source: "./media/characters/bari/back.svg",
  17577. extra: 3260 / 2834,
  17578. bottom: 0.025
  17579. }
  17580. },
  17581. frontPlush: {
  17582. height: math.unit(5 + 2 / 12, "feet"),
  17583. weight: math.unit(190, "lb"),
  17584. name: "Front (Plush)",
  17585. image: {
  17586. source: "./media/characters/bari/front-plush.svg",
  17587. extra: 1112 / 1061,
  17588. bottom: 0.002
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Micro",
  17595. height: math.unit(3, "inches")
  17596. },
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(5 + 2 / 12, "feet"),
  17600. default: true
  17601. },
  17602. {
  17603. name: "Macro",
  17604. height: math.unit(20, "feet")
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17610. {
  17611. front: {
  17612. height: math.unit(6 + 1 / 12, "feet"),
  17613. weight: math.unit(275, "lb"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/hunter-misha-raven/front.svg"
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Mortal",
  17623. height: math.unit(6 + 1 / 12, "feet")
  17624. },
  17625. {
  17626. name: "Divine",
  17627. height: math.unit(1.12134e34, "parsecs"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17634. {
  17635. front: {
  17636. height: math.unit(6 + 3 / 12, "feet"),
  17637. weight: math.unit(220, "lb"),
  17638. name: "Front",
  17639. image: {
  17640. source: "./media/characters/max-calore/front.svg",
  17641. extra: 1700 / 1648,
  17642. bottom: 0.01
  17643. }
  17644. },
  17645. back: {
  17646. height: math.unit(6 + 3 / 12, "feet"),
  17647. weight: math.unit(220, "lb"),
  17648. name: "Back",
  17649. image: {
  17650. source: "./media/characters/max-calore/back.svg",
  17651. extra: 1700 / 1648,
  17652. bottom: 0.01
  17653. }
  17654. },
  17655. },
  17656. [
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(6 + 3 / 12, "feet"),
  17660. default: true
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17666. {
  17667. side: {
  17668. height: math.unit(2 + 8 / 12, "feet"),
  17669. weight: math.unit(99, "lb"),
  17670. name: "Side",
  17671. image: {
  17672. source: "./media/characters/aspen/side.svg",
  17673. extra: 152 / 138,
  17674. bottom: 0.032
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(2 + 8 / 12, "feet"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17688. {
  17689. side: {
  17690. height: math.unit(3 + 2 / 12, "feet"),
  17691. weight: math.unit(224, "lb"),
  17692. name: "Side",
  17693. image: {
  17694. source: "./media/characters/sheila-feral-wolf/side.svg",
  17695. extra: 179 / 166,
  17696. bottom: 0.03
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Normal",
  17703. height: math.unit(3 + 2 / 12, "feet"),
  17704. default: true
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17710. {
  17711. side: {
  17712. height: math.unit(1 + 9 / 12, "feet"),
  17713. weight: math.unit(38, "lb"),
  17714. name: "Side",
  17715. image: {
  17716. source: "./media/characters/michelle/side.svg",
  17717. extra: 147 / 136.7,
  17718. bottom: 0.03
  17719. }
  17720. },
  17721. },
  17722. [
  17723. {
  17724. name: "Normal",
  17725. height: math.unit(1 + 9 / 12, "feet"),
  17726. default: true
  17727. },
  17728. ]
  17729. ))
  17730. characterMakers.push(() => makeCharacter(
  17731. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17732. {
  17733. front: {
  17734. height: math.unit(1.54, "feet"),
  17735. weight: math.unit(50, "lb"),
  17736. name: "Front",
  17737. image: {
  17738. source: "./media/characters/nino/front.svg"
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(1.54, "feet"),
  17746. default: true
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17752. {
  17753. front: {
  17754. height: math.unit(1.49, "feet"),
  17755. weight: math.unit(45, "lb"),
  17756. name: "Front",
  17757. image: {
  17758. source: "./media/characters/viola/front.svg"
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(1.49, "feet"),
  17766. default: true
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17772. {
  17773. front: {
  17774. height: math.unit(6 + 5 / 12, "feet"),
  17775. weight: math.unit(580, "lb"),
  17776. name: "Front",
  17777. image: {
  17778. source: "./media/characters/atlas/front.svg",
  17779. extra: 298.5 / 290,
  17780. bottom: 0.015
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(6 + 5 / 12, "feet"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17794. {
  17795. side: {
  17796. height: math.unit(15.6, "inches"),
  17797. weight: math.unit(10, "lb"),
  17798. name: "Side",
  17799. image: {
  17800. source: "./media/characters/davy/side.svg",
  17801. extra: 200 / 170,
  17802. bottom: 0.01
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(15.6, "inches"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17816. {
  17817. side: {
  17818. height: math.unit(4 + 8 / 12, "feet"),
  17819. weight: math.unit(166, "lb"),
  17820. name: "Side",
  17821. image: {
  17822. source: "./media/characters/fiona/side.svg",
  17823. extra: 232 / 220,
  17824. bottom: 0.03
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(4 + 8 / 12, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17838. {
  17839. front: {
  17840. height: math.unit(26, "inches"),
  17841. weight: math.unit(35, "lb"),
  17842. name: "Front",
  17843. image: {
  17844. source: "./media/characters/lyla/front.svg",
  17845. bottom: 0.1
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(3, "feet"),
  17853. default: true
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17859. {
  17860. side: {
  17861. height: math.unit(1.8, "feet"),
  17862. weight: math.unit(44, "lb"),
  17863. name: "Side",
  17864. image: {
  17865. source: "./media/characters/perseus/side.svg",
  17866. bottom: 0.21
  17867. }
  17868. },
  17869. },
  17870. [
  17871. {
  17872. name: "Normal",
  17873. height: math.unit(1.8, "feet"),
  17874. default: true
  17875. },
  17876. ]
  17877. ))
  17878. characterMakers.push(() => makeCharacter(
  17879. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17880. {
  17881. side: {
  17882. height: math.unit(4 + 2 / 12, "feet"),
  17883. weight: math.unit(20, "lb"),
  17884. name: "Side",
  17885. image: {
  17886. source: "./media/characters/remus/side.svg"
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(4 + 2 / 12, "feet"),
  17894. default: true
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17900. {
  17901. front: {
  17902. height: math.unit(4 + 11 / 12, "feet"),
  17903. weight: math.unit(114, "lb"),
  17904. name: "Front",
  17905. image: {
  17906. source: "./media/characters/raf/front.svg",
  17907. extra: 1504/1339,
  17908. bottom: 26/1530
  17909. }
  17910. },
  17911. side: {
  17912. height: math.unit(4 + 11 / 12, "feet"),
  17913. weight: math.unit(114, "lb"),
  17914. name: "Side",
  17915. image: {
  17916. source: "./media/characters/raf/side.svg",
  17917. extra: 1466/1316,
  17918. bottom: 29/1495
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Micro",
  17925. height: math.unit(2, "inches")
  17926. },
  17927. {
  17928. name: "Normal",
  17929. height: math.unit(4 + 11 / 12, "feet"),
  17930. default: true
  17931. },
  17932. {
  17933. name: "Macro",
  17934. height: math.unit(70, "feet")
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17940. {
  17941. front: {
  17942. height: math.unit(1.5, "meters"),
  17943. weight: math.unit(68, "kg"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/liam-einarr/front.svg",
  17947. extra: 2822 / 2666
  17948. }
  17949. },
  17950. back: {
  17951. height: math.unit(1.5, "meters"),
  17952. weight: math.unit(68, "kg"),
  17953. name: "Back",
  17954. image: {
  17955. source: "./media/characters/liam-einarr/back.svg",
  17956. extra: 2822 / 2666,
  17957. bottom: 0.015
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Normal",
  17964. height: math.unit(1.5, "meters"),
  17965. default: true
  17966. },
  17967. {
  17968. name: "Macro",
  17969. height: math.unit(150, "meters")
  17970. },
  17971. {
  17972. name: "Megamacro",
  17973. height: math.unit(35, "km")
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17979. {
  17980. front: {
  17981. height: math.unit(6, "feet"),
  17982. weight: math.unit(75, "kg"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/linda/front.svg",
  17986. extra: 930 / 874,
  17987. bottom: 0.004
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(6, "feet"),
  17995. default: true
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18001. {
  18002. front: {
  18003. height: math.unit(6 + 8 / 12, "feet"),
  18004. weight: math.unit(220, "lb"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/caylex/front.svg",
  18008. extra: 821 / 772,
  18009. bottom: 0.07
  18010. }
  18011. },
  18012. back: {
  18013. height: math.unit(6 + 8 / 12, "feet"),
  18014. weight: math.unit(220, "lb"),
  18015. name: "Back",
  18016. image: {
  18017. source: "./media/characters/caylex/back.svg",
  18018. extra: 821 / 772,
  18019. bottom: 0.022
  18020. }
  18021. },
  18022. hand: {
  18023. height: math.unit(1.25, "feet"),
  18024. name: "Hand",
  18025. image: {
  18026. source: "./media/characters/caylex/hand.svg"
  18027. }
  18028. },
  18029. foot: {
  18030. height: math.unit(1.6, "feet"),
  18031. name: "Foot",
  18032. image: {
  18033. source: "./media/characters/caylex/foot.svg"
  18034. }
  18035. },
  18036. armored: {
  18037. height: math.unit(6 + 8 / 12, "feet"),
  18038. weight: math.unit(250, "lb"),
  18039. name: "Armored",
  18040. image: {
  18041. source: "./media/characters/caylex/armored.svg",
  18042. extra: 1420 / 1310,
  18043. bottom: 0.045
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(6 + 8 / 12, "feet"),
  18051. default: true
  18052. },
  18053. {
  18054. name: "Normal+",
  18055. height: math.unit(12, "feet")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18061. {
  18062. front: {
  18063. height: math.unit(7 + 6 / 12, "feet"),
  18064. weight: math.unit(288, "lb"),
  18065. name: "Front",
  18066. image: {
  18067. source: "./media/characters/alana/front.svg",
  18068. extra: 679 / 653,
  18069. bottom: 22.5 / 701
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Normal",
  18076. height: math.unit(7 + 6 / 12, "feet")
  18077. },
  18078. {
  18079. name: "Large",
  18080. height: math.unit(50, "feet")
  18081. },
  18082. {
  18083. name: "Macro",
  18084. height: math.unit(100, "feet"),
  18085. default: true
  18086. },
  18087. {
  18088. name: "Macro+",
  18089. height: math.unit(200, "feet")
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18095. {
  18096. front: {
  18097. height: math.unit(6 + 1 / 12, "feet"),
  18098. weight: math.unit(210, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/hasani/front.svg",
  18102. extra: 244 / 232,
  18103. bottom: 0.01
  18104. }
  18105. },
  18106. back: {
  18107. height: math.unit(6 + 1 / 12, "feet"),
  18108. weight: math.unit(210, "lb"),
  18109. name: "Back",
  18110. image: {
  18111. source: "./media/characters/hasani/back.svg",
  18112. extra: 244 / 232,
  18113. bottom: 0.01
  18114. }
  18115. },
  18116. },
  18117. [
  18118. {
  18119. name: "Normal",
  18120. height: math.unit(6 + 1 / 12, "feet")
  18121. },
  18122. {
  18123. name: "Macro",
  18124. height: math.unit(175, "feet"),
  18125. default: true
  18126. },
  18127. ]
  18128. ))
  18129. characterMakers.push(() => makeCharacter(
  18130. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18131. {
  18132. front: {
  18133. height: math.unit(1.82, "meters"),
  18134. weight: math.unit(140, "lb"),
  18135. name: "Front",
  18136. image: {
  18137. source: "./media/characters/nita/front.svg",
  18138. extra: 2473 / 2363,
  18139. bottom: 0.01
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(1.82, "m")
  18147. },
  18148. {
  18149. name: "Macro",
  18150. height: math.unit(300, "m")
  18151. },
  18152. {
  18153. name: "Mistake Canon",
  18154. height: math.unit(0.5, "miles"),
  18155. default: true
  18156. },
  18157. {
  18158. name: "Big Mistake",
  18159. height: math.unit(13, "miles")
  18160. },
  18161. {
  18162. name: "Playing God",
  18163. height: math.unit(2450, "miles")
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18169. {
  18170. front: {
  18171. height: math.unit(4, "feet"),
  18172. weight: math.unit(120, "lb"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/shiriko/front.svg",
  18176. extra: 970/934,
  18177. bottom: 5/975
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Normal",
  18184. height: math.unit(4, "feet"),
  18185. default: true
  18186. },
  18187. ]
  18188. ))
  18189. characterMakers.push(() => makeCharacter(
  18190. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18191. {
  18192. front: {
  18193. height: math.unit(6, "feet"),
  18194. name: "front",
  18195. image: {
  18196. source: "./media/characters/deja/front.svg",
  18197. extra: 926 / 840,
  18198. bottom: 0.07
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Planck Length",
  18205. height: math.unit(1.6e-35, "meters")
  18206. },
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(30.48, "meters"),
  18210. default: true
  18211. },
  18212. {
  18213. name: "Universal",
  18214. height: math.unit(8.8e26, "meters")
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18220. {
  18221. side: {
  18222. height: math.unit(8, "feet"),
  18223. weight: math.unit(6300, "lb"),
  18224. name: "Side",
  18225. image: {
  18226. source: "./media/characters/anima/side.svg",
  18227. bottom: 0.035
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(8, "feet"),
  18235. default: true
  18236. },
  18237. ]
  18238. ))
  18239. characterMakers.push(() => makeCharacter(
  18240. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18241. {
  18242. front: {
  18243. height: math.unit(8, "feet"),
  18244. weight: math.unit(350, "lb"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/bianca/front.svg",
  18248. extra: 234 / 225,
  18249. bottom: 0.03
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(8, "feet"),
  18257. default: true
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18263. {
  18264. front: {
  18265. height: math.unit(11 + 5/12, "feet"),
  18266. weight: math.unit(1200, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/adinia/front.svg",
  18270. extra: 1767/1641,
  18271. bottom: 44/1811
  18272. },
  18273. extraAttributes: {
  18274. "energyIntake": {
  18275. name: "Energy Intake",
  18276. power: 3,
  18277. type: "energy",
  18278. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18279. },
  18280. }
  18281. },
  18282. back: {
  18283. height: math.unit(11 + 5/12, "feet"),
  18284. weight: math.unit(1200, "lb"),
  18285. name: "Back",
  18286. image: {
  18287. source: "./media/characters/adinia/back.svg",
  18288. extra: 1834/1684,
  18289. bottom: 14/1848
  18290. },
  18291. extraAttributes: {
  18292. "energyIntake": {
  18293. name: "Energy Intake",
  18294. power: 3,
  18295. type: "energy",
  18296. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18297. },
  18298. }
  18299. },
  18300. maw: {
  18301. height: math.unit(3.79, "feet"),
  18302. name: "Maw",
  18303. image: {
  18304. source: "./media/characters/adinia/maw.svg"
  18305. }
  18306. },
  18307. rump: {
  18308. height: math.unit(4.6, "feet"),
  18309. name: "Rump",
  18310. image: {
  18311. source: "./media/characters/adinia/rump.svg"
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(11 + 5 / 12, "feet"),
  18319. default: true
  18320. },
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18325. {
  18326. front: {
  18327. height: math.unit(3, "meters"),
  18328. weight: math.unit(200, "kg"),
  18329. name: "Front",
  18330. image: {
  18331. source: "./media/characters/lykasa/front.svg",
  18332. extra: 1076 / 976,
  18333. bottom: 0.06
  18334. }
  18335. },
  18336. },
  18337. [
  18338. {
  18339. name: "Normal",
  18340. height: math.unit(3, "meters")
  18341. },
  18342. {
  18343. name: "Kaiju",
  18344. height: math.unit(120, "meters"),
  18345. default: true
  18346. },
  18347. {
  18348. name: "Mega Kaiju",
  18349. height: math.unit(240, "km")
  18350. },
  18351. {
  18352. name: "Giga Kaiju",
  18353. height: math.unit(400, "megameters")
  18354. },
  18355. {
  18356. name: "Tera Kaiju",
  18357. height: math.unit(800, "gigameters")
  18358. },
  18359. {
  18360. name: "Kaiju Dragon Goddess",
  18361. height: math.unit(26, "zettaparsecs")
  18362. },
  18363. ]
  18364. ))
  18365. characterMakers.push(() => makeCharacter(
  18366. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18367. {
  18368. side: {
  18369. height: math.unit(283 / 124 * 6, "feet"),
  18370. weight: math.unit(35000, "lb"),
  18371. name: "Side",
  18372. image: {
  18373. source: "./media/characters/malfaren/side.svg",
  18374. extra: 1310/529,
  18375. bottom: 24/1334
  18376. }
  18377. },
  18378. front: {
  18379. height: math.unit(22.36, "feet"),
  18380. weight: math.unit(35000, "lb"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/malfaren/front.svg",
  18384. extra: 1237/1115,
  18385. bottom: 32/1269
  18386. }
  18387. },
  18388. maw: {
  18389. height: math.unit(6.9, "feet"),
  18390. name: "Maw",
  18391. image: {
  18392. source: "./media/characters/malfaren/maw.svg"
  18393. }
  18394. },
  18395. dick: {
  18396. height: math.unit(6.19, "feet"),
  18397. name: "Dick",
  18398. image: {
  18399. source: "./media/characters/malfaren/dick.svg"
  18400. }
  18401. },
  18402. eye: {
  18403. height: math.unit(0.69, "feet"),
  18404. name: "Eye",
  18405. image: {
  18406. source: "./media/characters/malfaren/eye.svg"
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Big",
  18413. height: math.unit(283 / 162 * 6, "feet"),
  18414. },
  18415. {
  18416. name: "Bigger",
  18417. height: math.unit(283 / 124 * 6, "feet")
  18418. },
  18419. {
  18420. name: "Massive",
  18421. height: math.unit(283 / 92 * 6, "feet"),
  18422. default: true
  18423. },
  18424. {
  18425. name: "👀💦",
  18426. height: math.unit(283 / 73 * 6, "feet"),
  18427. },
  18428. ]
  18429. ))
  18430. characterMakers.push(() => makeCharacter(
  18431. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18432. {
  18433. front: {
  18434. height: math.unit(1.7, "m"),
  18435. weight: math.unit(70, "kg"),
  18436. name: "Front",
  18437. image: {
  18438. source: "./media/characters/kernel/front.svg",
  18439. extra: 222 / 210,
  18440. bottom: 0.007
  18441. }
  18442. },
  18443. },
  18444. [
  18445. {
  18446. name: "Nano",
  18447. height: math.unit(17, "micrometers")
  18448. },
  18449. {
  18450. name: "Micro",
  18451. height: math.unit(1.7, "mm")
  18452. },
  18453. {
  18454. name: "Small",
  18455. height: math.unit(1.7, "cm")
  18456. },
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(1.7, "m"),
  18460. default: true
  18461. },
  18462. ]
  18463. ))
  18464. characterMakers.push(() => makeCharacter(
  18465. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18466. {
  18467. front: {
  18468. height: math.unit(1.75, "meters"),
  18469. weight: math.unit(65, "kg"),
  18470. name: "Front",
  18471. image: {
  18472. source: "./media/characters/jayne-folest/front.svg",
  18473. extra: 2115 / 2007,
  18474. bottom: 0.02
  18475. }
  18476. },
  18477. back: {
  18478. height: math.unit(1.75, "meters"),
  18479. weight: math.unit(65, "kg"),
  18480. name: "Back",
  18481. image: {
  18482. source: "./media/characters/jayne-folest/back.svg",
  18483. extra: 2115 / 2007,
  18484. bottom: 0.005
  18485. }
  18486. },
  18487. frontClothed: {
  18488. height: math.unit(1.75, "meters"),
  18489. weight: math.unit(65, "kg"),
  18490. name: "Front (Clothed)",
  18491. image: {
  18492. source: "./media/characters/jayne-folest/front-clothed.svg",
  18493. extra: 2115 / 2007,
  18494. bottom: 0.035
  18495. }
  18496. },
  18497. hand: {
  18498. height: math.unit(1 / 1.260, "feet"),
  18499. name: "Hand",
  18500. image: {
  18501. source: "./media/characters/jayne-folest/hand.svg"
  18502. }
  18503. },
  18504. foot: {
  18505. height: math.unit(1 / 0.918, "feet"),
  18506. name: "Foot",
  18507. image: {
  18508. source: "./media/characters/jayne-folest/foot.svg"
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Micro",
  18515. height: math.unit(4, "cm")
  18516. },
  18517. {
  18518. name: "Normal",
  18519. height: math.unit(1.75, "meters")
  18520. },
  18521. {
  18522. name: "Macro",
  18523. height: math.unit(47.5, "meters"),
  18524. default: true
  18525. },
  18526. ]
  18527. ))
  18528. characterMakers.push(() => makeCharacter(
  18529. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18530. {
  18531. front: {
  18532. height: math.unit(180, "cm"),
  18533. weight: math.unit(70, "kg"),
  18534. name: "Front",
  18535. image: {
  18536. source: "./media/characters/algier/front.svg",
  18537. extra: 596 / 572,
  18538. bottom: 0.04
  18539. }
  18540. },
  18541. back: {
  18542. height: math.unit(180, "cm"),
  18543. weight: math.unit(70, "kg"),
  18544. name: "Back",
  18545. image: {
  18546. source: "./media/characters/algier/back.svg",
  18547. extra: 596 / 572,
  18548. bottom: 0.025
  18549. }
  18550. },
  18551. frontdressed: {
  18552. height: math.unit(180, "cm"),
  18553. weight: math.unit(150, "kg"),
  18554. name: "Front-dressed",
  18555. image: {
  18556. source: "./media/characters/algier/front-dressed.svg",
  18557. extra: 596 / 572,
  18558. bottom: 0.038
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Micro",
  18565. height: math.unit(5, "cm")
  18566. },
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(180, "cm"),
  18570. default: true
  18571. },
  18572. {
  18573. name: "Macro",
  18574. height: math.unit(64, "m")
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18580. {
  18581. upright: {
  18582. height: math.unit(7, "feet"),
  18583. weight: math.unit(300, "lb"),
  18584. name: "Upright",
  18585. image: {
  18586. source: "./media/characters/pretzel/upright.svg",
  18587. extra: 534 / 522,
  18588. bottom: 0.065
  18589. }
  18590. },
  18591. sprawling: {
  18592. height: math.unit(3.75, "feet"),
  18593. weight: math.unit(300, "lb"),
  18594. name: "Sprawling",
  18595. image: {
  18596. source: "./media/characters/pretzel/sprawling.svg",
  18597. extra: 314 / 281,
  18598. bottom: 0.1
  18599. }
  18600. },
  18601. tongue: {
  18602. height: math.unit(2, "feet"),
  18603. name: "Tongue",
  18604. image: {
  18605. source: "./media/characters/pretzel/tongue.svg"
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(7, "feet"),
  18613. default: true
  18614. },
  18615. {
  18616. name: "Oversized",
  18617. height: math.unit(15, "feet")
  18618. },
  18619. {
  18620. name: "Huge",
  18621. height: math.unit(30, "feet")
  18622. },
  18623. {
  18624. name: "Macro",
  18625. height: math.unit(250, "feet")
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18631. {
  18632. sideFront: {
  18633. height: math.unit(5 + 2 / 12, "feet"),
  18634. weight: math.unit(120, "lb"),
  18635. name: "Front Side",
  18636. image: {
  18637. source: "./media/characters/roxi/side-front.svg",
  18638. extra: 2924 / 2717,
  18639. bottom: 0.08
  18640. }
  18641. },
  18642. sideBack: {
  18643. height: math.unit(5 + 2 / 12, "feet"),
  18644. weight: math.unit(120, "lb"),
  18645. name: "Back Side",
  18646. image: {
  18647. source: "./media/characters/roxi/side-back.svg",
  18648. extra: 2904 / 2693,
  18649. bottom: 0.06
  18650. }
  18651. },
  18652. front: {
  18653. height: math.unit(5 + 2 / 12, "feet"),
  18654. weight: math.unit(120, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/roxi/front.svg",
  18658. extra: 2028 / 1907,
  18659. bottom: 0.01
  18660. }
  18661. },
  18662. frontAlt: {
  18663. height: math.unit(5 + 2 / 12, "feet"),
  18664. weight: math.unit(120, "lb"),
  18665. name: "Front (Alt)",
  18666. image: {
  18667. source: "./media/characters/roxi/front-alt.svg",
  18668. extra: 1828 / 1798,
  18669. bottom: 0.01
  18670. }
  18671. },
  18672. sitting: {
  18673. height: math.unit(2.8, "feet"),
  18674. weight: math.unit(120, "lb"),
  18675. name: "Sitting",
  18676. image: {
  18677. source: "./media/characters/roxi/sitting.svg",
  18678. extra: 2660 / 2462,
  18679. bottom: 0.1
  18680. }
  18681. },
  18682. },
  18683. [
  18684. {
  18685. name: "Normal",
  18686. height: math.unit(5 + 2 / 12, "feet"),
  18687. default: true
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18693. {
  18694. side: {
  18695. height: math.unit(55, "feet"),
  18696. weight: math.unit(153, "tons"),
  18697. name: "Side",
  18698. image: {
  18699. source: "./media/characters/shadow/side.svg",
  18700. extra: 701 / 628,
  18701. bottom: 0.02
  18702. }
  18703. },
  18704. flying: {
  18705. height: math.unit(145, "feet"),
  18706. weight: math.unit(153, "tons"),
  18707. name: "Flying",
  18708. image: {
  18709. source: "./media/characters/shadow/flying.svg"
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(55, "feet"),
  18717. default: true
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(6, "feet"),
  18726. weight: math.unit(200, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/marcie/front.svg",
  18730. extra: 960 / 876,
  18731. bottom: 58 / 1017.87
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Macro",
  18738. height: math.unit(1, "mile"),
  18739. default: true
  18740. },
  18741. ]
  18742. ))
  18743. characterMakers.push(() => makeCharacter(
  18744. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18745. {
  18746. front: {
  18747. height: math.unit(7, "feet"),
  18748. weight: math.unit(200, "lb"),
  18749. name: "Front",
  18750. image: {
  18751. source: "./media/characters/kachina/front.svg",
  18752. extra: 1290.68 / 1119,
  18753. bottom: 36.5 / 1327.18
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(7, "feet"),
  18761. default: true
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18767. {
  18768. looking: {
  18769. height: math.unit(2, "meters"),
  18770. weight: math.unit(300, "kg"),
  18771. name: "Looking",
  18772. image: {
  18773. source: "./media/characters/kash/looking.svg",
  18774. extra: 474 / 344,
  18775. bottom: 0.03
  18776. }
  18777. },
  18778. side: {
  18779. height: math.unit(2, "meters"),
  18780. weight: math.unit(300, "kg"),
  18781. name: "Side",
  18782. image: {
  18783. source: "./media/characters/kash/side.svg",
  18784. extra: 302 / 251,
  18785. bottom: 0.03
  18786. }
  18787. },
  18788. front: {
  18789. height: math.unit(2, "meters"),
  18790. weight: math.unit(300, "kg"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/kash/front.svg",
  18794. extra: 495 / 360,
  18795. bottom: 0.015
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(2, "meters"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Big",
  18807. height: math.unit(3, "meters")
  18808. },
  18809. {
  18810. name: "Large",
  18811. height: math.unit(5, "meters")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18817. {
  18818. feeding: {
  18819. height: math.unit(6.7, "feet"),
  18820. weight: math.unit(350, "lb"),
  18821. name: "Feeding",
  18822. image: {
  18823. source: "./media/characters/lalim/feeding.svg",
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Normal",
  18830. height: math.unit(6.7, "feet"),
  18831. default: true
  18832. },
  18833. ]
  18834. ))
  18835. characterMakers.push(() => makeCharacter(
  18836. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18837. {
  18838. front: {
  18839. height: math.unit(9.5, "feet"),
  18840. weight: math.unit(600, "lb"),
  18841. name: "Front",
  18842. image: {
  18843. source: "./media/characters/de'vout/front.svg",
  18844. extra: 1443 / 1328,
  18845. bottom: 0.025
  18846. }
  18847. },
  18848. back: {
  18849. height: math.unit(9.5, "feet"),
  18850. weight: math.unit(600, "lb"),
  18851. name: "Back",
  18852. image: {
  18853. source: "./media/characters/de'vout/back.svg",
  18854. extra: 1443 / 1328
  18855. }
  18856. },
  18857. frontDressed: {
  18858. height: math.unit(9.5, "feet"),
  18859. weight: math.unit(600, "lb"),
  18860. name: "Front (Dressed",
  18861. image: {
  18862. source: "./media/characters/de'vout/front-dressed.svg",
  18863. extra: 1443 / 1328,
  18864. bottom: 0.025
  18865. }
  18866. },
  18867. backDressed: {
  18868. height: math.unit(9.5, "feet"),
  18869. weight: math.unit(600, "lb"),
  18870. name: "Back (Dressed",
  18871. image: {
  18872. source: "./media/characters/de'vout/back-dressed.svg",
  18873. extra: 1443 / 1328
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(9.5, "feet"),
  18881. default: true
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18887. {
  18888. front: {
  18889. height: math.unit(8, "feet"),
  18890. weight: math.unit(225, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/talana/front.svg",
  18894. extra: 1410 / 1300,
  18895. bottom: 0.015
  18896. }
  18897. },
  18898. frontDressed: {
  18899. height: math.unit(8, "feet"),
  18900. weight: math.unit(225, "lb"),
  18901. name: "Front (Dressed",
  18902. image: {
  18903. source: "./media/characters/talana/front-dressed.svg",
  18904. extra: 1410 / 1300,
  18905. bottom: 0.015
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(8, "feet"),
  18913. default: true
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18919. {
  18920. side: {
  18921. height: math.unit(7.2, "feet"),
  18922. weight: math.unit(150, "lb"),
  18923. name: "Side",
  18924. image: {
  18925. source: "./media/characters/xeauvok/side.svg",
  18926. extra: 1975 / 1523,
  18927. bottom: 0.07
  18928. }
  18929. },
  18930. },
  18931. [
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(7.2, "feet"),
  18935. default: true
  18936. },
  18937. ]
  18938. ))
  18939. characterMakers.push(() => makeCharacter(
  18940. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18941. {
  18942. side: {
  18943. height: math.unit(4, "meters"),
  18944. weight: math.unit(2200, "kg"),
  18945. name: "Side",
  18946. image: {
  18947. source: "./media/characters/zara/side.svg",
  18948. extra: 765/744,
  18949. bottom: 156/921
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(4, "meters"),
  18957. default: true
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18963. {
  18964. side: {
  18965. height: math.unit(6, "feet"),
  18966. weight: math.unit(150, "lb"),
  18967. name: "Side",
  18968. image: {
  18969. source: "./media/characters/richard-dragon/side.svg",
  18970. extra: 845 / 340,
  18971. bottom: 0.017
  18972. }
  18973. },
  18974. maw: {
  18975. height: math.unit(2.97, "feet"),
  18976. name: "Maw",
  18977. image: {
  18978. source: "./media/characters/richard-dragon/maw.svg"
  18979. }
  18980. },
  18981. },
  18982. [
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(4, "feet"),
  18990. weight: math.unit(100, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/richard-smeargle/front.svg",
  18994. extra: 2952 / 2820,
  18995. bottom: 0.028
  18996. }
  18997. },
  18998. },
  18999. [
  19000. {
  19001. name: "Normal",
  19002. height: math.unit(4, "feet"),
  19003. default: true
  19004. },
  19005. {
  19006. name: "Dynamax",
  19007. height: math.unit(20, "meters")
  19008. },
  19009. ]
  19010. ))
  19011. characterMakers.push(() => makeCharacter(
  19012. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19013. {
  19014. front: {
  19015. height: math.unit(6, "feet"),
  19016. weight: math.unit(110, "lb"),
  19017. name: "Front",
  19018. image: {
  19019. source: "./media/characters/klay/front.svg",
  19020. extra: 962 / 883,
  19021. bottom: 0.04
  19022. }
  19023. },
  19024. back: {
  19025. height: math.unit(6, "feet"),
  19026. weight: math.unit(110, "lb"),
  19027. name: "Back",
  19028. image: {
  19029. source: "./media/characters/klay/back.svg",
  19030. extra: 962 / 883
  19031. }
  19032. },
  19033. beans: {
  19034. height: math.unit(1.15, "feet"),
  19035. name: "Beans",
  19036. image: {
  19037. source: "./media/characters/klay/beans.svg"
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Micro",
  19044. height: math.unit(6, "inches")
  19045. },
  19046. {
  19047. name: "Mini",
  19048. height: math.unit(3, "feet")
  19049. },
  19050. {
  19051. name: "Normal",
  19052. height: math.unit(6, "feet"),
  19053. default: true
  19054. },
  19055. {
  19056. name: "Big",
  19057. height: math.unit(25, "feet")
  19058. },
  19059. {
  19060. name: "Macro",
  19061. height: math.unit(100, "feet")
  19062. },
  19063. {
  19064. name: "Megamacro",
  19065. height: math.unit(400, "feet")
  19066. },
  19067. ]
  19068. ))
  19069. characterMakers.push(() => makeCharacter(
  19070. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19071. {
  19072. front: {
  19073. height: math.unit(6, "feet"),
  19074. weight: math.unit(160, "lb"),
  19075. name: "Front",
  19076. image: {
  19077. source: "./media/characters/marcus/front.svg",
  19078. extra: 734 / 676,
  19079. bottom: 0.03
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Little",
  19086. height: math.unit(6, "feet")
  19087. },
  19088. {
  19089. name: "Normal",
  19090. height: math.unit(110, "feet"),
  19091. default: true
  19092. },
  19093. {
  19094. name: "Macro",
  19095. height: math.unit(250, "feet")
  19096. },
  19097. {
  19098. name: "Megamacro",
  19099. height: math.unit(1000, "feet")
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(7, "feet"),
  19108. weight: math.unit(275, "lb"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/claude-delroute/front.svg",
  19112. extra: 902/827,
  19113. bottom: 26/928
  19114. }
  19115. },
  19116. side: {
  19117. height: math.unit(7, "feet"),
  19118. weight: math.unit(275, "lb"),
  19119. name: "Side",
  19120. image: {
  19121. source: "./media/characters/claude-delroute/side.svg",
  19122. extra: 908/853,
  19123. bottom: 16/924
  19124. }
  19125. },
  19126. back: {
  19127. height: math.unit(7, "feet"),
  19128. weight: math.unit(275, "lb"),
  19129. name: "Back",
  19130. image: {
  19131. source: "./media/characters/claude-delroute/back.svg",
  19132. extra: 911/829,
  19133. bottom: 18/929
  19134. }
  19135. },
  19136. maw: {
  19137. height: math.unit(0.6407, "meters"),
  19138. name: "Maw",
  19139. image: {
  19140. source: "./media/characters/claude-delroute/maw.svg"
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(7, "feet"),
  19148. default: true
  19149. },
  19150. {
  19151. name: "Lorge",
  19152. height: math.unit(20, "feet")
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(8 + 4 / 12, "feet"),
  19161. weight: math.unit(600, "lb"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/dragonien/front.svg",
  19165. extra: 100 / 94,
  19166. bottom: 3.3 / 103.3445
  19167. }
  19168. },
  19169. back: {
  19170. height: math.unit(8 + 4 / 12, "feet"),
  19171. weight: math.unit(600, "lb"),
  19172. name: "Back",
  19173. image: {
  19174. source: "./media/characters/dragonien/back.svg",
  19175. extra: 776 / 746,
  19176. bottom: 6.4 / 782.0616
  19177. }
  19178. },
  19179. foot: {
  19180. height: math.unit(1.54, "feet"),
  19181. name: "Foot",
  19182. image: {
  19183. source: "./media/characters/dragonien/foot.svg",
  19184. }
  19185. },
  19186. },
  19187. [
  19188. {
  19189. name: "Normal",
  19190. height: math.unit(8 + 4 / 12, "feet"),
  19191. default: true
  19192. },
  19193. {
  19194. name: "Macro",
  19195. height: math.unit(200, "feet")
  19196. },
  19197. {
  19198. name: "Megamacro",
  19199. height: math.unit(1, "mile")
  19200. },
  19201. {
  19202. name: "Gigamacro",
  19203. height: math.unit(1000, "miles")
  19204. },
  19205. ]
  19206. ))
  19207. characterMakers.push(() => makeCharacter(
  19208. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19209. {
  19210. front: {
  19211. height: math.unit(5 + 2 / 12, "feet"),
  19212. weight: math.unit(110, "lb"),
  19213. name: "Front",
  19214. image: {
  19215. source: "./media/characters/desta/front.svg",
  19216. extra: 767 / 726,
  19217. bottom: 11.7 / 779
  19218. }
  19219. },
  19220. back: {
  19221. height: math.unit(5 + 2 / 12, "feet"),
  19222. weight: math.unit(110, "lb"),
  19223. name: "Back",
  19224. image: {
  19225. source: "./media/characters/desta/back.svg",
  19226. extra: 777 / 728,
  19227. bottom: 6 / 784
  19228. }
  19229. },
  19230. frontAlt: {
  19231. height: math.unit(5 + 2 / 12, "feet"),
  19232. weight: math.unit(110, "lb"),
  19233. name: "Front",
  19234. image: {
  19235. source: "./media/characters/desta/front-alt.svg",
  19236. extra: 1482 / 1417
  19237. }
  19238. },
  19239. side: {
  19240. height: math.unit(5 + 2 / 12, "feet"),
  19241. weight: math.unit(110, "lb"),
  19242. name: "Side",
  19243. image: {
  19244. source: "./media/characters/desta/side.svg",
  19245. extra: 2579 / 2491,
  19246. bottom: 0.053
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Micro",
  19253. height: math.unit(6, "inches")
  19254. },
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(5 + 2 / 12, "feet"),
  19258. default: true
  19259. },
  19260. {
  19261. name: "Macro",
  19262. height: math.unit(62, "feet")
  19263. },
  19264. {
  19265. name: "Megamacro",
  19266. height: math.unit(1800, "feet")
  19267. },
  19268. ]
  19269. ))
  19270. characterMakers.push(() => makeCharacter(
  19271. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19272. {
  19273. front: {
  19274. height: math.unit(10, "feet"),
  19275. weight: math.unit(700, "lb"),
  19276. name: "Front",
  19277. image: {
  19278. source: "./media/characters/storm-alystar/front.svg",
  19279. extra: 2112 / 1898,
  19280. bottom: 0.034
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Micro",
  19287. height: math.unit(3.5, "inches")
  19288. },
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(10, "feet"),
  19292. default: true
  19293. },
  19294. {
  19295. name: "Macro",
  19296. height: math.unit(400, "feet")
  19297. },
  19298. {
  19299. name: "Deific",
  19300. height: math.unit(60, "miles")
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(2.35, "meters"),
  19309. weight: math.unit(119, "kg"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/ilia/front.svg",
  19313. extra: 1285 / 1255,
  19314. bottom: 0.06
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(2.35, "meters")
  19322. },
  19323. {
  19324. name: "Macro",
  19325. height: math.unit(140, "meters"),
  19326. default: true
  19327. },
  19328. {
  19329. name: "Megamacro",
  19330. height: math.unit(100, "miles")
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19336. {
  19337. front: {
  19338. height: math.unit(6 + 5 / 12, "feet"),
  19339. weight: math.unit(190, "lb"),
  19340. name: "Front",
  19341. image: {
  19342. source: "./media/characters/kingdead/front.svg",
  19343. extra: 1228 / 1177
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Micro",
  19350. height: math.unit(7, "inches")
  19351. },
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(6 + 5 / 12, "feet")
  19355. },
  19356. {
  19357. name: "Macro",
  19358. height: math.unit(150, "feet"),
  19359. default: true
  19360. },
  19361. {
  19362. name: "Megamacro",
  19363. height: math.unit(200, "miles")
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19369. {
  19370. front: {
  19371. height: math.unit(8, "feet"),
  19372. weight: math.unit(600, "lb"),
  19373. name: "Front",
  19374. image: {
  19375. source: "./media/characters/kyrehx/front.svg",
  19376. extra: 1195 / 1095,
  19377. bottom: 0.034
  19378. }
  19379. },
  19380. },
  19381. [
  19382. {
  19383. name: "Micro",
  19384. height: math.unit(2, "inches")
  19385. },
  19386. {
  19387. name: "Normal",
  19388. height: math.unit(8, "feet"),
  19389. default: true
  19390. },
  19391. {
  19392. name: "Macro",
  19393. height: math.unit(255, "feet")
  19394. },
  19395. ]
  19396. ))
  19397. characterMakers.push(() => makeCharacter(
  19398. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19399. {
  19400. front: {
  19401. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19402. weight: math.unit(184, "lb"),
  19403. name: "Front",
  19404. image: {
  19405. source: "./media/characters/xang/front.svg",
  19406. extra: 845 / 755
  19407. }
  19408. },
  19409. },
  19410. [
  19411. {
  19412. name: "Normal",
  19413. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19414. default: true
  19415. },
  19416. {
  19417. name: "Macro",
  19418. height: math.unit(0.935 * 146, "feet")
  19419. },
  19420. {
  19421. name: "Megamacro",
  19422. height: math.unit(0.935 * 3, "miles")
  19423. },
  19424. ]
  19425. ))
  19426. characterMakers.push(() => makeCharacter(
  19427. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19428. {
  19429. frontDressed: {
  19430. height: math.unit(5 + 7 / 12, "feet"),
  19431. weight: math.unit(140, "lb"),
  19432. name: "Front (Dressed)",
  19433. image: {
  19434. source: "./media/characters/doc-weardno/front-dressed.svg",
  19435. extra: 263 / 234
  19436. }
  19437. },
  19438. backDressed: {
  19439. height: math.unit(5 + 7 / 12, "feet"),
  19440. weight: math.unit(140, "lb"),
  19441. name: "Back (Dressed)",
  19442. image: {
  19443. source: "./media/characters/doc-weardno/back-dressed.svg",
  19444. extra: 266 / 238
  19445. }
  19446. },
  19447. front: {
  19448. height: math.unit(5 + 7 / 12, "feet"),
  19449. weight: math.unit(140, "lb"),
  19450. name: "Front",
  19451. image: {
  19452. source: "./media/characters/doc-weardno/front.svg",
  19453. extra: 254 / 233
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Micro",
  19460. height: math.unit(3, "inches")
  19461. },
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(5 + 7 / 12, "feet"),
  19465. default: true
  19466. },
  19467. {
  19468. name: "Macro",
  19469. height: math.unit(25, "feet")
  19470. },
  19471. {
  19472. name: "Megamacro",
  19473. height: math.unit(2, "miles")
  19474. },
  19475. ]
  19476. ))
  19477. characterMakers.push(() => makeCharacter(
  19478. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19479. {
  19480. front: {
  19481. height: math.unit(6 + 2 / 12, "feet"),
  19482. weight: math.unit(153, "lb"),
  19483. name: "Front",
  19484. image: {
  19485. source: "./media/characters/seth-whilst/front.svg",
  19486. bottom: 0.07
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Micro",
  19493. height: math.unit(5, "inches")
  19494. },
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(6 + 2 / 12, "feet"),
  19498. default: true
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(3, "inches"),
  19507. weight: math.unit(8, "grams"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/pocket-jabari/front.svg",
  19511. extra: 1024 / 974,
  19512. bottom: 0.039
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Minimicro",
  19519. height: math.unit(8, "mm")
  19520. },
  19521. {
  19522. name: "Micro",
  19523. height: math.unit(3, "inches"),
  19524. default: true
  19525. },
  19526. {
  19527. name: "Normal",
  19528. height: math.unit(3, "feet")
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19534. {
  19535. frontDressed: {
  19536. height: math.unit(15, "feet"),
  19537. weight: math.unit(3280, "lb"),
  19538. name: "Front (Dressed)",
  19539. image: {
  19540. source: "./media/characters/sapphy/front-dressed.svg",
  19541. extra: 1951/1654,
  19542. bottom: 194/2145
  19543. },
  19544. form: "anthro",
  19545. default: true
  19546. },
  19547. backDressed: {
  19548. height: math.unit(15, "feet"),
  19549. weight: math.unit(3280, "lb"),
  19550. name: "Back (Dressed)",
  19551. image: {
  19552. source: "./media/characters/sapphy/back-dressed.svg",
  19553. extra: 2058/1918,
  19554. bottom: 125/2183
  19555. },
  19556. form: "anthro"
  19557. },
  19558. frontNude: {
  19559. height: math.unit(15, "feet"),
  19560. weight: math.unit(3280, "lb"),
  19561. name: "Front (Nude)",
  19562. image: {
  19563. source: "./media/characters/sapphy/front-nude.svg",
  19564. extra: 1951/1654,
  19565. bottom: 194/2145
  19566. },
  19567. form: "anthro"
  19568. },
  19569. backNude: {
  19570. height: math.unit(15, "feet"),
  19571. weight: math.unit(3280, "lb"),
  19572. name: "Back (Nude)",
  19573. image: {
  19574. source: "./media/characters/sapphy/back-nude.svg",
  19575. extra: 2058/1918,
  19576. bottom: 125/2183
  19577. },
  19578. form: "anthro"
  19579. },
  19580. full: {
  19581. height: math.unit(15, "feet"),
  19582. weight: math.unit(3280, "lb"),
  19583. name: "Full",
  19584. image: {
  19585. source: "./media/characters/sapphy/full.svg",
  19586. extra: 1396/1317,
  19587. bottom: 44/1440
  19588. },
  19589. form: "anthro"
  19590. },
  19591. dick: {
  19592. height: math.unit(3.8, "feet"),
  19593. name: "Dick",
  19594. image: {
  19595. source: "./media/characters/sapphy/dick.svg"
  19596. },
  19597. form: "anthro"
  19598. },
  19599. feral: {
  19600. height: math.unit(35, "feet"),
  19601. weight: math.unit(160, "tons"),
  19602. name: "Feral",
  19603. image: {
  19604. source: "./media/characters/sapphy/feral.svg",
  19605. extra: 1050/573,
  19606. bottom: 60/1110
  19607. },
  19608. form: "feral",
  19609. default: true
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(15, "feet"),
  19616. form: "anthro"
  19617. },
  19618. {
  19619. name: "Casual Macro",
  19620. height: math.unit(120, "feet"),
  19621. form: "anthro"
  19622. },
  19623. {
  19624. name: "Macro",
  19625. height: math.unit(2150, "feet"),
  19626. default: true,
  19627. form: "anthro"
  19628. },
  19629. {
  19630. name: "Megamacro",
  19631. height: math.unit(8, "miles"),
  19632. form: "anthro"
  19633. },
  19634. {
  19635. name: "Galaxy Mom",
  19636. height: math.unit(6, "megalightyears"),
  19637. form: "anthro"
  19638. },
  19639. {
  19640. name: "Normal",
  19641. height: math.unit(35, "feet"),
  19642. form: "feral",
  19643. default: true
  19644. },
  19645. {
  19646. name: "Macro",
  19647. height: math.unit(300, "feet"),
  19648. form: "feral"
  19649. },
  19650. {
  19651. name: "Galaxy Mom",
  19652. height: math.unit(10, "megalightyears"),
  19653. form: "feral"
  19654. },
  19655. ],
  19656. {
  19657. "anthro": {
  19658. name: "Anthro",
  19659. default: true
  19660. },
  19661. "feral": {
  19662. name: "Feral"
  19663. }
  19664. }
  19665. ))
  19666. characterMakers.push(() => makeCharacter(
  19667. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19668. {
  19669. front: {
  19670. height: math.unit(6, "feet"),
  19671. weight: math.unit(170, "lb"),
  19672. name: "Front",
  19673. image: {
  19674. source: "./media/characters/kiro/front.svg",
  19675. extra: 1064 / 1012,
  19676. bottom: 0.052
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Micro",
  19683. height: math.unit(6, "inches")
  19684. },
  19685. {
  19686. name: "Normal",
  19687. height: math.unit(6, "feet"),
  19688. default: true
  19689. },
  19690. {
  19691. name: "Macro",
  19692. height: math.unit(72, "feet")
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(5 + 9 / 12, "feet"),
  19701. weight: math.unit(175, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/irishfox/front.svg",
  19705. extra: 1912 / 1680,
  19706. bottom: 0.02
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Nano",
  19713. height: math.unit(1, "mm")
  19714. },
  19715. {
  19716. name: "Micro",
  19717. height: math.unit(2, "inches")
  19718. },
  19719. {
  19720. name: "Normal",
  19721. height: math.unit(5 + 9 / 12, "feet"),
  19722. default: true
  19723. },
  19724. {
  19725. name: "Macro",
  19726. height: math.unit(45, "feet")
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(6 + 1 / 12, "feet"),
  19735. weight: math.unit(75, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/aronai-sieyes/front.svg",
  19739. extra: 1532/1450,
  19740. bottom: 42/1574
  19741. }
  19742. },
  19743. side: {
  19744. height: math.unit(6 + 1 / 12, "feet"),
  19745. weight: math.unit(75, "lb"),
  19746. name: "Side",
  19747. image: {
  19748. source: "./media/characters/aronai-sieyes/side.svg",
  19749. extra: 1422/1365,
  19750. bottom: 148/1570
  19751. }
  19752. },
  19753. back: {
  19754. height: math.unit(6 + 1 / 12, "feet"),
  19755. weight: math.unit(75, "lb"),
  19756. name: "Back",
  19757. image: {
  19758. source: "./media/characters/aronai-sieyes/back.svg",
  19759. extra: 1526/1464,
  19760. bottom: 51/1577
  19761. }
  19762. },
  19763. dressed: {
  19764. height: math.unit(6 + 1 / 12, "feet"),
  19765. weight: math.unit(75, "lb"),
  19766. name: "Dressed",
  19767. image: {
  19768. source: "./media/characters/aronai-sieyes/dressed.svg",
  19769. extra: 1559/1483,
  19770. bottom: 39/1598
  19771. }
  19772. },
  19773. slit: {
  19774. height: math.unit(1.3, "feet"),
  19775. name: "Slit",
  19776. image: {
  19777. source: "./media/characters/aronai-sieyes/slit.svg"
  19778. }
  19779. },
  19780. slitSpread: {
  19781. height: math.unit(0.9, "feet"),
  19782. name: "Slit (Spread)",
  19783. image: {
  19784. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19785. }
  19786. },
  19787. rump: {
  19788. height: math.unit(1.3, "feet"),
  19789. name: "Rump",
  19790. image: {
  19791. source: "./media/characters/aronai-sieyes/rump.svg"
  19792. }
  19793. },
  19794. maw: {
  19795. height: math.unit(1.25, "feet"),
  19796. name: "Maw",
  19797. image: {
  19798. source: "./media/characters/aronai-sieyes/maw.svg"
  19799. }
  19800. },
  19801. feral: {
  19802. height: math.unit(18, "feet"),
  19803. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19804. name: "Feral",
  19805. image: {
  19806. source: "./media/characters/aronai-sieyes/feral.svg",
  19807. extra: 1530 / 1240,
  19808. bottom: 0.035
  19809. }
  19810. },
  19811. },
  19812. [
  19813. {
  19814. name: "Micro",
  19815. height: math.unit(2, "inches")
  19816. },
  19817. {
  19818. name: "Normal",
  19819. height: math.unit(6 + 1 / 12, "feet"),
  19820. default: true
  19821. }
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19826. {
  19827. front: {
  19828. height: math.unit(12, "feet"),
  19829. weight: math.unit(410, "kg"),
  19830. name: "Front",
  19831. image: {
  19832. source: "./media/characters/xuna/front.svg",
  19833. extra: 2184 / 1980
  19834. }
  19835. },
  19836. side: {
  19837. height: math.unit(12, "feet"),
  19838. weight: math.unit(410, "kg"),
  19839. name: "Side",
  19840. image: {
  19841. source: "./media/characters/xuna/side.svg",
  19842. extra: 2184 / 1980
  19843. }
  19844. },
  19845. back: {
  19846. height: math.unit(12, "feet"),
  19847. weight: math.unit(410, "kg"),
  19848. name: "Back",
  19849. image: {
  19850. source: "./media/characters/xuna/back.svg",
  19851. extra: 2184 / 1980
  19852. }
  19853. },
  19854. },
  19855. [
  19856. {
  19857. name: "Nano glow",
  19858. height: math.unit(10, "nm")
  19859. },
  19860. {
  19861. name: "Micro floof",
  19862. height: math.unit(0.3, "m")
  19863. },
  19864. {
  19865. name: "Huggable softy boi",
  19866. height: math.unit(3.6576, "m"),
  19867. default: true
  19868. },
  19869. {
  19870. name: "Admirable floof",
  19871. height: math.unit(80, "meters")
  19872. },
  19873. {
  19874. name: "Gentle macro",
  19875. height: math.unit(300, "meters")
  19876. },
  19877. {
  19878. name: "Very careful floof",
  19879. height: math.unit(3200, "meters")
  19880. },
  19881. {
  19882. name: "The mega floof",
  19883. height: math.unit(36000, "meters")
  19884. },
  19885. {
  19886. name: "Giga-fur-Wicker",
  19887. height: math.unit(4800000, "meters")
  19888. },
  19889. {
  19890. name: "Licky world",
  19891. height: math.unit(20000000, "meters")
  19892. },
  19893. {
  19894. name: "Floofy cyan sun",
  19895. height: math.unit(1500000000, "meters")
  19896. },
  19897. {
  19898. name: "Milky Wicker",
  19899. height: math.unit(1000000000000000000000, "meters")
  19900. },
  19901. {
  19902. name: "The observing Wicker",
  19903. height: math.unit(999999999999999999999999999, "meters")
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19909. {
  19910. front: {
  19911. height: math.unit(5 + 9 / 12, "feet"),
  19912. weight: math.unit(150, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/arokha-sieyes/front.svg",
  19916. extra: 1425 / 1284,
  19917. bottom: 0.05
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(5 + 9 / 12, "feet")
  19925. },
  19926. {
  19927. name: "Macro",
  19928. height: math.unit(30, "meters"),
  19929. default: true
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19935. {
  19936. front: {
  19937. height: math.unit(6, "feet"),
  19938. weight: math.unit(180, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/arokh-sieyes/front.svg",
  19942. extra: 1830 / 1769,
  19943. bottom: 0.01
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Normal",
  19950. height: math.unit(6, "feet")
  19951. },
  19952. {
  19953. name: "Macro",
  19954. height: math.unit(30, "meters"),
  19955. default: true
  19956. },
  19957. ]
  19958. ))
  19959. characterMakers.push(() => makeCharacter(
  19960. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19961. {
  19962. side: {
  19963. height: math.unit(13 + 1 / 12, "feet"),
  19964. weight: math.unit(8.5, "tonnes"),
  19965. name: "Side",
  19966. image: {
  19967. source: "./media/characters/goldeneye/side.svg",
  19968. extra: 1182 / 778,
  19969. bottom: 0.067
  19970. }
  19971. },
  19972. paw: {
  19973. height: math.unit(3.4, "feet"),
  19974. name: "Paw",
  19975. image: {
  19976. source: "./media/characters/goldeneye/paw.svg"
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Normal",
  19983. height: math.unit(13 + 1 / 12, "feet"),
  19984. default: true
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19990. {
  19991. front: {
  19992. height: math.unit(6 + 1 / 12, "feet"),
  19993. weight: math.unit(210, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/leonardo-lycheborne/front.svg",
  19997. extra: 776/723,
  19998. bottom: 34/810
  19999. }
  20000. },
  20001. side: {
  20002. height: math.unit(6 + 1 / 12, "feet"),
  20003. weight: math.unit(210, "lb"),
  20004. name: "Side",
  20005. image: {
  20006. source: "./media/characters/leonardo-lycheborne/side.svg",
  20007. extra: 780/728,
  20008. bottom: 12/792
  20009. }
  20010. },
  20011. back: {
  20012. height: math.unit(6 + 1 / 12, "feet"),
  20013. weight: math.unit(210, "lb"),
  20014. name: "Back",
  20015. image: {
  20016. source: "./media/characters/leonardo-lycheborne/back.svg",
  20017. extra: 775/721,
  20018. bottom: 17/792
  20019. }
  20020. },
  20021. hand: {
  20022. height: math.unit(1.08, "feet"),
  20023. name: "Hand",
  20024. image: {
  20025. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20026. }
  20027. },
  20028. foot: {
  20029. height: math.unit(1.32, "feet"),
  20030. name: "Foot",
  20031. image: {
  20032. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20033. }
  20034. },
  20035. maw: {
  20036. height: math.unit(1, "feet"),
  20037. name: "Maw",
  20038. image: {
  20039. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20040. }
  20041. },
  20042. were: {
  20043. height: math.unit(20, "feet"),
  20044. weight: math.unit(7800, "lb"),
  20045. name: "Were",
  20046. image: {
  20047. source: "./media/characters/leonardo-lycheborne/were.svg",
  20048. extra: 1224/1165,
  20049. bottom: 72/1296
  20050. }
  20051. },
  20052. feral: {
  20053. height: math.unit(7.5, "feet"),
  20054. weight: math.unit(600, "lb"),
  20055. name: "Feral",
  20056. image: {
  20057. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20058. extra: 797/702,
  20059. bottom: 139/936
  20060. }
  20061. },
  20062. taur: {
  20063. height: math.unit(11, "feet"),
  20064. weight: math.unit(3300, "lb"),
  20065. name: "Taur",
  20066. image: {
  20067. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20068. extra: 1271/1197,
  20069. bottom: 47/1318
  20070. }
  20071. },
  20072. barghest: {
  20073. height: math.unit(11, "feet"),
  20074. weight: math.unit(1300, "lb"),
  20075. name: "Barghest",
  20076. image: {
  20077. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20078. extra: 1291/1204,
  20079. bottom: 37/1328
  20080. }
  20081. },
  20082. dick: {
  20083. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20084. name: "Dick",
  20085. image: {
  20086. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20087. }
  20088. },
  20089. dickWere: {
  20090. height: math.unit((20) / 3.8, "feet"),
  20091. name: "Dick (Were)",
  20092. image: {
  20093. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(6 + 1 / 12, "feet"),
  20101. default: true
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20107. {
  20108. front: {
  20109. height: math.unit(10, "feet"),
  20110. weight: math.unit(350, "lb"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/jet/front.svg",
  20114. extra: 2050 / 1980,
  20115. bottom: 0.013
  20116. }
  20117. },
  20118. back: {
  20119. height: math.unit(10, "feet"),
  20120. weight: math.unit(350, "lb"),
  20121. name: "Back",
  20122. image: {
  20123. source: "./media/characters/jet/back.svg",
  20124. extra: 2050 / 1980,
  20125. bottom: 0.013
  20126. }
  20127. },
  20128. },
  20129. [
  20130. {
  20131. name: "Micro",
  20132. height: math.unit(6, "inches")
  20133. },
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(10, "feet"),
  20137. default: true
  20138. },
  20139. {
  20140. name: "Macro",
  20141. height: math.unit(100, "feet")
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20147. {
  20148. front: {
  20149. height: math.unit(15, "feet"),
  20150. weight: math.unit(2800, "lb"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/tanarath/front.svg",
  20154. extra: 2392 / 2220,
  20155. bottom: 0.03
  20156. }
  20157. },
  20158. back: {
  20159. height: math.unit(15, "feet"),
  20160. weight: math.unit(2800, "lb"),
  20161. name: "Back",
  20162. image: {
  20163. source: "./media/characters/tanarath/back.svg",
  20164. extra: 2392 / 2220,
  20165. bottom: 0.03
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(15, "feet"),
  20173. default: true
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20179. {
  20180. front: {
  20181. height: math.unit(7 + 1 / 12, "feet"),
  20182. weight: math.unit(175, "lb"),
  20183. name: "Front",
  20184. image: {
  20185. source: "./media/characters/patty-cattybatty/front.svg",
  20186. extra: 908 / 874,
  20187. bottom: 0.025
  20188. }
  20189. },
  20190. },
  20191. [
  20192. {
  20193. name: "Micro",
  20194. height: math.unit(1, "inch")
  20195. },
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(7 + 1 / 12, "feet")
  20199. },
  20200. {
  20201. name: "Mini Macro",
  20202. height: math.unit(155, "feet")
  20203. },
  20204. {
  20205. name: "Macro",
  20206. height: math.unit(1077, "feet")
  20207. },
  20208. {
  20209. name: "Mega Macro",
  20210. height: math.unit(47650, "feet"),
  20211. default: true
  20212. },
  20213. {
  20214. name: "Giga Macro",
  20215. height: math.unit(440, "miles")
  20216. },
  20217. {
  20218. name: "Tera Macro",
  20219. height: math.unit(8700, "miles")
  20220. },
  20221. {
  20222. name: "Planetary Macro",
  20223. height: math.unit(32700, "miles")
  20224. },
  20225. {
  20226. name: "Solar Macro",
  20227. height: math.unit(550000, "miles")
  20228. },
  20229. {
  20230. name: "Celestial Macro",
  20231. height: math.unit(2.5, "AU")
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20237. {
  20238. front: {
  20239. height: math.unit(4 + 5 / 12, "feet"),
  20240. weight: math.unit(90, "lb"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/cappu/front.svg",
  20244. extra: 1247 / 1152,
  20245. bottom: 0.012
  20246. }
  20247. },
  20248. },
  20249. [
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(4 + 5 / 12, "feet"),
  20253. default: true
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20259. {
  20260. frontDressed: {
  20261. height: math.unit(70, "cm"),
  20262. weight: math.unit(6, "kg"),
  20263. name: "Front (Dressed)",
  20264. image: {
  20265. source: "./media/characters/sebi/front-dressed.svg",
  20266. extra: 713.5 / 686.5,
  20267. bottom: 0.003
  20268. }
  20269. },
  20270. front: {
  20271. height: math.unit(70, "cm"),
  20272. weight: math.unit(5, "kg"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/sebi/front.svg",
  20276. extra: 713.5 / 686.5,
  20277. bottom: 0.003
  20278. }
  20279. }
  20280. },
  20281. [
  20282. {
  20283. name: "Normal",
  20284. height: math.unit(70, "cm"),
  20285. default: true
  20286. },
  20287. {
  20288. name: "Macro",
  20289. height: math.unit(8, "meters")
  20290. },
  20291. ]
  20292. ))
  20293. characterMakers.push(() => makeCharacter(
  20294. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20295. {
  20296. front: {
  20297. height: math.unit(6, "feet"),
  20298. weight: math.unit(150, "lb"),
  20299. name: "Front",
  20300. image: {
  20301. source: "./media/characters/typhek/front.svg",
  20302. extra: 1948 / 1929,
  20303. bottom: 0.025
  20304. }
  20305. },
  20306. side: {
  20307. height: math.unit(6, "feet"),
  20308. weight: math.unit(150, "lb"),
  20309. name: "Side",
  20310. image: {
  20311. source: "./media/characters/typhek/side.svg",
  20312. extra: 2034 / 2010,
  20313. bottom: 0.003
  20314. }
  20315. },
  20316. back: {
  20317. height: math.unit(6, "feet"),
  20318. weight: math.unit(150, "lb"),
  20319. name: "Back",
  20320. image: {
  20321. source: "./media/characters/typhek/back.svg",
  20322. extra: 2005 / 1978,
  20323. bottom: 0.004
  20324. }
  20325. },
  20326. palm: {
  20327. height: math.unit(1.2, "feet"),
  20328. name: "Palm",
  20329. image: {
  20330. source: "./media/characters/typhek/palm.svg"
  20331. }
  20332. },
  20333. fist: {
  20334. height: math.unit(1.1, "feet"),
  20335. name: "Fist",
  20336. image: {
  20337. source: "./media/characters/typhek/fist.svg"
  20338. }
  20339. },
  20340. foot: {
  20341. height: math.unit(1.57, "feet"),
  20342. name: "Foot",
  20343. image: {
  20344. source: "./media/characters/typhek/foot.svg"
  20345. }
  20346. },
  20347. sole: {
  20348. height: math.unit(2.05, "feet"),
  20349. name: "Sole",
  20350. image: {
  20351. source: "./media/characters/typhek/sole.svg"
  20352. }
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Macro",
  20358. height: math.unit(40, "stories"),
  20359. default: true
  20360. },
  20361. {
  20362. name: "Megamacro",
  20363. height: math.unit(1, "mile")
  20364. },
  20365. {
  20366. name: "Gigamacro",
  20367. height: math.unit(4000, "solarradii")
  20368. },
  20369. {
  20370. name: "Universal",
  20371. height: math.unit(1.1, "universes")
  20372. }
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20377. {
  20378. side: {
  20379. height: math.unit(5 + 7 / 12, "feet"),
  20380. weight: math.unit(150, "lb"),
  20381. name: "Side",
  20382. image: {
  20383. source: "./media/characters/kassy/side.svg",
  20384. extra: 1280 / 1225,
  20385. bottom: 0.002
  20386. }
  20387. },
  20388. front: {
  20389. height: math.unit(5 + 7 / 12, "feet"),
  20390. weight: math.unit(150, "lb"),
  20391. name: "Front",
  20392. image: {
  20393. source: "./media/characters/kassy/front.svg",
  20394. extra: 1280 / 1225,
  20395. bottom: 0.025
  20396. }
  20397. },
  20398. back: {
  20399. height: math.unit(5 + 7 / 12, "feet"),
  20400. weight: math.unit(150, "lb"),
  20401. name: "Back",
  20402. image: {
  20403. source: "./media/characters/kassy/back.svg",
  20404. extra: 1280 / 1225,
  20405. bottom: 0.002
  20406. }
  20407. },
  20408. foot: {
  20409. height: math.unit(1.266, "feet"),
  20410. name: "Foot",
  20411. image: {
  20412. source: "./media/characters/kassy/foot.svg"
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(5 + 7 / 12, "feet")
  20420. },
  20421. {
  20422. name: "Macro",
  20423. height: math.unit(137, "feet"),
  20424. default: true
  20425. },
  20426. {
  20427. name: "Megamacro",
  20428. height: math.unit(1, "mile")
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(6 + 1 / 12, "feet"),
  20437. weight: math.unit(200, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/neil/front.svg",
  20441. extra: 1326 / 1250,
  20442. bottom: 0.023
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(6 + 1 / 12, "feet"),
  20450. default: true
  20451. },
  20452. {
  20453. name: "Macro",
  20454. height: math.unit(200, "feet")
  20455. },
  20456. ]
  20457. ))
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(5 + 9 / 12, "feet"),
  20463. weight: math.unit(190, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/atticus/front.svg",
  20467. extra: 2934 / 2785,
  20468. bottom: 0.025
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Normal",
  20475. height: math.unit(5 + 9 / 12, "feet"),
  20476. default: true
  20477. },
  20478. {
  20479. name: "Macro",
  20480. height: math.unit(180, "feet")
  20481. },
  20482. ]
  20483. ))
  20484. characterMakers.push(() => makeCharacter(
  20485. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20486. {
  20487. side: {
  20488. height: math.unit(9, "feet"),
  20489. weight: math.unit(650, "lb"),
  20490. name: "Side",
  20491. image: {
  20492. source: "./media/characters/milo/side.svg",
  20493. extra: 2644 / 2310,
  20494. bottom: 0.032
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(9, "feet"),
  20502. default: true
  20503. },
  20504. {
  20505. name: "Macro",
  20506. height: math.unit(300, "feet")
  20507. },
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20512. {
  20513. side: {
  20514. height: math.unit(8, "meters"),
  20515. weight: math.unit(90000, "kg"),
  20516. name: "Side",
  20517. image: {
  20518. source: "./media/characters/ijzer/side.svg",
  20519. extra: 2756 / 1600,
  20520. bottom: 0.01
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Small",
  20527. height: math.unit(3, "meters")
  20528. },
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(8, "meters"),
  20532. default: true
  20533. },
  20534. {
  20535. name: "Normal+",
  20536. height: math.unit(10, "meters")
  20537. },
  20538. {
  20539. name: "Bigger",
  20540. height: math.unit(24, "meters")
  20541. },
  20542. {
  20543. name: "Huge",
  20544. height: math.unit(80, "meters")
  20545. },
  20546. ]
  20547. ))
  20548. characterMakers.push(() => makeCharacter(
  20549. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20550. {
  20551. front: {
  20552. height: math.unit(6 + 2 / 12, "feet"),
  20553. weight: math.unit(153, "lb"),
  20554. name: "Front",
  20555. image: {
  20556. source: "./media/characters/luca-cervicum/front.svg",
  20557. extra: 370 / 327,
  20558. bottom: 0.015
  20559. }
  20560. },
  20561. back: {
  20562. height: math.unit(6 + 2 / 12, "feet"),
  20563. weight: math.unit(153, "lb"),
  20564. name: "Back",
  20565. image: {
  20566. source: "./media/characters/luca-cervicum/back.svg",
  20567. extra: 367 / 333,
  20568. bottom: 0.005
  20569. }
  20570. },
  20571. frontGear: {
  20572. height: math.unit(6 + 2 / 12, "feet"),
  20573. weight: math.unit(173, "lb"),
  20574. name: "Front (Gear)",
  20575. image: {
  20576. source: "./media/characters/luca-cervicum/front-gear.svg",
  20577. extra: 377 / 333,
  20578. bottom: 0.006
  20579. }
  20580. },
  20581. },
  20582. [
  20583. {
  20584. name: "Normal",
  20585. height: math.unit(6 + 2 / 12, "feet"),
  20586. default: true
  20587. },
  20588. ]
  20589. ))
  20590. characterMakers.push(() => makeCharacter(
  20591. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20592. {
  20593. front: {
  20594. height: math.unit(6 + 1 / 12, "feet"),
  20595. weight: math.unit(304, "lb"),
  20596. name: "Front",
  20597. image: {
  20598. source: "./media/characters/oliver/front.svg",
  20599. extra: 157 / 143,
  20600. bottom: 0.08
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "Normal",
  20607. height: math.unit(6 + 1 / 12, "feet"),
  20608. default: true
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20614. {
  20615. front: {
  20616. height: math.unit(5 + 7 / 12, "feet"),
  20617. weight: math.unit(140, "lb"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/shane/front.svg",
  20621. extra: 304 / 289,
  20622. bottom: 0.005
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Normal",
  20629. height: math.unit(5 + 7 / 12, "feet"),
  20630. default: true
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20636. {
  20637. front: {
  20638. height: math.unit(5 + 9 / 12, "feet"),
  20639. weight: math.unit(178, "lb"),
  20640. name: "Front",
  20641. image: {
  20642. source: "./media/characters/shin/front.svg",
  20643. extra: 159 / 151,
  20644. bottom: 0.015
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Normal",
  20651. height: math.unit(5 + 9 / 12, "feet"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(5 + 10 / 12, "feet"),
  20661. weight: math.unit(168, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/xerxes/front.svg",
  20665. extra: 282 / 260,
  20666. bottom: 0.045
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(5 + 10 / 12, "feet"),
  20674. default: true
  20675. },
  20676. ]
  20677. ))
  20678. characterMakers.push(() => makeCharacter(
  20679. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20680. {
  20681. front: {
  20682. height: math.unit(6 + 7 / 12, "feet"),
  20683. weight: math.unit(208, "lb"),
  20684. name: "Front",
  20685. image: {
  20686. source: "./media/characters/chaska/front.svg",
  20687. extra: 332 / 319,
  20688. bottom: 0.015
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(6 + 7 / 12, "feet"),
  20696. default: true
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(5 + 8 / 12, "feet"),
  20705. weight: math.unit(208, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/enuk/front.svg",
  20709. extra: 437 / 406,
  20710. bottom: 0.02
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(5 + 8 / 12, "feet"),
  20718. default: true
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20724. {
  20725. front: {
  20726. height: math.unit(5 + 10 / 12, "feet"),
  20727. weight: math.unit(252, "lb"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/bruun/front.svg",
  20731. extra: 197 / 187,
  20732. bottom: 0.012
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(5 + 10 / 12, "feet"),
  20740. default: true
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20746. {
  20747. front: {
  20748. height: math.unit(6 + 10 / 12, "feet"),
  20749. weight: math.unit(255, "lb"),
  20750. name: "Front",
  20751. image: {
  20752. source: "./media/characters/alexeev/front.svg",
  20753. extra: 213 / 200,
  20754. bottom: 0.05
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Normal",
  20761. height: math.unit(6 + 10 / 12, "feet"),
  20762. default: true
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20768. {
  20769. front: {
  20770. height: math.unit(2 + 8 / 12, "feet"),
  20771. weight: math.unit(22, "lb"),
  20772. name: "Front",
  20773. image: {
  20774. source: "./media/characters/evelyn/front.svg",
  20775. extra: 208 / 180
  20776. }
  20777. },
  20778. },
  20779. [
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(2 + 8 / 12, "feet"),
  20783. default: true
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20789. {
  20790. front: {
  20791. height: math.unit(5 + 9 / 12, "feet"),
  20792. weight: math.unit(139, "lb"),
  20793. name: "Front",
  20794. image: {
  20795. source: "./media/characters/inca/front.svg",
  20796. extra: 294 / 291,
  20797. bottom: 0.03
  20798. }
  20799. },
  20800. },
  20801. [
  20802. {
  20803. name: "Normal",
  20804. height: math.unit(5 + 9 / 12, "feet"),
  20805. default: true
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20811. {
  20812. front: {
  20813. height: math.unit(6 + 3 / 12, "feet"),
  20814. weight: math.unit(185, "lb"),
  20815. name: "Front",
  20816. image: {
  20817. source: "./media/characters/mera/front.svg",
  20818. extra: 291 / 277,
  20819. bottom: 0.03
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(6 + 3 / 12, "feet"),
  20827. default: true
  20828. },
  20829. ]
  20830. ))
  20831. characterMakers.push(() => makeCharacter(
  20832. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20833. {
  20834. front: {
  20835. height: math.unit(6 + 7 / 12, "feet"),
  20836. weight: math.unit(160, "lb"),
  20837. name: "Front",
  20838. image: {
  20839. source: "./media/characters/ceres/front.svg",
  20840. extra: 1023 / 950,
  20841. bottom: 0.027
  20842. }
  20843. },
  20844. back: {
  20845. height: math.unit(6 + 7 / 12, "feet"),
  20846. weight: math.unit(160, "lb"),
  20847. name: "Back",
  20848. image: {
  20849. source: "./media/characters/ceres/back.svg",
  20850. extra: 1023 / 950
  20851. }
  20852. },
  20853. },
  20854. [
  20855. {
  20856. name: "Normal",
  20857. height: math.unit(6 + 7 / 12, "feet"),
  20858. default: true
  20859. },
  20860. ]
  20861. ))
  20862. characterMakers.push(() => makeCharacter(
  20863. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20864. {
  20865. front: {
  20866. height: math.unit(5 + 10 / 12, "feet"),
  20867. weight: math.unit(150, "lb"),
  20868. name: "Front",
  20869. image: {
  20870. source: "./media/characters/kris/front.svg",
  20871. extra: 885 / 803,
  20872. bottom: 0.03
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(5 + 10 / 12, "feet"),
  20880. default: true
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20886. {
  20887. front: {
  20888. height: math.unit(7, "feet"),
  20889. weight: math.unit(120, "kg"),
  20890. name: "Front",
  20891. image: {
  20892. source: "./media/characters/taluthus/front.svg",
  20893. extra: 903 / 833,
  20894. bottom: 0.015
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Normal",
  20901. height: math.unit(7, "feet"),
  20902. default: true
  20903. },
  20904. {
  20905. name: "Macro",
  20906. height: math.unit(300, "feet")
  20907. },
  20908. ]
  20909. ))
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20912. {
  20913. front: {
  20914. height: math.unit(5 + 9 / 12, "feet"),
  20915. weight: math.unit(145, "lb"),
  20916. name: "Front",
  20917. image: {
  20918. source: "./media/characters/dawn/front.svg",
  20919. extra: 2094 / 2016,
  20920. bottom: 0.025
  20921. }
  20922. },
  20923. back: {
  20924. height: math.unit(5 + 9 / 12, "feet"),
  20925. weight: math.unit(160, "lb"),
  20926. name: "Back",
  20927. image: {
  20928. source: "./media/characters/dawn/back.svg",
  20929. extra: 2112 / 2080,
  20930. bottom: 0.005
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(6 + 7 / 12, "feet"),
  20938. default: true
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20944. {
  20945. anthro: {
  20946. height: math.unit(8 + 3 / 12, "feet"),
  20947. weight: math.unit(450, "lb"),
  20948. name: "Anthro",
  20949. image: {
  20950. source: "./media/characters/arador/anthro.svg",
  20951. extra: 1835 / 1718,
  20952. bottom: 0.025
  20953. }
  20954. },
  20955. feral: {
  20956. height: math.unit(4, "feet"),
  20957. weight: math.unit(200, "lb"),
  20958. name: "Feral",
  20959. image: {
  20960. source: "./media/characters/arador/feral.svg",
  20961. extra: 1683 / 1514,
  20962. bottom: 0.07
  20963. }
  20964. },
  20965. },
  20966. [
  20967. {
  20968. name: "Normal",
  20969. height: math.unit(8 + 3 / 12, "feet")
  20970. },
  20971. {
  20972. name: "Macro",
  20973. height: math.unit(82.5, "feet"),
  20974. default: true
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20980. {
  20981. front: {
  20982. height: math.unit(5 + 10 / 12, "feet"),
  20983. weight: math.unit(125, "lb"),
  20984. name: "Front",
  20985. image: {
  20986. source: "./media/characters/dharsi/front.svg",
  20987. extra: 716 / 630,
  20988. bottom: 0.035
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Nano",
  20995. height: math.unit(100, "nm")
  20996. },
  20997. {
  20998. name: "Micro",
  20999. height: math.unit(2, "inches")
  21000. },
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(5 + 10 / 12, "feet"),
  21004. default: true
  21005. },
  21006. {
  21007. name: "Macro",
  21008. height: math.unit(1000, "feet")
  21009. },
  21010. {
  21011. name: "Megamacro",
  21012. height: math.unit(10, "miles")
  21013. },
  21014. {
  21015. name: "Gigamacro",
  21016. height: math.unit(3000, "miles")
  21017. },
  21018. {
  21019. name: "Teramacro",
  21020. height: math.unit(500000, "miles")
  21021. },
  21022. {
  21023. name: "Teramacro+",
  21024. height: math.unit(30, "galaxies")
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(6, "feet"),
  21033. weight: math.unit(150, "lb"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/deathy/front.svg",
  21037. extra: 1552 / 1463,
  21038. bottom: 0.025
  21039. }
  21040. },
  21041. side: {
  21042. height: math.unit(6, "feet"),
  21043. weight: math.unit(150, "lb"),
  21044. name: "Side",
  21045. image: {
  21046. source: "./media/characters/deathy/side.svg",
  21047. extra: 1604 / 1455,
  21048. bottom: 0.025
  21049. }
  21050. },
  21051. back: {
  21052. height: math.unit(6, "feet"),
  21053. weight: math.unit(150, "lb"),
  21054. name: "Back",
  21055. image: {
  21056. source: "./media/characters/deathy/back.svg",
  21057. extra: 1580 / 1463,
  21058. bottom: 0.005
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Micro",
  21065. height: math.unit(5, "millimeters")
  21066. },
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(6 + 5 / 12, "feet"),
  21070. default: true
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21076. {
  21077. front: {
  21078. height: math.unit(16, "feet"),
  21079. weight: math.unit(4000, "lb"),
  21080. name: "Front",
  21081. image: {
  21082. source: "./media/characters/juniper/front.svg",
  21083. bottom: 0.04
  21084. }
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "Normal",
  21090. height: math.unit(16, "feet"),
  21091. default: true
  21092. },
  21093. ]
  21094. ))
  21095. characterMakers.push(() => makeCharacter(
  21096. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21097. {
  21098. front: {
  21099. height: math.unit(6, "feet"),
  21100. weight: math.unit(150, "lb"),
  21101. name: "Front",
  21102. image: {
  21103. source: "./media/characters/hipster/front.svg",
  21104. extra: 1312 / 1209,
  21105. bottom: 0.025
  21106. }
  21107. },
  21108. back: {
  21109. height: math.unit(6, "feet"),
  21110. weight: math.unit(150, "lb"),
  21111. name: "Back",
  21112. image: {
  21113. source: "./media/characters/hipster/back.svg",
  21114. extra: 1281 / 1196,
  21115. bottom: 0.01
  21116. }
  21117. },
  21118. },
  21119. [
  21120. {
  21121. name: "Micro",
  21122. height: math.unit(1, "mm")
  21123. },
  21124. {
  21125. name: "Normal",
  21126. height: math.unit(4, "inches"),
  21127. default: true
  21128. },
  21129. {
  21130. name: "Macro",
  21131. height: math.unit(500, "feet")
  21132. },
  21133. {
  21134. name: "Megamacro",
  21135. height: math.unit(1000, "miles")
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21141. {
  21142. front: {
  21143. height: math.unit(6, "feet"),
  21144. weight: math.unit(150, "lb"),
  21145. name: "Front",
  21146. image: {
  21147. source: "./media/characters/tendirmuldr/front.svg",
  21148. extra: 1878 / 1772,
  21149. bottom: 0.015
  21150. }
  21151. },
  21152. },
  21153. [
  21154. {
  21155. name: "Megamacro",
  21156. height: math.unit(1500, "miles"),
  21157. default: true
  21158. },
  21159. ]
  21160. ))
  21161. characterMakers.push(() => makeCharacter(
  21162. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21163. {
  21164. front: {
  21165. height: math.unit(14, "feet"),
  21166. weight: math.unit(12000, "lb"),
  21167. name: "Front",
  21168. image: {
  21169. source: "./media/characters/mort/front.svg",
  21170. extra: 365 / 318,
  21171. bottom: 0.01
  21172. }
  21173. },
  21174. side: {
  21175. height: math.unit(14, "feet"),
  21176. weight: math.unit(12000, "lb"),
  21177. name: "Side",
  21178. image: {
  21179. source: "./media/characters/mort/side.svg",
  21180. extra: 365 / 318,
  21181. bottom: 0.052
  21182. },
  21183. default: true
  21184. },
  21185. back: {
  21186. height: math.unit(14, "feet"),
  21187. weight: math.unit(12000, "lb"),
  21188. name: "Back",
  21189. image: {
  21190. source: "./media/characters/mort/back.svg",
  21191. extra: 371 / 332,
  21192. bottom: 0.18
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(14, "feet"),
  21200. default: true
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21206. {
  21207. front: {
  21208. height: math.unit(8, "feet"),
  21209. weight: math.unit(1, "ton"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/lycoa/front.svg",
  21213. extra: 1836/1728,
  21214. bottom: 81/1917
  21215. }
  21216. },
  21217. back: {
  21218. height: math.unit(8, "feet"),
  21219. weight: math.unit(1, "ton"),
  21220. name: "Back",
  21221. image: {
  21222. source: "./media/characters/lycoa/back.svg",
  21223. extra: 1785/1720,
  21224. bottom: 91/1876
  21225. }
  21226. },
  21227. head: {
  21228. height: math.unit(1.6243, "feet"),
  21229. name: "Head",
  21230. image: {
  21231. source: "./media/characters/lycoa/head.svg",
  21232. extra: 1011/782,
  21233. bottom: 0/1011
  21234. }
  21235. },
  21236. tailmaw: {
  21237. height: math.unit(1.9, "feet"),
  21238. name: "Tailmaw",
  21239. image: {
  21240. source: "./media/characters/lycoa/tailmaw.svg"
  21241. }
  21242. },
  21243. tentacles: {
  21244. height: math.unit(2.1, "feet"),
  21245. name: "Tentacles",
  21246. image: {
  21247. source: "./media/characters/lycoa/tentacles.svg"
  21248. }
  21249. },
  21250. dick: {
  21251. height: math.unit(1.73, "feet"),
  21252. name: "Dick",
  21253. image: {
  21254. source: "./media/characters/lycoa/dick.svg"
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(8, "feet"),
  21262. default: true
  21263. },
  21264. {
  21265. name: "Macro",
  21266. height: math.unit(30, "feet")
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21272. {
  21273. front: {
  21274. height: math.unit(4 + 2 / 12, "feet"),
  21275. weight: math.unit(70, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/naldara/front.svg",
  21279. extra: 1664/1387,
  21280. bottom: 81/1745
  21281. },
  21282. form: "anthro",
  21283. default: true
  21284. },
  21285. naga: {
  21286. height: math.unit(20, "feet"),
  21287. weight: math.unit(15000, "kg"),
  21288. name: "Front",
  21289. image: {
  21290. source: "./media/characters/naldara/naga.svg",
  21291. extra: 1590/1396,
  21292. bottom: 285/1875
  21293. },
  21294. form: "naga",
  21295. default: true
  21296. },
  21297. },
  21298. [
  21299. {
  21300. name: "Normal",
  21301. height: math.unit(4 + 2 / 12, "feet"),
  21302. form: "anthro",
  21303. default: true
  21304. },
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(20, "feet"),
  21308. form: "naga",
  21309. default: true
  21310. },
  21311. ],
  21312. {
  21313. "anthro": {
  21314. name: "Anthro",
  21315. default: true
  21316. },
  21317. "naga": {
  21318. name: "Naga"
  21319. }
  21320. }
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(13 + 7 / 12, "feet"),
  21327. weight: math.unit(1500, "lb"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/briar/front.svg",
  21331. extra: 1223/1157,
  21332. bottom: 123/1346
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(13 + 7 / 12, "feet"),
  21340. default: true
  21341. },
  21342. ]
  21343. ))
  21344. characterMakers.push(() => makeCharacter(
  21345. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21346. {
  21347. side: {
  21348. height: math.unit(16, "feet"),
  21349. weight: math.unit(500, "lb"),
  21350. name: "Side",
  21351. image: {
  21352. source: "./media/characters/vanguard/side.svg",
  21353. extra: 1022/914,
  21354. bottom: 30/1052
  21355. }
  21356. },
  21357. sideAlt: {
  21358. height: math.unit(10, "feet"),
  21359. weight: math.unit(500, "lb"),
  21360. name: "Side (Alt)",
  21361. image: {
  21362. source: "./media/characters/vanguard/side-alt.svg",
  21363. extra: 502 / 425,
  21364. bottom: 0.087
  21365. }
  21366. },
  21367. },
  21368. [
  21369. {
  21370. name: "Normal",
  21371. height: math.unit(17.71, "feet"),
  21372. default: true
  21373. },
  21374. ]
  21375. ))
  21376. characterMakers.push(() => makeCharacter(
  21377. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21378. {
  21379. front: {
  21380. height: math.unit(7.5, "feet"),
  21381. weight: math.unit(2, "lb"),
  21382. name: "Front",
  21383. image: {
  21384. source: "./media/characters/artemis/work-safe-front.svg",
  21385. extra: 1192 / 1075,
  21386. bottom: 0.07
  21387. },
  21388. form: "work-safe",
  21389. default: true
  21390. },
  21391. frontNsfw: {
  21392. height: math.unit(7.5, "feet"),
  21393. weight: math.unit(2, "lb"),
  21394. name: "Front",
  21395. image: {
  21396. source: "./media/characters/artemis/calibrating-front.svg",
  21397. extra: 1192 / 1075,
  21398. bottom: 0.07
  21399. },
  21400. form: "calibrating",
  21401. default: true
  21402. },
  21403. frontNsfwer: {
  21404. height: math.unit(7.5, "feet"),
  21405. weight: math.unit(2, "lb"),
  21406. name: "Front",
  21407. image: {
  21408. source: "./media/characters/artemis/oversize-load-front.svg",
  21409. extra: 1192 / 1075,
  21410. bottom: 0.07
  21411. },
  21412. form: "oversize-load",
  21413. default: true
  21414. },
  21415. side: {
  21416. height: math.unit(7.5, "feet"),
  21417. weight: math.unit(2, "lb"),
  21418. name: "Side",
  21419. image: {
  21420. source: "./media/characters/artemis/work-safe-side.svg",
  21421. extra: 1192 / 1075,
  21422. bottom: 0.07
  21423. },
  21424. form: "work-safe"
  21425. },
  21426. sideNsfw: {
  21427. height: math.unit(7.5, "feet"),
  21428. weight: math.unit(2, "lb"),
  21429. name: "Side",
  21430. image: {
  21431. source: "./media/characters/artemis/calibrating-side.svg",
  21432. extra: 1192 / 1075,
  21433. bottom: 0.07
  21434. },
  21435. form: "calibrating"
  21436. },
  21437. sideNsfwer: {
  21438. height: math.unit(7.5, "feet"),
  21439. weight: math.unit(2, "lb"),
  21440. name: "Side",
  21441. image: {
  21442. source: "./media/characters/artemis/oversize-load-side.svg",
  21443. extra: 1192 / 1075,
  21444. bottom: 0.07
  21445. },
  21446. form: "oversize-load"
  21447. },
  21448. maw: {
  21449. height: math.unit(1.1, "feet"),
  21450. name: "Maw",
  21451. image: {
  21452. source: "./media/characters/artemis/maw.svg"
  21453. },
  21454. form: "work-safe"
  21455. },
  21456. stomach: {
  21457. height: math.unit(0.95, "feet"),
  21458. name: "Stomach",
  21459. image: {
  21460. source: "./media/characters/artemis/stomach.svg"
  21461. },
  21462. form: "work-safe"
  21463. },
  21464. dickCanine: {
  21465. height: math.unit(1, "feet"),
  21466. name: "Dick (Canine)",
  21467. image: {
  21468. source: "./media/characters/artemis/dick-canine.svg"
  21469. },
  21470. form: "calibrating"
  21471. },
  21472. dickEquine: {
  21473. height: math.unit(0.85, "feet"),
  21474. name: "Dick (Equine)",
  21475. image: {
  21476. source: "./media/characters/artemis/dick-equine.svg"
  21477. },
  21478. form: "calibrating"
  21479. },
  21480. dickExotic: {
  21481. height: math.unit(0.85, "feet"),
  21482. name: "Dick (Exotic)",
  21483. image: {
  21484. source: "./media/characters/artemis/dick-exotic.svg"
  21485. },
  21486. form: "calibrating"
  21487. },
  21488. dickCanineBigger: {
  21489. height: math.unit(1 * 1.33, "feet"),
  21490. name: "Dick (Canine)",
  21491. image: {
  21492. source: "./media/characters/artemis/dick-canine.svg"
  21493. },
  21494. form: "oversize-load"
  21495. },
  21496. dickEquineBigger: {
  21497. height: math.unit(0.85 * 1.33, "feet"),
  21498. name: "Dick (Equine)",
  21499. image: {
  21500. source: "./media/characters/artemis/dick-equine.svg"
  21501. },
  21502. form: "oversize-load"
  21503. },
  21504. dickExoticBigger: {
  21505. height: math.unit(0.85 * 1.33, "feet"),
  21506. name: "Dick (Exotic)",
  21507. image: {
  21508. source: "./media/characters/artemis/dick-exotic.svg"
  21509. },
  21510. form: "oversize-load"
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Normal",
  21516. height: math.unit(7.5, "feet"),
  21517. form: "work-safe",
  21518. default: true
  21519. },
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(7.5, "feet"),
  21523. form: "calibrating",
  21524. default: true
  21525. },
  21526. {
  21527. name: "Normal",
  21528. height: math.unit(7.5, "feet"),
  21529. form: "oversize-load",
  21530. default: true
  21531. },
  21532. {
  21533. name: "Enlarged",
  21534. height: math.unit(12, "feet"),
  21535. form: "work-safe",
  21536. },
  21537. {
  21538. name: "Enlarged",
  21539. height: math.unit(12, "feet"),
  21540. form: "calibrating",
  21541. },
  21542. {
  21543. name: "Enlarged",
  21544. height: math.unit(12, "feet"),
  21545. form: "oversize-load",
  21546. },
  21547. ],
  21548. {
  21549. "work-safe": {
  21550. name: "Work-Safe",
  21551. default: true
  21552. },
  21553. "calibrating": {
  21554. name: "Calibrating"
  21555. },
  21556. "oversize-load": {
  21557. name: "Oversize Load"
  21558. }
  21559. }
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21563. {
  21564. front: {
  21565. height: math.unit(5 + 3 / 12, "feet"),
  21566. weight: math.unit(160, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/kira/front.svg",
  21570. extra: 906 / 786,
  21571. bottom: 0.01
  21572. }
  21573. },
  21574. back: {
  21575. height: math.unit(5 + 3 / 12, "feet"),
  21576. weight: math.unit(160, "lb"),
  21577. name: "Back",
  21578. image: {
  21579. source: "./media/characters/kira/back.svg",
  21580. extra: 882 / 757,
  21581. bottom: 0.005
  21582. }
  21583. },
  21584. frontDressed: {
  21585. height: math.unit(5 + 3 / 12, "feet"),
  21586. weight: math.unit(160, "lb"),
  21587. name: "Front (Dressed)",
  21588. image: {
  21589. source: "./media/characters/kira/front-dressed.svg",
  21590. extra: 906 / 786,
  21591. bottom: 0.01
  21592. }
  21593. },
  21594. beans: {
  21595. height: math.unit(0.92, "feet"),
  21596. name: "Beans",
  21597. image: {
  21598. source: "./media/characters/kira/beans.svg"
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(5 + 3 / 12, "feet"),
  21606. default: true
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(5 + 4 / 12, "feet"),
  21615. weight: math.unit(145, "lb"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/scramble/front.svg",
  21619. extra: 763 / 727,
  21620. bottom: 0.05
  21621. }
  21622. },
  21623. back: {
  21624. height: math.unit(5 + 4 / 12, "feet"),
  21625. weight: math.unit(145, "lb"),
  21626. name: "Back",
  21627. image: {
  21628. source: "./media/characters/scramble/back.svg",
  21629. extra: 826 / 737,
  21630. bottom: 0.002
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(5 + 4 / 12, "feet"),
  21638. default: true
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21644. {
  21645. side: {
  21646. height: math.unit(6 + 2 / 12, "feet"),
  21647. weight: math.unit(190, "lb"),
  21648. name: "Side",
  21649. image: {
  21650. source: "./media/characters/biscuit/side.svg",
  21651. extra: 858 / 791,
  21652. bottom: 0.044
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(6 + 2 / 12, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(5 + 2 / 12, "feet"),
  21669. weight: math.unit(120, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/poffin/front.svg",
  21673. extra: 786 / 680,
  21674. bottom: 0.005
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(5 + 2 / 12, "feet"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(6 + 3 / 12, "feet"),
  21691. weight: math.unit(519, "lb"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/dhari/front.svg",
  21695. extra: 1048 / 946,
  21696. bottom: 0.015
  21697. }
  21698. },
  21699. back: {
  21700. height: math.unit(6 + 3 / 12, "feet"),
  21701. weight: math.unit(519, "lb"),
  21702. name: "Back",
  21703. image: {
  21704. source: "./media/characters/dhari/back.svg",
  21705. extra: 1048 / 931,
  21706. bottom: 0.005
  21707. }
  21708. },
  21709. frontDressed: {
  21710. height: math.unit(6 + 3 / 12, "feet"),
  21711. weight: math.unit(519, "lb"),
  21712. name: "Front (Dressed)",
  21713. image: {
  21714. source: "./media/characters/dhari/front-dressed.svg",
  21715. extra: 1713 / 1546,
  21716. bottom: 0.02
  21717. }
  21718. },
  21719. backDressed: {
  21720. height: math.unit(6 + 3 / 12, "feet"),
  21721. weight: math.unit(519, "lb"),
  21722. name: "Back (Dressed)",
  21723. image: {
  21724. source: "./media/characters/dhari/back-dressed.svg",
  21725. extra: 1699 / 1537,
  21726. bottom: 0.01
  21727. }
  21728. },
  21729. maw: {
  21730. height: math.unit(0.95, "feet"),
  21731. name: "Maw",
  21732. image: {
  21733. source: "./media/characters/dhari/maw.svg"
  21734. }
  21735. },
  21736. wereFront: {
  21737. height: math.unit(12 + 8 / 12, "feet"),
  21738. weight: math.unit(4000, "lb"),
  21739. name: "Front (Were)",
  21740. image: {
  21741. source: "./media/characters/dhari/were-front.svg",
  21742. extra: 1065 / 969,
  21743. bottom: 0.015
  21744. }
  21745. },
  21746. wereBack: {
  21747. height: math.unit(12 + 8 / 12, "feet"),
  21748. weight: math.unit(4000, "lb"),
  21749. name: "Back (Were)",
  21750. image: {
  21751. source: "./media/characters/dhari/were-back.svg",
  21752. extra: 1065 / 969,
  21753. bottom: 0.012
  21754. }
  21755. },
  21756. wereMaw: {
  21757. height: math.unit(0.625, "meters"),
  21758. name: "Maw (Were)",
  21759. image: {
  21760. source: "./media/characters/dhari/were-maw.svg"
  21761. }
  21762. },
  21763. },
  21764. [
  21765. {
  21766. name: "Normal",
  21767. height: math.unit(6 + 3 / 12, "feet"),
  21768. default: true
  21769. },
  21770. ]
  21771. ))
  21772. characterMakers.push(() => makeCharacter(
  21773. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21774. {
  21775. anthro: {
  21776. height: math.unit(5 + 7 / 12, "feet"),
  21777. weight: math.unit(175, "lb"),
  21778. name: "Anthro",
  21779. image: {
  21780. source: "./media/characters/rena-dyne/anthro.svg",
  21781. extra: 1849 / 1785,
  21782. bottom: 0.005
  21783. }
  21784. },
  21785. taur: {
  21786. height: math.unit(15 + 6 / 12, "feet"),
  21787. weight: math.unit(8000, "lb"),
  21788. name: "Taur",
  21789. image: {
  21790. source: "./media/characters/rena-dyne/taur.svg",
  21791. extra: 2315 / 2234,
  21792. bottom: 0.033
  21793. }
  21794. },
  21795. },
  21796. [
  21797. {
  21798. name: "Normal",
  21799. height: math.unit(5 + 7 / 12, "feet"),
  21800. default: true
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21806. {
  21807. front: {
  21808. height: math.unit(8, "feet"),
  21809. weight: math.unit(600, "lb"),
  21810. name: "Front",
  21811. image: {
  21812. source: "./media/characters/weremeep/front.svg",
  21813. extra: 967 / 862,
  21814. bottom: 0.01
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(8, "feet"),
  21822. default: true
  21823. },
  21824. {
  21825. name: "Lorg",
  21826. height: math.unit(12, "feet")
  21827. },
  21828. {
  21829. name: "Oh Lawd She Comin'",
  21830. height: math.unit(20, "feet")
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21836. {
  21837. front: {
  21838. height: math.unit(4, "feet"),
  21839. weight: math.unit(90, "lb"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/reza/front.svg",
  21843. extra: 1183 / 1111,
  21844. bottom: 0.017
  21845. }
  21846. },
  21847. back: {
  21848. height: math.unit(4, "feet"),
  21849. weight: math.unit(90, "lb"),
  21850. name: "Back",
  21851. image: {
  21852. source: "./media/characters/reza/back.svg",
  21853. extra: 1183 / 1111,
  21854. bottom: 0.01
  21855. }
  21856. },
  21857. drake: {
  21858. height: math.unit(30, "feet"),
  21859. weight: math.unit(246960, "lb"),
  21860. name: "Drake",
  21861. image: {
  21862. source: "./media/characters/reza/drake.svg",
  21863. extra: 2350 / 2024,
  21864. bottom: 60.7 / 2403
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Normal",
  21871. height: math.unit(4, "feet"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21878. {
  21879. side: {
  21880. height: math.unit(15, "feet"),
  21881. weight: math.unit(14, "tons"),
  21882. name: "Side",
  21883. image: {
  21884. source: "./media/characters/athea/side.svg",
  21885. extra: 960 / 540,
  21886. bottom: 0.003
  21887. }
  21888. },
  21889. sitting: {
  21890. height: math.unit(6 * 2.85, "feet"),
  21891. weight: math.unit(14, "tons"),
  21892. name: "Sitting",
  21893. image: {
  21894. source: "./media/characters/athea/sitting.svg",
  21895. extra: 621 / 581,
  21896. bottom: 0.075
  21897. }
  21898. },
  21899. maw: {
  21900. height: math.unit(7.59498031496063, "feet"),
  21901. name: "Maw",
  21902. image: {
  21903. source: "./media/characters/athea/maw.svg"
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Lap Cat",
  21910. height: math.unit(2.5, "feet")
  21911. },
  21912. {
  21913. name: "Minimacro",
  21914. height: math.unit(15, "feet"),
  21915. default: true
  21916. },
  21917. {
  21918. name: "Macro",
  21919. height: math.unit(120, "feet")
  21920. },
  21921. {
  21922. name: "Macro+",
  21923. height: math.unit(640, "feet")
  21924. },
  21925. {
  21926. name: "Colossus",
  21927. height: math.unit(2.2, "miles")
  21928. },
  21929. ]
  21930. ))
  21931. characterMakers.push(() => makeCharacter(
  21932. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21933. {
  21934. front: {
  21935. height: math.unit(8 + 8 / 12, "feet"),
  21936. weight: math.unit(130, "kg"),
  21937. name: "Front",
  21938. image: {
  21939. source: "./media/characters/seroko/front.svg",
  21940. extra: 1385 / 1280,
  21941. bottom: 0.025
  21942. }
  21943. },
  21944. back: {
  21945. height: math.unit(8 + 8 / 12, "feet"),
  21946. weight: math.unit(130, "kg"),
  21947. name: "Back",
  21948. image: {
  21949. source: "./media/characters/seroko/back.svg",
  21950. extra: 1369 / 1238,
  21951. bottom: 0.018
  21952. }
  21953. },
  21954. frontDressed: {
  21955. height: math.unit(8 + 8 / 12, "feet"),
  21956. weight: math.unit(130, "kg"),
  21957. name: "Front (Dressed)",
  21958. image: {
  21959. source: "./media/characters/seroko/front-dressed.svg",
  21960. extra: 1366 / 1275,
  21961. bottom: 0.03
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(8 + 8 / 12, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(5.5, "feet"),
  21978. weight: math.unit(160, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/quatzi/front.svg",
  21982. extra: 2346 / 2242,
  21983. bottom: 0.015
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(5.5, "feet"),
  21991. default: true
  21992. },
  21993. {
  21994. name: "Big",
  21995. height: math.unit(7.7, "feet")
  21996. },
  21997. ]
  21998. ))
  21999. characterMakers.push(() => makeCharacter(
  22000. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22001. {
  22002. front: {
  22003. height: math.unit(5 + 11 / 12, "feet"),
  22004. weight: math.unit(180, "lb"),
  22005. name: "Front",
  22006. image: {
  22007. source: "./media/characters/sen/front.svg",
  22008. extra: 1321 / 1254,
  22009. bottom: 0.015
  22010. }
  22011. },
  22012. side: {
  22013. height: math.unit(5 + 11 / 12, "feet"),
  22014. weight: math.unit(180, "lb"),
  22015. name: "Side",
  22016. image: {
  22017. source: "./media/characters/sen/side.svg",
  22018. extra: 1321 / 1254,
  22019. bottom: 0.007
  22020. }
  22021. },
  22022. back: {
  22023. height: math.unit(5 + 11 / 12, "feet"),
  22024. weight: math.unit(180, "lb"),
  22025. name: "Back",
  22026. image: {
  22027. source: "./media/characters/sen/back.svg",
  22028. extra: 1321 / 1254
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(5 + 11 / 12, "feet"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(166.6, "cm"),
  22045. weight: math.unit(66.6, "kg"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/fruity/front.svg",
  22049. extra: 1510 / 1386,
  22050. bottom: 0.04
  22051. }
  22052. },
  22053. back: {
  22054. height: math.unit(166.6, "cm"),
  22055. weight: math.unit(66.6, "lb"),
  22056. name: "Back",
  22057. image: {
  22058. source: "./media/characters/fruity/back.svg",
  22059. extra: 1563 / 1435,
  22060. bottom: 0.005
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(166.6, "cm"),
  22068. default: true
  22069. },
  22070. {
  22071. name: "Demonic",
  22072. height: math.unit(166.6, "feet")
  22073. },
  22074. ]
  22075. ))
  22076. characterMakers.push(() => makeCharacter(
  22077. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22078. {
  22079. side: {
  22080. height: math.unit(10, "feet"),
  22081. weight: math.unit(500, "lb"),
  22082. name: "Side",
  22083. image: {
  22084. source: "./media/characters/zost/side.svg",
  22085. extra: 2870/2533,
  22086. bottom: 252/3122
  22087. }
  22088. },
  22089. mawFront: {
  22090. height: math.unit(1.08, "meters"),
  22091. name: "Maw (Front)",
  22092. image: {
  22093. source: "./media/characters/zost/maw-front.svg"
  22094. }
  22095. },
  22096. mawSide: {
  22097. height: math.unit(2.66, "feet"),
  22098. name: "Maw (Side)",
  22099. image: {
  22100. source: "./media/characters/zost/maw-side.svg"
  22101. }
  22102. },
  22103. wingspan: {
  22104. height: math.unit(7.4, "feet"),
  22105. name: "Wingspan",
  22106. image: {
  22107. source: "./media/characters/zost/wingspan.svg"
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(10, "feet"),
  22115. default: true
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22121. {
  22122. front: {
  22123. height: math.unit(5 + 4 / 12, "feet"),
  22124. weight: math.unit(120, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/luci/front.svg",
  22128. extra: 1985 / 1884,
  22129. bottom: 0.04
  22130. }
  22131. },
  22132. back: {
  22133. height: math.unit(5 + 4 / 12, "feet"),
  22134. weight: math.unit(120, "lb"),
  22135. name: "Back",
  22136. image: {
  22137. source: "./media/characters/luci/back.svg",
  22138. extra: 1892 / 1791,
  22139. bottom: 0.002
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(5 + 4 / 12, "feet"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22153. {
  22154. front: {
  22155. height: math.unit(1500, "feet"),
  22156. weight: math.unit(3.8e6, "tons"),
  22157. name: "Front",
  22158. image: {
  22159. source: "./media/characters/2th/front.svg",
  22160. extra: 3489 / 3350,
  22161. bottom: 0.1
  22162. }
  22163. },
  22164. foot: {
  22165. height: math.unit(461, "feet"),
  22166. name: "Foot",
  22167. image: {
  22168. source: "./media/characters/2th/foot.svg"
  22169. }
  22170. },
  22171. },
  22172. [
  22173. {
  22174. name: "\"Micro\"",
  22175. height: math.unit(15 + 7 / 12, "feet")
  22176. },
  22177. {
  22178. name: "Normal",
  22179. height: math.unit(1500, "feet"),
  22180. default: true
  22181. },
  22182. {
  22183. name: "Macro",
  22184. height: math.unit(5000, "feet")
  22185. },
  22186. {
  22187. name: "Megamacro",
  22188. height: math.unit(15, "miles")
  22189. },
  22190. {
  22191. name: "Gigamacro",
  22192. height: math.unit(4000, "miles")
  22193. },
  22194. {
  22195. name: "Galactic",
  22196. height: math.unit(50, "AU")
  22197. },
  22198. ]
  22199. ))
  22200. characterMakers.push(() => makeCharacter(
  22201. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22202. {
  22203. front: {
  22204. height: math.unit(5 + 6 / 12, "feet"),
  22205. weight: math.unit(220, "lb"),
  22206. name: "Front",
  22207. image: {
  22208. source: "./media/characters/amethyst/front.svg",
  22209. extra: 2078 / 2040,
  22210. bottom: 0.045
  22211. }
  22212. },
  22213. back: {
  22214. height: math.unit(5 + 6 / 12, "feet"),
  22215. weight: math.unit(220, "lb"),
  22216. name: "Back",
  22217. image: {
  22218. source: "./media/characters/amethyst/back.svg",
  22219. extra: 2021 / 1989,
  22220. bottom: 0.02
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Normal",
  22227. height: math.unit(5 + 6 / 12, "feet"),
  22228. default: true
  22229. },
  22230. ]
  22231. ))
  22232. characterMakers.push(() => makeCharacter(
  22233. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22234. {
  22235. front: {
  22236. height: math.unit(4 + 11 / 12, "feet"),
  22237. weight: math.unit(120, "lb"),
  22238. name: "Front",
  22239. image: {
  22240. source: "./media/characters/yumi-akiyama/front.svg",
  22241. extra: 1327 / 1235,
  22242. bottom: 0.02
  22243. }
  22244. },
  22245. back: {
  22246. height: math.unit(4 + 11 / 12, "feet"),
  22247. weight: math.unit(120, "lb"),
  22248. name: "Back",
  22249. image: {
  22250. source: "./media/characters/yumi-akiyama/back.svg",
  22251. extra: 1287 / 1245,
  22252. bottom: 0.002
  22253. }
  22254. },
  22255. },
  22256. [
  22257. {
  22258. name: "Galactic",
  22259. height: math.unit(50, "galaxies"),
  22260. default: true
  22261. },
  22262. {
  22263. name: "Universal",
  22264. height: math.unit(100, "universes")
  22265. },
  22266. ]
  22267. ))
  22268. characterMakers.push(() => makeCharacter(
  22269. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22270. {
  22271. front: {
  22272. height: math.unit(8, "feet"),
  22273. weight: math.unit(500, "lb"),
  22274. name: "Front",
  22275. image: {
  22276. source: "./media/characters/rifter-yrmori/front.svg",
  22277. extra: 1180 / 1125,
  22278. bottom: 0.02
  22279. }
  22280. },
  22281. back: {
  22282. height: math.unit(8, "feet"),
  22283. weight: math.unit(500, "lb"),
  22284. name: "Back",
  22285. image: {
  22286. source: "./media/characters/rifter-yrmori/back.svg",
  22287. extra: 1190 / 1145,
  22288. bottom: 0.001
  22289. }
  22290. },
  22291. wings: {
  22292. height: math.unit(7.75, "feet"),
  22293. weight: math.unit(500, "lb"),
  22294. name: "Wings",
  22295. image: {
  22296. source: "./media/characters/rifter-yrmori/wings.svg",
  22297. extra: 1357 / 1285
  22298. }
  22299. },
  22300. maw: {
  22301. height: math.unit(0.8, "feet"),
  22302. name: "Maw",
  22303. image: {
  22304. source: "./media/characters/rifter-yrmori/maw.svg"
  22305. }
  22306. },
  22307. mawfront: {
  22308. height: math.unit(1.45, "feet"),
  22309. name: "Maw (Front)",
  22310. image: {
  22311. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22312. }
  22313. },
  22314. },
  22315. [
  22316. {
  22317. name: "Normal",
  22318. height: math.unit(8, "feet"),
  22319. default: true
  22320. },
  22321. {
  22322. name: "Macro",
  22323. height: math.unit(42, "meters")
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22329. {
  22330. were: {
  22331. height: math.unit(25 + 6 / 12, "feet"),
  22332. weight: math.unit(10000, "lb"),
  22333. name: "Were",
  22334. image: {
  22335. source: "./media/characters/tahajin/were.svg",
  22336. extra: 801 / 770,
  22337. bottom: 0.042
  22338. }
  22339. },
  22340. aquatic: {
  22341. height: math.unit(6 + 4 / 12, "feet"),
  22342. weight: math.unit(160, "lb"),
  22343. name: "Aquatic",
  22344. image: {
  22345. source: "./media/characters/tahajin/aquatic.svg",
  22346. extra: 572 / 542,
  22347. bottom: 0.04
  22348. }
  22349. },
  22350. chow: {
  22351. height: math.unit(8 + 11 / 12, "feet"),
  22352. weight: math.unit(450, "lb"),
  22353. name: "Chow",
  22354. image: {
  22355. source: "./media/characters/tahajin/chow.svg",
  22356. extra: 660 / 640,
  22357. bottom: 0.015
  22358. }
  22359. },
  22360. demiNaga: {
  22361. height: math.unit(6 + 8 / 12, "feet"),
  22362. weight: math.unit(300, "lb"),
  22363. name: "Demi Naga",
  22364. image: {
  22365. source: "./media/characters/tahajin/demi-naga.svg",
  22366. extra: 643 / 615,
  22367. bottom: 0.1
  22368. }
  22369. },
  22370. data: {
  22371. height: math.unit(5, "inches"),
  22372. weight: math.unit(0.1, "lb"),
  22373. name: "Data",
  22374. image: {
  22375. source: "./media/characters/tahajin/data.svg"
  22376. }
  22377. },
  22378. fluu: {
  22379. height: math.unit(5 + 7 / 12, "feet"),
  22380. weight: math.unit(140, "lb"),
  22381. name: "Fluu",
  22382. image: {
  22383. source: "./media/characters/tahajin/fluu.svg",
  22384. extra: 628 / 592,
  22385. bottom: 0.02
  22386. }
  22387. },
  22388. starWarrior: {
  22389. height: math.unit(4 + 5 / 12, "feet"),
  22390. weight: math.unit(50, "lb"),
  22391. name: "Star Warrior",
  22392. image: {
  22393. source: "./media/characters/tahajin/star-warrior.svg"
  22394. }
  22395. },
  22396. },
  22397. [
  22398. {
  22399. name: "Normal",
  22400. height: math.unit(25 + 6 / 12, "feet"),
  22401. default: true
  22402. },
  22403. ]
  22404. ))
  22405. characterMakers.push(() => makeCharacter(
  22406. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22407. {
  22408. front: {
  22409. height: math.unit(8, "feet"),
  22410. weight: math.unit(350, "lb"),
  22411. name: "Front",
  22412. image: {
  22413. source: "./media/characters/gabira/front.svg",
  22414. extra: 608 / 580,
  22415. bottom: 0.03
  22416. }
  22417. },
  22418. back: {
  22419. height: math.unit(8, "feet"),
  22420. weight: math.unit(350, "lb"),
  22421. name: "Back",
  22422. image: {
  22423. source: "./media/characters/gabira/back.svg",
  22424. extra: 608 / 580,
  22425. bottom: 0.03
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Normal",
  22432. height: math.unit(8, "feet"),
  22433. default: true
  22434. },
  22435. ]
  22436. ))
  22437. characterMakers.push(() => makeCharacter(
  22438. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22439. {
  22440. front: {
  22441. height: math.unit(5 + 3 / 12, "feet"),
  22442. weight: math.unit(137, "lb"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/sasha-katraine/front.svg",
  22446. extra: 1745/1694,
  22447. bottom: 37/1782
  22448. }
  22449. },
  22450. back: {
  22451. height: math.unit(5 + 3 / 12, "feet"),
  22452. weight: math.unit(137, "lb"),
  22453. name: "Back",
  22454. image: {
  22455. source: "./media/characters/sasha-katraine/back.svg",
  22456. extra: 1776/1699,
  22457. bottom: 26/1802
  22458. }
  22459. },
  22460. },
  22461. [
  22462. {
  22463. name: "Micro",
  22464. height: math.unit(5, "inches")
  22465. },
  22466. {
  22467. name: "Normal",
  22468. height: math.unit(5 + 3 / 12, "feet"),
  22469. default: true
  22470. },
  22471. ]
  22472. ))
  22473. characterMakers.push(() => makeCharacter(
  22474. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22475. {
  22476. side: {
  22477. height: math.unit(4, "inches"),
  22478. weight: math.unit(200, "grams"),
  22479. name: "Side",
  22480. image: {
  22481. source: "./media/characters/der/side.svg",
  22482. extra: 719 / 400,
  22483. bottom: 30.6 / 749.9187
  22484. }
  22485. },
  22486. },
  22487. [
  22488. {
  22489. name: "Micro",
  22490. height: math.unit(4, "inches"),
  22491. default: true
  22492. },
  22493. ]
  22494. ))
  22495. characterMakers.push(() => makeCharacter(
  22496. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22497. {
  22498. side: {
  22499. height: math.unit(30, "meters"),
  22500. weight: math.unit(700, "tonnes"),
  22501. name: "Side",
  22502. image: {
  22503. source: "./media/characters/fixerdragon/side.svg",
  22504. extra: (1293.0514 - 116.03) / 1106.86,
  22505. bottom: 116.03 / 1293.0514
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Planck",
  22512. height: math.unit(1.6e-35, "meters")
  22513. },
  22514. {
  22515. name: "Micro",
  22516. height: math.unit(0.4, "meters")
  22517. },
  22518. {
  22519. name: "Normal",
  22520. height: math.unit(30, "meters"),
  22521. default: true
  22522. },
  22523. {
  22524. name: "Megamacro",
  22525. height: math.unit(1.2, "megameters")
  22526. },
  22527. {
  22528. name: "Teramacro",
  22529. height: math.unit(130, "terameters")
  22530. },
  22531. {
  22532. name: "Yottamacro",
  22533. height: math.unit(6200, "yottameters")
  22534. },
  22535. ]
  22536. ));
  22537. characterMakers.push(() => makeCharacter(
  22538. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22539. {
  22540. front: {
  22541. height: math.unit(8, "feet"),
  22542. weight: math.unit(250, "lb"),
  22543. name: "Front",
  22544. image: {
  22545. source: "./media/characters/kite/front.svg",
  22546. extra: 2796 / 2659,
  22547. bottom: 0.002
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Normal",
  22554. height: math.unit(8, "feet"),
  22555. default: true
  22556. },
  22557. {
  22558. name: "Macro",
  22559. height: math.unit(360, "feet")
  22560. },
  22561. {
  22562. name: "Megamacro",
  22563. height: math.unit(1500, "feet")
  22564. },
  22565. ]
  22566. ))
  22567. characterMakers.push(() => makeCharacter(
  22568. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22569. {
  22570. front: {
  22571. height: math.unit(5 + 11/12, "feet"),
  22572. weight: math.unit(170, "lb"),
  22573. name: "Front",
  22574. image: {
  22575. source: "./media/characters/poojawa-vynar/front.svg",
  22576. extra: 1735/1585,
  22577. bottom: 96/1831
  22578. }
  22579. },
  22580. back: {
  22581. height: math.unit(5 + 11/12, "feet"),
  22582. weight: math.unit(170, "lb"),
  22583. name: "Back",
  22584. image: {
  22585. source: "./media/characters/poojawa-vynar/back.svg",
  22586. extra: 1749/1607,
  22587. bottom: 28/1777
  22588. }
  22589. },
  22590. male: {
  22591. height: math.unit(5 + 11/12, "feet"),
  22592. weight: math.unit(170, "lb"),
  22593. name: "Male",
  22594. image: {
  22595. source: "./media/characters/poojawa-vynar/male.svg",
  22596. extra: 1855/1713,
  22597. bottom: 63/1918
  22598. }
  22599. },
  22600. taur: {
  22601. height: math.unit(5 + 11/12, "feet"),
  22602. weight: math.unit(170, "lb"),
  22603. name: "Taur",
  22604. image: {
  22605. source: "./media/characters/poojawa-vynar/taur.svg",
  22606. extra: 1151/1059,
  22607. bottom: 356/1507
  22608. }
  22609. },
  22610. frontDressed: {
  22611. height: math.unit(5 + 11/12, "feet"),
  22612. weight: math.unit(170, "lb"),
  22613. name: "Front (Dressed)",
  22614. image: {
  22615. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22616. extra: 1735/1585,
  22617. bottom: 96/1831
  22618. }
  22619. },
  22620. backDressed: {
  22621. height: math.unit(5 + 11/12, "feet"),
  22622. weight: math.unit(170, "lb"),
  22623. name: "Back (Dressed)",
  22624. image: {
  22625. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22626. extra: 1749/1607,
  22627. bottom: 28/1777
  22628. }
  22629. },
  22630. maleDressed: {
  22631. height: math.unit(5 + 11/12, "feet"),
  22632. weight: math.unit(170, "lb"),
  22633. name: "Male (Dressed)",
  22634. image: {
  22635. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22636. extra: 1855/1713,
  22637. bottom: 63/1918
  22638. }
  22639. },
  22640. taurDressed: {
  22641. height: math.unit(5 + 11/12, "feet"),
  22642. weight: math.unit(170, "lb"),
  22643. name: "Taur (Dressed)",
  22644. image: {
  22645. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22646. extra: 1151/1059,
  22647. bottom: 356/1507
  22648. }
  22649. },
  22650. maw: {
  22651. height: math.unit(1.46, "feet"),
  22652. name: "Maw",
  22653. image: {
  22654. source: "./media/characters/poojawa-vynar/maw.svg"
  22655. }
  22656. },
  22657. head: {
  22658. height: math.unit(2.34, "feet"),
  22659. name: "Head",
  22660. image: {
  22661. source: "./media/characters/poojawa-vynar/head.svg"
  22662. }
  22663. },
  22664. paw: {
  22665. height: math.unit(1.61, "feet"),
  22666. name: "Paw",
  22667. image: {
  22668. source: "./media/characters/poojawa-vynar/paw.svg"
  22669. }
  22670. },
  22671. pawToering: {
  22672. height: math.unit(1.72, "feet"),
  22673. name: "Paw (Toering)",
  22674. image: {
  22675. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22676. }
  22677. },
  22678. toering: {
  22679. height: math.unit(2.9, "inches"),
  22680. name: "Toering",
  22681. image: {
  22682. source: "./media/characters/poojawa-vynar/toering.svg"
  22683. }
  22684. },
  22685. shaft: {
  22686. height: math.unit(0.625, "feet"),
  22687. name: "Shaft",
  22688. image: {
  22689. source: "./media/characters/poojawa-vynar/shaft.svg"
  22690. }
  22691. },
  22692. spade: {
  22693. height: math.unit(0.42, "feet"),
  22694. name: "Spade",
  22695. image: {
  22696. source: "./media/characters/poojawa-vynar/spade.svg"
  22697. }
  22698. },
  22699. },
  22700. [
  22701. {
  22702. name: "Shortstack",
  22703. height: math.unit(4, "feet")
  22704. },
  22705. {
  22706. name: "Normal",
  22707. height: math.unit(5 + 11 / 12, "feet"),
  22708. default: true
  22709. },
  22710. {
  22711. name: "Tauric",
  22712. height: math.unit(4, "meters")
  22713. },
  22714. ]
  22715. ))
  22716. characterMakers.push(() => makeCharacter(
  22717. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22718. {
  22719. front: {
  22720. height: math.unit(293, "meters"),
  22721. weight: math.unit(70400, "tons"),
  22722. name: "Front",
  22723. image: {
  22724. source: "./media/characters/violette/front.svg",
  22725. extra: 1227 / 1180,
  22726. bottom: 0.005
  22727. }
  22728. },
  22729. back: {
  22730. height: math.unit(293, "meters"),
  22731. weight: math.unit(70400, "tons"),
  22732. name: "Back",
  22733. image: {
  22734. source: "./media/characters/violette/back.svg",
  22735. extra: 1227 / 1180,
  22736. bottom: 0.005
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Macro",
  22743. height: math.unit(293, "meters"),
  22744. default: true
  22745. },
  22746. ]
  22747. ))
  22748. characterMakers.push(() => makeCharacter(
  22749. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22750. {
  22751. front: {
  22752. height: math.unit(1050, "feet"),
  22753. weight: math.unit(200000, "tons"),
  22754. name: "Front",
  22755. image: {
  22756. source: "./media/characters/alessandra/front.svg",
  22757. extra: 960 / 912,
  22758. bottom: 0.06
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Macro",
  22765. height: math.unit(1050, "feet")
  22766. },
  22767. {
  22768. name: "Macro+",
  22769. height: math.unit(900, "meters"),
  22770. default: true
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22776. {
  22777. front: {
  22778. height: math.unit(5, "feet"),
  22779. weight: math.unit(187, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/person/front.svg",
  22783. extra: 3087 / 2945,
  22784. bottom: 91 / 3181
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Micro",
  22791. height: math.unit(3, "inches")
  22792. },
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(5, "feet"),
  22796. default: true
  22797. },
  22798. {
  22799. name: "Macro",
  22800. height: math.unit(90, "feet")
  22801. },
  22802. {
  22803. name: "Max Size",
  22804. height: math.unit(280, "feet")
  22805. },
  22806. ]
  22807. ))
  22808. characterMakers.push(() => makeCharacter(
  22809. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22810. {
  22811. front: {
  22812. height: math.unit(4.5, "meters"),
  22813. weight: math.unit(3200, "lb"),
  22814. name: "Front",
  22815. image: {
  22816. source: "./media/characters/ty/front.svg",
  22817. extra: 1038 / 960,
  22818. bottom: 31.156 / 1068
  22819. }
  22820. },
  22821. back: {
  22822. height: math.unit(4.5, "meters"),
  22823. weight: math.unit(3200, "lb"),
  22824. name: "Back",
  22825. image: {
  22826. source: "./media/characters/ty/back.svg",
  22827. extra: 1044 / 966,
  22828. bottom: 7.48 / 1049
  22829. }
  22830. },
  22831. },
  22832. [
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(4.5, "meters"),
  22836. default: true
  22837. },
  22838. ]
  22839. ))
  22840. characterMakers.push(() => makeCharacter(
  22841. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22842. {
  22843. front: {
  22844. height: math.unit(5 + 4 / 12, "feet"),
  22845. weight: math.unit(115, "lb"),
  22846. name: "Front",
  22847. image: {
  22848. source: "./media/characters/rocky/front.svg",
  22849. extra: 1012 / 975,
  22850. bottom: 54 / 1066
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Normal",
  22857. height: math.unit(5 + 4 / 12, "feet"),
  22858. default: true
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22864. {
  22865. upright: {
  22866. height: math.unit(6, "meters"),
  22867. weight: math.unit(4000, "kg"),
  22868. name: "Upright",
  22869. image: {
  22870. source: "./media/characters/ruin/upright.svg",
  22871. extra: 668 / 661,
  22872. bottom: 42 / 799.8396
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Normal",
  22879. height: math.unit(6, "meters"),
  22880. default: true
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(5, "feet"),
  22889. weight: math.unit(106, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/robin/front.svg",
  22893. extra: 862 / 799,
  22894. bottom: 42.4 / 914.8856
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(5, "feet"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22908. {
  22909. side: {
  22910. height: math.unit(3, "feet"),
  22911. weight: math.unit(225, "lb"),
  22912. name: "Side",
  22913. image: {
  22914. source: "./media/characters/saian/side.svg",
  22915. extra: 566 / 356,
  22916. bottom: 79.7 / 643
  22917. }
  22918. },
  22919. maw: {
  22920. height: math.unit(2.85, "feet"),
  22921. name: "Maw",
  22922. image: {
  22923. source: "./media/characters/saian/maw.svg"
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(3, "feet"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22937. {
  22938. side: {
  22939. height: math.unit(8, "feet"),
  22940. weight: math.unit(300, "lb"),
  22941. name: "Side",
  22942. image: {
  22943. source: "./media/characters/equus-silvermane/side.svg",
  22944. extra: 2176 / 2050,
  22945. bottom: 65.7 / 2245
  22946. }
  22947. },
  22948. front: {
  22949. height: math.unit(8, "feet"),
  22950. weight: math.unit(300, "lb"),
  22951. name: "Front",
  22952. image: {
  22953. source: "./media/characters/equus-silvermane/front.svg",
  22954. extra: 4633 / 4400,
  22955. bottom: 71.3 / 4706.915
  22956. }
  22957. },
  22958. sideStepping: {
  22959. height: math.unit(8, "feet"),
  22960. weight: math.unit(300, "lb"),
  22961. name: "Side (Stepping)",
  22962. image: {
  22963. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22964. extra: 1968 / 1860,
  22965. bottom: 16.4 / 1989
  22966. }
  22967. },
  22968. },
  22969. [
  22970. {
  22971. name: "Normal",
  22972. height: math.unit(8, "feet")
  22973. },
  22974. {
  22975. name: "Minimacro",
  22976. height: math.unit(75, "feet"),
  22977. default: true
  22978. },
  22979. {
  22980. name: "Macro",
  22981. height: math.unit(150, "feet")
  22982. },
  22983. {
  22984. name: "Macro+",
  22985. height: math.unit(1000, "feet")
  22986. },
  22987. {
  22988. name: "Megamacro",
  22989. height: math.unit(1, "mile")
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22995. {
  22996. side: {
  22997. height: math.unit(20, "feet"),
  22998. weight: math.unit(30000, "kg"),
  22999. name: "Side",
  23000. image: {
  23001. source: "./media/characters/windar/side.svg",
  23002. extra: 1491 / 1248,
  23003. bottom: 82.56 / 1568
  23004. }
  23005. },
  23006. },
  23007. [
  23008. {
  23009. name: "Normal",
  23010. height: math.unit(20, "feet"),
  23011. default: true
  23012. },
  23013. ]
  23014. ))
  23015. characterMakers.push(() => makeCharacter(
  23016. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23017. {
  23018. side: {
  23019. height: math.unit(15.66, "feet"),
  23020. weight: math.unit(150, "lb"),
  23021. name: "Side",
  23022. image: {
  23023. source: "./media/characters/melody/side.svg",
  23024. extra: 1097 / 944,
  23025. bottom: 11.8 / 1109
  23026. }
  23027. },
  23028. sideOutfit: {
  23029. height: math.unit(15.66, "feet"),
  23030. weight: math.unit(150, "lb"),
  23031. name: "Side (Outfit)",
  23032. image: {
  23033. source: "./media/characters/melody/side-outfit.svg",
  23034. extra: 1097 / 944,
  23035. bottom: 11.8 / 1109
  23036. }
  23037. },
  23038. },
  23039. [
  23040. {
  23041. name: "Normal",
  23042. height: math.unit(15.66, "feet"),
  23043. default: true
  23044. },
  23045. ]
  23046. ))
  23047. characterMakers.push(() => makeCharacter(
  23048. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23049. {
  23050. armoredFront: {
  23051. height: math.unit(8, "feet"),
  23052. weight: math.unit(325, "lb"),
  23053. name: "Front",
  23054. image: {
  23055. source: "./media/characters/windera/armored-front.svg",
  23056. extra: 1830/1598,
  23057. bottom: 151/1981
  23058. },
  23059. form: "armored",
  23060. default: true
  23061. },
  23062. macroFront: {
  23063. height: math.unit(70, "feet"),
  23064. weight: math.unit(315453, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/windera/macro-front.svg",
  23068. extra: 963/883,
  23069. bottom: 23/986
  23070. },
  23071. form: "macro",
  23072. default: true
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(8, "feet"),
  23079. default: true,
  23080. form: "armored"
  23081. },
  23082. {
  23083. name: "Normal",
  23084. height: math.unit(70, "feet"),
  23085. default: true,
  23086. form: "macro"
  23087. },
  23088. ],
  23089. {
  23090. "armored": {
  23091. name: "Armored",
  23092. default: true
  23093. },
  23094. "macro": {
  23095. name: "Macro",
  23096. },
  23097. }
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23101. {
  23102. front: {
  23103. height: math.unit(28.75, "feet"),
  23104. weight: math.unit(2000, "kg"),
  23105. name: "Front",
  23106. image: {
  23107. source: "./media/characters/sonear/front.svg",
  23108. extra: 1041.1 / 964.9,
  23109. bottom: 53.7 / 1096.6
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Normal",
  23116. height: math.unit(28.75, "feet"),
  23117. default: true
  23118. },
  23119. ]
  23120. ))
  23121. characterMakers.push(() => makeCharacter(
  23122. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23123. {
  23124. side: {
  23125. height: math.unit(25.5, "feet"),
  23126. weight: math.unit(23000, "kg"),
  23127. name: "Side",
  23128. image: {
  23129. source: "./media/characters/kanara/side.svg"
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Normal",
  23136. height: math.unit(25.5, "feet"),
  23137. default: true
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23143. {
  23144. side: {
  23145. height: math.unit(10, "feet"),
  23146. weight: math.unit(1000, "kg"),
  23147. name: "Side",
  23148. image: {
  23149. source: "./media/characters/ereus/side.svg",
  23150. extra: 1157 / 959,
  23151. bottom: 153 / 1312.5
  23152. }
  23153. },
  23154. },
  23155. [
  23156. {
  23157. name: "Normal",
  23158. height: math.unit(10, "feet"),
  23159. default: true
  23160. },
  23161. ]
  23162. ))
  23163. characterMakers.push(() => makeCharacter(
  23164. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23165. {
  23166. side: {
  23167. height: math.unit(4.5, "feet"),
  23168. weight: math.unit(500, "lb"),
  23169. name: "Side",
  23170. image: {
  23171. source: "./media/characters/e-ter/side.svg",
  23172. extra: 1550 / 1248,
  23173. bottom: 146 / 1694
  23174. }
  23175. },
  23176. },
  23177. [
  23178. {
  23179. name: "Normal",
  23180. height: math.unit(4.5, "feet"),
  23181. default: true
  23182. },
  23183. ]
  23184. ))
  23185. characterMakers.push(() => makeCharacter(
  23186. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23187. {
  23188. side: {
  23189. height: math.unit(9.7, "feet"),
  23190. weight: math.unit(4000, "kg"),
  23191. name: "Side",
  23192. image: {
  23193. source: "./media/characters/yamie/side.svg"
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(9.7, "feet"),
  23201. default: true
  23202. },
  23203. ]
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23207. {
  23208. front: {
  23209. height: math.unit(50, "feet"),
  23210. weight: math.unit(50000, "kg"),
  23211. name: "Front",
  23212. image: {
  23213. source: "./media/characters/anders/front.svg",
  23214. extra: 570 / 539,
  23215. bottom: 14.7 / 586.7
  23216. }
  23217. },
  23218. },
  23219. [
  23220. {
  23221. name: "Large",
  23222. height: math.unit(50, "feet")
  23223. },
  23224. {
  23225. name: "Macro",
  23226. height: math.unit(2000, "feet"),
  23227. default: true
  23228. },
  23229. {
  23230. name: "Megamacro",
  23231. height: math.unit(12, "miles")
  23232. },
  23233. ]
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23237. {
  23238. front: {
  23239. height: math.unit(7 + 2 / 12, "feet"),
  23240. weight: math.unit(300, "lb"),
  23241. name: "Front",
  23242. image: {
  23243. source: "./media/characters/reban/front.svg",
  23244. extra: 1287/1212,
  23245. bottom: 148/1435
  23246. }
  23247. },
  23248. head: {
  23249. height: math.unit(1.95, "feet"),
  23250. name: "Head",
  23251. image: {
  23252. source: "./media/characters/reban/head.svg"
  23253. }
  23254. },
  23255. maw: {
  23256. height: math.unit(0.95, "feet"),
  23257. name: "Maw",
  23258. image: {
  23259. source: "./media/characters/reban/maw.svg"
  23260. }
  23261. },
  23262. foot: {
  23263. height: math.unit(1.65, "feet"),
  23264. name: "Foot",
  23265. image: {
  23266. source: "./media/characters/reban/foot.svg"
  23267. }
  23268. },
  23269. dick: {
  23270. height: math.unit(7 / 5, "feet"),
  23271. name: "Dick",
  23272. image: {
  23273. source: "./media/characters/reban/dick.svg"
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Natural Height",
  23280. height: math.unit(7 + 2 / 12, "feet")
  23281. },
  23282. {
  23283. name: "Macro",
  23284. height: math.unit(500, "feet"),
  23285. default: true
  23286. },
  23287. {
  23288. name: "Canon Height",
  23289. height: math.unit(50, "AU")
  23290. },
  23291. ]
  23292. ))
  23293. characterMakers.push(() => makeCharacter(
  23294. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23295. {
  23296. front: {
  23297. height: math.unit(6, "feet"),
  23298. weight: math.unit(150, "lb"),
  23299. name: "Front",
  23300. image: {
  23301. source: "./media/characters/terrance-keayes/front.svg",
  23302. extra: 1.005,
  23303. bottom: 151 / 1615
  23304. }
  23305. },
  23306. side: {
  23307. height: math.unit(6, "feet"),
  23308. weight: math.unit(150, "lb"),
  23309. name: "Side",
  23310. image: {
  23311. source: "./media/characters/terrance-keayes/side.svg",
  23312. extra: 1.005,
  23313. bottom: 129.4 / 1544
  23314. }
  23315. },
  23316. back: {
  23317. height: math.unit(6, "feet"),
  23318. weight: math.unit(150, "lb"),
  23319. name: "Back",
  23320. image: {
  23321. source: "./media/characters/terrance-keayes/back.svg",
  23322. extra: 1.005,
  23323. bottom: 58.4 / 1557.3
  23324. }
  23325. },
  23326. dick: {
  23327. height: math.unit(6 * 0.208, "feet"),
  23328. name: "Dick",
  23329. image: {
  23330. source: "./media/characters/terrance-keayes/dick.svg"
  23331. }
  23332. },
  23333. },
  23334. [
  23335. {
  23336. name: "Canon Height",
  23337. height: math.unit(35, "miles"),
  23338. default: true
  23339. },
  23340. ]
  23341. ))
  23342. characterMakers.push(() => makeCharacter(
  23343. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23344. {
  23345. front: {
  23346. height: math.unit(6, "feet"),
  23347. weight: math.unit(150, "lb"),
  23348. name: "Front",
  23349. image: {
  23350. source: "./media/characters/ofelia/front.svg",
  23351. extra: 1130/1117,
  23352. bottom: 91/1221
  23353. }
  23354. },
  23355. back: {
  23356. height: math.unit(6, "feet"),
  23357. weight: math.unit(150, "lb"),
  23358. name: "Back",
  23359. image: {
  23360. source: "./media/characters/ofelia/back.svg",
  23361. extra: 1172/1159,
  23362. bottom: 28/1200
  23363. }
  23364. },
  23365. maw: {
  23366. height: math.unit(1, "feet"),
  23367. name: "Maw",
  23368. image: {
  23369. source: "./media/characters/ofelia/maw.svg"
  23370. }
  23371. },
  23372. foot: {
  23373. height: math.unit(1.949, "feet"),
  23374. name: "Foot",
  23375. image: {
  23376. source: "./media/characters/ofelia/foot.svg"
  23377. }
  23378. },
  23379. },
  23380. [
  23381. {
  23382. name: "Canon Height",
  23383. height: math.unit(2000, "miles"),
  23384. default: true
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23390. {
  23391. front: {
  23392. height: math.unit(6, "feet"),
  23393. weight: math.unit(150, "lb"),
  23394. name: "Front",
  23395. image: {
  23396. source: "./media/characters/samuel/front.svg",
  23397. extra: 265 / 258,
  23398. bottom: 2 / 266.1566
  23399. }
  23400. },
  23401. },
  23402. [
  23403. {
  23404. name: "Macro",
  23405. height: math.unit(100, "feet"),
  23406. default: true
  23407. },
  23408. {
  23409. name: "Full Size",
  23410. height: math.unit(1000, "miles")
  23411. },
  23412. ]
  23413. ))
  23414. characterMakers.push(() => makeCharacter(
  23415. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23416. {
  23417. front: {
  23418. height: math.unit(6, "feet"),
  23419. weight: math.unit(300, "lb"),
  23420. name: "Front",
  23421. image: {
  23422. source: "./media/characters/beishir-kiel/front.svg",
  23423. extra: 569 / 547,
  23424. bottom: 41.9 / 609
  23425. }
  23426. },
  23427. maw: {
  23428. height: math.unit(6 * 0.202, "feet"),
  23429. name: "Maw",
  23430. image: {
  23431. source: "./media/characters/beishir-kiel/maw.svg"
  23432. }
  23433. },
  23434. },
  23435. [
  23436. {
  23437. name: "Macro",
  23438. height: math.unit(300, "feet"),
  23439. default: true
  23440. },
  23441. ]
  23442. ))
  23443. characterMakers.push(() => makeCharacter(
  23444. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23445. {
  23446. front: {
  23447. height: math.unit(5 + 7/12, "feet"),
  23448. weight: math.unit(120, "lb"),
  23449. name: "Front",
  23450. image: {
  23451. source: "./media/characters/logan-grey/front.svg",
  23452. extra: 1836/1738,
  23453. bottom: 108/1944
  23454. }
  23455. },
  23456. back: {
  23457. height: math.unit(5 + 7/12, "feet"),
  23458. weight: math.unit(120, "lb"),
  23459. name: "Back",
  23460. image: {
  23461. source: "./media/characters/logan-grey/back.svg",
  23462. extra: 1880/1794,
  23463. bottom: 24/1904
  23464. }
  23465. },
  23466. frontSfw: {
  23467. height: math.unit(5 + 7/12, "feet"),
  23468. weight: math.unit(120, "lb"),
  23469. name: "Front (SFW)",
  23470. image: {
  23471. source: "./media/characters/logan-grey/front-sfw.svg",
  23472. extra: 1836/1738,
  23473. bottom: 108/1944
  23474. }
  23475. },
  23476. backSfw: {
  23477. height: math.unit(5 + 7/12, "feet"),
  23478. weight: math.unit(120, "lb"),
  23479. name: "Back (SFW)",
  23480. image: {
  23481. source: "./media/characters/logan-grey/back-sfw.svg",
  23482. extra: 1880/1794,
  23483. bottom: 24/1904
  23484. }
  23485. },
  23486. hands: {
  23487. height: math.unit(0.84, "feet"),
  23488. name: "Hands",
  23489. image: {
  23490. source: "./media/characters/logan-grey/hands.svg"
  23491. }
  23492. },
  23493. paws: {
  23494. height: math.unit(0.72, "feet"),
  23495. name: "Paws",
  23496. image: {
  23497. source: "./media/characters/logan-grey/paws.svg"
  23498. }
  23499. },
  23500. cock: {
  23501. height: math.unit(1.45, "feet"),
  23502. name: "Cock",
  23503. image: {
  23504. source: "./media/characters/logan-grey/cock.svg"
  23505. }
  23506. },
  23507. cockAlt: {
  23508. height: math.unit(1.437, "feet"),
  23509. name: "Cock (alt)",
  23510. image: {
  23511. source: "./media/characters/logan-grey/cock-alt.svg"
  23512. }
  23513. },
  23514. },
  23515. [
  23516. {
  23517. name: "Normal",
  23518. height: math.unit(5 + 8 / 12, "feet")
  23519. },
  23520. {
  23521. name: "The 500 Foot Femboy",
  23522. height: math.unit(500, "feet"),
  23523. default: true
  23524. },
  23525. {
  23526. name: "Megmacro",
  23527. height: math.unit(20, "miles")
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23533. {
  23534. front: {
  23535. height: math.unit(8 + 2 / 12, "feet"),
  23536. weight: math.unit(275, "lb"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/draganta/front.svg",
  23540. extra: 1177 / 1135,
  23541. bottom: 33.46 / 1212.1
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Normal",
  23548. height: math.unit(8 + 6 / 12, "feet"),
  23549. default: true
  23550. },
  23551. {
  23552. name: "Macro",
  23553. height: math.unit(150, "feet")
  23554. },
  23555. {
  23556. name: "Megamacro",
  23557. height: math.unit(1000, "miles")
  23558. },
  23559. ]
  23560. ))
  23561. characterMakers.push(() => makeCharacter(
  23562. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23563. {
  23564. front: {
  23565. height: math.unit(1.72, "m"),
  23566. weight: math.unit(80, "lb"),
  23567. name: "Front",
  23568. image: {
  23569. source: "./media/characters/voski/front.svg",
  23570. extra: 2076.22 / 2022.4,
  23571. bottom: 102.7 / 2177.3866
  23572. }
  23573. },
  23574. frontFlaccid: {
  23575. height: math.unit(1.72, "m"),
  23576. weight: math.unit(80, "lb"),
  23577. name: "Front (Flaccid)",
  23578. image: {
  23579. source: "./media/characters/voski/front-flaccid.svg",
  23580. extra: 2076.22 / 2022.4,
  23581. bottom: 102.7 / 2177.3866
  23582. }
  23583. },
  23584. frontErect: {
  23585. height: math.unit(1.72, "m"),
  23586. weight: math.unit(80, "lb"),
  23587. name: "Front (Erect)",
  23588. image: {
  23589. source: "./media/characters/voski/front-erect.svg",
  23590. extra: 2076.22 / 2022.4,
  23591. bottom: 102.7 / 2177.3866
  23592. }
  23593. },
  23594. back: {
  23595. height: math.unit(1.72, "m"),
  23596. weight: math.unit(80, "lb"),
  23597. name: "Back",
  23598. image: {
  23599. source: "./media/characters/voski/back.svg",
  23600. extra: 2104 / 2051,
  23601. bottom: 10.45 / 2113.63
  23602. }
  23603. },
  23604. },
  23605. [
  23606. {
  23607. name: "Normal",
  23608. height: math.unit(1.72, "m")
  23609. },
  23610. {
  23611. name: "Macro",
  23612. height: math.unit(55, "m"),
  23613. default: true
  23614. },
  23615. {
  23616. name: "Macro+",
  23617. height: math.unit(300, "m")
  23618. },
  23619. {
  23620. name: "Macro++",
  23621. height: math.unit(700, "m")
  23622. },
  23623. {
  23624. name: "Macro+++",
  23625. height: math.unit(4500, "m")
  23626. },
  23627. {
  23628. name: "Macro++++",
  23629. height: math.unit(45, "km")
  23630. },
  23631. {
  23632. name: "Macro+++++",
  23633. height: math.unit(1220, "km")
  23634. },
  23635. ]
  23636. ))
  23637. characterMakers.push(() => makeCharacter(
  23638. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23639. {
  23640. front: {
  23641. height: math.unit(2.3, "m"),
  23642. weight: math.unit(304, "kg"),
  23643. name: "Front",
  23644. image: {
  23645. source: "./media/characters/icowom-lee/front.svg",
  23646. extra: 985 / 955,
  23647. bottom: 25.4 / 1012
  23648. }
  23649. },
  23650. fronttentacles: {
  23651. height: math.unit(2.3, "m"),
  23652. weight: math.unit(304, "kg"),
  23653. name: "Front-tentacles",
  23654. image: {
  23655. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23656. extra: 985 / 955,
  23657. bottom: 25.4 / 1012
  23658. }
  23659. },
  23660. back: {
  23661. height: math.unit(2.3, "m"),
  23662. weight: math.unit(304, "kg"),
  23663. name: "Back",
  23664. image: {
  23665. source: "./media/characters/icowom-lee/back.svg",
  23666. extra: 975 / 954,
  23667. bottom: 9.5 / 985
  23668. }
  23669. },
  23670. backtentacles: {
  23671. height: math.unit(2.3, "m"),
  23672. weight: math.unit(304, "kg"),
  23673. name: "Back-tentacles",
  23674. image: {
  23675. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23676. extra: 975 / 954,
  23677. bottom: 9.5 / 985
  23678. }
  23679. },
  23680. frontDressed: {
  23681. height: math.unit(2.3, "m"),
  23682. weight: math.unit(304, "kg"),
  23683. name: "Front (Dressed)",
  23684. image: {
  23685. source: "./media/characters/icowom-lee/front-dressed.svg",
  23686. extra: 3076 / 2933,
  23687. bottom: 51.4 / 3125.1889
  23688. }
  23689. },
  23690. rump: {
  23691. height: math.unit(0.776, "meters"),
  23692. name: "Rump",
  23693. image: {
  23694. source: "./media/characters/icowom-lee/rump.svg"
  23695. }
  23696. },
  23697. genitals: {
  23698. height: math.unit(0.78, "meters"),
  23699. name: "Genitals",
  23700. image: {
  23701. source: "./media/characters/icowom-lee/genitals.svg"
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(2.3, "meters"),
  23709. default: true
  23710. },
  23711. {
  23712. name: "Macro",
  23713. height: math.unit(94, "meters"),
  23714. default: true
  23715. },
  23716. ]
  23717. ))
  23718. characterMakers.push(() => makeCharacter(
  23719. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23720. {
  23721. front: {
  23722. height: math.unit(22, "meters"),
  23723. weight: math.unit(21000, "kg"),
  23724. name: "Front",
  23725. image: {
  23726. source: "./media/characters/shock-diamond/front.svg",
  23727. extra: 2204 / 2053,
  23728. bottom: 65 / 2239.47
  23729. }
  23730. },
  23731. frontNude: {
  23732. height: math.unit(22, "meters"),
  23733. weight: math.unit(21000, "kg"),
  23734. name: "Front (Nude)",
  23735. image: {
  23736. source: "./media/characters/shock-diamond/front-nude.svg",
  23737. extra: 2514 / 2285,
  23738. bottom: 13 / 2527.56
  23739. }
  23740. },
  23741. },
  23742. [
  23743. {
  23744. name: "Normal",
  23745. height: math.unit(3, "meters")
  23746. },
  23747. {
  23748. name: "Macro",
  23749. height: math.unit(22, "meters"),
  23750. default: true
  23751. },
  23752. ]
  23753. ))
  23754. characterMakers.push(() => makeCharacter(
  23755. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23756. {
  23757. front: {
  23758. height: math.unit(5 + 4 / 12, "feet"),
  23759. weight: math.unit(120, "lb"),
  23760. name: "Front",
  23761. image: {
  23762. source: "./media/characters/rory/front.svg",
  23763. extra: 1318/1241,
  23764. bottom: 42/1360
  23765. }
  23766. },
  23767. back: {
  23768. height: math.unit(5 + 4 / 12, "feet"),
  23769. weight: math.unit(120, "lb"),
  23770. name: "Back",
  23771. image: {
  23772. source: "./media/characters/rory/back.svg",
  23773. extra: 1318/1241,
  23774. bottom: 42/1360
  23775. }
  23776. },
  23777. butt: {
  23778. height: math.unit(1.74, "feet"),
  23779. name: "Butt",
  23780. image: {
  23781. source: "./media/characters/rory/butt.svg"
  23782. }
  23783. },
  23784. dick: {
  23785. height: math.unit(1.02, "feet"),
  23786. name: "Dick",
  23787. image: {
  23788. source: "./media/characters/rory/dick.svg"
  23789. }
  23790. },
  23791. paws: {
  23792. height: math.unit(1, "feet"),
  23793. name: "Paws",
  23794. image: {
  23795. source: "./media/characters/rory/paws.svg"
  23796. }
  23797. },
  23798. frontAlt: {
  23799. height: math.unit(5 + 4 / 12, "feet"),
  23800. weight: math.unit(120, "lb"),
  23801. name: "Front (Alt)",
  23802. image: {
  23803. source: "./media/characters/rory/front-alt.svg",
  23804. extra: 589 / 556,
  23805. bottom: 45.7 / 635.76
  23806. }
  23807. },
  23808. frontAltNude: {
  23809. height: math.unit(5 + 4 / 12, "feet"),
  23810. weight: math.unit(120, "lb"),
  23811. name: "Front (Alt, Nude)",
  23812. image: {
  23813. source: "./media/characters/rory/front-alt-nude.svg",
  23814. extra: 589 / 556,
  23815. bottom: 45.7 / 635.76
  23816. }
  23817. },
  23818. side: {
  23819. height: math.unit(5 + 4 / 12, "feet"),
  23820. weight: math.unit(120, "lb"),
  23821. name: "Side",
  23822. image: {
  23823. source: "./media/characters/rory/side.svg",
  23824. extra: 597 / 564,
  23825. bottom: 55 / 653
  23826. }
  23827. },
  23828. backAlt: {
  23829. height: math.unit(5 + 4 / 12, "feet"),
  23830. weight: math.unit(120, "lb"),
  23831. name: "Back (Alt)",
  23832. image: {
  23833. source: "./media/characters/rory/back-alt.svg",
  23834. extra: 620 / 585,
  23835. bottom: 8.86 / 630.43
  23836. }
  23837. },
  23838. dickAlt: {
  23839. height: math.unit(0.86, "feet"),
  23840. name: "Dick (Alt)",
  23841. image: {
  23842. source: "./media/characters/rory/dick-alt.svg"
  23843. }
  23844. },
  23845. },
  23846. [
  23847. {
  23848. name: "Normal",
  23849. height: math.unit(5 + 4 / 12, "feet"),
  23850. default: true
  23851. },
  23852. {
  23853. name: "Macro",
  23854. height: math.unit(100, "feet")
  23855. },
  23856. {
  23857. name: "Macro+",
  23858. height: math.unit(140, "feet")
  23859. },
  23860. {
  23861. name: "Macro++",
  23862. height: math.unit(300, "feet")
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23868. {
  23869. front: {
  23870. height: math.unit(5 + 9 / 12, "feet"),
  23871. weight: math.unit(190, "lb"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/sprisk/front.svg",
  23875. extra: 1225 / 1180,
  23876. bottom: 42.7 / 1266.4
  23877. }
  23878. },
  23879. frontNsfw: {
  23880. height: math.unit(5 + 9 / 12, "feet"),
  23881. weight: math.unit(190, "lb"),
  23882. name: "Front (NSFW)",
  23883. image: {
  23884. source: "./media/characters/sprisk/front-nsfw.svg",
  23885. extra: 1225 / 1180,
  23886. bottom: 42.7 / 1266.4
  23887. }
  23888. },
  23889. back: {
  23890. height: math.unit(5 + 9 / 12, "feet"),
  23891. weight: math.unit(190, "lb"),
  23892. name: "Back",
  23893. image: {
  23894. source: "./media/characters/sprisk/back.svg",
  23895. extra: 1247 / 1200,
  23896. bottom: 5.6 / 1253.04
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Tiny",
  23903. height: math.unit(2, "inches")
  23904. },
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(5 + 9 / 12, "feet"),
  23908. default: true
  23909. },
  23910. {
  23911. name: "Mini Macro",
  23912. height: math.unit(18, "feet")
  23913. },
  23914. {
  23915. name: "Macro",
  23916. height: math.unit(100, "feet")
  23917. },
  23918. {
  23919. name: "MACRO",
  23920. height: math.unit(50, "miles")
  23921. },
  23922. {
  23923. name: "M A C R O",
  23924. height: math.unit(300, "miles")
  23925. },
  23926. ]
  23927. ))
  23928. characterMakers.push(() => makeCharacter(
  23929. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23930. {
  23931. side: {
  23932. height: math.unit(15.6, "meters"),
  23933. weight: math.unit(700000, "kg"),
  23934. name: "Side",
  23935. image: {
  23936. source: "./media/characters/bunsen/side.svg",
  23937. extra: 1644 / 358
  23938. }
  23939. },
  23940. foot: {
  23941. height: math.unit(1.611 * 1644 / 358, "meter"),
  23942. name: "Foot",
  23943. image: {
  23944. source: "./media/characters/bunsen/foot.svg"
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Small",
  23951. height: math.unit(10, "feet")
  23952. },
  23953. {
  23954. name: "Normal",
  23955. height: math.unit(15.6, "meters"),
  23956. default: true
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23962. {
  23963. front: {
  23964. height: math.unit(4 + 11 / 12, "feet"),
  23965. weight: math.unit(140, "lb"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/sesh/front.svg",
  23969. extra: 3420 / 3231,
  23970. bottom: 72 / 3949.5
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Normal",
  23977. height: math.unit(4 + 11 / 12, "feet")
  23978. },
  23979. {
  23980. name: "Grown",
  23981. height: math.unit(15, "feet"),
  23982. default: true
  23983. },
  23984. {
  23985. name: "Macro",
  23986. height: math.unit(1500, "feet")
  23987. },
  23988. {
  23989. name: "Megamacro",
  23990. height: math.unit(30, "miles")
  23991. },
  23992. {
  23993. name: "Continental",
  23994. height: math.unit(3000, "miles")
  23995. },
  23996. {
  23997. name: "Gravity Mass",
  23998. height: math.unit(300000, "miles")
  23999. },
  24000. {
  24001. name: "Planet Buster",
  24002. height: math.unit(30000000, "miles")
  24003. },
  24004. {
  24005. name: "Big",
  24006. height: math.unit(3000000000, "miles")
  24007. },
  24008. ]
  24009. ))
  24010. characterMakers.push(() => makeCharacter(
  24011. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24012. {
  24013. front: {
  24014. height: math.unit(9, "feet"),
  24015. weight: math.unit(350, "lb"),
  24016. name: "Front",
  24017. image: {
  24018. source: "./media/characters/pepper/front.svg",
  24019. extra: 1448 / 1312,
  24020. bottom: 9.4 / 1457.88
  24021. }
  24022. },
  24023. back: {
  24024. height: math.unit(9, "feet"),
  24025. weight: math.unit(350, "lb"),
  24026. name: "Back",
  24027. image: {
  24028. source: "./media/characters/pepper/back.svg",
  24029. extra: 1423 / 1300,
  24030. bottom: 4.6 / 1429
  24031. }
  24032. },
  24033. maw: {
  24034. height: math.unit(0.932, "feet"),
  24035. name: "Maw",
  24036. image: {
  24037. source: "./media/characters/pepper/maw.svg"
  24038. }
  24039. },
  24040. },
  24041. [
  24042. {
  24043. name: "Normal",
  24044. height: math.unit(9, "feet"),
  24045. default: true
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24051. {
  24052. front: {
  24053. height: math.unit(6, "feet"),
  24054. weight: math.unit(150, "lb"),
  24055. name: "Front",
  24056. image: {
  24057. source: "./media/characters/maelstrom/front.svg",
  24058. extra: 2100 / 1883,
  24059. bottom: 94 / 2196.7
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Less Kaiju",
  24066. height: math.unit(200, "feet")
  24067. },
  24068. {
  24069. name: "Kaiju",
  24070. height: math.unit(400, "feet"),
  24071. default: true
  24072. },
  24073. {
  24074. name: "Kaiju-er",
  24075. height: math.unit(600, "feet")
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(6 + 5 / 12, "feet"),
  24084. weight: math.unit(180, "lb"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/lexir/front.svg",
  24088. extra: 180 / 172,
  24089. bottom: 12 / 192
  24090. }
  24091. },
  24092. back: {
  24093. height: math.unit(6 + 5 / 12, "feet"),
  24094. weight: math.unit(180, "lb"),
  24095. name: "Back",
  24096. image: {
  24097. source: "./media/characters/lexir/back.svg",
  24098. extra: 1273/1201,
  24099. bottom: 39/1312
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Very Smal",
  24106. height: math.unit(1, "nm")
  24107. },
  24108. {
  24109. name: "Normal",
  24110. height: math.unit(6 + 5 / 12, "feet"),
  24111. default: true
  24112. },
  24113. {
  24114. name: "Macro",
  24115. height: math.unit(1, "mile")
  24116. },
  24117. {
  24118. name: "Megamacro",
  24119. height: math.unit(50, "miles")
  24120. },
  24121. ]
  24122. ))
  24123. characterMakers.push(() => makeCharacter(
  24124. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24125. {
  24126. front: {
  24127. height: math.unit(1.5, "meters"),
  24128. weight: math.unit(100, "lb"),
  24129. name: "Front",
  24130. image: {
  24131. source: "./media/characters/maksio/front.svg",
  24132. extra: 1549 / 1531,
  24133. bottom: 123.7 / 1674.5429
  24134. }
  24135. },
  24136. back: {
  24137. height: math.unit(1.5, "meters"),
  24138. weight: math.unit(100, "lb"),
  24139. name: "Back",
  24140. image: {
  24141. source: "./media/characters/maksio/back.svg",
  24142. extra: 1541 / 1509,
  24143. bottom: 97 / 1639
  24144. }
  24145. },
  24146. hand: {
  24147. height: math.unit(0.621, "feet"),
  24148. name: "Hand",
  24149. image: {
  24150. source: "./media/characters/maksio/hand.svg"
  24151. }
  24152. },
  24153. foot: {
  24154. height: math.unit(1.611, "feet"),
  24155. name: "Foot",
  24156. image: {
  24157. source: "./media/characters/maksio/foot.svg"
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Shrunken",
  24164. height: math.unit(10, "cm")
  24165. },
  24166. {
  24167. name: "Normal",
  24168. height: math.unit(150, "cm"),
  24169. default: true
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24175. {
  24176. front: {
  24177. height: math.unit(100, "feet"),
  24178. name: "Front",
  24179. image: {
  24180. source: "./media/characters/erza-bear/front.svg",
  24181. extra: 2449 / 2390,
  24182. bottom: 46 / 2494
  24183. }
  24184. },
  24185. back: {
  24186. height: math.unit(100, "feet"),
  24187. name: "Back",
  24188. image: {
  24189. source: "./media/characters/erza-bear/back.svg",
  24190. extra: 2489 / 2430,
  24191. bottom: 85.4 / 2480
  24192. }
  24193. },
  24194. tail: {
  24195. height: math.unit(42, "feet"),
  24196. name: "Tail",
  24197. image: {
  24198. source: "./media/characters/erza-bear/tail.svg"
  24199. }
  24200. },
  24201. tongue: {
  24202. height: math.unit(8, "feet"),
  24203. name: "Tongue",
  24204. image: {
  24205. source: "./media/characters/erza-bear/tongue.svg"
  24206. }
  24207. },
  24208. dick: {
  24209. height: math.unit(10.5, "feet"),
  24210. name: "Dick",
  24211. image: {
  24212. source: "./media/characters/erza-bear/dick.svg"
  24213. }
  24214. },
  24215. dickVertical: {
  24216. height: math.unit(16.9, "feet"),
  24217. name: "Dick (Vertical)",
  24218. image: {
  24219. source: "./media/characters/erza-bear/dick-vertical.svg"
  24220. }
  24221. },
  24222. },
  24223. [
  24224. {
  24225. name: "Macro",
  24226. height: math.unit(100, "feet"),
  24227. default: true
  24228. },
  24229. ]
  24230. ))
  24231. characterMakers.push(() => makeCharacter(
  24232. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24233. {
  24234. front: {
  24235. height: math.unit(172, "cm"),
  24236. weight: math.unit(73, "kg"),
  24237. name: "Front",
  24238. image: {
  24239. source: "./media/characters/violet-flor/front.svg",
  24240. extra: 1530 / 1442,
  24241. bottom: 61.9 / 1588.8
  24242. }
  24243. },
  24244. back: {
  24245. height: math.unit(180, "cm"),
  24246. weight: math.unit(73, "kg"),
  24247. name: "Back",
  24248. image: {
  24249. source: "./media/characters/violet-flor/back.svg",
  24250. extra: 1692 / 1630,
  24251. bottom: 20 / 1712
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Normal",
  24258. height: math.unit(172, "cm"),
  24259. default: true
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(6, "feet"),
  24268. weight: math.unit(220, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/lynn-rhea/front.svg",
  24272. extra: 310 / 273
  24273. }
  24274. },
  24275. back: {
  24276. height: math.unit(6, "feet"),
  24277. weight: math.unit(220, "lb"),
  24278. name: "Back",
  24279. image: {
  24280. source: "./media/characters/lynn-rhea/back.svg",
  24281. extra: 310 / 273
  24282. }
  24283. },
  24284. dicks: {
  24285. height: math.unit(0.9, "feet"),
  24286. name: "Dicks",
  24287. image: {
  24288. source: "./media/characters/lynn-rhea/dicks.svg"
  24289. }
  24290. },
  24291. slit: {
  24292. height: math.unit(0.4, "feet"),
  24293. name: "Slit",
  24294. image: {
  24295. source: "./media/characters/lynn-rhea/slit.svg"
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Micro",
  24302. height: math.unit(1, "inch")
  24303. },
  24304. {
  24305. name: "Macro",
  24306. height: math.unit(60, "feet"),
  24307. default: true
  24308. },
  24309. {
  24310. name: "Megamacro",
  24311. height: math.unit(2, "miles")
  24312. },
  24313. {
  24314. name: "Gigamacro",
  24315. height: math.unit(3, "earths")
  24316. },
  24317. {
  24318. name: "Galactic",
  24319. height: math.unit(0.8, "galaxies")
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24325. {
  24326. front: {
  24327. height: math.unit(1600, "feet"),
  24328. weight: math.unit(85758785169, "kg"),
  24329. name: "Front",
  24330. image: {
  24331. source: "./media/characters/valathos/front.svg",
  24332. extra: 1451 / 1339
  24333. }
  24334. },
  24335. },
  24336. [
  24337. {
  24338. name: "Macro",
  24339. height: math.unit(1600, "feet"),
  24340. default: true
  24341. },
  24342. ]
  24343. ))
  24344. characterMakers.push(() => makeCharacter(
  24345. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24346. {
  24347. front: {
  24348. height: math.unit(7 + 5 / 12, "feet"),
  24349. weight: math.unit(300, "lb"),
  24350. name: "Front",
  24351. image: {
  24352. source: "./media/characters/azula/front.svg",
  24353. extra: 3208 / 2880,
  24354. bottom: 80.2 / 3277
  24355. }
  24356. },
  24357. back: {
  24358. height: math.unit(7 + 5 / 12, "feet"),
  24359. weight: math.unit(300, "lb"),
  24360. name: "Back",
  24361. image: {
  24362. source: "./media/characters/azula/back.svg",
  24363. extra: 3169 / 2822,
  24364. bottom: 150.6 / 3321
  24365. }
  24366. },
  24367. },
  24368. [
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(7 + 5 / 12, "feet"),
  24372. default: true
  24373. },
  24374. {
  24375. name: "Big",
  24376. height: math.unit(20, "feet")
  24377. },
  24378. ]
  24379. ))
  24380. characterMakers.push(() => makeCharacter(
  24381. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24382. {
  24383. front: {
  24384. height: math.unit(5 + 1 / 12, "feet"),
  24385. weight: math.unit(110, "lb"),
  24386. name: "Front",
  24387. image: {
  24388. source: "./media/characters/rupert/front.svg",
  24389. extra: 1549 / 1495,
  24390. bottom: 54.2 / 1604.4
  24391. }
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Normal",
  24397. height: math.unit(5 + 1 / 12, "feet"),
  24398. default: true
  24399. },
  24400. ]
  24401. ))
  24402. characterMakers.push(() => makeCharacter(
  24403. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24404. {
  24405. front: {
  24406. height: math.unit(8 + 4 / 12, "feet"),
  24407. weight: math.unit(350, "lb"),
  24408. name: "Front",
  24409. image: {
  24410. source: "./media/characters/sheera-castellar/front.svg",
  24411. extra: 1957 / 1894,
  24412. bottom: 26.97 / 1975.017
  24413. }
  24414. },
  24415. side: {
  24416. height: math.unit(8 + 4 / 12, "feet"),
  24417. weight: math.unit(350, "lb"),
  24418. name: "Side",
  24419. image: {
  24420. source: "./media/characters/sheera-castellar/side.svg",
  24421. extra: 1957 / 1894
  24422. }
  24423. },
  24424. back: {
  24425. height: math.unit(8 + 4 / 12, "feet"),
  24426. weight: math.unit(350, "lb"),
  24427. name: "Back",
  24428. image: {
  24429. source: "./media/characters/sheera-castellar/back.svg",
  24430. extra: 1957 / 1894
  24431. }
  24432. },
  24433. angled: {
  24434. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24435. weight: math.unit(350, "lb"),
  24436. name: "Angled",
  24437. image: {
  24438. source: "./media/characters/sheera-castellar/angled.svg",
  24439. extra: 1807 / 1707,
  24440. bottom: 68 / 1875
  24441. }
  24442. },
  24443. genitals: {
  24444. height: math.unit(2.2, "feet"),
  24445. name: "Genitals",
  24446. image: {
  24447. source: "./media/characters/sheera-castellar/genitals.svg"
  24448. }
  24449. },
  24450. taur: {
  24451. height: math.unit(10 + 6/12, "feet"),
  24452. name: "Taur",
  24453. image: {
  24454. source: "./media/characters/sheera-castellar/taur.svg",
  24455. extra: 2017/1909,
  24456. bottom: 185/2202
  24457. }
  24458. },
  24459. },
  24460. [
  24461. {
  24462. name: "Normal",
  24463. height: math.unit(8 + 4 / 12, "feet")
  24464. },
  24465. {
  24466. name: "Macro",
  24467. height: math.unit(150, "feet"),
  24468. default: true
  24469. },
  24470. {
  24471. name: "Macro+",
  24472. height: math.unit(800, "feet")
  24473. },
  24474. ]
  24475. ))
  24476. characterMakers.push(() => makeCharacter(
  24477. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24478. {
  24479. front: {
  24480. height: math.unit(6, "feet"),
  24481. weight: math.unit(150, "lb"),
  24482. name: "Front",
  24483. image: {
  24484. source: "./media/characters/jaipur/front.svg",
  24485. extra: 3860 / 3731,
  24486. bottom: 287 / 4140
  24487. }
  24488. },
  24489. back: {
  24490. height: math.unit(6, "feet"),
  24491. weight: math.unit(150, "lb"),
  24492. name: "Back",
  24493. image: {
  24494. source: "./media/characters/jaipur/back.svg",
  24495. extra: 1637/1561,
  24496. bottom: 154/1791
  24497. }
  24498. },
  24499. },
  24500. [
  24501. {
  24502. name: "Normal",
  24503. height: math.unit(1.85, "meters"),
  24504. default: true
  24505. },
  24506. {
  24507. name: "Macro",
  24508. height: math.unit(150, "meters")
  24509. },
  24510. {
  24511. name: "Macro+",
  24512. height: math.unit(0.5, "miles")
  24513. },
  24514. {
  24515. name: "Macro++",
  24516. height: math.unit(2.5, "miles")
  24517. },
  24518. {
  24519. name: "Macro+++",
  24520. height: math.unit(12, "miles")
  24521. },
  24522. {
  24523. name: "Macro++++",
  24524. height: math.unit(120, "miles")
  24525. },
  24526. {
  24527. name: "Macro+++++",
  24528. height: math.unit(1200, "miles")
  24529. },
  24530. ]
  24531. ))
  24532. characterMakers.push(() => makeCharacter(
  24533. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24534. {
  24535. front: {
  24536. height: math.unit(6, "feet"),
  24537. weight: math.unit(150, "lb"),
  24538. name: "Front",
  24539. image: {
  24540. source: "./media/characters/sheila-wolf/front.svg",
  24541. extra: 1931 / 1808,
  24542. bottom: 29.5 / 1960
  24543. }
  24544. },
  24545. dick: {
  24546. height: math.unit(1.464, "feet"),
  24547. name: "Dick",
  24548. image: {
  24549. source: "./media/characters/sheila-wolf/dick.svg"
  24550. }
  24551. },
  24552. muzzle: {
  24553. height: math.unit(0.513, "feet"),
  24554. name: "Muzzle",
  24555. image: {
  24556. source: "./media/characters/sheila-wolf/muzzle.svg"
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Macro",
  24563. height: math.unit(70, "feet"),
  24564. default: true
  24565. },
  24566. ]
  24567. ))
  24568. characterMakers.push(() => makeCharacter(
  24569. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24570. {
  24571. front: {
  24572. height: math.unit(32, "meters"),
  24573. weight: math.unit(300000, "kg"),
  24574. name: "Front",
  24575. image: {
  24576. source: "./media/characters/almor/front.svg",
  24577. extra: 1408 / 1322,
  24578. bottom: 94.6 / 1506.5
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Macro",
  24585. height: math.unit(32, "meters"),
  24586. default: true
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24592. {
  24593. front: {
  24594. height: math.unit(7, "feet"),
  24595. weight: math.unit(200, "lb"),
  24596. name: "Front",
  24597. image: {
  24598. source: "./media/characters/silver/front.svg",
  24599. extra: 472.1 / 450.5,
  24600. bottom: 26.5 / 499.424
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Normal",
  24607. height: math.unit(7, "feet"),
  24608. default: true
  24609. },
  24610. {
  24611. name: "Macro",
  24612. height: math.unit(800, "feet")
  24613. },
  24614. {
  24615. name: "Megamacro",
  24616. height: math.unit(250, "miles")
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(6, "feet"),
  24625. weight: math.unit(150, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/pliskin/front.svg",
  24629. extra: 1469 / 1359,
  24630. bottom: 70 / 1540
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Micro",
  24637. height: math.unit(3, "inches")
  24638. },
  24639. {
  24640. name: "Normal",
  24641. height: math.unit(5 + 11 / 12, "feet"),
  24642. default: true
  24643. },
  24644. {
  24645. name: "Macro",
  24646. height: math.unit(120, "feet")
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24652. {
  24653. front: {
  24654. height: math.unit(6, "feet"),
  24655. weight: math.unit(150, "lb"),
  24656. name: "Front",
  24657. image: {
  24658. source: "./media/characters/sammy/front.svg",
  24659. extra: 1193 / 1089,
  24660. bottom: 30.5 / 1226
  24661. }
  24662. },
  24663. },
  24664. [
  24665. {
  24666. name: "Macro",
  24667. height: math.unit(1700, "feet"),
  24668. default: true
  24669. },
  24670. {
  24671. name: "Examacro",
  24672. height: math.unit(2.5e9, "lightyears")
  24673. },
  24674. ]
  24675. ))
  24676. characterMakers.push(() => makeCharacter(
  24677. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24678. {
  24679. front: {
  24680. height: math.unit(21, "meters"),
  24681. weight: math.unit(12, "tonnes"),
  24682. name: "Front",
  24683. image: {
  24684. source: "./media/characters/kuru/front.svg",
  24685. extra: 4301 / 3785,
  24686. bottom: 371.3 / 4691
  24687. }
  24688. },
  24689. },
  24690. [
  24691. {
  24692. name: "Macro",
  24693. height: math.unit(21, "meters"),
  24694. default: true
  24695. },
  24696. ]
  24697. ))
  24698. characterMakers.push(() => makeCharacter(
  24699. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24700. {
  24701. front: {
  24702. height: math.unit(23, "meters"),
  24703. weight: math.unit(12.2, "tonnes"),
  24704. name: "Front",
  24705. image: {
  24706. source: "./media/characters/rakka/front.svg",
  24707. extra: 4670 / 4169,
  24708. bottom: 301 / 4968.7
  24709. }
  24710. },
  24711. },
  24712. [
  24713. {
  24714. name: "Macro",
  24715. height: math.unit(23, "meters"),
  24716. default: true
  24717. },
  24718. ]
  24719. ))
  24720. characterMakers.push(() => makeCharacter(
  24721. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24722. {
  24723. front: {
  24724. height: math.unit(6, "feet"),
  24725. weight: math.unit(150, "lb"),
  24726. name: "Front",
  24727. image: {
  24728. source: "./media/characters/rhys-feline/front.svg",
  24729. extra: 2488 / 2308,
  24730. bottom: 35.67 / 2519.19
  24731. }
  24732. },
  24733. },
  24734. [
  24735. {
  24736. name: "Really Small",
  24737. height: math.unit(1, "nm")
  24738. },
  24739. {
  24740. name: "Micro",
  24741. height: math.unit(4, "inches")
  24742. },
  24743. {
  24744. name: "Normal",
  24745. height: math.unit(4 + 10 / 12, "feet"),
  24746. default: true
  24747. },
  24748. {
  24749. name: "Macro",
  24750. height: math.unit(100, "feet")
  24751. },
  24752. {
  24753. name: "Megamacto",
  24754. height: math.unit(50, "miles")
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24760. {
  24761. side: {
  24762. height: math.unit(30, "feet"),
  24763. weight: math.unit(35000, "kg"),
  24764. name: "Side",
  24765. image: {
  24766. source: "./media/characters/alydar/side.svg",
  24767. extra: 234 / 222,
  24768. bottom: 6.5 / 241
  24769. }
  24770. },
  24771. front: {
  24772. height: math.unit(30, "feet"),
  24773. weight: math.unit(35000, "kg"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/alydar/front.svg",
  24777. extra: 223.37 / 210.2,
  24778. bottom: 22.3 / 246.76
  24779. }
  24780. },
  24781. top: {
  24782. height: math.unit(64.54, "feet"),
  24783. weight: math.unit(35000, "kg"),
  24784. name: "Top",
  24785. image: {
  24786. source: "./media/characters/alydar/top.svg"
  24787. }
  24788. },
  24789. anthro: {
  24790. height: math.unit(30, "feet"),
  24791. weight: math.unit(9000, "kg"),
  24792. name: "Anthro",
  24793. image: {
  24794. source: "./media/characters/alydar/anthro.svg",
  24795. extra: 432 / 421,
  24796. bottom: 7.18 / 440
  24797. }
  24798. },
  24799. maw: {
  24800. height: math.unit(11.693, "feet"),
  24801. name: "Maw",
  24802. image: {
  24803. source: "./media/characters/alydar/maw.svg"
  24804. }
  24805. },
  24806. head: {
  24807. height: math.unit(11.693, "feet"),
  24808. name: "Head",
  24809. image: {
  24810. source: "./media/characters/alydar/head.svg"
  24811. }
  24812. },
  24813. headAlt: {
  24814. height: math.unit(12.861, "feet"),
  24815. name: "Head (Alt)",
  24816. image: {
  24817. source: "./media/characters/alydar/head-alt.svg"
  24818. }
  24819. },
  24820. wing: {
  24821. height: math.unit(20.712, "feet"),
  24822. name: "Wing",
  24823. image: {
  24824. source: "./media/characters/alydar/wing.svg"
  24825. }
  24826. },
  24827. wingFeather: {
  24828. height: math.unit(9.662, "feet"),
  24829. name: "Wing Feather",
  24830. image: {
  24831. source: "./media/characters/alydar/wing-feather.svg"
  24832. }
  24833. },
  24834. countourFeather: {
  24835. height: math.unit(4.154, "feet"),
  24836. name: "Contour Feather",
  24837. image: {
  24838. source: "./media/characters/alydar/contour-feather.svg"
  24839. }
  24840. },
  24841. },
  24842. [
  24843. {
  24844. name: "Diplomatic",
  24845. height: math.unit(13, "feet"),
  24846. default: true
  24847. },
  24848. {
  24849. name: "Small",
  24850. height: math.unit(30, "feet")
  24851. },
  24852. {
  24853. name: "Normal",
  24854. height: math.unit(95, "feet"),
  24855. default: true
  24856. },
  24857. {
  24858. name: "Large",
  24859. height: math.unit(285, "feet")
  24860. },
  24861. {
  24862. name: "Incomprehensible",
  24863. height: math.unit(450, "megameters")
  24864. },
  24865. ]
  24866. ))
  24867. characterMakers.push(() => makeCharacter(
  24868. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24869. {
  24870. side: {
  24871. height: math.unit(11, "feet"),
  24872. weight: math.unit(1750, "kg"),
  24873. name: "Side",
  24874. image: {
  24875. source: "./media/characters/selicia/side.svg",
  24876. extra: 440 / 396,
  24877. bottom: 24.8 / 465.979
  24878. }
  24879. },
  24880. maw: {
  24881. height: math.unit(4.665, "feet"),
  24882. name: "Maw",
  24883. image: {
  24884. source: "./media/characters/selicia/maw.svg"
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Normal",
  24891. height: math.unit(11, "feet"),
  24892. default: true
  24893. },
  24894. ]
  24895. ))
  24896. characterMakers.push(() => makeCharacter(
  24897. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24898. {
  24899. side: {
  24900. height: math.unit(2 + 6 / 12, "feet"),
  24901. weight: math.unit(30, "lb"),
  24902. name: "Side",
  24903. image: {
  24904. source: "./media/characters/layla/side.svg",
  24905. extra: 244 / 188,
  24906. bottom: 18.2 / 262.1
  24907. }
  24908. },
  24909. back: {
  24910. height: math.unit(2 + 6 / 12, "feet"),
  24911. weight: math.unit(30, "lb"),
  24912. name: "Back",
  24913. image: {
  24914. source: "./media/characters/layla/back.svg",
  24915. extra: 308 / 241.5,
  24916. bottom: 8.9 / 316.8
  24917. }
  24918. },
  24919. cumming: {
  24920. height: math.unit(2 + 6 / 12, "feet"),
  24921. weight: math.unit(30, "lb"),
  24922. name: "Cumming",
  24923. image: {
  24924. source: "./media/characters/layla/cumming.svg",
  24925. extra: 342 / 279,
  24926. bottom: 595 / 938
  24927. }
  24928. },
  24929. dickFlaccid: {
  24930. height: math.unit(2.595, "feet"),
  24931. name: "Flaccid Genitals",
  24932. image: {
  24933. source: "./media/characters/layla/dick-flaccid.svg"
  24934. }
  24935. },
  24936. dickErect: {
  24937. height: math.unit(2.359, "feet"),
  24938. name: "Erect Genitals",
  24939. image: {
  24940. source: "./media/characters/layla/dick-erect.svg"
  24941. }
  24942. },
  24943. dragon: {
  24944. height: math.unit(40, "feet"),
  24945. name: "Dragon",
  24946. image: {
  24947. source: "./media/characters/layla/dragon.svg",
  24948. extra: 610/535,
  24949. bottom: 367/977
  24950. }
  24951. },
  24952. taur: {
  24953. height: math.unit(30, "feet"),
  24954. name: "Taur",
  24955. image: {
  24956. source: "./media/characters/layla/taur.svg",
  24957. extra: 1268/1199,
  24958. bottom: 112/1380
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "Micro",
  24965. height: math.unit(1, "inch")
  24966. },
  24967. {
  24968. name: "Small",
  24969. height: math.unit(1, "foot")
  24970. },
  24971. {
  24972. name: "Normal",
  24973. height: math.unit(2 + 6 / 12, "feet"),
  24974. default: true
  24975. },
  24976. {
  24977. name: "Macro",
  24978. height: math.unit(200, "feet")
  24979. },
  24980. {
  24981. name: "Megamacro",
  24982. height: math.unit(1000, "miles")
  24983. },
  24984. {
  24985. name: "Planetary",
  24986. height: math.unit(8000, "miles")
  24987. },
  24988. {
  24989. name: "True Layla",
  24990. height: math.unit(200000 * 7, "multiverses")
  24991. },
  24992. ]
  24993. ))
  24994. characterMakers.push(() => makeCharacter(
  24995. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24996. {
  24997. back: {
  24998. height: math.unit(10.5, "feet"),
  24999. weight: math.unit(800, "lb"),
  25000. name: "Back",
  25001. image: {
  25002. source: "./media/characters/knox/back.svg",
  25003. extra: 1486 / 1089,
  25004. bottom: 107 / 1601.4
  25005. }
  25006. },
  25007. side: {
  25008. height: math.unit(10.5, "feet"),
  25009. weight: math.unit(800, "lb"),
  25010. name: "Side",
  25011. image: {
  25012. source: "./media/characters/knox/side.svg",
  25013. extra: 244 / 218,
  25014. bottom: 14 / 260
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Compact",
  25021. height: math.unit(10.5, "feet"),
  25022. default: true
  25023. },
  25024. {
  25025. name: "Dynamax",
  25026. height: math.unit(210, "feet")
  25027. },
  25028. {
  25029. name: "Full Macro",
  25030. height: math.unit(850, "feet")
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25036. {
  25037. front: {
  25038. height: math.unit(28, "feet"),
  25039. weight: math.unit(10500, "lb"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/kayda/front.svg",
  25043. extra: 1536 / 1428,
  25044. bottom: 68.7 / 1603
  25045. }
  25046. },
  25047. back: {
  25048. height: math.unit(28, "feet"),
  25049. weight: math.unit(10500, "lb"),
  25050. name: "Back",
  25051. image: {
  25052. source: "./media/characters/kayda/back.svg",
  25053. extra: 1557 / 1464,
  25054. bottom: 39.5 / 1597.49
  25055. }
  25056. },
  25057. dick: {
  25058. height: math.unit(3.858, "feet"),
  25059. name: "Dick",
  25060. image: {
  25061. source: "./media/characters/kayda/dick.svg"
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Macro",
  25068. height: math.unit(28, "feet"),
  25069. default: true
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(10 + 11 / 12, "feet"),
  25078. weight: math.unit(1400, "lb"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/brian/front.svg",
  25082. extra: 737 / 692,
  25083. bottom: 55.4 / 785
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Normal",
  25090. height: math.unit(10 + 11 / 12, "feet"),
  25091. default: true
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25097. {
  25098. front: {
  25099. height: math.unit(5 + 8 / 12, "feet"),
  25100. weight: math.unit(140, "lb"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/khemri/front.svg",
  25104. extra: 4780 / 4059,
  25105. bottom: 80.1 / 4859.25
  25106. }
  25107. },
  25108. },
  25109. [
  25110. {
  25111. name: "Micro",
  25112. height: math.unit(6, "inches")
  25113. },
  25114. {
  25115. name: "Normal",
  25116. height: math.unit(5 + 8 / 12, "feet"),
  25117. default: true
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25123. {
  25124. front: {
  25125. height: math.unit(13, "feet"),
  25126. weight: math.unit(1700, "lb"),
  25127. name: "Front",
  25128. image: {
  25129. source: "./media/characters/felix-braveheart/front.svg",
  25130. extra: 1222 / 1157,
  25131. bottom: 53.2 / 1280
  25132. }
  25133. },
  25134. back: {
  25135. height: math.unit(13, "feet"),
  25136. weight: math.unit(1700, "lb"),
  25137. name: "Back",
  25138. image: {
  25139. source: "./media/characters/felix-braveheart/back.svg",
  25140. extra: 1277 / 1203,
  25141. bottom: 50.2 / 1327
  25142. }
  25143. },
  25144. feral: {
  25145. height: math.unit(6, "feet"),
  25146. weight: math.unit(400, "lb"),
  25147. name: "Feral",
  25148. image: {
  25149. source: "./media/characters/felix-braveheart/feral.svg",
  25150. extra: 682 / 625,
  25151. bottom: 6.9 / 688
  25152. }
  25153. },
  25154. },
  25155. [
  25156. {
  25157. name: "Normal",
  25158. height: math.unit(13, "feet"),
  25159. default: true
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25165. {
  25166. side: {
  25167. height: math.unit(5 + 11 / 12, "feet"),
  25168. weight: math.unit(1400, "lb"),
  25169. name: "Side",
  25170. image: {
  25171. source: "./media/characters/shadow-blade/side.svg",
  25172. extra: 1726 / 1267,
  25173. bottom: 58.4 / 1785
  25174. }
  25175. },
  25176. },
  25177. [
  25178. {
  25179. name: "Normal",
  25180. height: math.unit(5 + 11 / 12, "feet"),
  25181. default: true
  25182. },
  25183. ]
  25184. ))
  25185. characterMakers.push(() => makeCharacter(
  25186. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25187. {
  25188. front: {
  25189. height: math.unit(1 + 6 / 12, "feet"),
  25190. weight: math.unit(25, "lb"),
  25191. name: "Front",
  25192. image: {
  25193. source: "./media/characters/karla-halldor/front.svg",
  25194. extra: 1459 / 1383,
  25195. bottom: 12 / 1472
  25196. }
  25197. },
  25198. },
  25199. [
  25200. {
  25201. name: "Normal",
  25202. height: math.unit(1 + 6 / 12, "feet"),
  25203. default: true
  25204. },
  25205. ]
  25206. ))
  25207. characterMakers.push(() => makeCharacter(
  25208. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25209. {
  25210. front: {
  25211. height: math.unit(6 + 2 / 12, "feet"),
  25212. weight: math.unit(160, "lb"),
  25213. name: "Front",
  25214. image: {
  25215. source: "./media/characters/ariam/front.svg",
  25216. extra: 1073/976,
  25217. bottom: 52/1125
  25218. }
  25219. },
  25220. back: {
  25221. height: math.unit(6 + 2/12, "feet"),
  25222. weight: math.unit(160, "lb"),
  25223. name: "Back",
  25224. image: {
  25225. source: "./media/characters/ariam/back.svg",
  25226. extra: 1103/1023,
  25227. bottom: 9/1112
  25228. }
  25229. },
  25230. dressed: {
  25231. height: math.unit(6 + 2/12, "feet"),
  25232. weight: math.unit(160, "lb"),
  25233. name: "Dressed",
  25234. image: {
  25235. source: "./media/characters/ariam/dressed.svg",
  25236. extra: 1099/1009,
  25237. bottom: 25/1124
  25238. }
  25239. },
  25240. squatting: {
  25241. height: math.unit(4.1, "feet"),
  25242. weight: math.unit(160, "lb"),
  25243. name: "Squatting",
  25244. image: {
  25245. source: "./media/characters/ariam/squatting.svg",
  25246. extra: 2617 / 2112,
  25247. bottom: 61.2 / 2681,
  25248. }
  25249. },
  25250. },
  25251. [
  25252. {
  25253. name: "Normal",
  25254. height: math.unit(6 + 2 / 12, "feet"),
  25255. default: true
  25256. },
  25257. {
  25258. name: "Normal+",
  25259. height: math.unit(4, "meters")
  25260. },
  25261. {
  25262. name: "Macro",
  25263. height: math.unit(50, "meters")
  25264. },
  25265. {
  25266. name: "Macro+",
  25267. height: math.unit(100, "meters")
  25268. },
  25269. {
  25270. name: "Megamacro",
  25271. height: math.unit(20, "km")
  25272. },
  25273. {
  25274. name: "Caretaker",
  25275. height: math.unit(444, "megameters")
  25276. },
  25277. ]
  25278. ))
  25279. characterMakers.push(() => makeCharacter(
  25280. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25281. {
  25282. front: {
  25283. height: math.unit(1.67, "meters"),
  25284. weight: math.unit(140, "lb"),
  25285. name: "Front",
  25286. image: {
  25287. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25288. extra: 438 / 410,
  25289. bottom: 0.75 / 439
  25290. }
  25291. },
  25292. },
  25293. [
  25294. {
  25295. name: "Shrunken",
  25296. height: math.unit(7.6, "cm")
  25297. },
  25298. {
  25299. name: "Human Scale",
  25300. height: math.unit(1.67, "meters")
  25301. },
  25302. {
  25303. name: "Wolxi Scale",
  25304. height: math.unit(36.7, "meters"),
  25305. default: true
  25306. },
  25307. ]
  25308. ))
  25309. characterMakers.push(() => makeCharacter(
  25310. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25311. {
  25312. front: {
  25313. height: math.unit(1.73, "meters"),
  25314. weight: math.unit(240, "lb"),
  25315. name: "Front",
  25316. image: {
  25317. source: "./media/characters/izue-two-mothers/front.svg",
  25318. extra: 469 / 437,
  25319. bottom: 1.24 / 470.6
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Shrunken",
  25326. height: math.unit(7.86, "cm")
  25327. },
  25328. {
  25329. name: "Human Scale",
  25330. height: math.unit(1.73, "meters")
  25331. },
  25332. {
  25333. name: "Wolxi Scale",
  25334. height: math.unit(38, "meters"),
  25335. default: true
  25336. },
  25337. ]
  25338. ))
  25339. characterMakers.push(() => makeCharacter(
  25340. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25341. {
  25342. front: {
  25343. height: math.unit(1.55, "meters"),
  25344. weight: math.unit(120, "lb"),
  25345. name: "Front",
  25346. image: {
  25347. source: "./media/characters/teeku-love-shack/front.svg",
  25348. extra: 387 / 362,
  25349. bottom: 1.51 / 388
  25350. }
  25351. },
  25352. },
  25353. [
  25354. {
  25355. name: "Shrunken",
  25356. height: math.unit(7, "cm")
  25357. },
  25358. {
  25359. name: "Human Scale",
  25360. height: math.unit(1.55, "meters")
  25361. },
  25362. {
  25363. name: "Wolxi Scale",
  25364. height: math.unit(34.1, "meters"),
  25365. default: true
  25366. },
  25367. ]
  25368. ))
  25369. characterMakers.push(() => makeCharacter(
  25370. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25371. {
  25372. front: {
  25373. height: math.unit(1.83, "meters"),
  25374. weight: math.unit(135, "lb"),
  25375. name: "Front",
  25376. image: {
  25377. source: "./media/characters/dejma-the-red/front.svg",
  25378. extra: 480 / 458,
  25379. bottom: 1.8 / 482
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Shrunken",
  25386. height: math.unit(8.3, "cm")
  25387. },
  25388. {
  25389. name: "Human Scale",
  25390. height: math.unit(1.83, "meters")
  25391. },
  25392. {
  25393. name: "Wolxi Scale",
  25394. height: math.unit(40, "meters"),
  25395. default: true
  25396. },
  25397. ]
  25398. ))
  25399. characterMakers.push(() => makeCharacter(
  25400. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25401. {
  25402. front: {
  25403. height: math.unit(1.78, "meters"),
  25404. weight: math.unit(65, "kg"),
  25405. name: "Front",
  25406. image: {
  25407. source: "./media/characters/aki/front.svg",
  25408. extra: 452 / 415
  25409. }
  25410. },
  25411. frontNsfw: {
  25412. height: math.unit(1.78, "meters"),
  25413. weight: math.unit(65, "kg"),
  25414. name: "Front (NSFW)",
  25415. image: {
  25416. source: "./media/characters/aki/front-nsfw.svg",
  25417. extra: 452 / 415
  25418. }
  25419. },
  25420. back: {
  25421. height: math.unit(1.78, "meters"),
  25422. weight: math.unit(65, "kg"),
  25423. name: "Back",
  25424. image: {
  25425. source: "./media/characters/aki/back.svg",
  25426. extra: 452 / 415
  25427. }
  25428. },
  25429. rump: {
  25430. height: math.unit(2.05, "feet"),
  25431. name: "Rump",
  25432. image: {
  25433. source: "./media/characters/aki/rump.svg"
  25434. }
  25435. },
  25436. dick: {
  25437. height: math.unit(0.95, "feet"),
  25438. name: "Dick",
  25439. image: {
  25440. source: "./media/characters/aki/dick.svg"
  25441. }
  25442. },
  25443. },
  25444. [
  25445. {
  25446. name: "Micro",
  25447. height: math.unit(15, "cm")
  25448. },
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(178, "cm"),
  25452. default: true
  25453. },
  25454. {
  25455. name: "Macro",
  25456. height: math.unit(214, "m")
  25457. },
  25458. {
  25459. name: "Macro+",
  25460. height: math.unit(534, "m")
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25466. {
  25467. front: {
  25468. height: math.unit(5 + 5 / 12, "feet"),
  25469. weight: math.unit(120, "lb"),
  25470. name: "Front",
  25471. image: {
  25472. source: "./media/characters/ari/front.svg",
  25473. extra: 1550/1471,
  25474. bottom: 39/1589
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Normal",
  25481. height: math.unit(5 + 5 / 12, "feet")
  25482. },
  25483. {
  25484. name: "Macro",
  25485. height: math.unit(100, "feet"),
  25486. default: true
  25487. },
  25488. {
  25489. name: "Megamacro",
  25490. height: math.unit(100, "miles")
  25491. },
  25492. {
  25493. name: "Gigamacro",
  25494. height: math.unit(80000, "miles")
  25495. },
  25496. ]
  25497. ))
  25498. characterMakers.push(() => makeCharacter(
  25499. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25500. {
  25501. side: {
  25502. height: math.unit(9, "feet"),
  25503. weight: math.unit(400, "kg"),
  25504. name: "Side",
  25505. image: {
  25506. source: "./media/characters/bolt/side.svg",
  25507. extra: 1126 / 896,
  25508. bottom: 60 / 1187.3,
  25509. }
  25510. },
  25511. },
  25512. [
  25513. {
  25514. name: "Micro",
  25515. height: math.unit(5, "inches")
  25516. },
  25517. {
  25518. name: "Normal",
  25519. height: math.unit(9, "feet"),
  25520. default: true
  25521. },
  25522. {
  25523. name: "Macro",
  25524. height: math.unit(700, "feet")
  25525. },
  25526. {
  25527. name: "Max Size",
  25528. height: math.unit(1.52e22, "yottameters")
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25534. {
  25535. front: {
  25536. height: math.unit(4.3, "meters"),
  25537. weight: math.unit(3, "tons"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/draekon-sylviar/front.svg",
  25541. extra: 2072/1512,
  25542. bottom: 74/2146
  25543. }
  25544. },
  25545. back: {
  25546. height: math.unit(4.3, "meters"),
  25547. weight: math.unit(3, "tons"),
  25548. name: "Back",
  25549. image: {
  25550. source: "./media/characters/draekon-sylviar/back.svg",
  25551. extra: 1639/1483,
  25552. bottom: 41/1680
  25553. }
  25554. },
  25555. feral: {
  25556. height: math.unit(1.15, "meters"),
  25557. weight: math.unit(3, "tons"),
  25558. name: "Feral",
  25559. image: {
  25560. source: "./media/characters/draekon-sylviar/feral.svg",
  25561. extra: 1033/395,
  25562. bottom: 130/1163
  25563. }
  25564. },
  25565. maw: {
  25566. height: math.unit(1.3, "meters"),
  25567. name: "Maw",
  25568. image: {
  25569. source: "./media/characters/draekon-sylviar/maw.svg"
  25570. }
  25571. },
  25572. mawSeparated: {
  25573. height: math.unit(1.53, "meters"),
  25574. name: "Separated Maw",
  25575. image: {
  25576. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25577. }
  25578. },
  25579. tail: {
  25580. height: math.unit(1.15, "meters"),
  25581. name: "Tail",
  25582. image: {
  25583. source: "./media/characters/draekon-sylviar/tail.svg"
  25584. }
  25585. },
  25586. tailDick: {
  25587. height: math.unit(1.15, "meters"),
  25588. name: "Tail (Dick)",
  25589. image: {
  25590. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25591. }
  25592. },
  25593. tailDickSeparated: {
  25594. height: math.unit(1.19, "meters"),
  25595. name: "Tail (Separated Dick)",
  25596. image: {
  25597. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25598. }
  25599. },
  25600. slit: {
  25601. height: math.unit(1, "meters"),
  25602. name: "Slit",
  25603. image: {
  25604. source: "./media/characters/draekon-sylviar/slit.svg"
  25605. }
  25606. },
  25607. dick: {
  25608. height: math.unit(1.15, "meters"),
  25609. name: "Dick",
  25610. image: {
  25611. source: "./media/characters/draekon-sylviar/dick.svg"
  25612. }
  25613. },
  25614. dickSeparated: {
  25615. height: math.unit(1.1, "meters"),
  25616. name: "Separated Dick",
  25617. image: {
  25618. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25619. }
  25620. },
  25621. sheath: {
  25622. height: math.unit(1.15, "meters"),
  25623. name: "Sheath",
  25624. image: {
  25625. source: "./media/characters/draekon-sylviar/sheath.svg"
  25626. }
  25627. },
  25628. },
  25629. [
  25630. {
  25631. name: "Small",
  25632. height: math.unit(4.53 / 2, "meters"),
  25633. default: true
  25634. },
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(4.53, "meters"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Large",
  25642. height: math.unit(4.53 * 2, "meters"),
  25643. },
  25644. ]
  25645. ))
  25646. characterMakers.push(() => makeCharacter(
  25647. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25648. {
  25649. front: {
  25650. height: math.unit(6 + 2 / 12, "feet"),
  25651. weight: math.unit(180, "lb"),
  25652. name: "Front",
  25653. image: {
  25654. source: "./media/characters/brawler/front.svg",
  25655. extra: 3301 / 3027,
  25656. bottom: 138 / 3439
  25657. }
  25658. },
  25659. },
  25660. [
  25661. {
  25662. name: "Normal",
  25663. height: math.unit(6 + 2 / 12, "feet"),
  25664. default: true
  25665. },
  25666. ]
  25667. ))
  25668. characterMakers.push(() => makeCharacter(
  25669. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25670. {
  25671. front: {
  25672. height: math.unit(11, "feet"),
  25673. weight: math.unit(1000, "lb"),
  25674. name: "Front",
  25675. image: {
  25676. source: "./media/characters/alex/front.svg",
  25677. bottom: 44.5 / 620
  25678. }
  25679. },
  25680. },
  25681. [
  25682. {
  25683. name: "Micro",
  25684. height: math.unit(5, "inches")
  25685. },
  25686. {
  25687. name: "Normal",
  25688. height: math.unit(11, "feet"),
  25689. default: true
  25690. },
  25691. {
  25692. name: "Macro",
  25693. height: math.unit(9.5e9, "feet")
  25694. },
  25695. {
  25696. name: "Max Size",
  25697. height: math.unit(1.4e283, "yottameters")
  25698. },
  25699. ]
  25700. ))
  25701. characterMakers.push(() => makeCharacter(
  25702. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25703. {
  25704. female: {
  25705. height: math.unit(29.9, "m"),
  25706. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25707. name: "Female",
  25708. image: {
  25709. source: "./media/characters/zenari/female.svg",
  25710. extra: 3281.6 / 3217,
  25711. bottom: 72.2 / 3353
  25712. }
  25713. },
  25714. male: {
  25715. height: math.unit(27.7, "m"),
  25716. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25717. name: "Male",
  25718. image: {
  25719. source: "./media/characters/zenari/male.svg",
  25720. extra: 3008 / 2991,
  25721. bottom: 54.6 / 3069
  25722. }
  25723. },
  25724. },
  25725. [
  25726. {
  25727. name: "Macro",
  25728. height: math.unit(29.7, "meters"),
  25729. default: true
  25730. },
  25731. ]
  25732. ))
  25733. characterMakers.push(() => makeCharacter(
  25734. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25735. {
  25736. female: {
  25737. height: math.unit(23.8, "m"),
  25738. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25739. name: "Female",
  25740. image: {
  25741. source: "./media/characters/mactarian/female.svg",
  25742. extra: 2662 / 2569,
  25743. bottom: 73 / 2736
  25744. }
  25745. },
  25746. male: {
  25747. height: math.unit(23.8, "m"),
  25748. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25749. name: "Male",
  25750. image: {
  25751. source: "./media/characters/mactarian/male.svg",
  25752. extra: 2673 / 2600,
  25753. bottom: 76 / 2750
  25754. }
  25755. },
  25756. },
  25757. [
  25758. {
  25759. name: "Macro",
  25760. height: math.unit(23.8, "meters"),
  25761. default: true
  25762. },
  25763. ]
  25764. ))
  25765. characterMakers.push(() => makeCharacter(
  25766. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25767. {
  25768. female: {
  25769. height: math.unit(19.3, "m"),
  25770. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25771. name: "Female",
  25772. image: {
  25773. source: "./media/characters/umok/female.svg",
  25774. extra: 2186 / 2078,
  25775. bottom: 87 / 2277
  25776. }
  25777. },
  25778. male: {
  25779. height: math.unit(19.5, "m"),
  25780. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25781. name: "Male",
  25782. image: {
  25783. source: "./media/characters/umok/male.svg",
  25784. extra: 2233 / 2140,
  25785. bottom: 24.4 / 2258
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Macro",
  25792. height: math.unit(19.3, "meters"),
  25793. default: true
  25794. },
  25795. ]
  25796. ))
  25797. characterMakers.push(() => makeCharacter(
  25798. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25799. {
  25800. female: {
  25801. height: math.unit(26.15, "m"),
  25802. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25803. name: "Female",
  25804. image: {
  25805. source: "./media/characters/joraxian/female.svg",
  25806. extra: 2912 / 2824,
  25807. bottom: 36 / 2956
  25808. }
  25809. },
  25810. male: {
  25811. height: math.unit(25.4, "m"),
  25812. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25813. name: "Male",
  25814. image: {
  25815. source: "./media/characters/joraxian/male.svg",
  25816. extra: 2877 / 2721,
  25817. bottom: 82 / 2967
  25818. }
  25819. },
  25820. },
  25821. [
  25822. {
  25823. name: "Macro",
  25824. height: math.unit(26.15, "meters"),
  25825. default: true
  25826. },
  25827. ]
  25828. ))
  25829. characterMakers.push(() => makeCharacter(
  25830. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25831. {
  25832. female: {
  25833. height: math.unit(21.6, "m"),
  25834. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25835. name: "Female",
  25836. image: {
  25837. source: "./media/characters/sthara/female.svg",
  25838. extra: 2516 / 2347,
  25839. bottom: 21.5 / 2537
  25840. }
  25841. },
  25842. male: {
  25843. height: math.unit(24, "m"),
  25844. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25845. name: "Male",
  25846. image: {
  25847. source: "./media/characters/sthara/male.svg",
  25848. extra: 2732 / 2607,
  25849. bottom: 23 / 2732
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Macro",
  25856. height: math.unit(21.6, "meters"),
  25857. default: true
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(6 + 4 / 12, "feet"),
  25866. weight: math.unit(175, "lb"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/luka-bryzant/front.svg",
  25870. extra: 311 / 289,
  25871. bottom: 4 / 315
  25872. }
  25873. },
  25874. back: {
  25875. height: math.unit(6 + 4 / 12, "feet"),
  25876. weight: math.unit(175, "lb"),
  25877. name: "Back",
  25878. image: {
  25879. source: "./media/characters/luka-bryzant/back.svg",
  25880. extra: 311 / 289,
  25881. bottom: 3.8 / 313.7
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Micro",
  25888. height: math.unit(10, "inches")
  25889. },
  25890. {
  25891. name: "Normal",
  25892. height: math.unit(6 + 4 / 12, "feet"),
  25893. default: true
  25894. },
  25895. {
  25896. name: "Large",
  25897. height: math.unit(12, "feet")
  25898. },
  25899. ]
  25900. ))
  25901. characterMakers.push(() => makeCharacter(
  25902. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25903. {
  25904. front: {
  25905. height: math.unit(5 + 7 / 12, "feet"),
  25906. weight: math.unit(185, "lb"),
  25907. name: "Front",
  25908. image: {
  25909. source: "./media/characters/aman-aquila/front.svg",
  25910. extra: 1013 / 976,
  25911. bottom: 45.6 / 1057
  25912. }
  25913. },
  25914. side: {
  25915. height: math.unit(5 + 7 / 12, "feet"),
  25916. weight: math.unit(185, "lb"),
  25917. name: "Side",
  25918. image: {
  25919. source: "./media/characters/aman-aquila/side.svg",
  25920. extra: 1054 / 1011,
  25921. bottom: 15 / 1070
  25922. }
  25923. },
  25924. back: {
  25925. height: math.unit(5 + 7 / 12, "feet"),
  25926. weight: math.unit(185, "lb"),
  25927. name: "Back",
  25928. image: {
  25929. source: "./media/characters/aman-aquila/back.svg",
  25930. extra: 1026 / 970,
  25931. bottom: 12 / 1039
  25932. }
  25933. },
  25934. head: {
  25935. height: math.unit(1.211, "feet"),
  25936. name: "Head",
  25937. image: {
  25938. source: "./media/characters/aman-aquila/head.svg",
  25939. }
  25940. },
  25941. },
  25942. [
  25943. {
  25944. name: "Minimicro",
  25945. height: math.unit(0.057, "inches")
  25946. },
  25947. {
  25948. name: "Micro",
  25949. height: math.unit(7, "inches")
  25950. },
  25951. {
  25952. name: "Mini",
  25953. height: math.unit(3 + 7 / 12, "feet")
  25954. },
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(5 + 7 / 12, "feet"),
  25958. default: true
  25959. },
  25960. {
  25961. name: "Macro",
  25962. height: math.unit(157 + 7 / 12, "feet")
  25963. },
  25964. {
  25965. name: "Megamacro",
  25966. height: math.unit(1557 + 7 / 12, "feet")
  25967. },
  25968. {
  25969. name: "Gigamacro",
  25970. height: math.unit(15557 + 7 / 12, "feet")
  25971. },
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25976. {
  25977. front: {
  25978. height: math.unit(3 + 2 / 12, "inches"),
  25979. weight: math.unit(0.3, "ounces"),
  25980. name: "Front",
  25981. image: {
  25982. source: "./media/characters/hiphae/front.svg",
  25983. extra: 1931 / 1683,
  25984. bottom: 24 / 1955
  25985. }
  25986. },
  25987. },
  25988. [
  25989. {
  25990. name: "Normal",
  25991. height: math.unit(3 + 1 / 2, "inches"),
  25992. default: true
  25993. },
  25994. ]
  25995. ))
  25996. characterMakers.push(() => makeCharacter(
  25997. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25998. {
  25999. front: {
  26000. height: math.unit(5 + 10 / 12, "feet"),
  26001. weight: math.unit(165, "lb"),
  26002. name: "Front",
  26003. image: {
  26004. source: "./media/characters/nicky/front.svg",
  26005. extra: 3144 / 2886,
  26006. bottom: 45.6 / 3192
  26007. }
  26008. },
  26009. back: {
  26010. height: math.unit(5 + 10 / 12, "feet"),
  26011. weight: math.unit(165, "lb"),
  26012. name: "Back",
  26013. image: {
  26014. source: "./media/characters/nicky/back.svg",
  26015. extra: 3055 / 2804,
  26016. bottom: 28.4 / 3087
  26017. }
  26018. },
  26019. frontclothed: {
  26020. height: math.unit(5 + 10 / 12, "feet"),
  26021. weight: math.unit(165, "lb"),
  26022. name: "Front-clothed",
  26023. image: {
  26024. source: "./media/characters/nicky/front-clothed.svg",
  26025. extra: 3184.9 / 2926.9,
  26026. bottom: 86.5 / 3239.9
  26027. }
  26028. },
  26029. foot: {
  26030. height: math.unit(1.16, "feet"),
  26031. name: "Foot",
  26032. image: {
  26033. source: "./media/characters/nicky/foot.svg"
  26034. }
  26035. },
  26036. feet: {
  26037. height: math.unit(1.34, "feet"),
  26038. name: "Feet",
  26039. image: {
  26040. source: "./media/characters/nicky/feet.svg"
  26041. }
  26042. },
  26043. maw: {
  26044. height: math.unit(0.9, "feet"),
  26045. name: "Maw",
  26046. image: {
  26047. source: "./media/characters/nicky/maw.svg"
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(5 + 10 / 12, "feet"),
  26055. default: true
  26056. },
  26057. {
  26058. name: "Macro",
  26059. height: math.unit(60, "feet")
  26060. },
  26061. {
  26062. name: "Megamacro",
  26063. height: math.unit(1, "mile")
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26069. {
  26070. side: {
  26071. height: math.unit(10, "feet"),
  26072. weight: math.unit(600, "lb"),
  26073. name: "Side",
  26074. image: {
  26075. source: "./media/characters/blair/side.svg",
  26076. bottom: 16.6 / 475,
  26077. extra: 458 / 431
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Micro",
  26084. height: math.unit(8, "inches")
  26085. },
  26086. {
  26087. name: "Normal",
  26088. height: math.unit(10, "feet"),
  26089. default: true
  26090. },
  26091. {
  26092. name: "Macro",
  26093. height: math.unit(180, "feet")
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26099. {
  26100. front: {
  26101. height: math.unit(5 + 4 / 12, "feet"),
  26102. weight: math.unit(125, "lb"),
  26103. name: "Front",
  26104. image: {
  26105. source: "./media/characters/fisher/front.svg",
  26106. extra: 444 / 390,
  26107. bottom: 2 / 444.8
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Micro",
  26114. height: math.unit(4, "inches")
  26115. },
  26116. {
  26117. name: "Normal",
  26118. height: math.unit(5 + 4 / 12, "feet"),
  26119. default: true
  26120. },
  26121. {
  26122. name: "Macro",
  26123. height: math.unit(100, "feet")
  26124. },
  26125. ]
  26126. ))
  26127. characterMakers.push(() => makeCharacter(
  26128. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26129. {
  26130. front: {
  26131. height: math.unit(6.71, "feet"),
  26132. weight: math.unit(200, "lb"),
  26133. preyCapacity: math.unit(1000000, "people"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/gliss/front.svg",
  26137. extra: 2347 / 2231,
  26138. bottom: 113 / 2462
  26139. }
  26140. },
  26141. hammerspaceSize: {
  26142. height: math.unit(6.71 * 717, "feet"),
  26143. weight: math.unit(200, "lb"),
  26144. preyCapacity: math.unit(1000000, "people"),
  26145. name: "Hammerspace Size",
  26146. image: {
  26147. source: "./media/characters/gliss/front.svg",
  26148. extra: 2347 / 2231,
  26149. bottom: 113 / 2462
  26150. }
  26151. },
  26152. },
  26153. [
  26154. {
  26155. name: "Normal",
  26156. height: math.unit(6.71, "feet"),
  26157. default: true
  26158. },
  26159. ]
  26160. ))
  26161. characterMakers.push(() => makeCharacter(
  26162. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26163. {
  26164. side: {
  26165. height: math.unit(1.44, "m"),
  26166. weight: math.unit(80, "kg"),
  26167. name: "Side",
  26168. image: {
  26169. source: "./media/characters/dune-anderson/side.svg",
  26170. bottom: 49 / 1426
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Wolf-sized",
  26177. height: math.unit(1.44, "meters")
  26178. },
  26179. {
  26180. name: "Normal",
  26181. height: math.unit(5.05, "meters"),
  26182. default: true
  26183. },
  26184. {
  26185. name: "Big",
  26186. height: math.unit(14.4, "meters")
  26187. },
  26188. {
  26189. name: "Huge",
  26190. height: math.unit(144, "meters")
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26196. {
  26197. front: {
  26198. height: math.unit(7, "feet"),
  26199. weight: math.unit(425, "lb"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/hind/front.svg",
  26203. extra: 2091 / 1860,
  26204. bottom: 129 / 2220
  26205. }
  26206. },
  26207. back: {
  26208. height: math.unit(7, "feet"),
  26209. weight: math.unit(425, "lb"),
  26210. name: "Back",
  26211. image: {
  26212. source: "./media/characters/hind/back.svg",
  26213. extra: 2091 / 1860,
  26214. bottom: 24.6 / 2309
  26215. }
  26216. },
  26217. tail: {
  26218. height: math.unit(2.8, "feet"),
  26219. name: "Tail",
  26220. image: {
  26221. source: "./media/characters/hind/tail.svg"
  26222. }
  26223. },
  26224. head: {
  26225. height: math.unit(2.55, "feet"),
  26226. name: "Head",
  26227. image: {
  26228. source: "./media/characters/hind/head.svg"
  26229. }
  26230. },
  26231. },
  26232. [
  26233. {
  26234. name: "XS",
  26235. height: math.unit(0.7, "feet")
  26236. },
  26237. {
  26238. name: "Normal",
  26239. height: math.unit(7, "feet"),
  26240. default: true
  26241. },
  26242. {
  26243. name: "XL",
  26244. height: math.unit(70, "feet")
  26245. },
  26246. ]
  26247. ))
  26248. characterMakers.push(() => makeCharacter(
  26249. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26250. {
  26251. front: {
  26252. height: math.unit(2.1, "meters"),
  26253. weight: math.unit(150, "lb"),
  26254. name: "Front",
  26255. image: {
  26256. source: "./media/characters/tharquench-sizestealer/front.svg",
  26257. extra: 1605/1470,
  26258. bottom: 36/1641
  26259. }
  26260. },
  26261. frontAlt: {
  26262. height: math.unit(2.1, "meters"),
  26263. weight: math.unit(150, "lb"),
  26264. name: "Front (Alt)",
  26265. image: {
  26266. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26267. extra: 2318 / 2063,
  26268. bottom: 93.4 / 2410
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Nano",
  26275. height: math.unit(1, "mm")
  26276. },
  26277. {
  26278. name: "Micro",
  26279. height: math.unit(1, "cm")
  26280. },
  26281. {
  26282. name: "Normal",
  26283. height: math.unit(2.1, "meters"),
  26284. default: true
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26290. {
  26291. front: {
  26292. height: math.unit(7 + 5 / 12, "feet"),
  26293. weight: math.unit(357, "lb"),
  26294. name: "Front",
  26295. image: {
  26296. source: "./media/characters/solex-draconov/front.svg",
  26297. extra: 1993 / 1865,
  26298. bottom: 117 / 2111
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Natural Height",
  26305. height: math.unit(7 + 5 / 12, "feet"),
  26306. default: true
  26307. },
  26308. {
  26309. name: "Macro",
  26310. height: math.unit(350, "feet")
  26311. },
  26312. {
  26313. name: "Macro+",
  26314. height: math.unit(1000, "feet")
  26315. },
  26316. {
  26317. name: "Megamacro",
  26318. height: math.unit(20, "km")
  26319. },
  26320. {
  26321. name: "Megamacro+",
  26322. height: math.unit(1000, "km")
  26323. },
  26324. {
  26325. name: "Gigamacro",
  26326. height: math.unit(2.5, "Gm")
  26327. },
  26328. {
  26329. name: "Teramacro",
  26330. height: math.unit(15, "Tm")
  26331. },
  26332. {
  26333. name: "Galactic",
  26334. height: math.unit(30, "Zm")
  26335. },
  26336. {
  26337. name: "Universal",
  26338. height: math.unit(21000, "Ym")
  26339. },
  26340. {
  26341. name: "Omniversal",
  26342. height: math.unit(9.861e50, "Ym")
  26343. },
  26344. {
  26345. name: "Existential",
  26346. height: math.unit(1e300, "meters")
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26352. {
  26353. side: {
  26354. height: math.unit(25, "feet"),
  26355. weight: math.unit(90000, "lb"),
  26356. name: "Side",
  26357. image: {
  26358. source: "./media/characters/mandarax/side.svg",
  26359. extra: 614 / 332,
  26360. bottom: 55 / 630
  26361. }
  26362. },
  26363. lounging: {
  26364. height: math.unit(15.4, "feet"),
  26365. weight: math.unit(90000, "lb"),
  26366. name: "Lounging",
  26367. image: {
  26368. source: "./media/characters/mandarax/lounging.svg",
  26369. extra: 817/609,
  26370. bottom: 685/1502
  26371. }
  26372. },
  26373. head: {
  26374. height: math.unit(11.4, "feet"),
  26375. name: "Head",
  26376. image: {
  26377. source: "./media/characters/mandarax/head.svg"
  26378. }
  26379. },
  26380. belly: {
  26381. height: math.unit(33, "feet"),
  26382. name: "Belly",
  26383. preyCapacity: math.unit(500, "people"),
  26384. image: {
  26385. source: "./media/characters/mandarax/belly.svg"
  26386. }
  26387. },
  26388. dick: {
  26389. height: math.unit(8.46, "feet"),
  26390. name: "Dick",
  26391. image: {
  26392. source: "./media/characters/mandarax/dick.svg"
  26393. }
  26394. },
  26395. top: {
  26396. height: math.unit(28, "meters"),
  26397. name: "Top",
  26398. image: {
  26399. source: "./media/characters/mandarax/top.svg"
  26400. }
  26401. },
  26402. },
  26403. [
  26404. {
  26405. name: "Normal",
  26406. height: math.unit(25, "feet"),
  26407. default: true
  26408. },
  26409. ]
  26410. ))
  26411. characterMakers.push(() => makeCharacter(
  26412. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26413. {
  26414. front: {
  26415. height: math.unit(5, "feet"),
  26416. weight: math.unit(90, "lb"),
  26417. name: "Front",
  26418. image: {
  26419. source: "./media/characters/pixil/front.svg",
  26420. extra: 2000 / 1618,
  26421. bottom: 12.3 / 2011
  26422. }
  26423. },
  26424. },
  26425. [
  26426. {
  26427. name: "Normal",
  26428. height: math.unit(5, "feet"),
  26429. default: true
  26430. },
  26431. {
  26432. name: "Megamacro",
  26433. height: math.unit(10, "miles"),
  26434. },
  26435. ]
  26436. ))
  26437. characterMakers.push(() => makeCharacter(
  26438. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26439. {
  26440. front: {
  26441. height: math.unit(7 + 2 / 12, "feet"),
  26442. weight: math.unit(200, "lb"),
  26443. name: "Front",
  26444. image: {
  26445. source: "./media/characters/angel/front.svg",
  26446. extra: 1830 / 1737,
  26447. bottom: 22.6 / 1854,
  26448. }
  26449. },
  26450. },
  26451. [
  26452. {
  26453. name: "Normal",
  26454. height: math.unit(7 + 2 / 12, "feet"),
  26455. default: true
  26456. },
  26457. {
  26458. name: "Macro",
  26459. height: math.unit(1000, "feet")
  26460. },
  26461. {
  26462. name: "Megamacro",
  26463. height: math.unit(2, "miles")
  26464. },
  26465. {
  26466. name: "Gigamacro",
  26467. height: math.unit(20, "earths")
  26468. },
  26469. ]
  26470. ))
  26471. characterMakers.push(() => makeCharacter(
  26472. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26473. {
  26474. front: {
  26475. height: math.unit(5, "feet"),
  26476. weight: math.unit(180, "lb"),
  26477. name: "Front",
  26478. image: {
  26479. source: "./media/characters/mekana/front.svg",
  26480. extra: 1671 / 1605,
  26481. bottom: 3.5 / 1691
  26482. }
  26483. },
  26484. side: {
  26485. height: math.unit(5, "feet"),
  26486. weight: math.unit(180, "lb"),
  26487. name: "Side",
  26488. image: {
  26489. source: "./media/characters/mekana/side.svg",
  26490. extra: 1671 / 1605,
  26491. bottom: 3.5 / 1691
  26492. }
  26493. },
  26494. back: {
  26495. height: math.unit(5, "feet"),
  26496. weight: math.unit(180, "lb"),
  26497. name: "Back",
  26498. image: {
  26499. source: "./media/characters/mekana/back.svg",
  26500. extra: 1671 / 1605,
  26501. bottom: 3.5 / 1691
  26502. }
  26503. },
  26504. },
  26505. [
  26506. {
  26507. name: "Normal",
  26508. height: math.unit(5, "feet"),
  26509. default: true
  26510. },
  26511. ]
  26512. ))
  26513. characterMakers.push(() => makeCharacter(
  26514. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26515. {
  26516. front: {
  26517. height: math.unit(4 + 6 / 12, "feet"),
  26518. weight: math.unit(80, "lb"),
  26519. name: "Front",
  26520. image: {
  26521. source: "./media/characters/pixie/front.svg",
  26522. extra: 1924 / 1825,
  26523. bottom: 22.4 / 1946
  26524. }
  26525. },
  26526. },
  26527. [
  26528. {
  26529. name: "Normal",
  26530. height: math.unit(4 + 6 / 12, "feet"),
  26531. default: true
  26532. },
  26533. {
  26534. name: "Macro",
  26535. height: math.unit(40, "feet")
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(2.1, "meters"),
  26544. weight: math.unit(200, "lb"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/the-lascivious/front.svg",
  26548. extra: 1 / 0.893,
  26549. bottom: 3.5 / 573.7
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Human Scale",
  26556. height: math.unit(2.1, "meters")
  26557. },
  26558. {
  26559. name: "Wolxi Scale",
  26560. height: math.unit(46.2, "m"),
  26561. default: true
  26562. },
  26563. {
  26564. name: "Boinker of Buildings",
  26565. height: math.unit(10, "km")
  26566. },
  26567. {
  26568. name: "Shagger of Skyscrapers",
  26569. height: math.unit(40, "km")
  26570. },
  26571. {
  26572. name: "Banger of Boroughs",
  26573. height: math.unit(4000, "km")
  26574. },
  26575. {
  26576. name: "Screwer of States",
  26577. height: math.unit(100000, "km")
  26578. },
  26579. {
  26580. name: "Pounder of Planets",
  26581. height: math.unit(2000000, "km")
  26582. },
  26583. ]
  26584. ))
  26585. characterMakers.push(() => makeCharacter(
  26586. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26587. {
  26588. front: {
  26589. height: math.unit(6, "feet"),
  26590. weight: math.unit(150, "lb"),
  26591. name: "Front",
  26592. image: {
  26593. source: "./media/characters/aj/front.svg",
  26594. extra: 2039 / 1562,
  26595. bottom: 40 / 2079
  26596. }
  26597. },
  26598. },
  26599. [
  26600. {
  26601. name: "Normal",
  26602. height: math.unit(11 + 6 / 12, "feet"),
  26603. default: true
  26604. },
  26605. {
  26606. name: "Megamacro",
  26607. height: math.unit(60, "megameters")
  26608. },
  26609. ]
  26610. ))
  26611. characterMakers.push(() => makeCharacter(
  26612. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26613. {
  26614. side: {
  26615. height: math.unit(31 + 8 / 12, "feet"),
  26616. weight: math.unit(75000, "kg"),
  26617. name: "Side",
  26618. image: {
  26619. source: "./media/characters/koros/side.svg",
  26620. extra: 1442 / 1297,
  26621. bottom: 122.7 / 1562
  26622. }
  26623. },
  26624. dicksKingsCrown: {
  26625. height: math.unit(6, "feet"),
  26626. name: "Dicks (King's Crown)",
  26627. image: {
  26628. source: "./media/characters/koros/dicks-kings-crown.svg"
  26629. }
  26630. },
  26631. dicksTailSet: {
  26632. height: math.unit(3, "feet"),
  26633. name: "Dicks (Tail Set)",
  26634. image: {
  26635. source: "./media/characters/koros/dicks-tail-set.svg"
  26636. }
  26637. },
  26638. dickCumming: {
  26639. height: math.unit(7.98, "feet"),
  26640. name: "Dick (Cumming)",
  26641. image: {
  26642. source: "./media/characters/koros/dick-cumming.svg"
  26643. }
  26644. },
  26645. dicksBack: {
  26646. height: math.unit(5.9, "feet"),
  26647. name: "Dicks (Back)",
  26648. image: {
  26649. source: "./media/characters/koros/dicks-back.svg"
  26650. }
  26651. },
  26652. dicksFront: {
  26653. height: math.unit(3.72, "feet"),
  26654. name: "Dicks (Front)",
  26655. image: {
  26656. source: "./media/characters/koros/dicks-front.svg"
  26657. }
  26658. },
  26659. dicksPeeking: {
  26660. height: math.unit(3.0, "feet"),
  26661. name: "Dicks (Peeking)",
  26662. image: {
  26663. source: "./media/characters/koros/dicks-peeking.svg"
  26664. }
  26665. },
  26666. eye: {
  26667. height: math.unit(1.7, "feet"),
  26668. name: "Eye",
  26669. image: {
  26670. source: "./media/characters/koros/eye.svg"
  26671. }
  26672. },
  26673. headFront: {
  26674. height: math.unit(11.69, "feet"),
  26675. name: "Head (Front)",
  26676. image: {
  26677. source: "./media/characters/koros/head-front.svg"
  26678. }
  26679. },
  26680. headSide: {
  26681. height: math.unit(14, "feet"),
  26682. name: "Head (Side)",
  26683. image: {
  26684. source: "./media/characters/koros/head-side.svg"
  26685. }
  26686. },
  26687. leg: {
  26688. height: math.unit(17, "feet"),
  26689. name: "Leg",
  26690. image: {
  26691. source: "./media/characters/koros/leg.svg"
  26692. }
  26693. },
  26694. mawSide: {
  26695. height: math.unit(12.8, "feet"),
  26696. name: "Maw (Side)",
  26697. image: {
  26698. source: "./media/characters/koros/maw-side.svg"
  26699. }
  26700. },
  26701. mawSpitting: {
  26702. height: math.unit(17, "feet"),
  26703. name: "Maw (Spitting)",
  26704. image: {
  26705. source: "./media/characters/koros/maw-spitting.svg"
  26706. }
  26707. },
  26708. slit: {
  26709. height: math.unit(2.8, "feet"),
  26710. name: "Slit",
  26711. image: {
  26712. source: "./media/characters/koros/slit.svg"
  26713. }
  26714. },
  26715. stomach: {
  26716. height: math.unit(6.8, "feet"),
  26717. preyCapacity: math.unit(20, "people"),
  26718. name: "Stomach",
  26719. image: {
  26720. source: "./media/characters/koros/stomach.svg"
  26721. }
  26722. },
  26723. wingspanBottom: {
  26724. height: math.unit(114, "feet"),
  26725. name: "Wingspan (Bottom)",
  26726. image: {
  26727. source: "./media/characters/koros/wingspan-bottom.svg"
  26728. }
  26729. },
  26730. wingspanTop: {
  26731. height: math.unit(104, "feet"),
  26732. name: "Wingspan (Top)",
  26733. image: {
  26734. source: "./media/characters/koros/wingspan-top.svg"
  26735. }
  26736. },
  26737. },
  26738. [
  26739. {
  26740. name: "Normal",
  26741. height: math.unit(31 + 8 / 12, "feet"),
  26742. default: true
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(18 + 5 / 12, "feet"),
  26751. weight: math.unit(3750, "kg"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/vexx/front.svg",
  26755. extra: 426 / 396,
  26756. bottom: 31.5 / 458
  26757. }
  26758. },
  26759. maw: {
  26760. height: math.unit(6, "feet"),
  26761. name: "Maw",
  26762. image: {
  26763. source: "./media/characters/vexx/maw.svg"
  26764. }
  26765. },
  26766. },
  26767. [
  26768. {
  26769. name: "Normal",
  26770. height: math.unit(18 + 5 / 12, "feet"),
  26771. default: true
  26772. },
  26773. ]
  26774. ))
  26775. characterMakers.push(() => makeCharacter(
  26776. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26777. {
  26778. front: {
  26779. height: math.unit(17 + 6 / 12, "feet"),
  26780. weight: math.unit(150, "lb"),
  26781. name: "Front",
  26782. image: {
  26783. source: "./media/characters/baadra/front.svg",
  26784. extra: 1694/1553,
  26785. bottom: 179/1873
  26786. }
  26787. },
  26788. frontAlt: {
  26789. height: math.unit(17 + 6 / 12, "feet"),
  26790. weight: math.unit(150, "lb"),
  26791. name: "Front (Alt)",
  26792. image: {
  26793. source: "./media/characters/baadra/front-alt.svg",
  26794. extra: 3137 / 2890,
  26795. bottom: 168.4 / 3305
  26796. }
  26797. },
  26798. back: {
  26799. height: math.unit(17 + 6 / 12, "feet"),
  26800. weight: math.unit(150, "lb"),
  26801. name: "Back",
  26802. image: {
  26803. source: "./media/characters/baadra/back.svg",
  26804. extra: 3142 / 2890,
  26805. bottom: 220 / 3371
  26806. }
  26807. },
  26808. head: {
  26809. height: math.unit(5.45, "feet"),
  26810. name: "Head",
  26811. image: {
  26812. source: "./media/characters/baadra/head.svg"
  26813. }
  26814. },
  26815. headAngry: {
  26816. height: math.unit(4.95, "feet"),
  26817. name: "Head (Angry)",
  26818. image: {
  26819. source: "./media/characters/baadra/head-angry.svg"
  26820. }
  26821. },
  26822. headOpen: {
  26823. height: math.unit(6, "feet"),
  26824. name: "Head (Open)",
  26825. image: {
  26826. source: "./media/characters/baadra/head-open.svg"
  26827. }
  26828. },
  26829. },
  26830. [
  26831. {
  26832. name: "Normal",
  26833. height: math.unit(17 + 6 / 12, "feet"),
  26834. default: true
  26835. },
  26836. ]
  26837. ))
  26838. characterMakers.push(() => makeCharacter(
  26839. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26840. {
  26841. front: {
  26842. height: math.unit(7 + 3 / 12, "feet"),
  26843. weight: math.unit(180, "lb"),
  26844. name: "Front",
  26845. image: {
  26846. source: "./media/characters/juri/front.svg",
  26847. extra: 1401 / 1237,
  26848. bottom: 18.5 / 1418
  26849. }
  26850. },
  26851. side: {
  26852. height: math.unit(7 + 3 / 12, "feet"),
  26853. weight: math.unit(180, "lb"),
  26854. name: "Side",
  26855. image: {
  26856. source: "./media/characters/juri/side.svg",
  26857. extra: 1424 / 1242,
  26858. bottom: 18.5 / 1447
  26859. }
  26860. },
  26861. sitting: {
  26862. height: math.unit(6, "feet"),
  26863. weight: math.unit(180, "lb"),
  26864. name: "Sitting",
  26865. image: {
  26866. source: "./media/characters/juri/sitting.svg",
  26867. extra: 1270 / 1143,
  26868. bottom: 100 / 1343
  26869. }
  26870. },
  26871. back: {
  26872. height: math.unit(7 + 3 / 12, "feet"),
  26873. weight: math.unit(180, "lb"),
  26874. name: "Back",
  26875. image: {
  26876. source: "./media/characters/juri/back.svg",
  26877. extra: 1377 / 1240,
  26878. bottom: 23.7 / 1405
  26879. }
  26880. },
  26881. maw: {
  26882. height: math.unit(2.8, "feet"),
  26883. name: "Maw",
  26884. image: {
  26885. source: "./media/characters/juri/maw.svg"
  26886. }
  26887. },
  26888. stomach: {
  26889. height: math.unit(0.89, "feet"),
  26890. preyCapacity: math.unit(4, "liters"),
  26891. name: "Stomach",
  26892. image: {
  26893. source: "./media/characters/juri/stomach.svg"
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(7 + 3 / 12, "feet"),
  26901. default: true
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26907. {
  26908. fox: {
  26909. height: math.unit(5 + 6 / 12, "feet"),
  26910. weight: math.unit(140, "lb"),
  26911. name: "Fox",
  26912. image: {
  26913. source: "./media/characters/maxene-sita/fox.svg",
  26914. extra: 146 / 138,
  26915. bottom: 2.1 / 148.19
  26916. }
  26917. },
  26918. foxLaying: {
  26919. height: math.unit(1.70, "feet"),
  26920. weight: math.unit(140, "lb"),
  26921. name: "Fox (Laying)",
  26922. image: {
  26923. source: "./media/characters/maxene-sita/fox-laying.svg",
  26924. extra: 910 / 572,
  26925. bottom: 71 / 981
  26926. }
  26927. },
  26928. kitsune: {
  26929. height: math.unit(10, "feet"),
  26930. weight: math.unit(800, "lb"),
  26931. name: "Kitsune",
  26932. image: {
  26933. source: "./media/characters/maxene-sita/kitsune.svg",
  26934. extra: 185 / 176,
  26935. bottom: 4.7 / 189.9
  26936. }
  26937. },
  26938. hellhound: {
  26939. height: math.unit(10, "feet"),
  26940. weight: math.unit(700, "lb"),
  26941. name: "Hellhound",
  26942. image: {
  26943. source: "./media/characters/maxene-sita/hellhound.svg",
  26944. extra: 1600 / 1545,
  26945. bottom: 81 / 1681
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(5 + 6 / 12, "feet"),
  26953. default: true
  26954. },
  26955. ]
  26956. ))
  26957. characterMakers.push(() => makeCharacter(
  26958. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26959. {
  26960. front: {
  26961. height: math.unit(3 + 4 / 12, "feet"),
  26962. weight: math.unit(70, "lb"),
  26963. name: "Front",
  26964. image: {
  26965. source: "./media/characters/maia/front.svg",
  26966. extra: 227 / 219.5,
  26967. bottom: 40 / 267
  26968. }
  26969. },
  26970. back: {
  26971. height: math.unit(3 + 4 / 12, "feet"),
  26972. weight: math.unit(70, "lb"),
  26973. name: "Back",
  26974. image: {
  26975. source: "./media/characters/maia/back.svg",
  26976. extra: 237 / 225
  26977. }
  26978. },
  26979. },
  26980. [
  26981. {
  26982. name: "Normal",
  26983. height: math.unit(3 + 4 / 12, "feet"),
  26984. default: true
  26985. },
  26986. ]
  26987. ))
  26988. characterMakers.push(() => makeCharacter(
  26989. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26990. {
  26991. front: {
  26992. height: math.unit(5 + 10 / 12, "feet"),
  26993. weight: math.unit(197, "lb"),
  26994. name: "Front",
  26995. image: {
  26996. source: "./media/characters/jabaro/front.svg",
  26997. extra: 225 / 216,
  26998. bottom: 5.06 / 230
  26999. }
  27000. },
  27001. back: {
  27002. height: math.unit(5 + 10 / 12, "feet"),
  27003. weight: math.unit(197, "lb"),
  27004. name: "Back",
  27005. image: {
  27006. source: "./media/characters/jabaro/back.svg",
  27007. extra: 225 / 219,
  27008. bottom: 1.9 / 227
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Normal",
  27015. height: math.unit(5 + 10 / 12, "feet"),
  27016. default: true
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27022. {
  27023. front: {
  27024. height: math.unit(5 + 8 / 12, "feet"),
  27025. weight: math.unit(139, "lb"),
  27026. name: "Front",
  27027. image: {
  27028. source: "./media/characters/risa/front.svg",
  27029. extra: 270 / 260,
  27030. bottom: 11.2 / 282
  27031. }
  27032. },
  27033. back: {
  27034. height: math.unit(5 + 8 / 12, "feet"),
  27035. weight: math.unit(139, "lb"),
  27036. name: "Back",
  27037. image: {
  27038. source: "./media/characters/risa/back.svg",
  27039. extra: 264 / 255,
  27040. bottom: 4 / 268
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Normal",
  27047. height: math.unit(5 + 8 / 12, "feet"),
  27048. default: true
  27049. },
  27050. ]
  27051. ))
  27052. characterMakers.push(() => makeCharacter(
  27053. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27054. {
  27055. front: {
  27056. height: math.unit(2 + 11 / 12, "feet"),
  27057. weight: math.unit(30, "lb"),
  27058. name: "Front",
  27059. image: {
  27060. source: "./media/characters/weatley/front.svg",
  27061. bottom: 10.7 / 414,
  27062. extra: 403.5 / 362
  27063. }
  27064. },
  27065. back: {
  27066. height: math.unit(2 + 11 / 12, "feet"),
  27067. weight: math.unit(30, "lb"),
  27068. name: "Back",
  27069. image: {
  27070. source: "./media/characters/weatley/back.svg",
  27071. bottom: 10.7 / 414,
  27072. extra: 403.5 / 362
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(2 + 11 / 12, "feet"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(5 + 2 / 12, "feet"),
  27089. weight: math.unit(50, "kg"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/mercury-crescent/front.svg",
  27093. extra: 1088 / 1033,
  27094. bottom: 18.9 / 1109
  27095. }
  27096. },
  27097. },
  27098. [
  27099. {
  27100. name: "Normal",
  27101. height: math.unit(5 + 2 / 12, "feet"),
  27102. default: true
  27103. },
  27104. ]
  27105. ))
  27106. characterMakers.push(() => makeCharacter(
  27107. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27108. {
  27109. front: {
  27110. height: math.unit(2, "feet"),
  27111. weight: math.unit(15, "kg"),
  27112. name: "Front",
  27113. image: {
  27114. source: "./media/characters/diamond-jones/front.svg",
  27115. extra: 727/723,
  27116. bottom: 46/773
  27117. }
  27118. },
  27119. },
  27120. [
  27121. {
  27122. name: "Normal",
  27123. height: math.unit(2, "feet"),
  27124. default: true
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(3, "feet"),
  27133. weight: math.unit(30, "kg"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/sweet-bit/front.svg",
  27137. extra: 675 / 567,
  27138. bottom: 27.7 / 703
  27139. }
  27140. },
  27141. },
  27142. [
  27143. {
  27144. name: "Normal",
  27145. height: math.unit(3, "feet"),
  27146. default: true
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27152. {
  27153. side: {
  27154. height: math.unit(9.178, "feet"),
  27155. weight: math.unit(500, "lb"),
  27156. name: "Side",
  27157. image: {
  27158. source: "./media/characters/umbrazen/side.svg",
  27159. extra: 1730 / 1473,
  27160. bottom: 34.6 / 1765
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Normal",
  27167. height: math.unit(9.178, "feet"),
  27168. default: true
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27174. {
  27175. front: {
  27176. height: math.unit(10, "feet"),
  27177. weight: math.unit(750, "lb"),
  27178. name: "Front",
  27179. image: {
  27180. source: "./media/characters/arlist/front.svg",
  27181. extra: 961 / 778,
  27182. bottom: 6.2 / 986
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(10, "feet"),
  27190. default: true
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(5 + 1 / 12, "feet"),
  27199. weight: math.unit(110, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/aradel/front.svg",
  27203. extra: 324 / 303,
  27204. bottom: 3.6 / 329.4
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(5 + 1 / 12, "feet"),
  27212. default: true
  27213. },
  27214. ]
  27215. ))
  27216. characterMakers.push(() => makeCharacter(
  27217. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27218. {
  27219. dressed: {
  27220. height: math.unit(3 + 8 / 12, "feet"),
  27221. weight: math.unit(50, "lb"),
  27222. name: "Dressed",
  27223. image: {
  27224. source: "./media/characters/serryn/dressed.svg",
  27225. extra: 1792 / 1656,
  27226. bottom: 43.5 / 1840
  27227. }
  27228. },
  27229. nude: {
  27230. height: math.unit(3 + 8 / 12, "feet"),
  27231. weight: math.unit(50, "lb"),
  27232. name: "Nude",
  27233. image: {
  27234. source: "./media/characters/serryn/nude.svg",
  27235. extra: 1792 / 1656,
  27236. bottom: 43.5 / 1840
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Normal",
  27243. height: math.unit(3 + 8 / 12, "feet"),
  27244. default: true
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27250. {
  27251. front: {
  27252. height: math.unit(7 + 10 / 12, "feet"),
  27253. weight: math.unit(255, "lb"),
  27254. name: "Front",
  27255. image: {
  27256. source: "./media/characters/xavier-thyme/front.svg",
  27257. extra: 3733 / 3642,
  27258. bottom: 131 / 3869
  27259. }
  27260. },
  27261. frontRaven: {
  27262. height: math.unit(7 + 10 / 12, "feet"),
  27263. weight: math.unit(255, "lb"),
  27264. name: "Front (Raven)",
  27265. image: {
  27266. source: "./media/characters/xavier-thyme/front-raven.svg",
  27267. extra: 4385 / 3642,
  27268. bottom: 131 / 4517
  27269. }
  27270. },
  27271. },
  27272. [
  27273. {
  27274. name: "Normal",
  27275. height: math.unit(7 + 10 / 12, "feet"),
  27276. default: true
  27277. },
  27278. ]
  27279. ))
  27280. characterMakers.push(() => makeCharacter(
  27281. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27282. {
  27283. front: {
  27284. height: math.unit(1.6, "m"),
  27285. weight: math.unit(50, "kg"),
  27286. name: "Front",
  27287. image: {
  27288. source: "./media/characters/kiki/front.svg",
  27289. extra: 4682 / 3610,
  27290. bottom: 115 / 4777
  27291. }
  27292. },
  27293. },
  27294. [
  27295. {
  27296. name: "Normal",
  27297. height: math.unit(1.6, "meters"),
  27298. default: true
  27299. },
  27300. ]
  27301. ))
  27302. characterMakers.push(() => makeCharacter(
  27303. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27304. {
  27305. front: {
  27306. height: math.unit(50, "m"),
  27307. weight: math.unit(500, "tonnes"),
  27308. name: "Front",
  27309. image: {
  27310. source: "./media/characters/ryoko/front.svg",
  27311. extra: 4632 / 3926,
  27312. bottom: 193 / 4823
  27313. }
  27314. },
  27315. },
  27316. [
  27317. {
  27318. name: "Normal",
  27319. height: math.unit(50, "meters"),
  27320. default: true
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27326. {
  27327. front: {
  27328. height: math.unit(30, "m"),
  27329. weight: math.unit(22, "tonnes"),
  27330. name: "Front",
  27331. image: {
  27332. source: "./media/characters/elio/front.svg",
  27333. extra: 4582 / 3720,
  27334. bottom: 236 / 4828
  27335. }
  27336. },
  27337. },
  27338. [
  27339. {
  27340. name: "Normal",
  27341. height: math.unit(30, "meters"),
  27342. default: true
  27343. },
  27344. ]
  27345. ))
  27346. characterMakers.push(() => makeCharacter(
  27347. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27348. {
  27349. front: {
  27350. height: math.unit(6 + 3 / 12, "feet"),
  27351. weight: math.unit(120, "lb"),
  27352. name: "Front",
  27353. image: {
  27354. source: "./media/characters/azura/front.svg",
  27355. extra: 1149 / 1135,
  27356. bottom: 45 / 1194
  27357. }
  27358. },
  27359. frontClothed: {
  27360. height: math.unit(6 + 3 / 12, "feet"),
  27361. weight: math.unit(120, "lb"),
  27362. name: "Front (Clothed)",
  27363. image: {
  27364. source: "./media/characters/azura/front-clothed.svg",
  27365. extra: 1149 / 1135,
  27366. bottom: 45 / 1194
  27367. }
  27368. },
  27369. },
  27370. [
  27371. {
  27372. name: "Normal",
  27373. height: math.unit(6 + 3 / 12, "feet"),
  27374. default: true
  27375. },
  27376. {
  27377. name: "Macro",
  27378. height: math.unit(20 + 6 / 12, "feet")
  27379. },
  27380. {
  27381. name: "Megamacro",
  27382. height: math.unit(12, "miles")
  27383. },
  27384. {
  27385. name: "Gigamacro",
  27386. height: math.unit(10000, "miles")
  27387. },
  27388. {
  27389. name: "Teramacro",
  27390. height: math.unit(900000, "miles")
  27391. },
  27392. ]
  27393. ))
  27394. characterMakers.push(() => makeCharacter(
  27395. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27396. {
  27397. front: {
  27398. height: math.unit(12, "feet"),
  27399. weight: math.unit(1, "ton"),
  27400. capacity: math.unit(660000, "gallons"),
  27401. name: "Front",
  27402. image: {
  27403. source: "./media/characters/zeus/front.svg",
  27404. extra: 5005 / 4717,
  27405. bottom: 363 / 5388
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(12, "feet")
  27413. },
  27414. {
  27415. name: "Preferred Size",
  27416. height: math.unit(0.5, "miles"),
  27417. default: true
  27418. },
  27419. {
  27420. name: "Giga Horse",
  27421. height: math.unit(300, "miles")
  27422. },
  27423. {
  27424. name: "Riding Planets",
  27425. height: math.unit(30, "megameters")
  27426. },
  27427. {
  27428. name: "Cosmic Giant",
  27429. height: math.unit(3, "zettameters")
  27430. },
  27431. {
  27432. name: "Breeding God",
  27433. height: math.unit(9.92e22, "yottameters")
  27434. },
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27439. {
  27440. side: {
  27441. height: math.unit(9, "feet"),
  27442. weight: math.unit(1500, "kg"),
  27443. name: "Side",
  27444. image: {
  27445. source: "./media/characters/fang/side.svg",
  27446. extra: 924 / 866,
  27447. bottom: 47.5 / 972.3
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(9, "feet"),
  27455. default: true
  27456. },
  27457. {
  27458. name: "Macro",
  27459. height: math.unit(75 + 6 / 12, "feet")
  27460. },
  27461. {
  27462. name: "Teramacro",
  27463. height: math.unit(50000, "miles")
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27469. {
  27470. front: {
  27471. height: math.unit(10, "feet"),
  27472. weight: math.unit(2, "tons"),
  27473. name: "Front",
  27474. image: {
  27475. source: "./media/characters/rekhit/front.svg",
  27476. extra: 2796 / 2590,
  27477. bottom: 225 / 3022
  27478. }
  27479. },
  27480. },
  27481. [
  27482. {
  27483. name: "Normal",
  27484. height: math.unit(10, "feet"),
  27485. default: true
  27486. },
  27487. {
  27488. name: "Macro",
  27489. height: math.unit(500, "feet")
  27490. },
  27491. ]
  27492. ))
  27493. characterMakers.push(() => makeCharacter(
  27494. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27495. {
  27496. front: {
  27497. height: math.unit(7 + 6.451 / 12, "feet"),
  27498. weight: math.unit(310, "lb"),
  27499. name: "Front",
  27500. image: {
  27501. source: "./media/characters/dahlia-verrick/front.svg",
  27502. extra: 1488 / 1365,
  27503. bottom: 6.2 / 1495
  27504. }
  27505. },
  27506. back: {
  27507. height: math.unit(7 + 6.451 / 12, "feet"),
  27508. weight: math.unit(310, "lb"),
  27509. name: "Back",
  27510. image: {
  27511. source: "./media/characters/dahlia-verrick/back.svg",
  27512. extra: 1472 / 1351,
  27513. bottom: 5.28 / 1477
  27514. }
  27515. },
  27516. frontBusiness: {
  27517. height: math.unit(7 + 6.451 / 12, "feet"),
  27518. weight: math.unit(200, "lb"),
  27519. name: "Front (Business)",
  27520. image: {
  27521. source: "./media/characters/dahlia-verrick/front-business.svg",
  27522. extra: 1478 / 1381,
  27523. bottom: 5.5 / 1484
  27524. }
  27525. },
  27526. frontCasual: {
  27527. height: math.unit(7 + 6.451 / 12, "feet"),
  27528. weight: math.unit(200, "lb"),
  27529. name: "Front (Casual)",
  27530. image: {
  27531. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27532. extra: 1478 / 1381,
  27533. bottom: 5.5 / 1484
  27534. }
  27535. },
  27536. },
  27537. [
  27538. {
  27539. name: "Travel-Sized",
  27540. height: math.unit(7.45, "inches")
  27541. },
  27542. {
  27543. name: "Normal",
  27544. height: math.unit(7 + 6.451 / 12, "feet"),
  27545. default: true
  27546. },
  27547. {
  27548. name: "Hitting the Town",
  27549. height: math.unit(37 + 8 / 12, "feet")
  27550. },
  27551. {
  27552. name: "Stomp in the Suburbs",
  27553. height: math.unit(964 + 9.728 / 12, "feet")
  27554. },
  27555. {
  27556. name: "Sit on the City",
  27557. height: math.unit(61747 + 10.592 / 12, "feet")
  27558. },
  27559. {
  27560. name: "Glomp the Globe",
  27561. height: math.unit(252919327 + 4.832 / 12, "feet")
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27567. {
  27568. front: {
  27569. height: math.unit(6 + 4 / 12, "feet"),
  27570. weight: math.unit(320, "lb"),
  27571. name: "Front",
  27572. image: {
  27573. source: "./media/characters/balina-mahigan/front.svg",
  27574. extra: 447 / 428,
  27575. bottom: 18 / 466
  27576. }
  27577. },
  27578. back: {
  27579. height: math.unit(6 + 4 / 12, "feet"),
  27580. weight: math.unit(320, "lb"),
  27581. name: "Back",
  27582. image: {
  27583. source: "./media/characters/balina-mahigan/back.svg",
  27584. extra: 445 / 428,
  27585. bottom: 4.07 / 448
  27586. }
  27587. },
  27588. arm: {
  27589. height: math.unit(1.88, "feet"),
  27590. name: "Arm",
  27591. image: {
  27592. source: "./media/characters/balina-mahigan/arm.svg"
  27593. }
  27594. },
  27595. backPort: {
  27596. height: math.unit(0.685, "feet"),
  27597. name: "Back Port",
  27598. image: {
  27599. source: "./media/characters/balina-mahigan/back-port.svg"
  27600. }
  27601. },
  27602. hoofpaw: {
  27603. height: math.unit(1.41, "feet"),
  27604. name: "Hoofpaw",
  27605. image: {
  27606. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27607. }
  27608. },
  27609. leftHandBack: {
  27610. height: math.unit(0.938, "feet"),
  27611. name: "Left Hand (Back)",
  27612. image: {
  27613. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27614. }
  27615. },
  27616. leftHandFront: {
  27617. height: math.unit(0.938, "feet"),
  27618. name: "Left Hand (Front)",
  27619. image: {
  27620. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27621. }
  27622. },
  27623. rightHandBack: {
  27624. height: math.unit(0.95, "feet"),
  27625. name: "Right Hand (Back)",
  27626. image: {
  27627. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27628. }
  27629. },
  27630. rightHandFront: {
  27631. height: math.unit(0.95, "feet"),
  27632. name: "Right Hand (Front)",
  27633. image: {
  27634. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27635. }
  27636. },
  27637. },
  27638. [
  27639. {
  27640. name: "Normal",
  27641. height: math.unit(6 + 4 / 12, "feet"),
  27642. default: true
  27643. },
  27644. ]
  27645. ))
  27646. characterMakers.push(() => makeCharacter(
  27647. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27648. {
  27649. front: {
  27650. height: math.unit(6, "feet"),
  27651. weight: math.unit(320, "lb"),
  27652. name: "Front",
  27653. image: {
  27654. source: "./media/characters/balina-mejeri/front.svg",
  27655. extra: 517 / 488,
  27656. bottom: 44.2 / 561
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Normal",
  27663. height: math.unit(6 + 4 / 12, "feet")
  27664. },
  27665. {
  27666. name: "Business",
  27667. height: math.unit(155, "feet"),
  27668. default: true
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27674. {
  27675. kneeling: {
  27676. height: math.unit(6 + 4 / 12, "feet"),
  27677. weight: math.unit(300 * 20, "lb"),
  27678. name: "Kneeling",
  27679. image: {
  27680. source: "./media/characters/balbarian/kneeling.svg",
  27681. extra: 922 / 862,
  27682. bottom: 42.4 / 965
  27683. }
  27684. },
  27685. },
  27686. [
  27687. {
  27688. name: "Normal",
  27689. height: math.unit(6 + 4 / 12, "feet")
  27690. },
  27691. {
  27692. name: "Treasured",
  27693. height: math.unit(18 + 9 / 12, "feet"),
  27694. default: true
  27695. },
  27696. {
  27697. name: "Macro",
  27698. height: math.unit(900, "feet")
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27704. {
  27705. front: {
  27706. height: math.unit(6 + 4 / 12, "feet"),
  27707. weight: math.unit(325, "lb"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/balina-amarini/front.svg",
  27711. extra: 415 / 403,
  27712. bottom: 19 / 433.4
  27713. }
  27714. },
  27715. back: {
  27716. height: math.unit(6 + 4 / 12, "feet"),
  27717. weight: math.unit(325, "lb"),
  27718. name: "Back",
  27719. image: {
  27720. source: "./media/characters/balina-amarini/back.svg",
  27721. extra: 415 / 403,
  27722. bottom: 13.5 / 432
  27723. }
  27724. },
  27725. overdrive: {
  27726. height: math.unit(6 + 4 / 12, "feet"),
  27727. weight: math.unit(400, "lb"),
  27728. name: "Overdrive",
  27729. image: {
  27730. source: "./media/characters/balina-amarini/overdrive.svg",
  27731. extra: 269 / 259,
  27732. bottom: 12 / 282
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Boom",
  27739. height: math.unit(9 + 10 / 12, "feet"),
  27740. default: true
  27741. },
  27742. {
  27743. name: "Macro",
  27744. height: math.unit(280, "feet")
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27750. {
  27751. goddess: {
  27752. height: math.unit(600, "feet"),
  27753. weight: math.unit(2000000, "tons"),
  27754. name: "Goddess",
  27755. image: {
  27756. source: "./media/characters/lady-kubwa/goddess.svg",
  27757. extra: 1240.5 / 1223,
  27758. bottom: 22 / 1263
  27759. }
  27760. },
  27761. goddesser: {
  27762. height: math.unit(900, "feet"),
  27763. weight: math.unit(20000000, "lb"),
  27764. name: "Goddess-er",
  27765. image: {
  27766. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27767. extra: 899 / 888,
  27768. bottom: 12.6 / 912
  27769. }
  27770. },
  27771. },
  27772. [
  27773. {
  27774. name: "Macro",
  27775. height: math.unit(600, "feet"),
  27776. default: true
  27777. },
  27778. {
  27779. name: "Megamacro",
  27780. height: math.unit(250, "miles")
  27781. },
  27782. ]
  27783. ))
  27784. characterMakers.push(() => makeCharacter(
  27785. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27786. {
  27787. front: {
  27788. height: math.unit(7 + 7 / 12, "feet"),
  27789. weight: math.unit(250, "lb"),
  27790. name: "Front",
  27791. image: {
  27792. source: "./media/characters/tala-grovehorn/front.svg",
  27793. extra: 2636 / 2525,
  27794. bottom: 147 / 2781
  27795. }
  27796. },
  27797. back: {
  27798. height: math.unit(7 + 7 / 12, "feet"),
  27799. weight: math.unit(250, "lb"),
  27800. name: "Back",
  27801. image: {
  27802. source: "./media/characters/tala-grovehorn/back.svg",
  27803. extra: 2635 / 2539,
  27804. bottom: 100 / 2732.8
  27805. }
  27806. },
  27807. mouth: {
  27808. height: math.unit(1.15, "feet"),
  27809. name: "Mouth",
  27810. image: {
  27811. source: "./media/characters/tala-grovehorn/mouth.svg"
  27812. }
  27813. },
  27814. dick: {
  27815. height: math.unit(2.36, "feet"),
  27816. name: "Dick",
  27817. image: {
  27818. source: "./media/characters/tala-grovehorn/dick.svg"
  27819. }
  27820. },
  27821. slit: {
  27822. height: math.unit(0.61, "feet"),
  27823. name: "Slit",
  27824. image: {
  27825. source: "./media/characters/tala-grovehorn/slit.svg"
  27826. }
  27827. },
  27828. },
  27829. [
  27830. ]
  27831. ))
  27832. characterMakers.push(() => makeCharacter(
  27833. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27834. {
  27835. front: {
  27836. height: math.unit(7 + 7 / 12, "feet"),
  27837. weight: math.unit(225, "lb"),
  27838. name: "Front",
  27839. image: {
  27840. source: "./media/characters/epona/front.svg",
  27841. extra: 2445 / 2290,
  27842. bottom: 251 / 2696
  27843. }
  27844. },
  27845. back: {
  27846. height: math.unit(7 + 7 / 12, "feet"),
  27847. weight: math.unit(225, "lb"),
  27848. name: "Back",
  27849. image: {
  27850. source: "./media/characters/epona/back.svg",
  27851. extra: 2546 / 2408,
  27852. bottom: 44 / 2589
  27853. }
  27854. },
  27855. genitals: {
  27856. height: math.unit(1.5, "feet"),
  27857. name: "Genitals",
  27858. image: {
  27859. source: "./media/characters/epona/genitals.svg"
  27860. }
  27861. },
  27862. },
  27863. [
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(7 + 7 / 12, "feet"),
  27867. default: true
  27868. },
  27869. ]
  27870. ))
  27871. characterMakers.push(() => makeCharacter(
  27872. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27873. {
  27874. front: {
  27875. height: math.unit(7, "feet"),
  27876. weight: math.unit(518, "lb"),
  27877. name: "Front",
  27878. image: {
  27879. source: "./media/characters/avia-bloodbourn/front.svg",
  27880. extra: 1466 / 1350,
  27881. bottom: 65 / 1527
  27882. }
  27883. },
  27884. },
  27885. [
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27890. {
  27891. front: {
  27892. height: math.unit(9.35, "feet"),
  27893. weight: math.unit(600, "lb"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/amera/front.svg",
  27897. extra: 891 / 818,
  27898. bottom: 30 / 922.7
  27899. }
  27900. },
  27901. back: {
  27902. height: math.unit(9.35, "feet"),
  27903. weight: math.unit(600, "lb"),
  27904. name: "Back",
  27905. image: {
  27906. source: "./media/characters/amera/back.svg",
  27907. extra: 876 / 824,
  27908. bottom: 6.8 / 884
  27909. }
  27910. },
  27911. dick: {
  27912. height: math.unit(2.14, "feet"),
  27913. name: "Dick",
  27914. image: {
  27915. source: "./media/characters/amera/dick.svg"
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(9.35, "feet"),
  27923. default: true
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27929. {
  27930. kneeling: {
  27931. height: math.unit(3 + 4 / 12, "feet"),
  27932. weight: math.unit(90, "lb"),
  27933. name: "Kneeling",
  27934. image: {
  27935. source: "./media/characters/rosewen/kneeling.svg",
  27936. extra: 1835 / 1571,
  27937. bottom: 27.7 / 1862
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(3 + 4 / 12, "feet"),
  27945. default: true
  27946. },
  27947. ]
  27948. ))
  27949. characterMakers.push(() => makeCharacter(
  27950. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27951. {
  27952. front: {
  27953. height: math.unit(5 + 10 / 12, "feet"),
  27954. weight: math.unit(200, "lb"),
  27955. name: "Front",
  27956. image: {
  27957. source: "./media/characters/sabah/front.svg",
  27958. extra: 849 / 763,
  27959. bottom: 33.9 / 881
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(5 + 10 / 12, "feet"),
  27967. default: true
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27973. {
  27974. front: {
  27975. height: math.unit(3 + 5 / 12, "feet"),
  27976. weight: math.unit(40, "kg"),
  27977. name: "Front",
  27978. image: {
  27979. source: "./media/characters/purple-flame/front.svg",
  27980. extra: 1577 / 1412,
  27981. bottom: 97 / 1694
  27982. }
  27983. },
  27984. frontDressed: {
  27985. height: math.unit(3 + 5 / 12, "feet"),
  27986. weight: math.unit(40, "kg"),
  27987. name: "Front (Dressed)",
  27988. image: {
  27989. source: "./media/characters/purple-flame/front-dressed.svg",
  27990. extra: 1577 / 1412,
  27991. bottom: 97 / 1694
  27992. }
  27993. },
  27994. headphones: {
  27995. height: math.unit(0.85, "feet"),
  27996. name: "Headphones",
  27997. image: {
  27998. source: "./media/characters/purple-flame/headphones.svg"
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Really Small",
  28005. height: math.unit(5, "cm")
  28006. },
  28007. {
  28008. name: "Micro",
  28009. height: math.unit(1 + 5 / 12, "feet")
  28010. },
  28011. {
  28012. name: "Normal",
  28013. height: math.unit(3 + 5 / 12, "feet"),
  28014. default: true
  28015. },
  28016. {
  28017. name: "Minimacro",
  28018. height: math.unit(125, "feet")
  28019. },
  28020. {
  28021. name: "Macro",
  28022. height: math.unit(0.5, "miles")
  28023. },
  28024. {
  28025. name: "Megamacro",
  28026. height: math.unit(50, "miles")
  28027. },
  28028. {
  28029. name: "Gigantic",
  28030. height: math.unit(750, "miles")
  28031. },
  28032. {
  28033. name: "Planetary",
  28034. height: math.unit(15000, "miles")
  28035. },
  28036. ]
  28037. ))
  28038. characterMakers.push(() => makeCharacter(
  28039. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28040. {
  28041. front: {
  28042. height: math.unit(14, "feet"),
  28043. weight: math.unit(959, "lb"),
  28044. name: "Front",
  28045. image: {
  28046. source: "./media/characters/arsenal/front.svg",
  28047. extra: 2357 / 2157,
  28048. bottom: 93 / 2458
  28049. }
  28050. },
  28051. },
  28052. [
  28053. {
  28054. name: "Normal",
  28055. height: math.unit(14, "feet"),
  28056. default: true
  28057. },
  28058. ]
  28059. ))
  28060. characterMakers.push(() => makeCharacter(
  28061. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28062. {
  28063. front: {
  28064. height: math.unit(6, "feet"),
  28065. weight: math.unit(150, "lb"),
  28066. name: "Front",
  28067. image: {
  28068. source: "./media/characters/adira/front.svg",
  28069. extra: 1078 / 1029,
  28070. bottom: 87 / 1166
  28071. }
  28072. },
  28073. },
  28074. [
  28075. {
  28076. name: "Micro",
  28077. height: math.unit(4, "inches"),
  28078. default: true
  28079. },
  28080. {
  28081. name: "Macro",
  28082. height: math.unit(50, "feet")
  28083. },
  28084. ]
  28085. ))
  28086. characterMakers.push(() => makeCharacter(
  28087. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28088. {
  28089. front: {
  28090. height: math.unit(16, "feet"),
  28091. weight: math.unit(1000, "lb"),
  28092. name: "Front",
  28093. image: {
  28094. source: "./media/characters/grim/front.svg",
  28095. extra: 622 / 614,
  28096. bottom: 18.1 / 642
  28097. }
  28098. },
  28099. back: {
  28100. height: math.unit(16, "feet"),
  28101. weight: math.unit(1000, "lb"),
  28102. name: "Back",
  28103. image: {
  28104. source: "./media/characters/grim/back.svg",
  28105. extra: 610.6 / 602,
  28106. bottom: 40.8 / 652
  28107. }
  28108. },
  28109. hunched: {
  28110. height: math.unit(9.75, "feet"),
  28111. weight: math.unit(1000, "lb"),
  28112. name: "Hunched",
  28113. image: {
  28114. source: "./media/characters/grim/hunched.svg",
  28115. extra: 304 / 297,
  28116. bottom: 35.4 / 394
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(16, "feet"),
  28124. default: true
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(2.3, "meters"),
  28133. weight: math.unit(300, "lb"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/sinja/front-sfw.svg",
  28137. extra: 1393 / 1294,
  28138. bottom: 70 / 1463
  28139. }
  28140. },
  28141. frontNsfw: {
  28142. height: math.unit(2.3, "meters"),
  28143. weight: math.unit(300, "lb"),
  28144. name: "Front (NSFW)",
  28145. image: {
  28146. source: "./media/characters/sinja/front-nsfw.svg",
  28147. extra: 1393 / 1294,
  28148. bottom: 70 / 1463
  28149. }
  28150. },
  28151. back: {
  28152. height: math.unit(2.3, "meters"),
  28153. weight: math.unit(300, "lb"),
  28154. name: "Back",
  28155. image: {
  28156. source: "./media/characters/sinja/back.svg",
  28157. extra: 1393 / 1294,
  28158. bottom: 70 / 1463
  28159. }
  28160. },
  28161. head: {
  28162. height: math.unit(1.771, "feet"),
  28163. name: "Head",
  28164. image: {
  28165. source: "./media/characters/sinja/head.svg"
  28166. }
  28167. },
  28168. slit: {
  28169. height: math.unit(0.8, "feet"),
  28170. name: "Slit",
  28171. image: {
  28172. source: "./media/characters/sinja/slit.svg"
  28173. }
  28174. },
  28175. },
  28176. [
  28177. {
  28178. name: "Normal",
  28179. height: math.unit(2.3, "meters")
  28180. },
  28181. {
  28182. name: "Macro",
  28183. height: math.unit(91, "meters"),
  28184. default: true
  28185. },
  28186. {
  28187. name: "Megamacro",
  28188. height: math.unit(91440, "meters")
  28189. },
  28190. {
  28191. name: "Gigamacro",
  28192. height: math.unit(60960000, "meters")
  28193. },
  28194. {
  28195. name: "Teramacro",
  28196. height: math.unit(9144000000, "meters")
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28202. {
  28203. front: {
  28204. height: math.unit(1.7, "meters"),
  28205. weight: math.unit(130, "lb"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/kyu/front.svg",
  28209. extra: 415 / 395,
  28210. bottom: 5 / 420
  28211. }
  28212. },
  28213. head: {
  28214. height: math.unit(1.75, "feet"),
  28215. name: "Head",
  28216. image: {
  28217. source: "./media/characters/kyu/head.svg"
  28218. }
  28219. },
  28220. foot: {
  28221. height: math.unit(0.81, "feet"),
  28222. name: "Foot",
  28223. image: {
  28224. source: "./media/characters/kyu/foot.svg"
  28225. }
  28226. },
  28227. },
  28228. [
  28229. {
  28230. name: "Normal",
  28231. height: math.unit(1.7, "meters")
  28232. },
  28233. {
  28234. name: "Macro",
  28235. height: math.unit(131, "feet"),
  28236. default: true
  28237. },
  28238. {
  28239. name: "Megamacro",
  28240. height: math.unit(91440, "meters")
  28241. },
  28242. {
  28243. name: "Gigamacro",
  28244. height: math.unit(60960000, "meters")
  28245. },
  28246. {
  28247. name: "Teramacro",
  28248. height: math.unit(9144000000, "meters")
  28249. },
  28250. ]
  28251. ))
  28252. characterMakers.push(() => makeCharacter(
  28253. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28254. {
  28255. front: {
  28256. height: math.unit(7 + 1 / 12, "feet"),
  28257. weight: math.unit(250, "lb"),
  28258. name: "Front",
  28259. image: {
  28260. source: "./media/characters/joey/front.svg",
  28261. extra: 1791 / 1537,
  28262. bottom: 28 / 1816
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Micro",
  28269. height: math.unit(3, "inches")
  28270. },
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(7 + 1 / 12, "feet"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(165, "cm"),
  28283. weight: math.unit(140, "lb"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/sam-evans/front.svg",
  28287. extra: 3417 / 3230,
  28288. bottom: 41.3 / 3417
  28289. }
  28290. },
  28291. frontSixTails: {
  28292. height: math.unit(165, "cm"),
  28293. weight: math.unit(140, "lb"),
  28294. name: "Front-six-tails",
  28295. image: {
  28296. source: "./media/characters/sam-evans/front-six-tails.svg",
  28297. extra: 3417 / 3230,
  28298. bottom: 41.3 / 3417
  28299. }
  28300. },
  28301. back: {
  28302. height: math.unit(165, "cm"),
  28303. weight: math.unit(140, "lb"),
  28304. name: "Back",
  28305. image: {
  28306. source: "./media/characters/sam-evans/back.svg",
  28307. extra: 3227 / 3032,
  28308. bottom: 6.8 / 3234
  28309. }
  28310. },
  28311. face: {
  28312. height: math.unit(0.68, "feet"),
  28313. name: "Face",
  28314. image: {
  28315. source: "./media/characters/sam-evans/face.svg"
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Normal",
  28322. height: math.unit(165, "cm"),
  28323. default: true
  28324. },
  28325. {
  28326. name: "Macro",
  28327. height: math.unit(100, "meters")
  28328. },
  28329. {
  28330. name: "Macro+",
  28331. height: math.unit(800, "meters")
  28332. },
  28333. {
  28334. name: "Macro++",
  28335. height: math.unit(3, "km")
  28336. },
  28337. {
  28338. name: "Macro+++",
  28339. height: math.unit(30, "km")
  28340. },
  28341. ]
  28342. ))
  28343. characterMakers.push(() => makeCharacter(
  28344. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28345. {
  28346. front: {
  28347. height: math.unit(10, "feet"),
  28348. weight: math.unit(750, "lb"),
  28349. name: "Front",
  28350. image: {
  28351. source: "./media/characters/juliet-a/front.svg",
  28352. extra: 1766 / 1720,
  28353. bottom: 43 / 1809
  28354. }
  28355. },
  28356. back: {
  28357. height: math.unit(10, "feet"),
  28358. weight: math.unit(750, "lb"),
  28359. name: "Back",
  28360. image: {
  28361. source: "./media/characters/juliet-a/back.svg",
  28362. extra: 1781 / 1734,
  28363. bottom: 35 / 1810,
  28364. }
  28365. },
  28366. },
  28367. [
  28368. {
  28369. name: "Normal",
  28370. height: math.unit(10, "feet"),
  28371. default: true
  28372. },
  28373. {
  28374. name: "Dragon Form",
  28375. height: math.unit(250, "feet")
  28376. },
  28377. {
  28378. name: "Macro",
  28379. height: math.unit(1000, "feet")
  28380. },
  28381. {
  28382. name: "Megamacro",
  28383. height: math.unit(10000, "feet")
  28384. }
  28385. ]
  28386. ))
  28387. characterMakers.push(() => makeCharacter(
  28388. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28389. {
  28390. regular: {
  28391. height: math.unit(7 + 3 / 12, "feet"),
  28392. weight: math.unit(260, "lb"),
  28393. name: "Regular",
  28394. image: {
  28395. source: "./media/characters/wild/regular.svg",
  28396. extra: 97.45 / 92,
  28397. bottom: 6.8 / 104.3
  28398. }
  28399. },
  28400. biggums: {
  28401. height: math.unit(8 + 6 / 12, "feet"),
  28402. weight: math.unit(425, "lb"),
  28403. name: "Biggums",
  28404. image: {
  28405. source: "./media/characters/wild/biggums.svg",
  28406. extra: 97.45 / 92,
  28407. bottom: 7.5 / 132.34
  28408. }
  28409. },
  28410. mawRegular: {
  28411. height: math.unit(1.24, "feet"),
  28412. name: "Maw (Regular)",
  28413. image: {
  28414. source: "./media/characters/wild/maw.svg"
  28415. }
  28416. },
  28417. mawBiggums: {
  28418. height: math.unit(1.47, "feet"),
  28419. name: "Maw (Biggums)",
  28420. image: {
  28421. source: "./media/characters/wild/maw.svg"
  28422. }
  28423. },
  28424. },
  28425. [
  28426. {
  28427. name: "Normal",
  28428. height: math.unit(7 + 3 / 12, "feet"),
  28429. default: true
  28430. },
  28431. ]
  28432. ))
  28433. characterMakers.push(() => makeCharacter(
  28434. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28435. {
  28436. front: {
  28437. height: math.unit(2.5, "meters"),
  28438. weight: math.unit(200, "kg"),
  28439. name: "Front",
  28440. image: {
  28441. source: "./media/characters/vidar/front.svg",
  28442. extra: 2994 / 2795,
  28443. bottom: 56 / 3061
  28444. }
  28445. },
  28446. back: {
  28447. height: math.unit(2.5, "meters"),
  28448. weight: math.unit(200, "kg"),
  28449. name: "Back",
  28450. image: {
  28451. source: "./media/characters/vidar/back.svg",
  28452. extra: 3131 / 2928,
  28453. bottom: 13.5 / 3141.5
  28454. }
  28455. },
  28456. feral: {
  28457. height: math.unit(2.5, "meters"),
  28458. weight: math.unit(2000, "kg"),
  28459. name: "Feral",
  28460. image: {
  28461. source: "./media/characters/vidar/feral.svg",
  28462. extra: 2790 / 1765,
  28463. bottom: 6 / 2796
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(2.5, "meters"),
  28471. default: true
  28472. },
  28473. {
  28474. name: "Macro",
  28475. height: math.unit(100, "meters")
  28476. },
  28477. ]
  28478. ))
  28479. characterMakers.push(() => makeCharacter(
  28480. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28481. {
  28482. front: {
  28483. height: math.unit(5 + 9 / 12, "feet"),
  28484. weight: math.unit(120, "lb"),
  28485. name: "Front",
  28486. image: {
  28487. source: "./media/characters/ash/front.svg",
  28488. extra: 2189 / 1961,
  28489. bottom: 5.2 / 2194
  28490. }
  28491. },
  28492. },
  28493. [
  28494. {
  28495. name: "Normal",
  28496. height: math.unit(5 + 9 / 12, "feet"),
  28497. default: true
  28498. },
  28499. ]
  28500. ))
  28501. characterMakers.push(() => makeCharacter(
  28502. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28503. {
  28504. front: {
  28505. height: math.unit(9, "feet"),
  28506. weight: math.unit(10000, "lb"),
  28507. name: "Front",
  28508. image: {
  28509. source: "./media/characters/gygabite/front.svg",
  28510. bottom: 31.7 / 537.8,
  28511. extra: 505 / 370
  28512. }
  28513. },
  28514. },
  28515. [
  28516. {
  28517. name: "Normal",
  28518. height: math.unit(9, "feet"),
  28519. default: true
  28520. },
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28525. {
  28526. front: {
  28527. height: math.unit(12, "feet"),
  28528. weight: math.unit(4000, "lb"),
  28529. name: "Front",
  28530. image: {
  28531. source: "./media/characters/p0tat0/front.svg",
  28532. extra: 1065 / 921,
  28533. bottom: 55.7 / 1121.25
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Normal",
  28540. height: math.unit(12, "feet"),
  28541. default: true
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28547. {
  28548. side: {
  28549. height: math.unit(6.5, "feet"),
  28550. weight: math.unit(800, "lb"),
  28551. name: "Side",
  28552. image: {
  28553. source: "./media/characters/dusk/side.svg",
  28554. extra: 615 / 373,
  28555. bottom: 53 / 664
  28556. }
  28557. },
  28558. sitting: {
  28559. height: math.unit(7, "feet"),
  28560. weight: math.unit(800, "lb"),
  28561. name: "Sitting",
  28562. image: {
  28563. source: "./media/characters/dusk/sitting.svg",
  28564. extra: 753 / 425,
  28565. bottom: 33 / 774
  28566. }
  28567. },
  28568. head: {
  28569. height: math.unit(6.1, "feet"),
  28570. name: "Head",
  28571. image: {
  28572. source: "./media/characters/dusk/head.svg"
  28573. }
  28574. },
  28575. },
  28576. [
  28577. {
  28578. name: "Normal",
  28579. height: math.unit(7, "feet"),
  28580. default: true
  28581. },
  28582. ]
  28583. ))
  28584. characterMakers.push(() => makeCharacter(
  28585. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28586. {
  28587. front: {
  28588. height: math.unit(15, "feet"),
  28589. weight: math.unit(7000, "lb"),
  28590. name: "Front",
  28591. image: {
  28592. source: "./media/characters/jay-direwolf/front.svg",
  28593. extra: 1810 / 1732,
  28594. bottom: 66 / 1892
  28595. }
  28596. },
  28597. },
  28598. [
  28599. {
  28600. name: "Normal",
  28601. height: math.unit(15, "feet"),
  28602. default: true
  28603. },
  28604. ]
  28605. ))
  28606. characterMakers.push(() => makeCharacter(
  28607. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28608. {
  28609. front: {
  28610. height: math.unit(4 + 9 / 12, "feet"),
  28611. weight: math.unit(130, "lb"),
  28612. name: "Front",
  28613. image: {
  28614. source: "./media/characters/anchovie/front.svg",
  28615. extra: 382 / 350,
  28616. bottom: 25 / 409
  28617. }
  28618. },
  28619. back: {
  28620. height: math.unit(4 + 9 / 12, "feet"),
  28621. weight: math.unit(130, "lb"),
  28622. name: "Back",
  28623. image: {
  28624. source: "./media/characters/anchovie/back.svg",
  28625. extra: 385 / 352,
  28626. bottom: 16.6 / 402
  28627. }
  28628. },
  28629. frontDressed: {
  28630. height: math.unit(4 + 9 / 12, "feet"),
  28631. weight: math.unit(130, "lb"),
  28632. name: "Front (Dressed)",
  28633. image: {
  28634. source: "./media/characters/anchovie/front-dressed.svg",
  28635. extra: 382 / 350,
  28636. bottom: 25 / 409
  28637. }
  28638. },
  28639. backDressed: {
  28640. height: math.unit(4 + 9 / 12, "feet"),
  28641. weight: math.unit(130, "lb"),
  28642. name: "Back (Dressed)",
  28643. image: {
  28644. source: "./media/characters/anchovie/back-dressed.svg",
  28645. extra: 385 / 352,
  28646. bottom: 16.6 / 402
  28647. }
  28648. },
  28649. },
  28650. [
  28651. {
  28652. name: "Micro",
  28653. height: math.unit(6.4, "inches")
  28654. },
  28655. {
  28656. name: "Normal",
  28657. height: math.unit(4 + 9 / 12, "feet"),
  28658. default: true
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28664. {
  28665. front: {
  28666. height: math.unit(2, "meters"),
  28667. weight: math.unit(180, "lb"),
  28668. name: "Front",
  28669. image: {
  28670. source: "./media/characters/acidrenamon/front.svg",
  28671. extra: 987 / 890,
  28672. bottom: 22.8 / 1009
  28673. }
  28674. },
  28675. back: {
  28676. height: math.unit(2, "meters"),
  28677. weight: math.unit(180, "lb"),
  28678. name: "Back",
  28679. image: {
  28680. source: "./media/characters/acidrenamon/back.svg",
  28681. extra: 983 / 891,
  28682. bottom: 8.4 / 992
  28683. }
  28684. },
  28685. head: {
  28686. height: math.unit(1.92, "feet"),
  28687. name: "Head",
  28688. image: {
  28689. source: "./media/characters/acidrenamon/head.svg"
  28690. }
  28691. },
  28692. rump: {
  28693. height: math.unit(1.72, "feet"),
  28694. name: "Rump",
  28695. image: {
  28696. source: "./media/characters/acidrenamon/rump.svg"
  28697. }
  28698. },
  28699. tail: {
  28700. height: math.unit(4.2, "feet"),
  28701. name: "Tail",
  28702. image: {
  28703. source: "./media/characters/acidrenamon/tail.svg"
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Normal",
  28710. height: math.unit(2, "meters"),
  28711. default: true
  28712. },
  28713. {
  28714. name: "Minimacro",
  28715. height: math.unit(7, "meters")
  28716. },
  28717. {
  28718. name: "Macro",
  28719. height: math.unit(200, "meters")
  28720. },
  28721. {
  28722. name: "Gigamacro",
  28723. height: math.unit(0.2, "earths")
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(152, "feet"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/kenzie-lee/front.svg",
  28735. extra: 1869/1774,
  28736. bottom: 128/1997
  28737. }
  28738. },
  28739. side: {
  28740. height: math.unit(86, "feet"),
  28741. name: "Side",
  28742. image: {
  28743. source: "./media/characters/kenzie-lee/side.svg",
  28744. extra: 930/815,
  28745. bottom: 177/1107
  28746. }
  28747. },
  28748. paw: {
  28749. height: math.unit(15, "feet"),
  28750. name: "Paw",
  28751. image: {
  28752. source: "./media/characters/kenzie-lee/paw.svg"
  28753. }
  28754. },
  28755. },
  28756. [
  28757. {
  28758. name: "Kenzie Flea",
  28759. height: math.unit(2, "mm"),
  28760. default: true
  28761. },
  28762. {
  28763. name: "Micro",
  28764. height: math.unit(2, "inches")
  28765. },
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(152, "feet")
  28769. },
  28770. {
  28771. name: "Megamacro",
  28772. height: math.unit(7, "miles")
  28773. },
  28774. {
  28775. name: "Gigamacro",
  28776. height: math.unit(8000, "miles")
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(6, "feet"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/withers/front.svg",
  28788. extra: 1935/1760,
  28789. bottom: 72/2007
  28790. }
  28791. },
  28792. back: {
  28793. height: math.unit(6, "feet"),
  28794. name: "Back",
  28795. image: {
  28796. source: "./media/characters/withers/back.svg",
  28797. extra: 1944/1792,
  28798. bottom: 12/1956
  28799. }
  28800. },
  28801. dressed: {
  28802. height: math.unit(6, "feet"),
  28803. name: "Dressed",
  28804. image: {
  28805. source: "./media/characters/withers/dressed.svg",
  28806. extra: 1937/1765,
  28807. bottom: 73/2010
  28808. }
  28809. },
  28810. phase1: {
  28811. height: math.unit(1.1, "feet"),
  28812. name: "Phase 1",
  28813. image: {
  28814. source: "./media/characters/withers/phase-1.svg",
  28815. extra: 1885/1232,
  28816. bottom: 0/1885
  28817. }
  28818. },
  28819. phase2: {
  28820. height: math.unit(1.05, "feet"),
  28821. name: "Phase 2",
  28822. image: {
  28823. source: "./media/characters/withers/phase-2.svg",
  28824. extra: 1792/1090,
  28825. bottom: 0/1792
  28826. }
  28827. },
  28828. partyWipe: {
  28829. height: math.unit(1.1, "feet"),
  28830. name: "Party Wipe",
  28831. image: {
  28832. source: "./media/characters/withers/party-wipe.svg",
  28833. extra: 1864/1207,
  28834. bottom: 0/1864
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Macro",
  28841. height: math.unit(167, "feet"),
  28842. default: true
  28843. },
  28844. {
  28845. name: "Megamacro",
  28846. height: math.unit(15, "miles")
  28847. }
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(6 + 7 / 12, "feet"),
  28855. weight: math.unit(250, "lb"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/nemoskii/front.svg",
  28859. extra: 2270 / 1734,
  28860. bottom: 86 / 2354
  28861. }
  28862. },
  28863. back: {
  28864. height: math.unit(6 + 7 / 12, "feet"),
  28865. weight: math.unit(250, "lb"),
  28866. name: "Back",
  28867. image: {
  28868. source: "./media/characters/nemoskii/back.svg",
  28869. extra: 1845 / 1788,
  28870. bottom: 10.5 / 1852
  28871. }
  28872. },
  28873. head: {
  28874. height: math.unit(1.31, "feet"),
  28875. name: "Head",
  28876. image: {
  28877. source: "./media/characters/nemoskii/head.svg"
  28878. }
  28879. },
  28880. },
  28881. [
  28882. {
  28883. name: "Micro",
  28884. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28885. },
  28886. {
  28887. name: "Normal",
  28888. height: math.unit(6 + 7 / 12, "feet"),
  28889. default: true
  28890. },
  28891. {
  28892. name: "Macro",
  28893. height: math.unit((6 + 7 / 12) * 150, "feet")
  28894. },
  28895. {
  28896. name: "Macro+",
  28897. height: math.unit((6 + 7 / 12) * 500, "feet")
  28898. },
  28899. {
  28900. name: "Megamacro",
  28901. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28907. {
  28908. front: {
  28909. height: math.unit(1, "mile"),
  28910. weight: math.unit(265261.9, "lb"),
  28911. name: "Front",
  28912. image: {
  28913. source: "./media/characters/shui/front.svg",
  28914. extra: 1633 / 1564,
  28915. bottom: 91.5 / 1726
  28916. }
  28917. },
  28918. },
  28919. [
  28920. {
  28921. name: "Macro",
  28922. height: math.unit(1, "mile"),
  28923. default: true
  28924. },
  28925. ]
  28926. ))
  28927. characterMakers.push(() => makeCharacter(
  28928. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28929. {
  28930. front: {
  28931. height: math.unit(12 + 6 / 12, "feet"),
  28932. weight: math.unit(1342, "lb"),
  28933. name: "Front",
  28934. image: {
  28935. source: "./media/characters/arokh-takakura/front.svg",
  28936. extra: 1089 / 1043,
  28937. bottom: 77.4 / 1176.7
  28938. }
  28939. },
  28940. back: {
  28941. height: math.unit(12 + 6 / 12, "feet"),
  28942. weight: math.unit(1342, "lb"),
  28943. name: "Back",
  28944. image: {
  28945. source: "./media/characters/arokh-takakura/back.svg",
  28946. extra: 1046 / 1019,
  28947. bottom: 102 / 1150
  28948. }
  28949. },
  28950. },
  28951. [
  28952. {
  28953. name: "Big",
  28954. height: math.unit(12 + 6 / 12, "feet"),
  28955. default: true
  28956. },
  28957. ]
  28958. ))
  28959. characterMakers.push(() => makeCharacter(
  28960. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28961. {
  28962. front: {
  28963. height: math.unit(5 + 6 / 12, "feet"),
  28964. weight: math.unit(150, "lb"),
  28965. name: "Front",
  28966. image: {
  28967. source: "./media/characters/theo/front.svg",
  28968. extra: 1184 / 1131,
  28969. bottom: 7.4 / 1191
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Micro",
  28976. height: math.unit(5, "inches")
  28977. },
  28978. {
  28979. name: "Normal",
  28980. height: math.unit(5 + 6 / 12, "feet"),
  28981. default: true
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(5 + 9 / 12, "feet"),
  28990. weight: math.unit(130, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/cecelia-swift/front.svg",
  28994. extra: 502 / 484,
  28995. bottom: 23 / 523
  28996. }
  28997. },
  28998. back: {
  28999. height: math.unit(5 + 9 / 12, "feet"),
  29000. weight: math.unit(130, "lb"),
  29001. name: "Back",
  29002. image: {
  29003. source: "./media/characters/cecelia-swift/back.svg",
  29004. extra: 499 / 485,
  29005. bottom: 12 / 511
  29006. }
  29007. },
  29008. head: {
  29009. height: math.unit(0.90, "feet"),
  29010. name: "Head",
  29011. image: {
  29012. source: "./media/characters/cecelia-swift/head.svg"
  29013. }
  29014. },
  29015. rump: {
  29016. height: math.unit(1.75, "feet"),
  29017. name: "Rump",
  29018. image: {
  29019. source: "./media/characters/cecelia-swift/rump.svg"
  29020. }
  29021. },
  29022. },
  29023. [
  29024. {
  29025. name: "Normal",
  29026. height: math.unit(5 + 9 / 12, "feet"),
  29027. default: true
  29028. },
  29029. {
  29030. name: "Big",
  29031. height: math.unit(50, "feet")
  29032. },
  29033. {
  29034. name: "Macro",
  29035. height: math.unit(100, "feet")
  29036. },
  29037. {
  29038. name: "Macro+",
  29039. height: math.unit(500, "feet")
  29040. },
  29041. {
  29042. name: "Macro++",
  29043. height: math.unit(1000, "feet")
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(6, "feet"),
  29052. weight: math.unit(150, "lb"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/kaunan/front.svg",
  29056. extra: 2890 / 2523,
  29057. bottom: 49 / 2939
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Macro",
  29064. height: math.unit(150, "feet"),
  29065. default: true
  29066. },
  29067. ]
  29068. ))
  29069. characterMakers.push(() => makeCharacter(
  29070. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29071. {
  29072. front: {
  29073. height: math.unit(175, "cm"),
  29074. weight: math.unit(60, "kg"),
  29075. name: "Front",
  29076. image: {
  29077. source: "./media/characters/fei/front.svg",
  29078. extra: 1873/1723,
  29079. bottom: 53/1926
  29080. }
  29081. },
  29082. },
  29083. [
  29084. {
  29085. name: "Mortal",
  29086. height: math.unit(175, "cm")
  29087. },
  29088. {
  29089. name: "Normal",
  29090. height: math.unit(3500, "m"),
  29091. default: true
  29092. },
  29093. {
  29094. name: "Stroll",
  29095. height: math.unit(17.5, "km")
  29096. },
  29097. {
  29098. name: "Showoff",
  29099. height: math.unit(175, "km")
  29100. },
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29105. {
  29106. front: {
  29107. height: math.unit(7, "feet"),
  29108. weight: math.unit(1000, "kg"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/edrax/front.svg",
  29112. extra: 2838 / 2550,
  29113. bottom: 130 / 2968
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Small",
  29120. height: math.unit(7, "feet")
  29121. },
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(1500, "meters")
  29125. },
  29126. {
  29127. name: "Mega",
  29128. height: math.unit(12000000, "km"),
  29129. default: true
  29130. },
  29131. {
  29132. name: "Megamacro",
  29133. height: math.unit(10600000, "lightyears")
  29134. },
  29135. {
  29136. name: "Hypermacro",
  29137. height: math.unit(256, "yottameters")
  29138. },
  29139. ]
  29140. ))
  29141. characterMakers.push(() => makeCharacter(
  29142. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29143. {
  29144. front: {
  29145. height: math.unit(10, "feet"),
  29146. weight: math.unit(750, "lb"),
  29147. name: "Front",
  29148. image: {
  29149. source: "./media/characters/clove/front.svg",
  29150. extra: 1918/1751,
  29151. bottom: 52/1970
  29152. }
  29153. },
  29154. back: {
  29155. height: math.unit(10, "feet"),
  29156. weight: math.unit(750, "lb"),
  29157. name: "Back",
  29158. image: {
  29159. source: "./media/characters/clove/back.svg",
  29160. extra: 1912/1747,
  29161. bottom: 50/1962
  29162. }
  29163. },
  29164. },
  29165. [
  29166. {
  29167. name: "Normal",
  29168. height: math.unit(10, "feet"),
  29169. default: true
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29175. {
  29176. front: {
  29177. height: math.unit(4, "feet"),
  29178. weight: math.unit(50, "lb"),
  29179. name: "Front",
  29180. image: {
  29181. source: "./media/characters/alex-rabbit/front.svg",
  29182. extra: 507 / 458,
  29183. bottom: 18.5 / 527
  29184. }
  29185. },
  29186. back: {
  29187. height: math.unit(4, "feet"),
  29188. weight: math.unit(50, "lb"),
  29189. name: "Back",
  29190. image: {
  29191. source: "./media/characters/alex-rabbit/back.svg",
  29192. extra: 502 / 460,
  29193. bottom: 18.9 / 521
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Normal",
  29200. height: math.unit(4, "feet"),
  29201. default: true
  29202. },
  29203. ]
  29204. ))
  29205. characterMakers.push(() => makeCharacter(
  29206. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29207. {
  29208. front: {
  29209. height: math.unit(1 + 3 / 12, "feet"),
  29210. weight: math.unit(80, "lb"),
  29211. name: "Front",
  29212. image: {
  29213. source: "./media/characters/zander-rose/front.svg",
  29214. extra: 916 / 797,
  29215. bottom: 17 / 933
  29216. }
  29217. },
  29218. back: {
  29219. height: math.unit(1 + 3 / 12, "feet"),
  29220. weight: math.unit(80, "lb"),
  29221. name: "Back",
  29222. image: {
  29223. source: "./media/characters/zander-rose/back.svg",
  29224. extra: 903 / 779,
  29225. bottom: 31 / 934
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Normal",
  29232. height: math.unit(1 + 3 / 12, "feet"),
  29233. default: true
  29234. },
  29235. ]
  29236. ))
  29237. characterMakers.push(() => makeCharacter(
  29238. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29239. {
  29240. anthro: {
  29241. height: math.unit(6, "feet"),
  29242. weight: math.unit(150, "lb"),
  29243. name: "Anthro",
  29244. image: {
  29245. source: "./media/characters/razz/anthro.svg",
  29246. extra: 1437 / 1343,
  29247. bottom: 48 / 1485
  29248. }
  29249. },
  29250. feral: {
  29251. height: math.unit(6, "feet"),
  29252. weight: math.unit(150, "lb"),
  29253. name: "Feral",
  29254. image: {
  29255. source: "./media/characters/razz/feral.svg",
  29256. extra: 2569 / 1385,
  29257. bottom: 95 / 2664
  29258. }
  29259. },
  29260. },
  29261. [
  29262. {
  29263. name: "Normal",
  29264. height: math.unit(6, "feet"),
  29265. default: true
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(9 + 4 / 12, "feet"),
  29274. weight: math.unit(500, "lb"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/morrigan/front.svg",
  29278. extra: 2707 / 2579,
  29279. bottom: 156 / 2863
  29280. }
  29281. },
  29282. },
  29283. [
  29284. {
  29285. name: "Normal",
  29286. height: math.unit(9 + 4 / 12, "feet"),
  29287. default: true
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(5, "stories"),
  29296. weight: math.unit(4000, "lb"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/jenene/front.svg",
  29300. extra: 1780 / 1710,
  29301. bottom: 57 / 1837
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(5, "stories"),
  29309. default: true
  29310. },
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29315. {
  29316. taurSfw: {
  29317. height: math.unit(10, "meters"),
  29318. weight: math.unit(17500, "kg"),
  29319. name: "Taur",
  29320. image: {
  29321. source: "./media/characters/faey/taur-sfw.svg",
  29322. extra: 1200 / 968,
  29323. bottom: 41 / 1241
  29324. }
  29325. },
  29326. chestmaw: {
  29327. height: math.unit(2.01, "meters"),
  29328. name: "Chestmaw",
  29329. image: {
  29330. source: "./media/characters/faey/chestmaw.svg"
  29331. }
  29332. },
  29333. foot: {
  29334. height: math.unit(2.43, "meters"),
  29335. name: "Foot",
  29336. image: {
  29337. source: "./media/characters/faey/foot.svg"
  29338. }
  29339. },
  29340. jaws: {
  29341. height: math.unit(1.66, "meters"),
  29342. name: "Jaws",
  29343. image: {
  29344. source: "./media/characters/faey/jaws.svg"
  29345. }
  29346. },
  29347. tongues: {
  29348. height: math.unit(2.01, "meters"),
  29349. name: "Tongues",
  29350. image: {
  29351. source: "./media/characters/faey/tongues.svg"
  29352. }
  29353. },
  29354. },
  29355. [
  29356. {
  29357. name: "Small",
  29358. height: math.unit(10, "meters"),
  29359. default: true
  29360. },
  29361. {
  29362. name: "Big",
  29363. height: math.unit(500000, "km")
  29364. },
  29365. ]
  29366. ))
  29367. characterMakers.push(() => makeCharacter(
  29368. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29369. {
  29370. front: {
  29371. height: math.unit(7, "feet"),
  29372. weight: math.unit(275, "lb"),
  29373. name: "Front",
  29374. image: {
  29375. source: "./media/characters/roku/front.svg",
  29376. extra: 903 / 878,
  29377. bottom: 37 / 940
  29378. }
  29379. },
  29380. },
  29381. [
  29382. {
  29383. name: "Normal",
  29384. height: math.unit(7, "feet"),
  29385. default: true
  29386. },
  29387. {
  29388. name: "Macro",
  29389. height: math.unit(500, "feet")
  29390. },
  29391. {
  29392. name: "Megamacro",
  29393. height: math.unit(200, "miles")
  29394. },
  29395. ]
  29396. ))
  29397. characterMakers.push(() => makeCharacter(
  29398. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29399. {
  29400. front: {
  29401. height: math.unit(6 + 2 / 12, "feet"),
  29402. weight: math.unit(150, "lb"),
  29403. name: "Front",
  29404. image: {
  29405. source: "./media/characters/lira/front.svg",
  29406. extra: 1727 / 1605,
  29407. bottom: 26 / 1753
  29408. }
  29409. },
  29410. back: {
  29411. height: math.unit(6 + 2 / 12, "feet"),
  29412. weight: math.unit(150, "lb"),
  29413. name: "Back",
  29414. image: {
  29415. source: "./media/characters/lira/back.svg",
  29416. extra: 1713/1621,
  29417. bottom: 20/1733
  29418. }
  29419. },
  29420. hand: {
  29421. height: math.unit(0.75, "feet"),
  29422. name: "Hand",
  29423. image: {
  29424. source: "./media/characters/lira/hand.svg"
  29425. }
  29426. },
  29427. maw: {
  29428. height: math.unit(0.65, "feet"),
  29429. name: "Maw",
  29430. image: {
  29431. source: "./media/characters/lira/maw.svg"
  29432. }
  29433. },
  29434. pawDigi: {
  29435. height: math.unit(1.6, "feet"),
  29436. name: "Paw Digi",
  29437. image: {
  29438. source: "./media/characters/lira/paw-digi.svg"
  29439. }
  29440. },
  29441. pawPlanti: {
  29442. height: math.unit(1.4, "feet"),
  29443. name: "Paw Planti",
  29444. image: {
  29445. source: "./media/characters/lira/paw-planti.svg"
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Normal",
  29452. height: math.unit(6 + 2 / 12, "feet"),
  29453. default: true
  29454. },
  29455. {
  29456. name: "Macro",
  29457. height: math.unit(100, "feet")
  29458. },
  29459. {
  29460. name: "Macro²",
  29461. height: math.unit(1600, "feet")
  29462. },
  29463. {
  29464. name: "Planetary",
  29465. height: math.unit(20, "earths")
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(6, "feet"),
  29474. weight: math.unit(150, "lb"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/hadjet/front.svg",
  29478. extra: 1480 / 1346,
  29479. bottom: 26 / 1506
  29480. }
  29481. },
  29482. frontNsfw: {
  29483. height: math.unit(6, "feet"),
  29484. weight: math.unit(150, "lb"),
  29485. name: "Front (NSFW)",
  29486. image: {
  29487. source: "./media/characters/hadjet/front-nsfw.svg",
  29488. extra: 1440 / 1358,
  29489. bottom: 52 / 1492
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Macro",
  29496. height: math.unit(10, "stories"),
  29497. default: true
  29498. },
  29499. {
  29500. name: "Megamacro",
  29501. height: math.unit(1.5, "miles")
  29502. },
  29503. {
  29504. name: "Megamacro+",
  29505. height: math.unit(5, "miles")
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29511. {
  29512. side: {
  29513. height: math.unit(106, "feet"),
  29514. weight: math.unit(500, "tonnes"),
  29515. name: "Side",
  29516. image: {
  29517. source: "./media/characters/kodran/side.svg",
  29518. extra: 553 / 480,
  29519. bottom: 33 / 586
  29520. }
  29521. },
  29522. front: {
  29523. height: math.unit(132, "feet"),
  29524. weight: math.unit(500, "tonnes"),
  29525. name: "Front",
  29526. image: {
  29527. source: "./media/characters/kodran/front.svg",
  29528. extra: 667 / 643,
  29529. bottom: 42 / 709
  29530. }
  29531. },
  29532. flying: {
  29533. height: math.unit(350, "feet"),
  29534. weight: math.unit(500, "tonnes"),
  29535. name: "Flying",
  29536. image: {
  29537. source: "./media/characters/kodran/flying.svg"
  29538. }
  29539. },
  29540. foot: {
  29541. height: math.unit(33, "feet"),
  29542. name: "Foot",
  29543. image: {
  29544. source: "./media/characters/kodran/foot.svg"
  29545. }
  29546. },
  29547. footFront: {
  29548. height: math.unit(19, "feet"),
  29549. name: "Foot (Front)",
  29550. image: {
  29551. source: "./media/characters/kodran/foot-front.svg",
  29552. extra: 261 / 261,
  29553. bottom: 91 / 352
  29554. }
  29555. },
  29556. headFront: {
  29557. height: math.unit(53, "feet"),
  29558. name: "Head (Front)",
  29559. image: {
  29560. source: "./media/characters/kodran/head-front.svg"
  29561. }
  29562. },
  29563. headSide: {
  29564. height: math.unit(65, "feet"),
  29565. name: "Head (Side)",
  29566. image: {
  29567. source: "./media/characters/kodran/head-side.svg"
  29568. }
  29569. },
  29570. throat: {
  29571. height: math.unit(79, "feet"),
  29572. name: "Throat",
  29573. image: {
  29574. source: "./media/characters/kodran/throat.svg"
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Large",
  29581. height: math.unit(106, "feet"),
  29582. default: true
  29583. },
  29584. ]
  29585. ))
  29586. characterMakers.push(() => makeCharacter(
  29587. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29588. {
  29589. side: {
  29590. height: math.unit(11, "feet"),
  29591. weight: math.unit(150, "lb"),
  29592. name: "Side",
  29593. image: {
  29594. source: "./media/characters/pyxaron/side.svg",
  29595. extra: 305 / 195,
  29596. bottom: 17 / 322
  29597. }
  29598. },
  29599. },
  29600. [
  29601. {
  29602. name: "Normal",
  29603. height: math.unit(11, "feet"),
  29604. default: true
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29610. {
  29611. front: {
  29612. height: math.unit(6, "feet"),
  29613. weight: math.unit(150, "lb"),
  29614. name: "Front",
  29615. image: {
  29616. source: "./media/characters/meep/front.svg",
  29617. extra: 88 / 80,
  29618. bottom: 6 / 94
  29619. }
  29620. },
  29621. },
  29622. [
  29623. {
  29624. name: "Fun Sized",
  29625. height: math.unit(2, "inches"),
  29626. default: true
  29627. },
  29628. {
  29629. name: "Friend Sized",
  29630. height: math.unit(8, "inches")
  29631. },
  29632. ]
  29633. ))
  29634. characterMakers.push(() => makeCharacter(
  29635. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29636. {
  29637. front: {
  29638. height: math.unit(15, "feet"),
  29639. weight: math.unit(2500, "lb"),
  29640. name: "Front",
  29641. image: {
  29642. source: "./media/characters/holly-rabbit/front.svg",
  29643. extra: 1433 / 1233,
  29644. bottom: 125 / 1558
  29645. }
  29646. },
  29647. dick: {
  29648. height: math.unit(4.6, "feet"),
  29649. name: "Dick",
  29650. image: {
  29651. source: "./media/characters/holly-rabbit/dick.svg"
  29652. }
  29653. },
  29654. },
  29655. [
  29656. {
  29657. name: "Normal",
  29658. height: math.unit(15, "feet"),
  29659. default: true
  29660. },
  29661. {
  29662. name: "Macro",
  29663. height: math.unit(250, "feet")
  29664. },
  29665. {
  29666. name: "Macro+",
  29667. height: math.unit(2500, "feet")
  29668. },
  29669. ]
  29670. ))
  29671. characterMakers.push(() => makeCharacter(
  29672. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29673. {
  29674. front: {
  29675. height: math.unit(3.02, "meters"),
  29676. weight: math.unit(500, "kg"),
  29677. name: "Front",
  29678. image: {
  29679. source: "./media/characters/drena/front.svg",
  29680. extra: 282 / 243,
  29681. bottom: 8 / 290
  29682. }
  29683. },
  29684. side: {
  29685. height: math.unit(3.02, "meters"),
  29686. weight: math.unit(500, "kg"),
  29687. name: "Side",
  29688. image: {
  29689. source: "./media/characters/drena/side.svg",
  29690. extra: 280 / 245,
  29691. bottom: 10 / 290
  29692. }
  29693. },
  29694. back: {
  29695. height: math.unit(3.02, "meters"),
  29696. weight: math.unit(500, "kg"),
  29697. name: "Back",
  29698. image: {
  29699. source: "./media/characters/drena/back.svg",
  29700. extra: 278 / 243,
  29701. bottom: 2 / 280
  29702. }
  29703. },
  29704. foot: {
  29705. height: math.unit(0.75, "meters"),
  29706. name: "Foot",
  29707. image: {
  29708. source: "./media/characters/drena/foot.svg"
  29709. }
  29710. },
  29711. maw: {
  29712. height: math.unit(0.82, "meters"),
  29713. name: "Maw",
  29714. image: {
  29715. source: "./media/characters/drena/maw.svg"
  29716. }
  29717. },
  29718. eating: {
  29719. height: math.unit(0.75, "meters"),
  29720. name: "Eating",
  29721. image: {
  29722. source: "./media/characters/drena/eating.svg"
  29723. }
  29724. },
  29725. rump: {
  29726. height: math.unit(0.93, "meters"),
  29727. name: "Rump",
  29728. image: {
  29729. source: "./media/characters/drena/rump.svg"
  29730. }
  29731. },
  29732. },
  29733. [
  29734. {
  29735. name: "Normal",
  29736. height: math.unit(3.02, "meters"),
  29737. default: true
  29738. },
  29739. ]
  29740. ))
  29741. characterMakers.push(() => makeCharacter(
  29742. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29743. {
  29744. front: {
  29745. height: math.unit(6 + 4 / 12, "feet"),
  29746. weight: math.unit(250, "lb"),
  29747. name: "Front",
  29748. image: {
  29749. source: "./media/characters/remmyzilla/front.svg",
  29750. extra: 4033 / 3588,
  29751. bottom: 123 / 4156
  29752. }
  29753. },
  29754. back: {
  29755. height: math.unit(6 + 4 / 12, "feet"),
  29756. weight: math.unit(250, "lb"),
  29757. name: "Back",
  29758. image: {
  29759. source: "./media/characters/remmyzilla/back.svg",
  29760. extra: 2687 / 2555,
  29761. bottom: 48 / 2735
  29762. }
  29763. },
  29764. paw: {
  29765. height: math.unit(1.73, "feet"),
  29766. name: "Paw",
  29767. image: {
  29768. source: "./media/characters/remmyzilla/paw.svg"
  29769. },
  29770. extraAttributes: {
  29771. "toeSize": {
  29772. name: "Toe Size",
  29773. power: 2,
  29774. type: "area",
  29775. base: math.unit(0.0035, "m^2")
  29776. },
  29777. "padSize": {
  29778. name: "Pad Size",
  29779. power: 2,
  29780. type: "area",
  29781. base: math.unit(0.015, "m^2")
  29782. },
  29783. "pawsize": {
  29784. name: "Paw Size",
  29785. power: 2,
  29786. type: "area",
  29787. base: math.unit(0.072, "m^2")
  29788. },
  29789. }
  29790. },
  29791. maw: {
  29792. height: math.unit(1.73, "feet"),
  29793. name: "Maw",
  29794. image: {
  29795. source: "./media/characters/remmyzilla/maw.svg"
  29796. }
  29797. },
  29798. },
  29799. [
  29800. {
  29801. name: "Normal",
  29802. height: math.unit(6 + 4 / 12, "feet")
  29803. },
  29804. {
  29805. name: "Minimacro",
  29806. height: math.unit(12 + 8 / 12, "feet")
  29807. },
  29808. {
  29809. name: "Normal",
  29810. height: math.unit(640, "feet"),
  29811. default: true
  29812. },
  29813. {
  29814. name: "Megamacro",
  29815. height: math.unit(6400, "feet")
  29816. },
  29817. {
  29818. name: "Gigamacro",
  29819. height: math.unit(64000, "miles")
  29820. },
  29821. ]
  29822. ))
  29823. characterMakers.push(() => makeCharacter(
  29824. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29825. {
  29826. front: {
  29827. height: math.unit(2.5, "meters"),
  29828. weight: math.unit(300, "lb"),
  29829. name: "Front",
  29830. image: {
  29831. source: "./media/characters/lawrence/front.svg",
  29832. extra: 357 / 335,
  29833. bottom: 30 / 387
  29834. }
  29835. },
  29836. back: {
  29837. height: math.unit(2.5, "meters"),
  29838. weight: math.unit(300, "lb"),
  29839. name: "Back",
  29840. image: {
  29841. source: "./media/characters/lawrence/back.svg",
  29842. extra: 357 / 338,
  29843. bottom: 16 / 373
  29844. }
  29845. },
  29846. head: {
  29847. height: math.unit(0.9, "meter"),
  29848. name: "Head",
  29849. image: {
  29850. source: "./media/characters/lawrence/head.svg"
  29851. }
  29852. },
  29853. maw: {
  29854. height: math.unit(0.7, "meter"),
  29855. name: "Maw",
  29856. image: {
  29857. source: "./media/characters/lawrence/maw.svg"
  29858. }
  29859. },
  29860. footBottom: {
  29861. height: math.unit(0.5, "meter"),
  29862. name: "Foot (Bottom)",
  29863. image: {
  29864. source: "./media/characters/lawrence/foot-bottom.svg"
  29865. }
  29866. },
  29867. footTop: {
  29868. height: math.unit(0.5, "meter"),
  29869. name: "Foot (Top)",
  29870. image: {
  29871. source: "./media/characters/lawrence/foot-top.svg"
  29872. }
  29873. },
  29874. },
  29875. [
  29876. {
  29877. name: "Normal",
  29878. height: math.unit(2.5, "meters"),
  29879. default: true
  29880. },
  29881. {
  29882. name: "Macro",
  29883. height: math.unit(95, "meters")
  29884. },
  29885. {
  29886. name: "Megamacro",
  29887. height: math.unit(150, "km")
  29888. },
  29889. ]
  29890. ))
  29891. characterMakers.push(() => makeCharacter(
  29892. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29893. {
  29894. front: {
  29895. height: math.unit(4.2, "meters"),
  29896. name: "Front",
  29897. image: {
  29898. source: "./media/characters/sydney/front.svg",
  29899. extra: 1323 / 1277,
  29900. bottom: 111 / 1434
  29901. }
  29902. },
  29903. },
  29904. [
  29905. {
  29906. name: "Normal",
  29907. height: math.unit(4.2, "meters"),
  29908. default: true
  29909. },
  29910. ]
  29911. ))
  29912. characterMakers.push(() => makeCharacter(
  29913. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29914. {
  29915. back: {
  29916. height: math.unit(201, "feet"),
  29917. name: "Back",
  29918. image: {
  29919. source: "./media/characters/jessica/back.svg",
  29920. extra: 273 / 259,
  29921. bottom: 7 / 280
  29922. }
  29923. },
  29924. },
  29925. [
  29926. {
  29927. name: "Normal",
  29928. height: math.unit(201, "feet"),
  29929. default: true
  29930. },
  29931. {
  29932. name: "Megamacro",
  29933. height: math.unit(8, "miles")
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29939. {
  29940. side: {
  29941. height: math.unit(5.6, "m"),
  29942. weight: math.unit(8000, "kg"),
  29943. name: "Side",
  29944. image: {
  29945. source: "./media/characters/victoria/side.svg",
  29946. extra: 1542/1229,
  29947. bottom: 124/1666
  29948. }
  29949. },
  29950. maw: {
  29951. height: math.unit(7.14, "feet"),
  29952. name: "Maw",
  29953. image: {
  29954. source: "./media/characters/victoria/maw.svg"
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(5.6, "m"),
  29962. default: true
  29963. },
  29964. ]
  29965. ))
  29966. characterMakers.push(() => makeCharacter(
  29967. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29968. {
  29969. front: {
  29970. height: math.unit(5 + 6 / 12, "feet"),
  29971. name: "Front",
  29972. image: {
  29973. source: "./media/characters/cat/front.svg",
  29974. extra: 1449/1295,
  29975. bottom: 34/1483
  29976. },
  29977. form: "cat",
  29978. default: true
  29979. },
  29980. back: {
  29981. height: math.unit(5 + 6 / 12, "feet"),
  29982. name: "Back",
  29983. image: {
  29984. source: "./media/characters/cat/back.svg",
  29985. extra: 1466/1301,
  29986. bottom: 19/1485
  29987. },
  29988. form: "cat"
  29989. },
  29990. taur: {
  29991. height: math.unit(7, "feet"),
  29992. name: "Taur",
  29993. image: {
  29994. source: "./media/characters/cat/taur.svg",
  29995. extra: 1389/1233,
  29996. bottom: 83/1472
  29997. },
  29998. form: "taur",
  29999. default: true
  30000. },
  30001. lucarioFront: {
  30002. height: math.unit(4, "feet"),
  30003. name: "Lucario (Front)",
  30004. image: {
  30005. source: "./media/characters/cat/lucario-front.svg",
  30006. extra: 1149/1019,
  30007. bottom: 84/1233
  30008. },
  30009. form: "lucario",
  30010. default: true
  30011. },
  30012. lucarioBack: {
  30013. height: math.unit(4, "feet"),
  30014. name: "Lucario (Back)",
  30015. image: {
  30016. source: "./media/characters/cat/lucario-back.svg",
  30017. extra: 1190/1059,
  30018. bottom: 33/1223
  30019. },
  30020. form: "lucario"
  30021. },
  30022. megaLucario: {
  30023. height: math.unit(4, "feet"),
  30024. name: "Mega Lucario",
  30025. image: {
  30026. source: "./media/characters/cat/mega-lucario.svg",
  30027. extra: 1515 / 1319,
  30028. bottom: 63 / 1578
  30029. },
  30030. form: "lucario"
  30031. },
  30032. nickit: {
  30033. height: math.unit(2, "feet"),
  30034. name: "Nickit",
  30035. image: {
  30036. source: "./media/characters/cat/nickit.svg",
  30037. extra: 1980 / 1585,
  30038. bottom: 102 / 2082
  30039. },
  30040. form: "nickit",
  30041. default: true
  30042. },
  30043. lopunnyFront: {
  30044. height: math.unit(5, "feet"),
  30045. name: "Lopunny (Front)",
  30046. image: {
  30047. source: "./media/characters/cat/lopunny-front.svg",
  30048. extra: 1782 / 1469,
  30049. bottom: 38 / 1820
  30050. },
  30051. form: "lopunny",
  30052. default: true
  30053. },
  30054. lopunnyBack: {
  30055. height: math.unit(5, "feet"),
  30056. name: "Lopunny (Back)",
  30057. image: {
  30058. source: "./media/characters/cat/lopunny-back.svg",
  30059. extra: 1660 / 1490,
  30060. bottom: 25 / 1685
  30061. },
  30062. form: "lopunny"
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Really small",
  30068. height: math.unit(1, "nm")
  30069. },
  30070. {
  30071. name: "Micro",
  30072. height: math.unit(5, "inches")
  30073. },
  30074. {
  30075. name: "Normal",
  30076. height: math.unit(5 + 6 / 12, "feet"),
  30077. default: true
  30078. },
  30079. {
  30080. name: "Macro",
  30081. height: math.unit(50, "feet")
  30082. },
  30083. {
  30084. name: "Macro+",
  30085. height: math.unit(150, "feet")
  30086. },
  30087. {
  30088. name: "Megamacro",
  30089. height: math.unit(100, "miles")
  30090. },
  30091. ]
  30092. ))
  30093. characterMakers.push(() => makeCharacter(
  30094. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30095. {
  30096. front: {
  30097. height: math.unit(63.4, "meters"),
  30098. weight: math.unit(3.28349e+6, "kilograms"),
  30099. name: "Front",
  30100. image: {
  30101. source: "./media/characters/kirina-violet/front.svg",
  30102. extra: 2812 / 2725,
  30103. bottom: 0 / 2812
  30104. }
  30105. },
  30106. back: {
  30107. height: math.unit(63.4, "meters"),
  30108. weight: math.unit(3.28349e+6, "kilograms"),
  30109. name: "Back",
  30110. image: {
  30111. source: "./media/characters/kirina-violet/back.svg",
  30112. extra: 2812 / 2725,
  30113. bottom: 0 / 2812
  30114. }
  30115. },
  30116. mouth: {
  30117. height: math.unit(4.35, "meters"),
  30118. name: "Mouth",
  30119. image: {
  30120. source: "./media/characters/kirina-violet/mouth.svg"
  30121. }
  30122. },
  30123. paw: {
  30124. height: math.unit(5.6, "meters"),
  30125. name: "Paw",
  30126. image: {
  30127. source: "./media/characters/kirina-violet/paw.svg"
  30128. }
  30129. },
  30130. tail: {
  30131. height: math.unit(18, "meters"),
  30132. name: "Tail",
  30133. image: {
  30134. source: "./media/characters/kirina-violet/tail.svg"
  30135. }
  30136. },
  30137. },
  30138. [
  30139. {
  30140. name: "Macro",
  30141. height: math.unit(63.4, "meters"),
  30142. default: true
  30143. },
  30144. ]
  30145. ))
  30146. characterMakers.push(() => makeCharacter(
  30147. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30148. {
  30149. front: {
  30150. height: math.unit(75, "feet"),
  30151. name: "Front",
  30152. image: {
  30153. source: "./media/characters/cat-gigachu/front.svg",
  30154. extra: 1239/1027,
  30155. bottom: 32/1271
  30156. }
  30157. },
  30158. back: {
  30159. height: math.unit(75, "feet"),
  30160. name: "Back",
  30161. image: {
  30162. source: "./media/characters/cat-gigachu/back.svg",
  30163. extra: 1229/1030,
  30164. bottom: 9/1238
  30165. }
  30166. },
  30167. },
  30168. [
  30169. {
  30170. name: "Dynamax",
  30171. height: math.unit(75, "feet"),
  30172. default: true
  30173. },
  30174. ]
  30175. ))
  30176. characterMakers.push(() => makeCharacter(
  30177. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30178. {
  30179. front: {
  30180. height: math.unit(6, "feet"),
  30181. weight: math.unit(150, "lb"),
  30182. name: "Front",
  30183. image: {
  30184. source: "./media/characters/sfaiyan/front.svg",
  30185. extra: 999 / 978,
  30186. bottom: 5 / 1004
  30187. }
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Normal",
  30193. height: math.unit(1.82, "meters")
  30194. },
  30195. {
  30196. name: "Giant",
  30197. height: math.unit(2.27, "km"),
  30198. default: true
  30199. },
  30200. ]
  30201. ))
  30202. characterMakers.push(() => makeCharacter(
  30203. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30204. {
  30205. front: {
  30206. height: math.unit(179, "cm"),
  30207. weight: math.unit(100, "kg"),
  30208. name: "Front",
  30209. image: {
  30210. source: "./media/characters/raunehkeli/front.svg",
  30211. extra: 1934 / 1926,
  30212. bottom: 0 / 1934
  30213. }
  30214. },
  30215. },
  30216. [
  30217. {
  30218. name: "Normal",
  30219. height: math.unit(179, "cm")
  30220. },
  30221. {
  30222. name: "Maximum",
  30223. height: math.unit(575, "meters"),
  30224. default: true
  30225. },
  30226. ]
  30227. ))
  30228. characterMakers.push(() => makeCharacter(
  30229. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30230. {
  30231. front: {
  30232. height: math.unit(6, "feet"),
  30233. weight: math.unit(150, "lb"),
  30234. name: "Front",
  30235. image: {
  30236. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30237. extra: 2625 / 2518,
  30238. bottom: 60 / 2685
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Normal",
  30245. height: math.unit(6 + 2 / 12, "feet")
  30246. },
  30247. {
  30248. name: "Macro",
  30249. height: math.unit(1180, "feet"),
  30250. default: true
  30251. },
  30252. ]
  30253. ))
  30254. characterMakers.push(() => makeCharacter(
  30255. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30256. {
  30257. front: {
  30258. height: math.unit(5 + 6 / 12, "feet"),
  30259. weight: math.unit(108, "lb"),
  30260. name: "Front",
  30261. image: {
  30262. source: "./media/characters/lilith-zott/front.svg",
  30263. extra: 2510 / 2238,
  30264. bottom: 100 / 2610
  30265. }
  30266. },
  30267. frontDressed: {
  30268. height: math.unit(5 + 6 / 12, "feet"),
  30269. weight: math.unit(108, "lb"),
  30270. name: "Front (Dressed)",
  30271. image: {
  30272. source: "./media/characters/lilith-zott/front-dressed.svg",
  30273. extra: 2510 / 2238,
  30274. bottom: 100 / 2610
  30275. }
  30276. },
  30277. },
  30278. [
  30279. {
  30280. name: "Normal",
  30281. height: math.unit(5 + 6 / 12, "feet")
  30282. },
  30283. {
  30284. name: "Macro",
  30285. height: math.unit(1030, "feet"),
  30286. default: true
  30287. },
  30288. ]
  30289. ))
  30290. characterMakers.push(() => makeCharacter(
  30291. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30292. {
  30293. front: {
  30294. height: math.unit(6, "feet"),
  30295. weight: math.unit(150, "lb"),
  30296. name: "Front",
  30297. image: {
  30298. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30299. extra: 2567 / 2435,
  30300. bottom: 39 / 2606
  30301. }
  30302. },
  30303. frontSuper: {
  30304. height: math.unit(6, "feet"),
  30305. name: "Front (Super)",
  30306. image: {
  30307. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30308. extra: 2567 / 2435,
  30309. bottom: 39 / 2606
  30310. }
  30311. },
  30312. },
  30313. [
  30314. {
  30315. name: "Normal",
  30316. height: math.unit(5 + 10 / 12, "feet")
  30317. },
  30318. {
  30319. name: "Macro",
  30320. height: math.unit(1100, "feet"),
  30321. default: true
  30322. },
  30323. ]
  30324. ))
  30325. characterMakers.push(() => makeCharacter(
  30326. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30327. {
  30328. front: {
  30329. height: math.unit(100, "miles"),
  30330. name: "Front",
  30331. image: {
  30332. source: "./media/characters/sona/front.svg",
  30333. extra: 2433 / 2201,
  30334. bottom: 53 / 2486
  30335. }
  30336. },
  30337. foot: {
  30338. height: math.unit(16.1, "miles"),
  30339. name: "Foot",
  30340. image: {
  30341. source: "./media/characters/sona/foot.svg"
  30342. }
  30343. },
  30344. },
  30345. [
  30346. {
  30347. name: "Macro",
  30348. height: math.unit(100, "miles"),
  30349. default: true
  30350. },
  30351. ]
  30352. ))
  30353. characterMakers.push(() => makeCharacter(
  30354. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30355. {
  30356. front: {
  30357. height: math.unit(6, "feet"),
  30358. weight: math.unit(150, "lb"),
  30359. name: "Front",
  30360. image: {
  30361. source: "./media/characters/bailey/front.svg",
  30362. extra: 1778 / 1724,
  30363. bottom: 30 / 1808
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Micro",
  30370. height: math.unit(4, "inches")
  30371. },
  30372. {
  30373. name: "Normal",
  30374. height: math.unit(5 + 5 / 12, "feet"),
  30375. default: true
  30376. },
  30377. {
  30378. name: "Macro",
  30379. height: math.unit(250, "feet")
  30380. },
  30381. {
  30382. name: "Megamacro",
  30383. height: math.unit(100, "miles")
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(5 + 2 / 12, "feet"),
  30392. weight: math.unit(120, "lb"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/snaps/front.svg",
  30396. extra: 2370 / 2177,
  30397. bottom: 48 / 2418
  30398. }
  30399. },
  30400. back: {
  30401. height: math.unit(5 + 2 / 12, "feet"),
  30402. weight: math.unit(120, "lb"),
  30403. name: "Back",
  30404. image: {
  30405. source: "./media/characters/snaps/back.svg",
  30406. extra: 2408 / 2258,
  30407. bottom: 15 / 2423
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Micro",
  30414. height: math.unit(9, "inches")
  30415. },
  30416. {
  30417. name: "Normal",
  30418. height: math.unit(5 + 2 / 12, "feet"),
  30419. default: true
  30420. },
  30421. {
  30422. name: "Mini Macro",
  30423. height: math.unit(10, "feet")
  30424. },
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30429. {
  30430. front: {
  30431. height: math.unit(1.8, "meters"),
  30432. weight: math.unit(85, "kg"),
  30433. name: "Front",
  30434. image: {
  30435. source: "./media/characters/azteck/front.svg",
  30436. extra: 2815 / 2625,
  30437. bottom: 89 / 2904
  30438. }
  30439. },
  30440. back: {
  30441. height: math.unit(1.8, "meters"),
  30442. weight: math.unit(85, "kg"),
  30443. name: "Back",
  30444. image: {
  30445. source: "./media/characters/azteck/back.svg",
  30446. extra: 2856 / 2648,
  30447. bottom: 85 / 2941
  30448. }
  30449. },
  30450. frontDressed: {
  30451. height: math.unit(1.8, "meters"),
  30452. weight: math.unit(85, "kg"),
  30453. name: "Front (Dressed)",
  30454. image: {
  30455. source: "./media/characters/azteck/front-dressed.svg",
  30456. extra: 2147 / 2003,
  30457. bottom: 68 / 2215
  30458. }
  30459. },
  30460. head: {
  30461. height: math.unit(0.47, "meters"),
  30462. weight: math.unit(85, "kg"),
  30463. name: "Head",
  30464. image: {
  30465. source: "./media/characters/azteck/head.svg"
  30466. }
  30467. },
  30468. },
  30469. [
  30470. {
  30471. name: "Bite sized",
  30472. height: math.unit(16, "cm")
  30473. },
  30474. {
  30475. name: "Normal",
  30476. height: math.unit(1.8, "meters"),
  30477. default: true
  30478. },
  30479. ]
  30480. ))
  30481. characterMakers.push(() => makeCharacter(
  30482. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30483. {
  30484. front: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(150, "lb"),
  30487. name: "Front",
  30488. image: {
  30489. source: "./media/characters/pidge/front.svg",
  30490. extra: 1936/1820,
  30491. bottom: 0/1936
  30492. }
  30493. },
  30494. back: {
  30495. height: math.unit(6, "feet"),
  30496. weight: math.unit(150, "lb"),
  30497. name: "Back",
  30498. image: {
  30499. source: "./media/characters/pidge/back.svg",
  30500. extra: 1938/1843,
  30501. bottom: 0/1938
  30502. }
  30503. },
  30504. casual: {
  30505. height: math.unit(6, "feet"),
  30506. weight: math.unit(150, "lb"),
  30507. name: "Casual",
  30508. image: {
  30509. source: "./media/characters/pidge/casual.svg",
  30510. extra: 1936/1820,
  30511. bottom: 0/1936
  30512. }
  30513. },
  30514. tech: {
  30515. height: math.unit(6, "feet"),
  30516. weight: math.unit(150, "lb"),
  30517. name: "Tech",
  30518. image: {
  30519. source: "./media/characters/pidge/tech.svg",
  30520. extra: 1802/1682,
  30521. bottom: 0/1802
  30522. }
  30523. },
  30524. head: {
  30525. height: math.unit(1.61, "feet"),
  30526. name: "Head",
  30527. image: {
  30528. source: "./media/characters/pidge/head.svg"
  30529. }
  30530. },
  30531. collar: {
  30532. height: math.unit(0.82, "feet"),
  30533. name: "Collar",
  30534. image: {
  30535. source: "./media/characters/pidge/collar.svg"
  30536. }
  30537. },
  30538. },
  30539. [
  30540. {
  30541. name: "Macro",
  30542. height: math.unit(2, "mile"),
  30543. default: true
  30544. },
  30545. {
  30546. name: "PUPPY",
  30547. height: math.unit(20, "miles")
  30548. },
  30549. ]
  30550. ))
  30551. characterMakers.push(() => makeCharacter(
  30552. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30553. {
  30554. front: {
  30555. height: math.unit(6, "feet"),
  30556. weight: math.unit(150, "lb"),
  30557. name: "Front",
  30558. image: {
  30559. source: "./media/characters/en/front.svg",
  30560. extra: 1697 / 1563,
  30561. bottom: 103 / 1800
  30562. }
  30563. },
  30564. back: {
  30565. height: math.unit(6, "feet"),
  30566. weight: math.unit(150, "lb"),
  30567. name: "Back",
  30568. image: {
  30569. source: "./media/characters/en/back.svg",
  30570. extra: 1700 / 1570,
  30571. bottom: 51 / 1751
  30572. }
  30573. },
  30574. frontDressed: {
  30575. height: math.unit(6, "feet"),
  30576. weight: math.unit(150, "lb"),
  30577. name: "Front (Dressed)",
  30578. image: {
  30579. source: "./media/characters/en/front-dressed.svg",
  30580. extra: 1697 / 1563,
  30581. bottom: 103 / 1800
  30582. }
  30583. },
  30584. backDressed: {
  30585. height: math.unit(6, "feet"),
  30586. weight: math.unit(150, "lb"),
  30587. name: "Back (Dressed)",
  30588. image: {
  30589. source: "./media/characters/en/back-dressed.svg",
  30590. extra: 1700 / 1570,
  30591. bottom: 51 / 1751
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Macro",
  30598. height: math.unit(210, "feet"),
  30599. default: true
  30600. },
  30601. ]
  30602. ))
  30603. characterMakers.push(() => makeCharacter(
  30604. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30605. {
  30606. front: {
  30607. height: math.unit(6, "feet"),
  30608. weight: math.unit(150, "lb"),
  30609. name: "Front",
  30610. image: {
  30611. source: "./media/characters/haze-orris/front.svg",
  30612. extra: 3975 / 3525,
  30613. bottom: 137 / 4112
  30614. }
  30615. },
  30616. },
  30617. [
  30618. {
  30619. name: "Micro",
  30620. height: math.unit(150, "mm"),
  30621. default: true
  30622. },
  30623. ]
  30624. ))
  30625. characterMakers.push(() => makeCharacter(
  30626. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30627. {
  30628. front: {
  30629. height: math.unit(6, "feet"),
  30630. weight: math.unit(150, "lb"),
  30631. name: "Front",
  30632. image: {
  30633. source: "./media/characters/casselene-yaro/front.svg",
  30634. extra: 4721 / 4541,
  30635. bottom: 82 / 4803
  30636. }
  30637. },
  30638. back: {
  30639. height: math.unit(6, "feet"),
  30640. weight: math.unit(150, "lb"),
  30641. name: "Back",
  30642. image: {
  30643. source: "./media/characters/casselene-yaro/back.svg",
  30644. extra: 4569 / 4377,
  30645. bottom: 69 / 4638
  30646. }
  30647. },
  30648. dressed: {
  30649. height: math.unit(6, "feet"),
  30650. weight: math.unit(150, "lb"),
  30651. name: "Dressed",
  30652. image: {
  30653. source: "./media/characters/casselene-yaro/dressed.svg",
  30654. extra: 4721 / 4541,
  30655. bottom: 82 / 4803
  30656. }
  30657. },
  30658. maw: {
  30659. height: math.unit(1, "feet"),
  30660. name: "Maw",
  30661. image: {
  30662. source: "./media/characters/casselene-yaro/maw.svg"
  30663. }
  30664. },
  30665. },
  30666. [
  30667. {
  30668. name: "Macro",
  30669. height: math.unit(190, "feet"),
  30670. default: true
  30671. },
  30672. ]
  30673. ))
  30674. characterMakers.push(() => makeCharacter(
  30675. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30676. {
  30677. front: {
  30678. height: math.unit(10, "feet"),
  30679. weight: math.unit(15015, "lb"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/platine/front.svg",
  30683. extra: 1428/1353,
  30684. bottom: 31/1459
  30685. }
  30686. },
  30687. },
  30688. [
  30689. {
  30690. name: "Normal",
  30691. height: math.unit(10, "feet"),
  30692. default: true
  30693. },
  30694. {
  30695. name: "Macro",
  30696. height: math.unit(100, "feet")
  30697. },
  30698. {
  30699. name: "Megamacro",
  30700. height: math.unit(1000, "feet")
  30701. },
  30702. ]
  30703. ))
  30704. characterMakers.push(() => makeCharacter(
  30705. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30706. {
  30707. front: {
  30708. height: math.unit(15 + 5 / 12, "feet"),
  30709. weight: math.unit(4600, "lb"),
  30710. name: "Front",
  30711. image: {
  30712. source: "./media/characters/neapolitan-ananassa/front.svg",
  30713. extra: 2903 / 2736,
  30714. bottom: 0 / 2903
  30715. }
  30716. },
  30717. side: {
  30718. height: math.unit(15 + 5 / 12, "feet"),
  30719. weight: math.unit(4600, "lb"),
  30720. name: "Side",
  30721. image: {
  30722. source: "./media/characters/neapolitan-ananassa/side.svg",
  30723. extra: 2925 / 2719,
  30724. bottom: 0 / 2925
  30725. }
  30726. },
  30727. back: {
  30728. height: math.unit(15 + 5 / 12, "feet"),
  30729. weight: math.unit(4600, "lb"),
  30730. name: "Back",
  30731. image: {
  30732. source: "./media/characters/neapolitan-ananassa/back.svg",
  30733. extra: 2903 / 2736,
  30734. bottom: 0 / 2903
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Normal",
  30741. height: math.unit(15 + 5 / 12, "feet"),
  30742. default: true
  30743. },
  30744. {
  30745. name: "Post-Millenium",
  30746. height: math.unit(35 + 5 / 12, "feet")
  30747. },
  30748. {
  30749. name: "Post-Era",
  30750. height: math.unit(450 + 5 / 12, "feet")
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(300, "meters"),
  30759. weight: math.unit(125000, "tonnes"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/pazuzu/front.svg",
  30763. extra: 877 / 794,
  30764. bottom: 47 / 924
  30765. }
  30766. },
  30767. },
  30768. [
  30769. {
  30770. name: "Macro",
  30771. height: math.unit(300, "meters"),
  30772. default: true
  30773. },
  30774. ]
  30775. ))
  30776. characterMakers.push(() => makeCharacter(
  30777. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30778. {
  30779. side: {
  30780. height: math.unit(10 + 7 / 12, "feet"),
  30781. weight: math.unit(2.5, "tons"),
  30782. name: "Side",
  30783. image: {
  30784. source: "./media/characters/aasha/side.svg",
  30785. extra: 1345 / 1245,
  30786. bottom: 111 / 1456
  30787. }
  30788. },
  30789. back: {
  30790. height: math.unit(10 + 7 / 12, "feet"),
  30791. weight: math.unit(2.5, "tons"),
  30792. name: "Back",
  30793. image: {
  30794. source: "./media/characters/aasha/back.svg",
  30795. extra: 1133 / 1057,
  30796. bottom: 257 / 1390
  30797. }
  30798. },
  30799. },
  30800. [
  30801. {
  30802. name: "Normal",
  30803. height: math.unit(10 + 7 / 12, "feet"),
  30804. default: true
  30805. },
  30806. ]
  30807. ))
  30808. characterMakers.push(() => makeCharacter(
  30809. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30810. {
  30811. front: {
  30812. height: math.unit(6 + 3 / 12, "feet"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/nevan/front.svg",
  30816. extra: 704 / 704,
  30817. bottom: 28 / 732
  30818. }
  30819. },
  30820. back: {
  30821. height: math.unit(6 + 3 / 12, "feet"),
  30822. name: "Back",
  30823. image: {
  30824. source: "./media/characters/nevan/back.svg",
  30825. extra: 714 / 714,
  30826. bottom: 21 / 735
  30827. }
  30828. },
  30829. frontFlaccid: {
  30830. height: math.unit(6 + 3 / 12, "feet"),
  30831. name: "Front (Flaccid)",
  30832. image: {
  30833. source: "./media/characters/nevan/front-flaccid.svg",
  30834. extra: 704 / 704,
  30835. bottom: 28 / 732
  30836. }
  30837. },
  30838. frontErect: {
  30839. height: math.unit(6 + 3 / 12, "feet"),
  30840. name: "Front (Erect)",
  30841. image: {
  30842. source: "./media/characters/nevan/front-erect.svg",
  30843. extra: 704 / 704,
  30844. bottom: 28 / 732
  30845. }
  30846. },
  30847. backFlaccid: {
  30848. height: math.unit(6 + 3 / 12, "feet"),
  30849. name: "Back (Flaccid)",
  30850. image: {
  30851. source: "./media/characters/nevan/back-flaccid.svg",
  30852. extra: 714 / 714,
  30853. bottom: 21 / 735
  30854. }
  30855. },
  30856. },
  30857. [
  30858. {
  30859. name: "Normal",
  30860. height: math.unit(6 + 3 / 12, "feet"),
  30861. default: true
  30862. },
  30863. ]
  30864. ))
  30865. characterMakers.push(() => makeCharacter(
  30866. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30867. {
  30868. front: {
  30869. height: math.unit(4, "feet"),
  30870. name: "Front",
  30871. image: {
  30872. source: "./media/characters/arhan/front.svg",
  30873. extra: 3368 / 3133,
  30874. bottom: 0 / 3368
  30875. }
  30876. },
  30877. side: {
  30878. height: math.unit(4, "feet"),
  30879. name: "Side",
  30880. image: {
  30881. source: "./media/characters/arhan/side.svg",
  30882. extra: 3347 / 3105,
  30883. bottom: 0 / 3347
  30884. }
  30885. },
  30886. tongue: {
  30887. height: math.unit(1.42, "feet"),
  30888. name: "Tongue",
  30889. image: {
  30890. source: "./media/characters/arhan/tongue.svg"
  30891. }
  30892. },
  30893. head: {
  30894. height: math.unit(0.85, "feet"),
  30895. name: "Head",
  30896. image: {
  30897. source: "./media/characters/arhan/head.svg"
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(4, "feet"),
  30905. default: true
  30906. },
  30907. ]
  30908. ))
  30909. characterMakers.push(() => makeCharacter(
  30910. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30911. {
  30912. front: {
  30913. height: math.unit(5 + 7.5 / 12, "feet"),
  30914. weight: math.unit(120, "lb"),
  30915. name: "Front",
  30916. image: {
  30917. source: "./media/characters/digi-duncan/front.svg",
  30918. extra: 330 / 326,
  30919. bottom: 16 / 346
  30920. }
  30921. },
  30922. side: {
  30923. height: math.unit(5 + 7.5 / 12, "feet"),
  30924. weight: math.unit(120, "lb"),
  30925. name: "Side",
  30926. image: {
  30927. source: "./media/characters/digi-duncan/side.svg",
  30928. extra: 341 / 337,
  30929. bottom: 1 / 342
  30930. }
  30931. },
  30932. back: {
  30933. height: math.unit(5 + 7.5 / 12, "feet"),
  30934. weight: math.unit(120, "lb"),
  30935. name: "Back",
  30936. image: {
  30937. source: "./media/characters/digi-duncan/back.svg",
  30938. extra: 330 / 326,
  30939. bottom: 12 / 342
  30940. }
  30941. },
  30942. },
  30943. [
  30944. {
  30945. name: "Speck",
  30946. height: math.unit(0.25, "mm")
  30947. },
  30948. {
  30949. name: "Micro",
  30950. height: math.unit(5, "mm")
  30951. },
  30952. {
  30953. name: "Tiny",
  30954. height: math.unit(0.5, "inches"),
  30955. default: true
  30956. },
  30957. {
  30958. name: "Human",
  30959. height: math.unit(5 + 7.5 / 12, "feet")
  30960. },
  30961. {
  30962. name: "Minigiant",
  30963. height: math.unit(8 + 5.25, "feet")
  30964. },
  30965. {
  30966. name: "Giant",
  30967. height: math.unit(2000, "feet")
  30968. },
  30969. {
  30970. name: "Mega",
  30971. height: math.unit(371.1, "miles")
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(2, "meters"),
  30980. weight: math.unit(350, "kg"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30984. extra: 898 / 838,
  30985. bottom: 9 / 907
  30986. }
  30987. },
  30988. },
  30989. [
  30990. {
  30991. name: "Micro",
  30992. height: math.unit(8, "meters")
  30993. },
  30994. {
  30995. name: "Normal",
  30996. height: math.unit(50, "meters"),
  30997. default: true
  30998. },
  30999. {
  31000. name: "Macro",
  31001. height: math.unit(500, "meters")
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31007. {
  31008. front: {
  31009. height: math.unit(6 + 6 / 12, "feet"),
  31010. name: "Front",
  31011. image: {
  31012. source: "./media/characters/khardesh/front.svg",
  31013. extra: 1788/1596,
  31014. bottom: 66/1854
  31015. }
  31016. },
  31017. back: {
  31018. height: math.unit(6 + 6 / 12, "feet"),
  31019. name: "Back",
  31020. image: {
  31021. source: "./media/characters/khardesh/back.svg",
  31022. extra: 1781/1584,
  31023. bottom: 68/1849
  31024. }
  31025. },
  31026. },
  31027. [
  31028. {
  31029. name: "Normal",
  31030. height: math.unit(6 + 6 / 12, "feet"),
  31031. default: true
  31032. },
  31033. {
  31034. name: "Normal+",
  31035. height: math.unit(4, "meters")
  31036. },
  31037. {
  31038. name: "Macro",
  31039. height: math.unit(50, "meters")
  31040. },
  31041. {
  31042. name: "Macro+",
  31043. height: math.unit(100, "meters")
  31044. },
  31045. {
  31046. name: "Megamacro",
  31047. height: math.unit(20, "km")
  31048. },
  31049. ]
  31050. ))
  31051. characterMakers.push(() => makeCharacter(
  31052. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31053. {
  31054. front: {
  31055. height: math.unit(6, "feet"),
  31056. weight: math.unit(150, "lb"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/kosho/front.svg",
  31060. extra: 1847 / 1847,
  31061. bottom: 86 / 1933
  31062. }
  31063. },
  31064. },
  31065. [
  31066. {
  31067. name: "Second-stage micro",
  31068. height: math.unit(0.5, "inches")
  31069. },
  31070. {
  31071. name: "First-stage micro",
  31072. height: math.unit(6, "inches")
  31073. },
  31074. {
  31075. name: "Normal",
  31076. height: math.unit(6, "feet"),
  31077. default: true
  31078. },
  31079. {
  31080. name: "First-stage macro",
  31081. height: math.unit(72, "feet")
  31082. },
  31083. {
  31084. name: "Second-stage macro",
  31085. height: math.unit(864, "feet")
  31086. },
  31087. ]
  31088. ))
  31089. characterMakers.push(() => makeCharacter(
  31090. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31091. {
  31092. normal: {
  31093. height: math.unit(4 + 6 / 12, "feet"),
  31094. name: "Normal",
  31095. image: {
  31096. source: "./media/characters/hydra/normal.svg",
  31097. extra: 2833 / 2634,
  31098. bottom: 68 / 2901
  31099. }
  31100. },
  31101. smol: {
  31102. height: math.unit(0.705, "inches"),
  31103. name: "Smol",
  31104. image: {
  31105. source: "./media/characters/hydra/smol.svg",
  31106. extra: 2715 / 2540,
  31107. bottom: 0 / 2715
  31108. }
  31109. },
  31110. },
  31111. [
  31112. {
  31113. name: "Normal",
  31114. height: math.unit(4 + 6 / 12, "feet"),
  31115. default: true
  31116. }
  31117. ]
  31118. ))
  31119. characterMakers.push(() => makeCharacter(
  31120. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31121. {
  31122. front: {
  31123. height: math.unit(0.6, "cm"),
  31124. name: "Front",
  31125. image: {
  31126. source: "./media/characters/daz/front.svg",
  31127. extra: 1682 / 1164,
  31128. bottom: 42 / 1724
  31129. }
  31130. },
  31131. },
  31132. [
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(0.6, "cm"),
  31136. default: true
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31142. {
  31143. front: {
  31144. height: math.unit(6, "feet"),
  31145. weight: math.unit(235, "lb"),
  31146. name: "Front",
  31147. image: {
  31148. source: "./media/characters/theo-pangolin/front.svg",
  31149. extra: 1996 / 1969,
  31150. bottom: 115 / 2111
  31151. }
  31152. },
  31153. back: {
  31154. height: math.unit(6, "feet"),
  31155. weight: math.unit(235, "lb"),
  31156. name: "Back",
  31157. image: {
  31158. source: "./media/characters/theo-pangolin/back.svg",
  31159. extra: 1979 / 1979,
  31160. bottom: 40 / 2019
  31161. }
  31162. },
  31163. feral: {
  31164. height: math.unit(2, "feet"),
  31165. weight: math.unit(30, "lb"),
  31166. name: "Feral",
  31167. image: {
  31168. source: "./media/characters/theo-pangolin/feral.svg",
  31169. extra: 803 / 791,
  31170. bottom: 181 / 984
  31171. }
  31172. },
  31173. footFive: {
  31174. height: math.unit(1.43, "feet"),
  31175. name: "Foot (Five Toes)",
  31176. image: {
  31177. source: "./media/characters/theo-pangolin/foot-five.svg"
  31178. }
  31179. },
  31180. footFour: {
  31181. height: math.unit(1.43, "feet"),
  31182. name: "Foot (Four Toes)",
  31183. image: {
  31184. source: "./media/characters/theo-pangolin/foot-four.svg"
  31185. }
  31186. },
  31187. handFour: {
  31188. height: math.unit(0.81, "feet"),
  31189. name: "Hand (Four Fingers)",
  31190. image: {
  31191. source: "./media/characters/theo-pangolin/hand-four.svg"
  31192. }
  31193. },
  31194. handThree: {
  31195. height: math.unit(0.81, "feet"),
  31196. name: "Hand (Three Fingers)",
  31197. image: {
  31198. source: "./media/characters/theo-pangolin/hand-three.svg"
  31199. }
  31200. },
  31201. headFront: {
  31202. height: math.unit(1.37, "feet"),
  31203. name: "Head (Front)",
  31204. image: {
  31205. source: "./media/characters/theo-pangolin/head-front.svg"
  31206. }
  31207. },
  31208. headSide: {
  31209. height: math.unit(1.43, "feet"),
  31210. name: "Head (Side)",
  31211. image: {
  31212. source: "./media/characters/theo-pangolin/head-side.svg"
  31213. }
  31214. },
  31215. tongue: {
  31216. height: math.unit(2.29, "feet"),
  31217. name: "Tongue",
  31218. image: {
  31219. source: "./media/characters/theo-pangolin/tongue.svg"
  31220. }
  31221. },
  31222. },
  31223. [
  31224. {
  31225. name: "Normal",
  31226. height: math.unit(6, "feet")
  31227. },
  31228. {
  31229. name: "Macro",
  31230. height: math.unit(400, "feet"),
  31231. default: true
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31237. {
  31238. front: {
  31239. height: math.unit(6, "inches"),
  31240. weight: math.unit(0.036, "kg"),
  31241. name: "Front",
  31242. image: {
  31243. source: "./media/characters/renée/front.svg",
  31244. extra: 900 / 886,
  31245. bottom: 8 / 908
  31246. }
  31247. },
  31248. },
  31249. [
  31250. {
  31251. name: "Nano",
  31252. height: math.unit(1, "nm")
  31253. },
  31254. {
  31255. name: "Micro",
  31256. height: math.unit(1, "mm")
  31257. },
  31258. {
  31259. name: "Normal",
  31260. height: math.unit(6, "inches")
  31261. },
  31262. {
  31263. name: "Macro",
  31264. height: math.unit(2000, "feet"),
  31265. default: true
  31266. },
  31267. {
  31268. name: "Megamacro",
  31269. height: math.unit(2, "km")
  31270. },
  31271. {
  31272. name: "Gigamacro",
  31273. height: math.unit(2000, "km")
  31274. },
  31275. {
  31276. name: "Teramacro",
  31277. height: math.unit(250000, "km")
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31283. {
  31284. front: {
  31285. height: math.unit(4, "meters"),
  31286. weight: math.unit(150, "kg"),
  31287. name: "Front",
  31288. image: {
  31289. source: "./media/characters/caledvwlch/front.svg",
  31290. extra: 1760 / 1551,
  31291. bottom: 28 / 1788
  31292. }
  31293. },
  31294. side: {
  31295. height: math.unit(4, "meters"),
  31296. weight: math.unit(150, "kg"),
  31297. name: "Side",
  31298. image: {
  31299. source: "./media/characters/caledvwlch/side.svg",
  31300. extra: 1605 / 1536,
  31301. bottom: 31 / 1636
  31302. }
  31303. },
  31304. back: {
  31305. height: math.unit(4, "meters"),
  31306. weight: math.unit(150, "kg"),
  31307. name: "Back",
  31308. image: {
  31309. source: "./media/characters/caledvwlch/back.svg",
  31310. extra: 1635 / 1565,
  31311. bottom: 27 / 1662
  31312. }
  31313. },
  31314. },
  31315. [
  31316. {
  31317. name: "\"Incognito\"",
  31318. height: math.unit(4, "meters")
  31319. },
  31320. {
  31321. name: "Small rampage",
  31322. height: math.unit(600, "meters")
  31323. },
  31324. {
  31325. name: "Mega",
  31326. height: math.unit(30, "km")
  31327. },
  31328. {
  31329. name: "Home-size",
  31330. height: math.unit(50, "km"),
  31331. default: true
  31332. },
  31333. {
  31334. name: "Giga",
  31335. height: math.unit(300, "km")
  31336. },
  31337. {
  31338. name: "Lounging",
  31339. height: math.unit(11000, "km")
  31340. },
  31341. {
  31342. name: "Planet snacking",
  31343. height: math.unit(2000000, "km")
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31349. {
  31350. front: {
  31351. height: math.unit(6, "feet"),
  31352. weight: math.unit(215, "lb"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/sapphire-svell/front.svg",
  31356. extra: 495 / 455,
  31357. bottom: 20 / 515
  31358. }
  31359. },
  31360. back: {
  31361. height: math.unit(6, "feet"),
  31362. weight: math.unit(216, "lb"),
  31363. name: "Back",
  31364. image: {
  31365. source: "./media/characters/sapphire-svell/back.svg",
  31366. extra: 497 / 477,
  31367. bottom: 7 / 504
  31368. }
  31369. },
  31370. maw: {
  31371. height: math.unit(1.57, "feet"),
  31372. name: "Maw",
  31373. image: {
  31374. source: "./media/characters/sapphire-svell/maw.svg"
  31375. }
  31376. },
  31377. foot: {
  31378. height: math.unit(1.07, "feet"),
  31379. name: "Foot",
  31380. image: {
  31381. source: "./media/characters/sapphire-svell/foot.svg"
  31382. }
  31383. },
  31384. toering: {
  31385. height: math.unit(1.7, "inch"),
  31386. name: "Toering",
  31387. image: {
  31388. source: "./media/characters/sapphire-svell/toering.svg"
  31389. }
  31390. },
  31391. },
  31392. [
  31393. {
  31394. name: "Normal",
  31395. height: math.unit(300, "feet"),
  31396. default: true
  31397. },
  31398. {
  31399. name: "Augmented",
  31400. height: math.unit(1250, "feet")
  31401. },
  31402. {
  31403. name: "Unleashed",
  31404. height: math.unit(3000, "feet")
  31405. },
  31406. ]
  31407. ))
  31408. characterMakers.push(() => makeCharacter(
  31409. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31410. {
  31411. side: {
  31412. height: math.unit(2 + 3 / 12, "feet"),
  31413. weight: math.unit(110, "lb"),
  31414. name: "Side",
  31415. image: {
  31416. source: "./media/characters/glitch-flux/side.svg",
  31417. extra: 997 / 805,
  31418. bottom: 20 / 1017
  31419. }
  31420. },
  31421. },
  31422. [
  31423. {
  31424. name: "Normal",
  31425. height: math.unit(2 + 3 / 12, "feet"),
  31426. default: true
  31427. },
  31428. ]
  31429. ))
  31430. characterMakers.push(() => makeCharacter(
  31431. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31432. {
  31433. front: {
  31434. height: math.unit(4, "meters"),
  31435. name: "Front",
  31436. image: {
  31437. source: "./media/characters/mid/front.svg",
  31438. extra: 507 / 476,
  31439. bottom: 17 / 524
  31440. }
  31441. },
  31442. back: {
  31443. height: math.unit(4, "meters"),
  31444. name: "Back",
  31445. image: {
  31446. source: "./media/characters/mid/back.svg",
  31447. extra: 519 / 487,
  31448. bottom: 7 / 526
  31449. }
  31450. },
  31451. stuck: {
  31452. height: math.unit(2.2, "meters"),
  31453. name: "Stuck",
  31454. image: {
  31455. source: "./media/characters/mid/stuck.svg",
  31456. extra: 1951 / 1869,
  31457. bottom: 88 / 2039
  31458. }
  31459. }
  31460. },
  31461. [
  31462. {
  31463. name: "Normal",
  31464. height: math.unit(4, "meters"),
  31465. default: true
  31466. },
  31467. {
  31468. name: "Big",
  31469. height: math.unit(10, "meters")
  31470. },
  31471. {
  31472. name: "Macro",
  31473. height: math.unit(800, "meters")
  31474. },
  31475. {
  31476. name: "Megamacro",
  31477. height: math.unit(100, "km")
  31478. },
  31479. {
  31480. name: "Overgrown",
  31481. height: math.unit(1, "parsec")
  31482. },
  31483. ]
  31484. ))
  31485. characterMakers.push(() => makeCharacter(
  31486. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31487. {
  31488. front: {
  31489. height: math.unit(2.5, "meters"),
  31490. weight: math.unit(225, "kg"),
  31491. name: "Front",
  31492. image: {
  31493. source: "./media/characters/iris/front.svg",
  31494. extra: 3348 / 3251,
  31495. bottom: 205 / 3553
  31496. }
  31497. },
  31498. maw: {
  31499. height: math.unit(0.56, "meter"),
  31500. name: "Maw",
  31501. image: {
  31502. source: "./media/characters/iris/maw.svg"
  31503. }
  31504. },
  31505. },
  31506. [
  31507. {
  31508. name: "Mewter cat",
  31509. height: math.unit(1.2, "meters")
  31510. },
  31511. {
  31512. name: "Minimacro",
  31513. height: math.unit(2.5, "meters"),
  31514. default: true
  31515. },
  31516. {
  31517. name: "Macro",
  31518. height: math.unit(180, "meters")
  31519. },
  31520. {
  31521. name: "Megamacro",
  31522. height: math.unit(2746, "meters")
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(6, "feet"),
  31531. weight: math.unit(135, "lb"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/axel/front.svg",
  31535. extra: 908 / 908,
  31536. bottom: 58 / 966
  31537. }
  31538. },
  31539. side: {
  31540. height: math.unit(6, "feet"),
  31541. weight: math.unit(135, "lb"),
  31542. name: "Side",
  31543. image: {
  31544. source: "./media/characters/axel/side.svg",
  31545. extra: 958 / 958,
  31546. bottom: 11 / 969
  31547. }
  31548. },
  31549. back: {
  31550. height: math.unit(6, "feet"),
  31551. weight: math.unit(135, "lb"),
  31552. name: "Back",
  31553. image: {
  31554. source: "./media/characters/axel/back.svg",
  31555. extra: 887 / 887,
  31556. bottom: 34 / 921
  31557. }
  31558. },
  31559. head: {
  31560. height: math.unit(1.07, "feet"),
  31561. name: "Head",
  31562. image: {
  31563. source: "./media/characters/axel/head.svg"
  31564. }
  31565. },
  31566. beak: {
  31567. height: math.unit(1.4, "feet"),
  31568. name: "Beak",
  31569. image: {
  31570. source: "./media/characters/axel/beak.svg"
  31571. }
  31572. },
  31573. beakSide: {
  31574. height: math.unit(1.4, "feet"),
  31575. name: "Beak Side",
  31576. image: {
  31577. source: "./media/characters/axel/beak-side.svg"
  31578. }
  31579. },
  31580. sheath: {
  31581. height: math.unit(0.5, "feet"),
  31582. name: "Sheath",
  31583. image: {
  31584. source: "./media/characters/axel/sheath.svg"
  31585. }
  31586. },
  31587. dick: {
  31588. height: math.unit(0.98, "feet"),
  31589. name: "Dick",
  31590. image: {
  31591. source: "./media/characters/axel/dick.svg"
  31592. }
  31593. },
  31594. },
  31595. [
  31596. {
  31597. name: "Macro",
  31598. height: math.unit(68, "meters"),
  31599. default: true
  31600. },
  31601. ]
  31602. ))
  31603. characterMakers.push(() => makeCharacter(
  31604. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31605. {
  31606. front: {
  31607. height: math.unit(3.5, "meters"),
  31608. weight: math.unit(1200, "kg"),
  31609. name: "Front",
  31610. image: {
  31611. source: "./media/characters/joanna/front.svg",
  31612. extra: 1596 / 1488,
  31613. bottom: 29 / 1625
  31614. }
  31615. },
  31616. back: {
  31617. height: math.unit(3.5, "meters"),
  31618. weight: math.unit(1200, "kg"),
  31619. name: "Back",
  31620. image: {
  31621. source: "./media/characters/joanna/back.svg",
  31622. extra: 1594 / 1495,
  31623. bottom: 26 / 1620
  31624. }
  31625. },
  31626. frontShorts: {
  31627. height: math.unit(3.5, "meters"),
  31628. weight: math.unit(1200, "kg"),
  31629. name: "Front (Shorts)",
  31630. image: {
  31631. source: "./media/characters/joanna/front-shorts.svg",
  31632. extra: 1596 / 1488,
  31633. bottom: 29 / 1625
  31634. }
  31635. },
  31636. frontBiker: {
  31637. height: math.unit(3.5, "meters"),
  31638. weight: math.unit(1200, "kg"),
  31639. name: "Front (Biker)",
  31640. image: {
  31641. source: "./media/characters/joanna/front-biker.svg",
  31642. extra: 1596 / 1488,
  31643. bottom: 29 / 1625
  31644. }
  31645. },
  31646. backBiker: {
  31647. height: math.unit(3.5, "meters"),
  31648. weight: math.unit(1200, "kg"),
  31649. name: "Back (Biker)",
  31650. image: {
  31651. source: "./media/characters/joanna/back-biker.svg",
  31652. extra: 1594 / 1495,
  31653. bottom: 88 / 1682
  31654. }
  31655. },
  31656. bikeLeft: {
  31657. height: math.unit(2.4, "meters"),
  31658. weight: math.unit(1600, "kg"),
  31659. name: "Bike (Left)",
  31660. image: {
  31661. source: "./media/characters/joanna/bike-left.svg",
  31662. extra: 720 / 720,
  31663. bottom: 8 / 728
  31664. }
  31665. },
  31666. bikeRight: {
  31667. height: math.unit(2.4, "meters"),
  31668. weight: math.unit(1600, "kg"),
  31669. name: "Bike (Right)",
  31670. image: {
  31671. source: "./media/characters/joanna/bike-right.svg",
  31672. extra: 720 / 720,
  31673. bottom: 8 / 728
  31674. }
  31675. },
  31676. },
  31677. [
  31678. {
  31679. name: "Incognito",
  31680. height: math.unit(3.5, "meters")
  31681. },
  31682. {
  31683. name: "Casual Big",
  31684. height: math.unit(200, "meters")
  31685. },
  31686. {
  31687. name: "Macro",
  31688. height: math.unit(600, "meters")
  31689. },
  31690. {
  31691. name: "Original",
  31692. height: math.unit(20, "km"),
  31693. default: true
  31694. },
  31695. {
  31696. name: "Giga",
  31697. height: math.unit(400, "km")
  31698. },
  31699. {
  31700. name: "Lounging",
  31701. height: math.unit(1500, "km")
  31702. },
  31703. {
  31704. name: "Planetary",
  31705. height: math.unit(200000, "km")
  31706. },
  31707. ]
  31708. ))
  31709. characterMakers.push(() => makeCharacter(
  31710. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31711. {
  31712. front: {
  31713. height: math.unit(6, "feet"),
  31714. weight: math.unit(150, "lb"),
  31715. name: "Front",
  31716. image: {
  31717. source: "./media/characters/hugo-sigil/front.svg",
  31718. extra: 522 / 500,
  31719. bottom: 2 / 524
  31720. }
  31721. },
  31722. back: {
  31723. height: math.unit(6, "feet"),
  31724. weight: math.unit(150, "lb"),
  31725. name: "Back",
  31726. image: {
  31727. source: "./media/characters/hugo-sigil/back.svg",
  31728. extra: 519 / 495,
  31729. bottom: 5 / 524
  31730. }
  31731. },
  31732. maw: {
  31733. height: math.unit(1.4, "feet"),
  31734. weight: math.unit(150, "lb"),
  31735. name: "Maw",
  31736. image: {
  31737. source: "./media/characters/hugo-sigil/maw.svg"
  31738. }
  31739. },
  31740. feet: {
  31741. height: math.unit(1.56, "feet"),
  31742. weight: math.unit(150, "lb"),
  31743. name: "Feet",
  31744. image: {
  31745. source: "./media/characters/hugo-sigil/feet.svg",
  31746. extra: 177 / 177,
  31747. bottom: 12 / 189
  31748. }
  31749. },
  31750. },
  31751. [
  31752. {
  31753. name: "Normal",
  31754. height: math.unit(6, "feet")
  31755. },
  31756. {
  31757. name: "Macro",
  31758. height: math.unit(200, "feet"),
  31759. default: true
  31760. },
  31761. ]
  31762. ))
  31763. characterMakers.push(() => makeCharacter(
  31764. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31765. {
  31766. front: {
  31767. height: math.unit(6, "feet"),
  31768. weight: math.unit(150, "lb"),
  31769. name: "Front",
  31770. image: {
  31771. source: "./media/characters/peri/front.svg",
  31772. extra: 2354 / 2233,
  31773. bottom: 49 / 2403
  31774. }
  31775. },
  31776. },
  31777. [
  31778. {
  31779. name: "Really Small",
  31780. height: math.unit(1, "nm")
  31781. },
  31782. {
  31783. name: "Micro",
  31784. height: math.unit(4, "inches")
  31785. },
  31786. {
  31787. name: "Normal",
  31788. height: math.unit(7, "inches"),
  31789. default: true
  31790. },
  31791. {
  31792. name: "Macro",
  31793. height: math.unit(400, "feet")
  31794. },
  31795. {
  31796. name: "Megamacro",
  31797. height: math.unit(100, "miles")
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31803. {
  31804. frontSlim: {
  31805. height: math.unit(7, "feet"),
  31806. name: "Front (Slim)",
  31807. image: {
  31808. source: "./media/characters/issilora/front-slim.svg",
  31809. extra: 529 / 449,
  31810. bottom: 53 / 582
  31811. }
  31812. },
  31813. sideSlim: {
  31814. height: math.unit(7, "feet"),
  31815. name: "Side (Slim)",
  31816. image: {
  31817. source: "./media/characters/issilora/side-slim.svg",
  31818. extra: 570 / 480,
  31819. bottom: 30 / 600
  31820. }
  31821. },
  31822. backSlim: {
  31823. height: math.unit(7, "feet"),
  31824. name: "Back (Slim)",
  31825. image: {
  31826. source: "./media/characters/issilora/back-slim.svg",
  31827. extra: 537 / 455,
  31828. bottom: 46 / 583
  31829. }
  31830. },
  31831. frontBuff: {
  31832. height: math.unit(7, "feet"),
  31833. name: "Front (Buff)",
  31834. image: {
  31835. source: "./media/characters/issilora/front-buff.svg",
  31836. extra: 2310 / 2035,
  31837. bottom: 335 / 2645
  31838. }
  31839. },
  31840. head: {
  31841. height: math.unit(1.94, "feet"),
  31842. name: "Head",
  31843. image: {
  31844. source: "./media/characters/issilora/head.svg"
  31845. }
  31846. },
  31847. },
  31848. [
  31849. {
  31850. name: "Minimum",
  31851. height: math.unit(7, "feet")
  31852. },
  31853. {
  31854. name: "Comfortable",
  31855. height: math.unit(17, "feet")
  31856. },
  31857. {
  31858. name: "Fun Size",
  31859. height: math.unit(47, "feet")
  31860. },
  31861. {
  31862. name: "Natural Macro",
  31863. height: math.unit(137, "feet"),
  31864. default: true
  31865. },
  31866. {
  31867. name: "Maximum Kaiju",
  31868. height: math.unit(397, "feet")
  31869. },
  31870. ]
  31871. ))
  31872. characterMakers.push(() => makeCharacter(
  31873. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31874. {
  31875. front: {
  31876. height: math.unit(50 + 9/12, "feet"),
  31877. weight: math.unit(32.8, "tons"),
  31878. name: "Front",
  31879. image: {
  31880. source: "./media/characters/irb'iiritaahn/front.svg",
  31881. extra: 1878/1826,
  31882. bottom: 326/2204
  31883. }
  31884. },
  31885. back: {
  31886. height: math.unit(50 + 9/12, "feet"),
  31887. weight: math.unit(32.8, "tons"),
  31888. name: "Back",
  31889. image: {
  31890. source: "./media/characters/irb'iiritaahn/back.svg",
  31891. extra: 2052/2018,
  31892. bottom: 152/2204
  31893. }
  31894. },
  31895. head: {
  31896. height: math.unit(12.86, "feet"),
  31897. name: "Head",
  31898. image: {
  31899. source: "./media/characters/irb'iiritaahn/head.svg"
  31900. }
  31901. },
  31902. maw: {
  31903. height: math.unit(9.66, "feet"),
  31904. name: "Maw",
  31905. image: {
  31906. source: "./media/characters/irb'iiritaahn/maw.svg"
  31907. }
  31908. },
  31909. frontDick: {
  31910. height: math.unit(8.78461, "feet"),
  31911. name: "Front Dick",
  31912. image: {
  31913. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31914. }
  31915. },
  31916. rearDick: {
  31917. height: math.unit(8.78461, "feet"),
  31918. name: "Rear Dick",
  31919. image: {
  31920. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31921. }
  31922. },
  31923. rearDickUnfolded: {
  31924. height: math.unit(8.78, "feet"),
  31925. name: "Rear Dick (Unfolded)",
  31926. image: {
  31927. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31928. }
  31929. },
  31930. wings: {
  31931. height: math.unit(43, "feet"),
  31932. name: "Wings",
  31933. image: {
  31934. source: "./media/characters/irb'iiritaahn/wings.svg"
  31935. }
  31936. },
  31937. },
  31938. [
  31939. {
  31940. name: "Macro",
  31941. height: math.unit(50 + 9/12, "feet"),
  31942. default: true
  31943. },
  31944. ]
  31945. ))
  31946. characterMakers.push(() => makeCharacter(
  31947. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31948. {
  31949. front: {
  31950. height: math.unit(205, "cm"),
  31951. weight: math.unit(102, "kg"),
  31952. name: "Front",
  31953. image: {
  31954. source: "./media/characters/irbisgreif/front.svg",
  31955. extra: 785/706,
  31956. bottom: 13/798
  31957. }
  31958. },
  31959. back: {
  31960. height: math.unit(205, "cm"),
  31961. weight: math.unit(102, "kg"),
  31962. name: "Back",
  31963. image: {
  31964. source: "./media/characters/irbisgreif/back.svg",
  31965. extra: 713/701,
  31966. bottom: 26/739
  31967. }
  31968. },
  31969. frontDressed: {
  31970. height: math.unit(216, "cm"),
  31971. weight: math.unit(102, "kg"),
  31972. name: "Front-dressed",
  31973. image: {
  31974. source: "./media/characters/irbisgreif/front-dressed.svg",
  31975. extra: 902/776,
  31976. bottom: 14/916
  31977. }
  31978. },
  31979. sideDressed: {
  31980. height: math.unit(195, "cm"),
  31981. weight: math.unit(102, "kg"),
  31982. name: "Side-dressed",
  31983. image: {
  31984. source: "./media/characters/irbisgreif/side-dressed.svg",
  31985. extra: 788/688,
  31986. bottom: 21/809
  31987. }
  31988. },
  31989. backDressed: {
  31990. height: math.unit(216, "cm"),
  31991. weight: math.unit(102, "kg"),
  31992. name: "Back-dressed",
  31993. image: {
  31994. source: "./media/characters/irbisgreif/back-dressed.svg",
  31995. extra: 901/783,
  31996. bottom: 10/911
  31997. }
  31998. },
  31999. dick: {
  32000. height: math.unit(0.49, "feet"),
  32001. name: "Dick",
  32002. image: {
  32003. source: "./media/characters/irbisgreif/dick.svg"
  32004. }
  32005. },
  32006. wingTop: {
  32007. height: math.unit(1.93 , "feet"),
  32008. name: "Wing-top",
  32009. image: {
  32010. source: "./media/characters/irbisgreif/wing-top.svg"
  32011. }
  32012. },
  32013. wingBottom: {
  32014. height: math.unit(1.93 , "feet"),
  32015. name: "Wing-bottom",
  32016. image: {
  32017. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32018. }
  32019. },
  32020. },
  32021. [
  32022. {
  32023. name: "Normal",
  32024. height: math.unit(216, "cm"),
  32025. default: true
  32026. },
  32027. ]
  32028. ))
  32029. characterMakers.push(() => makeCharacter(
  32030. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32031. {
  32032. front: {
  32033. height: math.unit(6, "feet"),
  32034. weight: math.unit(150, "lb"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/pride/front.svg",
  32038. extra: 1299/1230,
  32039. bottom: 18/1317
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Normal",
  32046. height: math.unit(7, "feet")
  32047. },
  32048. {
  32049. name: "Mini-macro",
  32050. height: math.unit(11, "feet")
  32051. },
  32052. {
  32053. name: "Macro",
  32054. height: math.unit(15, "meters"),
  32055. default: true
  32056. },
  32057. {
  32058. name: "Macro+",
  32059. height: math.unit(40, "meters")
  32060. },
  32061. ]
  32062. ))
  32063. characterMakers.push(() => makeCharacter(
  32064. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32065. {
  32066. front: {
  32067. height: math.unit(4 + 2 / 12, "feet"),
  32068. weight: math.unit(95, "lb"),
  32069. name: "Front",
  32070. image: {
  32071. source: "./media/characters/vaelophis-nyx/front.svg",
  32072. extra: 2532/2330,
  32073. bottom: 0/2532
  32074. }
  32075. },
  32076. back: {
  32077. height: math.unit(4 + 2 / 12, "feet"),
  32078. weight: math.unit(95, "lb"),
  32079. name: "Back",
  32080. image: {
  32081. source: "./media/characters/vaelophis-nyx/back.svg",
  32082. extra: 2484/2361,
  32083. bottom: 0/2484
  32084. }
  32085. },
  32086. feralSide: {
  32087. height: math.unit(2 + 1/12, "feet"),
  32088. weight: math.unit(20, "lb"),
  32089. name: "Feral (Side)",
  32090. image: {
  32091. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32092. extra: 1721/1581,
  32093. bottom: 70/1791
  32094. }
  32095. },
  32096. feralLazing: {
  32097. height: math.unit(1.08, "feet"),
  32098. weight: math.unit(20, "lb"),
  32099. name: "Feral (Lazing)",
  32100. image: {
  32101. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32102. extra: 822/822,
  32103. bottom: 248/1070
  32104. }
  32105. },
  32106. ear: {
  32107. height: math.unit(0.416, "feet"),
  32108. name: "Ear",
  32109. image: {
  32110. source: "./media/characters/vaelophis-nyx/ear.svg"
  32111. }
  32112. },
  32113. eye: {
  32114. height: math.unit(0.0748, "feet"),
  32115. name: "Eye",
  32116. image: {
  32117. source: "./media/characters/vaelophis-nyx/eye.svg"
  32118. }
  32119. },
  32120. mouth: {
  32121. height: math.unit(0.378, "feet"),
  32122. name: "Mouth",
  32123. image: {
  32124. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32125. }
  32126. },
  32127. spade: {
  32128. height: math.unit(0.55, "feet"),
  32129. name: "Spade",
  32130. image: {
  32131. source: "./media/characters/vaelophis-nyx/spade.svg"
  32132. }
  32133. },
  32134. },
  32135. [
  32136. {
  32137. name: "Normal",
  32138. height: math.unit(4 + 2/12, "feet"),
  32139. default: true
  32140. },
  32141. ]
  32142. ))
  32143. characterMakers.push(() => makeCharacter(
  32144. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32145. {
  32146. front: {
  32147. height: math.unit(7, "feet"),
  32148. weight: math.unit(231, "lb"),
  32149. name: "Front",
  32150. image: {
  32151. source: "./media/characters/flux/front.svg",
  32152. extra: 919/871,
  32153. bottom: 0/919
  32154. }
  32155. },
  32156. back: {
  32157. height: math.unit(7, "feet"),
  32158. weight: math.unit(231, "lb"),
  32159. name: "Back",
  32160. image: {
  32161. source: "./media/characters/flux/back.svg",
  32162. extra: 1040/992,
  32163. bottom: 0/1040
  32164. }
  32165. },
  32166. frontDressed: {
  32167. height: math.unit(7, "feet"),
  32168. weight: math.unit(231, "lb"),
  32169. name: "Front (Dressed)",
  32170. image: {
  32171. source: "./media/characters/flux/front-dressed.svg",
  32172. extra: 919/871,
  32173. bottom: 0/919
  32174. }
  32175. },
  32176. feralSide: {
  32177. height: math.unit(5, "feet"),
  32178. weight: math.unit(150, "lb"),
  32179. name: "Feral (Side)",
  32180. image: {
  32181. source: "./media/characters/flux/feral-side.svg",
  32182. extra: 598/528,
  32183. bottom: 28/626
  32184. }
  32185. },
  32186. head: {
  32187. height: math.unit(1.585, "feet"),
  32188. name: "Head",
  32189. image: {
  32190. source: "./media/characters/flux/head.svg"
  32191. }
  32192. },
  32193. headSide: {
  32194. height: math.unit(1.74, "feet"),
  32195. name: "Head (Side)",
  32196. image: {
  32197. source: "./media/characters/flux/head-side.svg"
  32198. }
  32199. },
  32200. headSideFire: {
  32201. height: math.unit(1.76, "feet"),
  32202. name: "Head (Side, Fire)",
  32203. image: {
  32204. source: "./media/characters/flux/head-side-fire.svg"
  32205. }
  32206. },
  32207. },
  32208. [
  32209. {
  32210. name: "Normal",
  32211. height: math.unit(7, "feet"),
  32212. default: true
  32213. },
  32214. ]
  32215. ))
  32216. characterMakers.push(() => makeCharacter(
  32217. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32218. {
  32219. front: {
  32220. height: math.unit(9, "feet"),
  32221. weight: math.unit(1012, "lb"),
  32222. name: "Front",
  32223. image: {
  32224. source: "./media/characters/ulfra-lupae/front.svg",
  32225. extra: 1083/1011,
  32226. bottom: 67/1150
  32227. }
  32228. },
  32229. },
  32230. [
  32231. {
  32232. name: "Micro",
  32233. height: math.unit(6, "inches")
  32234. },
  32235. {
  32236. name: "Socializing",
  32237. height: math.unit(6 + 5/12, "feet")
  32238. },
  32239. {
  32240. name: "Normal",
  32241. height: math.unit(9, "feet"),
  32242. default: true
  32243. },
  32244. {
  32245. name: "Macro",
  32246. height: math.unit(150, "feet")
  32247. },
  32248. ]
  32249. ))
  32250. characterMakers.push(() => makeCharacter(
  32251. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32252. {
  32253. front: {
  32254. height: math.unit(5 + 2/12, "feet"),
  32255. weight: math.unit(120, "lb"),
  32256. name: "Front",
  32257. image: {
  32258. source: "./media/characters/timber/front.svg",
  32259. extra: 2814/2705,
  32260. bottom: 181/2995
  32261. }
  32262. },
  32263. },
  32264. [
  32265. {
  32266. name: "Normal",
  32267. height: math.unit(5 + 2/12, "feet"),
  32268. default: true
  32269. },
  32270. ]
  32271. ))
  32272. characterMakers.push(() => makeCharacter(
  32273. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32274. {
  32275. front: {
  32276. height: math.unit(9, "feet"),
  32277. name: "Front",
  32278. image: {
  32279. source: "./media/characters/nicki/front.svg",
  32280. extra: 1240/990,
  32281. bottom: 45/1285
  32282. },
  32283. form: "anthro",
  32284. default: true
  32285. },
  32286. side: {
  32287. height: math.unit(9, "feet"),
  32288. name: "Side",
  32289. image: {
  32290. source: "./media/characters/nicki/side.svg",
  32291. extra: 1047/973,
  32292. bottom: 61/1108
  32293. },
  32294. form: "anthro"
  32295. },
  32296. back: {
  32297. height: math.unit(9, "feet"),
  32298. name: "Back",
  32299. image: {
  32300. source: "./media/characters/nicki/back.svg",
  32301. extra: 1006/965,
  32302. bottom: 39/1045
  32303. },
  32304. form: "anthro"
  32305. },
  32306. taur: {
  32307. height: math.unit(15, "feet"),
  32308. name: "Taur",
  32309. image: {
  32310. source: "./media/characters/nicki/taur.svg",
  32311. extra: 1592/1347,
  32312. bottom: 0/1592
  32313. },
  32314. form: "taur",
  32315. default: true
  32316. },
  32317. },
  32318. [
  32319. {
  32320. name: "Normal",
  32321. height: math.unit(9, "feet"),
  32322. form: "anthro",
  32323. default: true
  32324. },
  32325. {
  32326. name: "Normal",
  32327. height: math.unit(15, "feet"),
  32328. form: "taur",
  32329. default: true
  32330. }
  32331. ],
  32332. {
  32333. "anthro": {
  32334. name: "Anthro",
  32335. default: true
  32336. },
  32337. "taur": {
  32338. name: "Taur"
  32339. }
  32340. }
  32341. ))
  32342. characterMakers.push(() => makeCharacter(
  32343. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32344. {
  32345. front: {
  32346. height: math.unit(7 + 10/12, "feet"),
  32347. weight: math.unit(3.5, "tons"),
  32348. name: "Front",
  32349. image: {
  32350. source: "./media/characters/lee/front.svg",
  32351. extra: 1773/1615,
  32352. bottom: 86/1859
  32353. }
  32354. },
  32355. hand: {
  32356. height: math.unit(1.78, "feet"),
  32357. name: "Hand",
  32358. image: {
  32359. source: "./media/characters/lee/hand.svg"
  32360. }
  32361. },
  32362. maw: {
  32363. height: math.unit(1.18, "feet"),
  32364. name: "Maw",
  32365. image: {
  32366. source: "./media/characters/lee/maw.svg"
  32367. }
  32368. },
  32369. },
  32370. [
  32371. {
  32372. name: "Normal",
  32373. height: math.unit(7 + 10/12, "feet"),
  32374. default: true
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32380. {
  32381. front: {
  32382. height: math.unit(9, "feet"),
  32383. name: "Front",
  32384. image: {
  32385. source: "./media/characters/guti/front.svg",
  32386. extra: 4551/4355,
  32387. bottom: 123/4674
  32388. }
  32389. },
  32390. tongue: {
  32391. height: math.unit(1, "feet"),
  32392. name: "Tongue",
  32393. image: {
  32394. source: "./media/characters/guti/tongue.svg"
  32395. }
  32396. },
  32397. paw: {
  32398. height: math.unit(1.18, "feet"),
  32399. name: "Paw",
  32400. image: {
  32401. source: "./media/characters/guti/paw.svg"
  32402. }
  32403. },
  32404. },
  32405. [
  32406. {
  32407. name: "Normal",
  32408. height: math.unit(9, "feet"),
  32409. default: true
  32410. },
  32411. ]
  32412. ))
  32413. characterMakers.push(() => makeCharacter(
  32414. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32415. {
  32416. side: {
  32417. height: math.unit(5, "meters"),
  32418. name: "Side",
  32419. image: {
  32420. source: "./media/characters/vesper/side.svg",
  32421. extra: 1605/1518,
  32422. bottom: 0/1605
  32423. }
  32424. },
  32425. },
  32426. [
  32427. {
  32428. name: "Small",
  32429. height: math.unit(5, "meters")
  32430. },
  32431. {
  32432. name: "Sage",
  32433. height: math.unit(100, "meters"),
  32434. default: true
  32435. },
  32436. {
  32437. name: "Fun Size",
  32438. height: math.unit(600, "meters")
  32439. },
  32440. {
  32441. name: "Goddess",
  32442. height: math.unit(20000, "km")
  32443. },
  32444. {
  32445. name: "Maximum",
  32446. height: math.unit(5, "galaxies")
  32447. },
  32448. ]
  32449. ))
  32450. characterMakers.push(() => makeCharacter(
  32451. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32452. {
  32453. front: {
  32454. height: math.unit(6 + 3/12, "feet"),
  32455. weight: math.unit(190, "lb"),
  32456. name: "Front",
  32457. image: {
  32458. source: "./media/characters/gawain/front.svg",
  32459. extra: 2222/2139,
  32460. bottom: 90/2312
  32461. }
  32462. },
  32463. back: {
  32464. height: math.unit(6 + 3/12, "feet"),
  32465. weight: math.unit(190, "lb"),
  32466. name: "Back",
  32467. image: {
  32468. source: "./media/characters/gawain/back.svg",
  32469. extra: 2199/2111,
  32470. bottom: 73/2272
  32471. }
  32472. },
  32473. },
  32474. [
  32475. {
  32476. name: "Normal",
  32477. height: math.unit(6 + 3/12, "feet"),
  32478. default: true
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32484. {
  32485. side: {
  32486. height: math.unit(3.5, "meters"),
  32487. weight: math.unit(16000, "lb"),
  32488. name: "Side",
  32489. image: {
  32490. source: "./media/characters/dascalti/side.svg",
  32491. extra: 392/273,
  32492. bottom: 47/439
  32493. }
  32494. },
  32495. breath: {
  32496. height: math.unit(7.4, "feet"),
  32497. name: "Breath",
  32498. image: {
  32499. source: "./media/characters/dascalti/breath.svg"
  32500. }
  32501. },
  32502. fed: {
  32503. height: math.unit(3.6, "meters"),
  32504. weight: math.unit(16000, "lb"),
  32505. name: "Fed",
  32506. image: {
  32507. source: "./media/characters/dascalti/fed.svg",
  32508. extra: 1419/820,
  32509. bottom: 95/1514
  32510. }
  32511. },
  32512. },
  32513. [
  32514. {
  32515. name: "Normal",
  32516. height: math.unit(3.5, "meters"),
  32517. default: true
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32523. {
  32524. front: {
  32525. height: math.unit(3 + 5/12, "feet"),
  32526. name: "Front",
  32527. image: {
  32528. source: "./media/characters/mauve/front.svg",
  32529. extra: 1126/1033,
  32530. bottom: 65/1191
  32531. }
  32532. },
  32533. side: {
  32534. height: math.unit(3 + 5/12, "feet"),
  32535. name: "Side",
  32536. image: {
  32537. source: "./media/characters/mauve/side.svg",
  32538. extra: 1089/1001,
  32539. bottom: 29/1118
  32540. }
  32541. },
  32542. back: {
  32543. height: math.unit(3 + 5/12, "feet"),
  32544. name: "Back",
  32545. image: {
  32546. source: "./media/characters/mauve/back.svg",
  32547. extra: 1173/1053,
  32548. bottom: 109/1282
  32549. }
  32550. },
  32551. },
  32552. [
  32553. {
  32554. name: "Normal",
  32555. height: math.unit(3 + 5/12, "feet"),
  32556. default: true
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32562. {
  32563. front: {
  32564. height: math.unit(6 + 3/12, "feet"),
  32565. weight: math.unit(430, "lb"),
  32566. name: "Front",
  32567. image: {
  32568. source: "./media/characters/carlos/front.svg",
  32569. extra: 1964/1913,
  32570. bottom: 70/2034
  32571. }
  32572. },
  32573. },
  32574. [
  32575. {
  32576. name: "Normal",
  32577. height: math.unit(6 + 3/12, "feet"),
  32578. default: true
  32579. },
  32580. ]
  32581. ))
  32582. characterMakers.push(() => makeCharacter(
  32583. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32584. {
  32585. back: {
  32586. height: math.unit(5 + 10/12, "feet"),
  32587. weight: math.unit(200, "lb"),
  32588. name: "Back",
  32589. image: {
  32590. source: "./media/characters/jax/back.svg",
  32591. extra: 764/739,
  32592. bottom: 25/789
  32593. }
  32594. },
  32595. },
  32596. [
  32597. {
  32598. name: "Normal",
  32599. height: math.unit(5 + 10/12, "feet"),
  32600. default: true
  32601. },
  32602. ]
  32603. ))
  32604. characterMakers.push(() => makeCharacter(
  32605. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32606. {
  32607. front: {
  32608. height: math.unit(8, "feet"),
  32609. weight: math.unit(250, "lb"),
  32610. name: "Front",
  32611. image: {
  32612. source: "./media/characters/eikthynir/front.svg",
  32613. extra: 1332/1166,
  32614. bottom: 82/1414
  32615. }
  32616. },
  32617. back: {
  32618. height: math.unit(8, "feet"),
  32619. weight: math.unit(250, "lb"),
  32620. name: "Back",
  32621. image: {
  32622. source: "./media/characters/eikthynir/back.svg",
  32623. extra: 1342/1190,
  32624. bottom: 19/1361
  32625. }
  32626. },
  32627. dick: {
  32628. height: math.unit(2.35, "feet"),
  32629. name: "Dick",
  32630. image: {
  32631. source: "./media/characters/eikthynir/dick.svg"
  32632. }
  32633. },
  32634. },
  32635. [
  32636. {
  32637. name: "Normal",
  32638. height: math.unit(8, "feet"),
  32639. default: true
  32640. },
  32641. ]
  32642. ))
  32643. characterMakers.push(() => makeCharacter(
  32644. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32645. {
  32646. front: {
  32647. height: math.unit(99, "meters"),
  32648. weight: math.unit(13000, "tons"),
  32649. name: "Front",
  32650. image: {
  32651. source: "./media/characters/zlmos/front.svg",
  32652. extra: 2202/1992,
  32653. bottom: 315/2517
  32654. }
  32655. },
  32656. },
  32657. [
  32658. {
  32659. name: "Macro",
  32660. height: math.unit(99, "meters"),
  32661. default: true
  32662. },
  32663. ]
  32664. ))
  32665. characterMakers.push(() => makeCharacter(
  32666. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32667. {
  32668. front: {
  32669. height: math.unit(6 + 5/12, "feet"),
  32670. name: "Front",
  32671. image: {
  32672. source: "./media/characters/purri/front.svg",
  32673. extra: 1698/1610,
  32674. bottom: 32/1730
  32675. }
  32676. },
  32677. frontAlt: {
  32678. height: math.unit(6 + 5/12, "feet"),
  32679. name: "Front (Alt)",
  32680. image: {
  32681. source: "./media/characters/purri/front-alt.svg",
  32682. extra: 450/420,
  32683. bottom: 26/476
  32684. }
  32685. },
  32686. boots: {
  32687. height: math.unit(5.5, "feet"),
  32688. name: "Boots",
  32689. image: {
  32690. source: "./media/characters/purri/boots.svg",
  32691. extra: 905/853,
  32692. bottom: 18/923
  32693. }
  32694. },
  32695. lying: {
  32696. height: math.unit(2, "feet"),
  32697. name: "Lying",
  32698. image: {
  32699. source: "./media/characters/purri/lying.svg",
  32700. extra: 940/843,
  32701. bottom: 146/1086
  32702. }
  32703. },
  32704. devious: {
  32705. height: math.unit(1.77, "feet"),
  32706. name: "Devious",
  32707. image: {
  32708. source: "./media/characters/purri/devious.svg",
  32709. extra: 1440/1155,
  32710. bottom: 147/1587
  32711. }
  32712. },
  32713. bean: {
  32714. height: math.unit(1.94, "feet"),
  32715. name: "Bean",
  32716. image: {
  32717. source: "./media/characters/purri/bean.svg"
  32718. }
  32719. },
  32720. },
  32721. [
  32722. {
  32723. name: "Micro",
  32724. height: math.unit(1, "mm")
  32725. },
  32726. {
  32727. name: "Normal",
  32728. height: math.unit(6 + 5/12, "feet"),
  32729. default: true
  32730. },
  32731. {
  32732. name: "Macro :3c",
  32733. height: math.unit(2, "miles")
  32734. },
  32735. ]
  32736. ))
  32737. characterMakers.push(() => makeCharacter(
  32738. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32739. {
  32740. front: {
  32741. height: math.unit(6 + 2/12, "feet"),
  32742. weight: math.unit(250, "lb"),
  32743. name: "Front",
  32744. image: {
  32745. source: "./media/characters/moonlight/front.svg",
  32746. extra: 1044/908,
  32747. bottom: 56/1100
  32748. }
  32749. },
  32750. feral: {
  32751. height: math.unit(3 + 1/12, "feet"),
  32752. weight: math.unit(50, "kg"),
  32753. name: "Feral",
  32754. image: {
  32755. source: "./media/characters/moonlight/feral.svg",
  32756. extra: 3705/2791,
  32757. bottom: 145/3850
  32758. }
  32759. },
  32760. paw: {
  32761. height: math.unit(1, "feet"),
  32762. name: "Paw",
  32763. image: {
  32764. source: "./media/characters/moonlight/paw.svg"
  32765. }
  32766. },
  32767. paws: {
  32768. height: math.unit(0.98, "feet"),
  32769. name: "Paws",
  32770. image: {
  32771. source: "./media/characters/moonlight/paws.svg",
  32772. extra: 939/939,
  32773. bottom: 50/989
  32774. }
  32775. },
  32776. mouth: {
  32777. height: math.unit(0.48, "feet"),
  32778. name: "Mouth",
  32779. image: {
  32780. source: "./media/characters/moonlight/mouth.svg"
  32781. }
  32782. },
  32783. dick: {
  32784. height: math.unit(1.46, "feet"),
  32785. name: "Dick",
  32786. image: {
  32787. source: "./media/characters/moonlight/dick.svg"
  32788. }
  32789. },
  32790. },
  32791. [
  32792. {
  32793. name: "Normal",
  32794. height: math.unit(6 + 2/12, "feet"),
  32795. default: true
  32796. },
  32797. {
  32798. name: "Macro",
  32799. height: math.unit(300, "feet")
  32800. },
  32801. {
  32802. name: "Macro+",
  32803. height: math.unit(1, "mile")
  32804. },
  32805. {
  32806. name: "Mt. Moon",
  32807. height: math.unit(5, "miles")
  32808. },
  32809. {
  32810. name: "Megamacro",
  32811. height: math.unit(15, "miles")
  32812. },
  32813. ]
  32814. ))
  32815. characterMakers.push(() => makeCharacter(
  32816. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32817. {
  32818. back: {
  32819. height: math.unit(6, "feet"),
  32820. weight: math.unit(150, "lb"),
  32821. name: "Back",
  32822. image: {
  32823. source: "./media/characters/sylen/back.svg",
  32824. extra: 1335/1273,
  32825. bottom: 107/1442
  32826. }
  32827. },
  32828. },
  32829. [
  32830. {
  32831. name: "Normal",
  32832. height: math.unit(5 + 5/12, "feet")
  32833. },
  32834. {
  32835. name: "Megamacro",
  32836. height: math.unit(3, "miles"),
  32837. default: true
  32838. },
  32839. ]
  32840. ))
  32841. characterMakers.push(() => makeCharacter(
  32842. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32843. {
  32844. front: {
  32845. height: math.unit(6, "feet"),
  32846. weight: math.unit(190, "lb"),
  32847. name: "Front",
  32848. image: {
  32849. source: "./media/characters/huttser/front.svg",
  32850. extra: 1152/1058,
  32851. bottom: 23/1175
  32852. }
  32853. },
  32854. side: {
  32855. height: math.unit(6, "feet"),
  32856. weight: math.unit(190, "lb"),
  32857. name: "Side",
  32858. image: {
  32859. source: "./media/characters/huttser/side.svg",
  32860. extra: 1174/1065,
  32861. bottom: 18/1192
  32862. }
  32863. },
  32864. back: {
  32865. height: math.unit(6, "feet"),
  32866. weight: math.unit(190, "lb"),
  32867. name: "Back",
  32868. image: {
  32869. source: "./media/characters/huttser/back.svg",
  32870. extra: 1158/1056,
  32871. bottom: 12/1170
  32872. }
  32873. },
  32874. },
  32875. [
  32876. ]
  32877. ))
  32878. characterMakers.push(() => makeCharacter(
  32879. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32880. {
  32881. side: {
  32882. height: math.unit(12 + 9/12, "feet"),
  32883. weight: math.unit(15000, "lb"),
  32884. name: "Side",
  32885. image: {
  32886. source: "./media/characters/faan/side.svg",
  32887. extra: 2747/2697,
  32888. bottom: 0/2747
  32889. }
  32890. },
  32891. front: {
  32892. height: math.unit(12 + 9/12, "feet"),
  32893. weight: math.unit(15000, "lb"),
  32894. name: "Front",
  32895. image: {
  32896. source: "./media/characters/faan/front.svg",
  32897. extra: 607/571,
  32898. bottom: 24/631
  32899. }
  32900. },
  32901. head: {
  32902. height: math.unit(2.85, "feet"),
  32903. name: "Head",
  32904. image: {
  32905. source: "./media/characters/faan/head.svg"
  32906. }
  32907. },
  32908. headAlt: {
  32909. height: math.unit(3.13, "feet"),
  32910. name: "Head-alt",
  32911. image: {
  32912. source: "./media/characters/faan/head-alt.svg"
  32913. }
  32914. },
  32915. },
  32916. [
  32917. {
  32918. name: "Normal",
  32919. height: math.unit(12 + 9/12, "feet"),
  32920. default: true
  32921. },
  32922. ]
  32923. ))
  32924. characterMakers.push(() => makeCharacter(
  32925. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32926. {
  32927. front: {
  32928. height: math.unit(6, "feet"),
  32929. weight: math.unit(300, "lb"),
  32930. name: "Front",
  32931. image: {
  32932. source: "./media/characters/tanio/front.svg",
  32933. extra: 711/673,
  32934. bottom: 25/736
  32935. }
  32936. },
  32937. },
  32938. [
  32939. {
  32940. name: "Normal",
  32941. height: math.unit(6, "feet"),
  32942. default: true
  32943. },
  32944. ]
  32945. ))
  32946. characterMakers.push(() => makeCharacter(
  32947. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32948. {
  32949. front: {
  32950. height: math.unit(3, "inches"),
  32951. name: "Front",
  32952. image: {
  32953. source: "./media/characters/noboru/front.svg",
  32954. extra: 1039/932,
  32955. bottom: 18/1057
  32956. }
  32957. },
  32958. },
  32959. [
  32960. {
  32961. name: "Micro",
  32962. height: math.unit(3, "inches"),
  32963. default: true
  32964. },
  32965. ]
  32966. ))
  32967. characterMakers.push(() => makeCharacter(
  32968. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32969. {
  32970. front: {
  32971. height: math.unit(1.85, "meters"),
  32972. weight: math.unit(80, "kg"),
  32973. name: "Front",
  32974. image: {
  32975. source: "./media/characters/daniel-barrett/front.svg",
  32976. extra: 355/337,
  32977. bottom: 9/364
  32978. }
  32979. },
  32980. },
  32981. [
  32982. {
  32983. name: "Pico",
  32984. height: math.unit(0.0433, "mm")
  32985. },
  32986. {
  32987. name: "Nano",
  32988. height: math.unit(1.5, "mm")
  32989. },
  32990. {
  32991. name: "Micro",
  32992. height: math.unit(5.3, "cm"),
  32993. default: true
  32994. },
  32995. {
  32996. name: "Normal",
  32997. height: math.unit(1.85, "meters")
  32998. },
  32999. {
  33000. name: "Macro",
  33001. height: math.unit(64.7, "meters")
  33002. },
  33003. {
  33004. name: "Megamacro",
  33005. height: math.unit(2.26, "km")
  33006. },
  33007. {
  33008. name: "Gigamacro",
  33009. height: math.unit(79, "km")
  33010. },
  33011. {
  33012. name: "Teramacro",
  33013. height: math.unit(2765, "km")
  33014. },
  33015. {
  33016. name: "Petamacro",
  33017. height: math.unit(96678, "km")
  33018. },
  33019. ]
  33020. ))
  33021. characterMakers.push(() => makeCharacter(
  33022. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33023. {
  33024. front: {
  33025. height: math.unit(30, "meters"),
  33026. weight: math.unit(400, "tons"),
  33027. name: "Front",
  33028. image: {
  33029. source: "./media/characters/zeel/front.svg",
  33030. extra: 2599/2599,
  33031. bottom: 226/2825
  33032. }
  33033. },
  33034. },
  33035. [
  33036. {
  33037. name: "Macro",
  33038. height: math.unit(30, "meters"),
  33039. default: true
  33040. },
  33041. ]
  33042. ))
  33043. characterMakers.push(() => makeCharacter(
  33044. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33045. {
  33046. front: {
  33047. height: math.unit(6 + 7/12, "feet"),
  33048. weight: math.unit(210, "lb"),
  33049. name: "Front",
  33050. image: {
  33051. source: "./media/characters/tarn/front.svg",
  33052. extra: 3517/3220,
  33053. bottom: 91/3608
  33054. }
  33055. },
  33056. back: {
  33057. height: math.unit(6 + 7/12, "feet"),
  33058. weight: math.unit(210, "lb"),
  33059. name: "Back",
  33060. image: {
  33061. source: "./media/characters/tarn/back.svg",
  33062. extra: 3566/3241,
  33063. bottom: 34/3600
  33064. }
  33065. },
  33066. dick: {
  33067. height: math.unit(1.65, "feet"),
  33068. name: "Dick",
  33069. image: {
  33070. source: "./media/characters/tarn/dick.svg"
  33071. }
  33072. },
  33073. paw: {
  33074. height: math.unit(1.80, "feet"),
  33075. name: "Paw",
  33076. image: {
  33077. source: "./media/characters/tarn/paw.svg"
  33078. }
  33079. },
  33080. tongue: {
  33081. height: math.unit(0.97, "feet"),
  33082. name: "Tongue",
  33083. image: {
  33084. source: "./media/characters/tarn/tongue.svg"
  33085. }
  33086. },
  33087. },
  33088. [
  33089. {
  33090. name: "Micro",
  33091. height: math.unit(4, "inches")
  33092. },
  33093. {
  33094. name: "Normal",
  33095. height: math.unit(6 + 7/12, "feet"),
  33096. default: true
  33097. },
  33098. {
  33099. name: "Macro",
  33100. height: math.unit(300, "feet")
  33101. },
  33102. ]
  33103. ))
  33104. characterMakers.push(() => makeCharacter(
  33105. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33106. {
  33107. front: {
  33108. height: math.unit(5 + 7/12, "feet"),
  33109. weight: math.unit(80, "kg"),
  33110. name: "Front",
  33111. image: {
  33112. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33113. extra: 3023/2865,
  33114. bottom: 33/3056
  33115. }
  33116. },
  33117. back: {
  33118. height: math.unit(5 + 7/12, "feet"),
  33119. weight: math.unit(80, "kg"),
  33120. name: "Back",
  33121. image: {
  33122. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33123. extra: 3020/2886,
  33124. bottom: 30/3050
  33125. }
  33126. },
  33127. dick: {
  33128. height: math.unit(0.98, "feet"),
  33129. name: "Dick",
  33130. image: {
  33131. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33132. }
  33133. },
  33134. anatomy: {
  33135. height: math.unit(2.86, "feet"),
  33136. name: "Anatomy",
  33137. image: {
  33138. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33139. }
  33140. },
  33141. },
  33142. [
  33143. {
  33144. name: "Really Small",
  33145. height: math.unit(2, "inches")
  33146. },
  33147. {
  33148. name: "Micro",
  33149. height: math.unit(5.583, "inches")
  33150. },
  33151. {
  33152. name: "Normal",
  33153. height: math.unit(5 + 7/12, "feet"),
  33154. default: true
  33155. },
  33156. {
  33157. name: "Macro",
  33158. height: math.unit(67, "feet")
  33159. },
  33160. {
  33161. name: "Megamacro",
  33162. height: math.unit(134, "feet")
  33163. },
  33164. ]
  33165. ))
  33166. characterMakers.push(() => makeCharacter(
  33167. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33168. {
  33169. front: {
  33170. height: math.unit(9, "feet"),
  33171. weight: math.unit(120, "lb"),
  33172. name: "Front",
  33173. image: {
  33174. source: "./media/characters/sally/front.svg",
  33175. extra: 1506/1349,
  33176. bottom: 66/1572
  33177. }
  33178. },
  33179. },
  33180. [
  33181. {
  33182. name: "Normal",
  33183. height: math.unit(9, "feet"),
  33184. default: true
  33185. },
  33186. ]
  33187. ))
  33188. characterMakers.push(() => makeCharacter(
  33189. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33190. {
  33191. front: {
  33192. height: math.unit(8, "feet"),
  33193. weight: math.unit(900, "lb"),
  33194. name: "Front",
  33195. image: {
  33196. source: "./media/characters/owen/front.svg",
  33197. extra: 1761/1657,
  33198. bottom: 74/1835
  33199. }
  33200. },
  33201. side: {
  33202. height: math.unit(8, "feet"),
  33203. weight: math.unit(900, "lb"),
  33204. name: "Side",
  33205. image: {
  33206. source: "./media/characters/owen/side.svg",
  33207. extra: 1797/1734,
  33208. bottom: 30/1827
  33209. }
  33210. },
  33211. back: {
  33212. height: math.unit(8, "feet"),
  33213. weight: math.unit(900, "lb"),
  33214. name: "Back",
  33215. image: {
  33216. source: "./media/characters/owen/back.svg",
  33217. extra: 1796/1706,
  33218. bottom: 59/1855
  33219. }
  33220. },
  33221. maw: {
  33222. height: math.unit(1.76, "feet"),
  33223. name: "Maw",
  33224. image: {
  33225. source: "./media/characters/owen/maw.svg"
  33226. }
  33227. },
  33228. },
  33229. [
  33230. {
  33231. name: "Normal",
  33232. height: math.unit(8, "feet"),
  33233. default: true
  33234. },
  33235. ]
  33236. ))
  33237. characterMakers.push(() => makeCharacter(
  33238. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33239. {
  33240. front: {
  33241. height: math.unit(4, "feet"),
  33242. weight: math.unit(400, "lb"),
  33243. name: "Front",
  33244. image: {
  33245. source: "./media/characters/ryth/front.svg",
  33246. extra: 1920/1748,
  33247. bottom: 42/1962
  33248. }
  33249. },
  33250. back: {
  33251. height: math.unit(4, "feet"),
  33252. weight: math.unit(400, "lb"),
  33253. name: "Back",
  33254. image: {
  33255. source: "./media/characters/ryth/back.svg",
  33256. extra: 1897/1690,
  33257. bottom: 89/1986
  33258. }
  33259. },
  33260. mouth: {
  33261. height: math.unit(1.39, "feet"),
  33262. name: "Mouth",
  33263. image: {
  33264. source: "./media/characters/ryth/mouth.svg"
  33265. }
  33266. },
  33267. tailmaw: {
  33268. height: math.unit(1.23, "feet"),
  33269. name: "Tailmaw",
  33270. image: {
  33271. source: "./media/characters/ryth/tailmaw.svg"
  33272. }
  33273. },
  33274. goia: {
  33275. height: math.unit(4, "meters"),
  33276. weight: math.unit(10800, "lb"),
  33277. name: "Goia",
  33278. image: {
  33279. source: "./media/characters/ryth/goia.svg",
  33280. extra: 745/640,
  33281. bottom: 107/852
  33282. }
  33283. },
  33284. goiaFront: {
  33285. height: math.unit(4, "meters"),
  33286. weight: math.unit(10800, "lb"),
  33287. name: "Goia (Front)",
  33288. image: {
  33289. source: "./media/characters/ryth/goia-front.svg",
  33290. extra: 750/586,
  33291. bottom: 114/864
  33292. }
  33293. },
  33294. goiaMaw: {
  33295. height: math.unit(5.55, "feet"),
  33296. name: "Goia Maw",
  33297. image: {
  33298. source: "./media/characters/ryth/goia-maw.svg"
  33299. }
  33300. },
  33301. goiaForepaw: {
  33302. height: math.unit(3.5, "feet"),
  33303. name: "Goia Forepaw",
  33304. image: {
  33305. source: "./media/characters/ryth/goia-forepaw.svg"
  33306. }
  33307. },
  33308. goiaHindpaw: {
  33309. height: math.unit(5.55, "feet"),
  33310. name: "Goia Hindpaw",
  33311. image: {
  33312. source: "./media/characters/ryth/goia-hindpaw.svg"
  33313. }
  33314. },
  33315. },
  33316. [
  33317. {
  33318. name: "Normal",
  33319. height: math.unit(4, "feet"),
  33320. default: true
  33321. },
  33322. ]
  33323. ))
  33324. characterMakers.push(() => makeCharacter(
  33325. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33326. {
  33327. front: {
  33328. height: math.unit(7, "feet"),
  33329. weight: math.unit(180, "lb"),
  33330. name: "Front",
  33331. image: {
  33332. source: "./media/characters/necrolance/front.svg",
  33333. extra: 1062/947,
  33334. bottom: 41/1103
  33335. }
  33336. },
  33337. back: {
  33338. height: math.unit(7, "feet"),
  33339. weight: math.unit(180, "lb"),
  33340. name: "Back",
  33341. image: {
  33342. source: "./media/characters/necrolance/back.svg",
  33343. extra: 1045/984,
  33344. bottom: 14/1059
  33345. }
  33346. },
  33347. wing: {
  33348. height: math.unit(2.67, "feet"),
  33349. name: "Wing",
  33350. image: {
  33351. source: "./media/characters/necrolance/wing.svg"
  33352. }
  33353. },
  33354. },
  33355. [
  33356. {
  33357. name: "Normal",
  33358. height: math.unit(7, "feet"),
  33359. default: true
  33360. },
  33361. ]
  33362. ))
  33363. characterMakers.push(() => makeCharacter(
  33364. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33365. {
  33366. front: {
  33367. height: math.unit(76, "meters"),
  33368. weight: math.unit(30000, "tons"),
  33369. name: "Front",
  33370. image: {
  33371. source: "./media/characters/tyler/front.svg",
  33372. extra: 1640/1640,
  33373. bottom: 114/1754
  33374. }
  33375. },
  33376. },
  33377. [
  33378. {
  33379. name: "Macro",
  33380. height: math.unit(76, "meters"),
  33381. default: true
  33382. },
  33383. ]
  33384. ))
  33385. characterMakers.push(() => makeCharacter(
  33386. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33387. {
  33388. front: {
  33389. height: math.unit(4 + 11/12, "feet"),
  33390. weight: math.unit(132, "lb"),
  33391. name: "Front",
  33392. image: {
  33393. source: "./media/characters/icey/front.svg",
  33394. extra: 2750/2550,
  33395. bottom: 33/2783
  33396. }
  33397. },
  33398. back: {
  33399. height: math.unit(4 + 11/12, "feet"),
  33400. weight: math.unit(132, "lb"),
  33401. name: "Back",
  33402. image: {
  33403. source: "./media/characters/icey/back.svg",
  33404. extra: 2624/2481,
  33405. bottom: 35/2659
  33406. }
  33407. },
  33408. },
  33409. [
  33410. {
  33411. name: "Normal",
  33412. height: math.unit(4 + 11/12, "feet"),
  33413. default: true
  33414. },
  33415. ]
  33416. ))
  33417. characterMakers.push(() => makeCharacter(
  33418. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33419. {
  33420. front: {
  33421. height: math.unit(100, "feet"),
  33422. weight: math.unit(0, "lb"),
  33423. name: "Front",
  33424. image: {
  33425. source: "./media/characters/smile/front.svg",
  33426. extra: 2983/2912,
  33427. bottom: 162/3145
  33428. }
  33429. },
  33430. back: {
  33431. height: math.unit(100, "feet"),
  33432. weight: math.unit(0, "lb"),
  33433. name: "Back",
  33434. image: {
  33435. source: "./media/characters/smile/back.svg",
  33436. extra: 3143/3031,
  33437. bottom: 91/3234
  33438. }
  33439. },
  33440. head: {
  33441. height: math.unit(26.3, "feet"),
  33442. weight: math.unit(0, "lb"),
  33443. name: "Head",
  33444. image: {
  33445. source: "./media/characters/smile/head.svg"
  33446. }
  33447. },
  33448. collar: {
  33449. height: math.unit(5.3, "feet"),
  33450. weight: math.unit(0, "lb"),
  33451. name: "Collar",
  33452. image: {
  33453. source: "./media/characters/smile/collar.svg"
  33454. }
  33455. },
  33456. },
  33457. [
  33458. {
  33459. name: "Macro",
  33460. height: math.unit(100, "feet"),
  33461. default: true
  33462. },
  33463. ]
  33464. ))
  33465. characterMakers.push(() => makeCharacter(
  33466. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33467. {
  33468. dragon: {
  33469. height: math.unit(26, "feet"),
  33470. weight: math.unit(36, "tons"),
  33471. name: "Dragon",
  33472. image: {
  33473. source: "./media/characters/arimphae/dragon.svg",
  33474. extra: 1574/983,
  33475. bottom: 357/1931
  33476. }
  33477. },
  33478. drake: {
  33479. height: math.unit(9, "feet"),
  33480. weight: math.unit(1.5, "tons"),
  33481. name: "Drake",
  33482. image: {
  33483. source: "./media/characters/arimphae/drake.svg",
  33484. extra: 1120/925,
  33485. bottom: 435/1555
  33486. }
  33487. },
  33488. },
  33489. [
  33490. {
  33491. name: "Small",
  33492. height: math.unit(26*5/9, "feet")
  33493. },
  33494. {
  33495. name: "Normal",
  33496. height: math.unit(26, "feet"),
  33497. default: true
  33498. },
  33499. ]
  33500. ))
  33501. characterMakers.push(() => makeCharacter(
  33502. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33503. {
  33504. front: {
  33505. height: math.unit(8 + 9/12, "feet"),
  33506. name: "Front",
  33507. image: {
  33508. source: "./media/characters/xander/front.svg",
  33509. extra: 1237/974,
  33510. bottom: 94/1331
  33511. }
  33512. },
  33513. },
  33514. [
  33515. {
  33516. name: "Normal",
  33517. height: math.unit(8 + 9/12, "feet"),
  33518. default: true
  33519. },
  33520. {
  33521. name: "Gaze Grabber",
  33522. height: math.unit(13 + 8/12, "feet")
  33523. },
  33524. {
  33525. name: "Jaw Dropper",
  33526. height: math.unit(27, "feet")
  33527. },
  33528. {
  33529. name: "Show Stopper",
  33530. height: math.unit(136, "feet")
  33531. },
  33532. {
  33533. name: "Superstar",
  33534. height: math.unit(1.9e6, "miles")
  33535. },
  33536. ]
  33537. ))
  33538. characterMakers.push(() => makeCharacter(
  33539. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33540. {
  33541. side: {
  33542. height: math.unit(2100, "feet"),
  33543. name: "Side",
  33544. image: {
  33545. source: "./media/characters/osiris/side.svg",
  33546. extra: 1105/939,
  33547. bottom: 167/1272
  33548. }
  33549. },
  33550. },
  33551. [
  33552. {
  33553. name: "Macro",
  33554. height: math.unit(2100, "feet"),
  33555. default: true
  33556. },
  33557. ]
  33558. ))
  33559. characterMakers.push(() => makeCharacter(
  33560. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33561. {
  33562. front: {
  33563. height: math.unit(6 + 8/12, "feet"),
  33564. weight: math.unit(225, "lb"),
  33565. name: "Front",
  33566. image: {
  33567. source: "./media/characters/rhys-londe/front.svg",
  33568. extra: 2258/2141,
  33569. bottom: 188/2446
  33570. }
  33571. },
  33572. back: {
  33573. height: math.unit(6 + 8/12, "feet"),
  33574. weight: math.unit(225, "lb"),
  33575. name: "Back",
  33576. image: {
  33577. source: "./media/characters/rhys-londe/back.svg",
  33578. extra: 2237/2137,
  33579. bottom: 63/2300
  33580. }
  33581. },
  33582. frontNsfw: {
  33583. height: math.unit(6 + 8/12, "feet"),
  33584. weight: math.unit(225, "lb"),
  33585. name: "Front (NSFW)",
  33586. image: {
  33587. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33588. extra: 2258/2141,
  33589. bottom: 188/2446
  33590. }
  33591. },
  33592. backNsfw: {
  33593. height: math.unit(6 + 8/12, "feet"),
  33594. weight: math.unit(225, "lb"),
  33595. name: "Back (NSFW)",
  33596. image: {
  33597. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33598. extra: 2237/2137,
  33599. bottom: 63/2300
  33600. }
  33601. },
  33602. dick: {
  33603. height: math.unit(30, "inches"),
  33604. name: "Dick",
  33605. image: {
  33606. source: "./media/characters/rhys-londe/dick.svg"
  33607. }
  33608. },
  33609. maw: {
  33610. height: math.unit(1.6, "feet"),
  33611. name: "Maw",
  33612. image: {
  33613. source: "./media/characters/rhys-londe/maw.svg"
  33614. }
  33615. },
  33616. },
  33617. [
  33618. {
  33619. name: "Normal",
  33620. height: math.unit(6 + 8/12, "feet"),
  33621. default: true
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33627. {
  33628. front: {
  33629. height: math.unit(3 + 10/12, "feet"),
  33630. weight: math.unit(90, "lb"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/taivas-ensim/front.svg",
  33634. extra: 1327/1216,
  33635. bottom: 96/1423
  33636. }
  33637. },
  33638. back: {
  33639. height: math.unit(3 + 10/12, "feet"),
  33640. weight: math.unit(90, "lb"),
  33641. name: "Back",
  33642. image: {
  33643. source: "./media/characters/taivas-ensim/back.svg",
  33644. extra: 1355/1247,
  33645. bottom: 11/1366
  33646. }
  33647. },
  33648. frontNsfw: {
  33649. height: math.unit(3 + 10/12, "feet"),
  33650. weight: math.unit(90, "lb"),
  33651. name: "Front (NSFW)",
  33652. image: {
  33653. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33654. extra: 1327/1216,
  33655. bottom: 96/1423
  33656. }
  33657. },
  33658. backNsfw: {
  33659. height: math.unit(3 + 10/12, "feet"),
  33660. weight: math.unit(90, "lb"),
  33661. name: "Back (NSFW)",
  33662. image: {
  33663. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33664. extra: 1355/1247,
  33665. bottom: 11/1366
  33666. }
  33667. },
  33668. },
  33669. [
  33670. {
  33671. name: "Normal",
  33672. height: math.unit(3 + 10/12, "feet"),
  33673. default: true
  33674. },
  33675. ]
  33676. ))
  33677. characterMakers.push(() => makeCharacter(
  33678. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33679. {
  33680. front: {
  33681. height: math.unit(9 + 6/12, "feet"),
  33682. weight: math.unit(940, "lb"),
  33683. name: "Front",
  33684. image: {
  33685. source: "./media/characters/byliss/front.svg",
  33686. extra: 1327/1290,
  33687. bottom: 82/1409
  33688. }
  33689. },
  33690. back: {
  33691. height: math.unit(9 + 6/12, "feet"),
  33692. weight: math.unit(940, "lb"),
  33693. name: "Back",
  33694. image: {
  33695. source: "./media/characters/byliss/back.svg",
  33696. extra: 1376/1349,
  33697. bottom: 9/1385
  33698. }
  33699. },
  33700. frontNsfw: {
  33701. height: math.unit(9 + 6/12, "feet"),
  33702. weight: math.unit(940, "lb"),
  33703. name: "Front (NSFW)",
  33704. image: {
  33705. source: "./media/characters/byliss/front-nsfw.svg",
  33706. extra: 1327/1290,
  33707. bottom: 82/1409
  33708. }
  33709. },
  33710. backNsfw: {
  33711. height: math.unit(9 + 6/12, "feet"),
  33712. weight: math.unit(940, "lb"),
  33713. name: "Back (NSFW)",
  33714. image: {
  33715. source: "./media/characters/byliss/back-nsfw.svg",
  33716. extra: 1376/1349,
  33717. bottom: 9/1385
  33718. }
  33719. },
  33720. },
  33721. [
  33722. {
  33723. name: "Normal",
  33724. height: math.unit(9 + 6/12, "feet"),
  33725. default: true
  33726. },
  33727. ]
  33728. ))
  33729. characterMakers.push(() => makeCharacter(
  33730. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33731. {
  33732. front: {
  33733. height: math.unit(5 + 2/12, "feet"),
  33734. weight: math.unit(200, "lb"),
  33735. name: "Front",
  33736. image: {
  33737. source: "./media/characters/noraly/front.svg",
  33738. extra: 4985/4773,
  33739. bottom: 150/5135
  33740. }
  33741. },
  33742. full: {
  33743. height: math.unit(5 + 2/12, "feet"),
  33744. weight: math.unit(164, "lb"),
  33745. name: "Full",
  33746. image: {
  33747. source: "./media/characters/noraly/full.svg",
  33748. extra: 1114/1059,
  33749. bottom: 35/1149
  33750. }
  33751. },
  33752. fuller: {
  33753. height: math.unit(5 + 2/12, "feet"),
  33754. weight: math.unit(230, "lb"),
  33755. name: "Fuller",
  33756. image: {
  33757. source: "./media/characters/noraly/fuller.svg",
  33758. extra: 1114/1059,
  33759. bottom: 35/1149
  33760. }
  33761. },
  33762. fullest: {
  33763. height: math.unit(5 + 2/12, "feet"),
  33764. weight: math.unit(300, "lb"),
  33765. name: "Fullest",
  33766. image: {
  33767. source: "./media/characters/noraly/fullest.svg",
  33768. extra: 1114/1059,
  33769. bottom: 35/1149
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(5 + 2/12, "feet"),
  33777. default: true
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33783. {
  33784. front: {
  33785. height: math.unit(5 + 2/12, "feet"),
  33786. weight: math.unit(210, "lb"),
  33787. name: "Front",
  33788. image: {
  33789. source: "./media/characters/pera/front.svg",
  33790. extra: 1560/1531,
  33791. bottom: 165/1725
  33792. }
  33793. },
  33794. back: {
  33795. height: math.unit(5 + 2/12, "feet"),
  33796. weight: math.unit(210, "lb"),
  33797. name: "Back",
  33798. image: {
  33799. source: "./media/characters/pera/back.svg",
  33800. extra: 1523/1493,
  33801. bottom: 152/1675
  33802. }
  33803. },
  33804. dick: {
  33805. height: math.unit(2.4, "feet"),
  33806. name: "Dick",
  33807. image: {
  33808. source: "./media/characters/pera/dick.svg"
  33809. }
  33810. },
  33811. },
  33812. [
  33813. {
  33814. name: "Normal",
  33815. height: math.unit(5 + 2/12, "feet"),
  33816. default: true
  33817. },
  33818. ]
  33819. ))
  33820. characterMakers.push(() => makeCharacter(
  33821. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33822. {
  33823. front: {
  33824. height: math.unit(12, "feet"),
  33825. weight: math.unit(3200, "lb"),
  33826. name: "Front",
  33827. image: {
  33828. source: "./media/characters/julian/front.svg",
  33829. extra: 2962/2701,
  33830. bottom: 184/3146
  33831. }
  33832. },
  33833. maw: {
  33834. height: math.unit(5.35, "feet"),
  33835. name: "Maw",
  33836. image: {
  33837. source: "./media/characters/julian/maw.svg"
  33838. }
  33839. },
  33840. paw: {
  33841. height: math.unit(3.07, "feet"),
  33842. name: "Paw",
  33843. image: {
  33844. source: "./media/characters/julian/paw.svg"
  33845. }
  33846. },
  33847. },
  33848. [
  33849. {
  33850. name: "Default",
  33851. height: math.unit(12, "feet"),
  33852. default: true
  33853. },
  33854. {
  33855. name: "Big",
  33856. height: math.unit(50, "feet")
  33857. },
  33858. {
  33859. name: "Really Big",
  33860. height: math.unit(1, "mile")
  33861. },
  33862. {
  33863. name: "Extremely Big",
  33864. height: math.unit(100, "miles")
  33865. },
  33866. {
  33867. name: "Planet Hugger",
  33868. height: math.unit(200, "megameters")
  33869. },
  33870. {
  33871. name: "Unreasonably Big",
  33872. height: math.unit(1e300, "meters")
  33873. },
  33874. ]
  33875. ))
  33876. characterMakers.push(() => makeCharacter(
  33877. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33878. {
  33879. solgooleo: {
  33880. height: math.unit(4, "meters"),
  33881. weight: math.unit(6000*1.5, "kg"),
  33882. volume: math.unit(6000, "liters"),
  33883. name: "Solgooleo",
  33884. image: {
  33885. source: "./media/characters/pi/solgooleo.svg",
  33886. extra: 388/331,
  33887. bottom: 29/417
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Normal",
  33894. height: math.unit(4, "meters"),
  33895. default: true
  33896. },
  33897. ]
  33898. ))
  33899. characterMakers.push(() => makeCharacter(
  33900. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33901. {
  33902. front: {
  33903. height: math.unit(8, "feet"),
  33904. weight: math.unit(4, "tons"),
  33905. name: "Front",
  33906. image: {
  33907. source: "./media/characters/shaun/front.svg",
  33908. extra: 503/495,
  33909. bottom: 20/523
  33910. }
  33911. },
  33912. back: {
  33913. height: math.unit(8, "feet"),
  33914. weight: math.unit(4, "tons"),
  33915. name: "Back",
  33916. image: {
  33917. source: "./media/characters/shaun/back.svg",
  33918. extra: 487/480,
  33919. bottom: 20/507
  33920. }
  33921. },
  33922. },
  33923. [
  33924. {
  33925. name: "Lorg",
  33926. height: math.unit(8, "feet"),
  33927. default: true
  33928. },
  33929. ]
  33930. ))
  33931. characterMakers.push(() => makeCharacter(
  33932. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33933. {
  33934. frontAnthro: {
  33935. height: math.unit(7, "feet"),
  33936. name: "Front",
  33937. image: {
  33938. source: "./media/characters/sini/front-anthro.svg",
  33939. extra: 726/678,
  33940. bottom: 35/761
  33941. },
  33942. form: "anthro",
  33943. default: true
  33944. },
  33945. backAnthro: {
  33946. height: math.unit(7, "feet"),
  33947. name: "Back",
  33948. image: {
  33949. source: "./media/characters/sini/back-anthro.svg",
  33950. extra: 743/701,
  33951. bottom: 12/755
  33952. },
  33953. form: "anthro",
  33954. },
  33955. frontAnthroNsfw: {
  33956. height: math.unit(7, "feet"),
  33957. name: "Front (NSFW)",
  33958. image: {
  33959. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33960. extra: 726/678,
  33961. bottom: 35/761
  33962. },
  33963. form: "anthro"
  33964. },
  33965. backAnthroNsfw: {
  33966. height: math.unit(7, "feet"),
  33967. name: "Back (NSFW)",
  33968. image: {
  33969. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33970. extra: 743/701,
  33971. bottom: 12/755
  33972. },
  33973. form: "anthro",
  33974. },
  33975. mawAnthro: {
  33976. height: math.unit(2.14, "feet"),
  33977. name: "Maw",
  33978. image: {
  33979. source: "./media/characters/sini/maw-anthro.svg"
  33980. },
  33981. form: "anthro"
  33982. },
  33983. dick: {
  33984. height: math.unit(1.45, "feet"),
  33985. name: "Dick",
  33986. image: {
  33987. source: "./media/characters/sini/dick-anthro.svg"
  33988. },
  33989. form: "anthro"
  33990. },
  33991. feral: {
  33992. height: math.unit(16, "feet"),
  33993. name: "Feral",
  33994. image: {
  33995. source: "./media/characters/sini/feral.svg",
  33996. extra: 814/605,
  33997. bottom: 11/825
  33998. },
  33999. form: "feral",
  34000. default: true
  34001. },
  34002. feralNsfw: {
  34003. height: math.unit(16, "feet"),
  34004. name: "Feral (NSFW)",
  34005. image: {
  34006. source: "./media/characters/sini/feral-nsfw.svg",
  34007. extra: 814/605,
  34008. bottom: 11/825
  34009. },
  34010. form: "feral"
  34011. },
  34012. mawFeral: {
  34013. height: math.unit(5.66, "feet"),
  34014. name: "Maw",
  34015. image: {
  34016. source: "./media/characters/sini/maw-feral.svg"
  34017. },
  34018. form: "feral",
  34019. },
  34020. pawFeral: {
  34021. height: math.unit(5.17, "feet"),
  34022. name: "Paw",
  34023. image: {
  34024. source: "./media/characters/sini/paw-feral.svg"
  34025. },
  34026. form: "feral",
  34027. },
  34028. rumpFeral: {
  34029. height: math.unit(13.11, "feet"),
  34030. name: "Rump",
  34031. image: {
  34032. source: "./media/characters/sini/rump-feral.svg"
  34033. },
  34034. form: "feral",
  34035. },
  34036. dickFeral: {
  34037. height: math.unit(1, "feet"),
  34038. name: "Dick",
  34039. image: {
  34040. source: "./media/characters/sini/dick-feral.svg"
  34041. },
  34042. form: "feral",
  34043. },
  34044. eyeFeral: {
  34045. height: math.unit(1.23, "feet"),
  34046. name: "Eye",
  34047. image: {
  34048. source: "./media/characters/sini/eye-feral.svg"
  34049. },
  34050. form: "feral",
  34051. },
  34052. },
  34053. [
  34054. {
  34055. name: "Normal",
  34056. height: math.unit(7, "feet"),
  34057. default: true,
  34058. form: "anthro"
  34059. },
  34060. {
  34061. name: "Normal",
  34062. height: math.unit(16, "feet"),
  34063. default: true,
  34064. form: "feral"
  34065. },
  34066. ],
  34067. {
  34068. "anthro": {
  34069. name: "Anthro",
  34070. default: true
  34071. },
  34072. "feral": {
  34073. name: "Feral",
  34074. }
  34075. }
  34076. ))
  34077. characterMakers.push(() => makeCharacter(
  34078. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34079. {
  34080. side: {
  34081. height: math.unit(47.2, "meters"),
  34082. weight: math.unit(10000, "tons"),
  34083. name: "Side",
  34084. image: {
  34085. source: "./media/characters/raylldo/side.svg",
  34086. extra: 2363/642,
  34087. bottom: 221/2584
  34088. }
  34089. },
  34090. top: {
  34091. height: math.unit(240, "meters"),
  34092. weight: math.unit(10000, "tons"),
  34093. name: "Top",
  34094. image: {
  34095. source: "./media/characters/raylldo/top.svg"
  34096. }
  34097. },
  34098. bottom: {
  34099. height: math.unit(240, "meters"),
  34100. weight: math.unit(10000, "tons"),
  34101. name: "Bottom",
  34102. image: {
  34103. source: "./media/characters/raylldo/bottom.svg"
  34104. }
  34105. },
  34106. head: {
  34107. height: math.unit(38.6, "meters"),
  34108. name: "Head",
  34109. image: {
  34110. source: "./media/characters/raylldo/head.svg",
  34111. extra: 1335/1112,
  34112. bottom: 0/1335
  34113. }
  34114. },
  34115. maw: {
  34116. height: math.unit(16.37, "meters"),
  34117. name: "Maw",
  34118. image: {
  34119. source: "./media/characters/raylldo/maw.svg",
  34120. extra: 883/660,
  34121. bottom: 0/883
  34122. },
  34123. extraAttributes: {
  34124. preyCapacity: {
  34125. name: "Capacity",
  34126. power: 3,
  34127. type: "volume",
  34128. base: math.unit(1000, "people")
  34129. },
  34130. tongueSize: {
  34131. name: "Tongue Size",
  34132. power: 2,
  34133. type: "area",
  34134. base: math.unit(21, "m^2")
  34135. }
  34136. }
  34137. },
  34138. forepaw: {
  34139. height: math.unit(18, "meters"),
  34140. name: "Forepaw",
  34141. image: {
  34142. source: "./media/characters/raylldo/forepaw.svg"
  34143. }
  34144. },
  34145. hindpaw: {
  34146. height: math.unit(23, "meters"),
  34147. name: "Hindpaw",
  34148. image: {
  34149. source: "./media/characters/raylldo/hindpaw.svg"
  34150. }
  34151. },
  34152. genitals: {
  34153. height: math.unit(42, "meters"),
  34154. name: "Genitals",
  34155. image: {
  34156. source: "./media/characters/raylldo/genitals.svg"
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Normal",
  34163. height: math.unit(47.2, "meters"),
  34164. default: true
  34165. },
  34166. ]
  34167. ))
  34168. characterMakers.push(() => makeCharacter(
  34169. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34170. {
  34171. anthroFront: {
  34172. height: math.unit(9, "feet"),
  34173. weight: math.unit(600, "lb"),
  34174. name: "Anthro (Front)",
  34175. image: {
  34176. source: "./media/characters/glint/anthro-front.svg",
  34177. extra: 1097/1018,
  34178. bottom: 28/1125
  34179. }
  34180. },
  34181. anthroBack: {
  34182. height: math.unit(9, "feet"),
  34183. weight: math.unit(600, "lb"),
  34184. name: "Anthro (Back)",
  34185. image: {
  34186. source: "./media/characters/glint/anthro-back.svg",
  34187. extra: 1154/997,
  34188. bottom: 36/1190
  34189. }
  34190. },
  34191. feral: {
  34192. height: math.unit(11, "feet"),
  34193. weight: math.unit(50000, "lb"),
  34194. name: "Feral",
  34195. image: {
  34196. source: "./media/characters/glint/feral.svg",
  34197. extra: 3035/1585,
  34198. bottom: 1169/4204
  34199. }
  34200. },
  34201. dickAnthro: {
  34202. height: math.unit(0.7, "meters"),
  34203. name: "Dick (Anthro)",
  34204. image: {
  34205. source: "./media/characters/glint/dick-anthro.svg"
  34206. }
  34207. },
  34208. dickFeral: {
  34209. height: math.unit(2.65, "meters"),
  34210. name: "Dick (Feral)",
  34211. image: {
  34212. source: "./media/characters/glint/dick-feral.svg"
  34213. }
  34214. },
  34215. slitHidden: {
  34216. height: math.unit(5.85, "meters"),
  34217. name: "Slit (Hidden)",
  34218. image: {
  34219. source: "./media/characters/glint/slit-hidden.svg"
  34220. }
  34221. },
  34222. slitErect: {
  34223. height: math.unit(5.85, "meters"),
  34224. name: "Slit (Erect)",
  34225. image: {
  34226. source: "./media/characters/glint/slit-erect.svg"
  34227. }
  34228. },
  34229. mawAnthro: {
  34230. height: math.unit(0.63, "meters"),
  34231. name: "Maw (Anthro)",
  34232. image: {
  34233. source: "./media/characters/glint/maw.svg"
  34234. }
  34235. },
  34236. mawFeral: {
  34237. height: math.unit(2.89, "meters"),
  34238. name: "Maw (Feral)",
  34239. image: {
  34240. source: "./media/characters/glint/maw.svg"
  34241. }
  34242. },
  34243. },
  34244. [
  34245. {
  34246. name: "Normal",
  34247. height: math.unit(9, "feet"),
  34248. default: true
  34249. },
  34250. ]
  34251. ))
  34252. characterMakers.push(() => makeCharacter(
  34253. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34254. {
  34255. side: {
  34256. height: math.unit(15, "feet"),
  34257. weight: math.unit(5000, "kg"),
  34258. name: "Side",
  34259. image: {
  34260. source: "./media/characters/kairne/side.svg",
  34261. extra: 979/811,
  34262. bottom: 13/992
  34263. }
  34264. },
  34265. front: {
  34266. height: math.unit(15, "feet"),
  34267. weight: math.unit(5000, "kg"),
  34268. name: "Front",
  34269. image: {
  34270. source: "./media/characters/kairne/front.svg",
  34271. extra: 908/814,
  34272. bottom: 26/934
  34273. }
  34274. },
  34275. sideNsfw: {
  34276. height: math.unit(15, "feet"),
  34277. weight: math.unit(5000, "kg"),
  34278. name: "Side (NSFW)",
  34279. image: {
  34280. source: "./media/characters/kairne/side-nsfw.svg",
  34281. extra: 979/811,
  34282. bottom: 13/992
  34283. }
  34284. },
  34285. frontNsfw: {
  34286. height: math.unit(15, "feet"),
  34287. weight: math.unit(5000, "kg"),
  34288. name: "Front (NSFW)",
  34289. image: {
  34290. source: "./media/characters/kairne/front-nsfw.svg",
  34291. extra: 908/814,
  34292. bottom: 26/934
  34293. }
  34294. },
  34295. dickCaged: {
  34296. height: math.unit(0.65, "meters"),
  34297. name: "Dick-caged",
  34298. image: {
  34299. source: "./media/characters/kairne/dick-caged.svg"
  34300. }
  34301. },
  34302. dick: {
  34303. height: math.unit(0.79, "meters"),
  34304. name: "Dick",
  34305. image: {
  34306. source: "./media/characters/kairne/dick.svg"
  34307. }
  34308. },
  34309. genitals: {
  34310. height: math.unit(1.29, "meters"),
  34311. name: "Genitals",
  34312. image: {
  34313. source: "./media/characters/kairne/genitals.svg"
  34314. }
  34315. },
  34316. maw: {
  34317. height: math.unit(1.73, "meters"),
  34318. name: "Maw",
  34319. image: {
  34320. source: "./media/characters/kairne/maw.svg"
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(15, "feet"),
  34328. default: true
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34334. {
  34335. front: {
  34336. height: math.unit(5 + 8/12, "feet"),
  34337. weight: math.unit(139, "lb"),
  34338. name: "Front",
  34339. image: {
  34340. source: "./media/characters/biscuit-jackal/front.svg",
  34341. extra: 2106/1961,
  34342. bottom: 58/2164
  34343. }
  34344. },
  34345. back: {
  34346. height: math.unit(5 + 8/12, "feet"),
  34347. weight: math.unit(139, "lb"),
  34348. name: "Back",
  34349. image: {
  34350. source: "./media/characters/biscuit-jackal/back.svg",
  34351. extra: 2132/1976,
  34352. bottom: 57/2189
  34353. }
  34354. },
  34355. werejackal: {
  34356. height: math.unit(6 + 3/12, "feet"),
  34357. weight: math.unit(188, "lb"),
  34358. name: "Werejackal",
  34359. image: {
  34360. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34361. extra: 2373/2178,
  34362. bottom: 53/2426
  34363. }
  34364. },
  34365. },
  34366. [
  34367. {
  34368. name: "Normal",
  34369. height: math.unit(5 + 8/12, "feet"),
  34370. default: true
  34371. },
  34372. ]
  34373. ))
  34374. characterMakers.push(() => makeCharacter(
  34375. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34376. {
  34377. front: {
  34378. height: math.unit(140, "cm"),
  34379. weight: math.unit(45, "kg"),
  34380. name: "Front",
  34381. image: {
  34382. source: "./media/characters/tayra-white/front.svg",
  34383. extra: 2229/2192,
  34384. bottom: 75/2304
  34385. }
  34386. },
  34387. },
  34388. [
  34389. {
  34390. name: "Normal",
  34391. height: math.unit(140, "cm"),
  34392. default: true
  34393. },
  34394. ]
  34395. ))
  34396. characterMakers.push(() => makeCharacter(
  34397. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34398. {
  34399. front: {
  34400. height: math.unit(4 + 5/12, "feet"),
  34401. name: "Front",
  34402. image: {
  34403. source: "./media/characters/scoop/front.svg",
  34404. extra: 1257/1136,
  34405. bottom: 69/1326
  34406. }
  34407. },
  34408. back: {
  34409. height: math.unit(4 + 5/12, "feet"),
  34410. name: "Back",
  34411. image: {
  34412. source: "./media/characters/scoop/back.svg",
  34413. extra: 1321/1152,
  34414. bottom: 32/1353
  34415. }
  34416. },
  34417. maw: {
  34418. height: math.unit(0.68, "feet"),
  34419. name: "Maw",
  34420. image: {
  34421. source: "./media/characters/scoop/maw.svg"
  34422. }
  34423. },
  34424. },
  34425. [
  34426. {
  34427. name: "Really Small",
  34428. height: math.unit(1, "mm")
  34429. },
  34430. {
  34431. name: "Micro",
  34432. height: math.unit(1, "inch")
  34433. },
  34434. {
  34435. name: "Normal",
  34436. height: math.unit(4 + 5/12, "feet"),
  34437. default: true
  34438. },
  34439. {
  34440. name: "Macro",
  34441. height: math.unit(200, "feet")
  34442. },
  34443. {
  34444. name: "Megamacro",
  34445. height: math.unit(3240, "feet")
  34446. },
  34447. {
  34448. name: "Teramacro",
  34449. height: math.unit(2500, "miles")
  34450. },
  34451. ]
  34452. ))
  34453. characterMakers.push(() => makeCharacter(
  34454. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34455. {
  34456. front: {
  34457. height: math.unit(15 + 7/12, "feet"),
  34458. weight: math.unit(1150, "tons"),
  34459. name: "Front",
  34460. image: {
  34461. source: "./media/characters/saphinara/front.svg",
  34462. extra: 1837/1643,
  34463. bottom: 84/1921
  34464. },
  34465. form: "normal",
  34466. default: true
  34467. },
  34468. side: {
  34469. height: math.unit(15 + 7/12, "feet"),
  34470. weight: math.unit(1150, "tons"),
  34471. name: "Side",
  34472. image: {
  34473. source: "./media/characters/saphinara/side.svg",
  34474. extra: 605/547,
  34475. bottom: 6/611
  34476. },
  34477. form: "normal"
  34478. },
  34479. back: {
  34480. height: math.unit(15 + 7/12, "feet"),
  34481. weight: math.unit(1150, "tons"),
  34482. name: "Back",
  34483. image: {
  34484. source: "./media/characters/saphinara/back.svg",
  34485. extra: 591/531,
  34486. bottom: 13/604
  34487. },
  34488. form: "normal"
  34489. },
  34490. frontTail: {
  34491. height: math.unit(15 + 7/12, "feet"),
  34492. weight: math.unit(1150, "tons"),
  34493. name: "Front (Full Tail)",
  34494. image: {
  34495. source: "./media/characters/saphinara/front-tail.svg",
  34496. extra: 2256/1630,
  34497. bottom: 261/2517
  34498. },
  34499. form: "normal"
  34500. },
  34501. insides: {
  34502. height: math.unit(11.92, "feet"),
  34503. name: "Insides",
  34504. image: {
  34505. source: "./media/characters/saphinara/insides.svg"
  34506. },
  34507. form: "normal"
  34508. },
  34509. head: {
  34510. height: math.unit(4.17, "feet"),
  34511. name: "Head",
  34512. image: {
  34513. source: "./media/characters/saphinara/head.svg"
  34514. },
  34515. form: "normal"
  34516. },
  34517. tongue: {
  34518. height: math.unit(4.60, "feet"),
  34519. name: "Tongue",
  34520. image: {
  34521. source: "./media/characters/saphinara/tongue.svg"
  34522. },
  34523. form: "normal"
  34524. },
  34525. headEnraged: {
  34526. height: math.unit(5.55, "feet"),
  34527. name: "Head (Enraged)",
  34528. image: {
  34529. source: "./media/characters/saphinara/head-enraged.svg"
  34530. },
  34531. form: "normal"
  34532. },
  34533. wings: {
  34534. height: math.unit(11.95, "feet"),
  34535. name: "Wings",
  34536. image: {
  34537. source: "./media/characters/saphinara/wings.svg"
  34538. },
  34539. form: "normal"
  34540. },
  34541. feathers: {
  34542. height: math.unit(8.92, "feet"),
  34543. name: "Feathers",
  34544. image: {
  34545. source: "./media/characters/saphinara/feathers.svg"
  34546. },
  34547. form: "normal"
  34548. },
  34549. shackles: {
  34550. height: math.unit(2, "feet"),
  34551. name: "Shackles",
  34552. image: {
  34553. source: "./media/characters/saphinara/shackles.svg"
  34554. },
  34555. form: "normal"
  34556. },
  34557. eyes: {
  34558. height: math.unit(1.331, "feet"),
  34559. name: "Eyes",
  34560. image: {
  34561. source: "./media/characters/saphinara/eyes.svg"
  34562. },
  34563. form: "normal"
  34564. },
  34565. eyesEnraged: {
  34566. height: math.unit(1.331, "feet"),
  34567. name: "Eyes (Enraged)",
  34568. image: {
  34569. source: "./media/characters/saphinara/eyes-enraged.svg"
  34570. },
  34571. form: "normal"
  34572. },
  34573. trueFormSide: {
  34574. height: math.unit(200, "feet"),
  34575. weight: math.unit(1e7, "tons"),
  34576. name: "Side",
  34577. image: {
  34578. source: "./media/characters/saphinara/true-form-side.svg",
  34579. extra: 1399/770,
  34580. bottom: 97/1496
  34581. },
  34582. form: "true-form",
  34583. default: true
  34584. },
  34585. trueFormMaw: {
  34586. height: math.unit(71.5, "feet"),
  34587. name: "Maw",
  34588. image: {
  34589. source: "./media/characters/saphinara/true-form-maw.svg",
  34590. extra: 2302/1453,
  34591. bottom: 0/2302
  34592. },
  34593. form: "true-form"
  34594. },
  34595. meowberusSide: {
  34596. height: math.unit(75, "feet"),
  34597. weight: math.unit(180000, "kg"),
  34598. preyCapacity: math.unit(50000, "people"),
  34599. name: "Side",
  34600. image: {
  34601. source: "./media/characters/saphinara/meowberus-side.svg",
  34602. extra: 1400/711,
  34603. bottom: 126/1526
  34604. },
  34605. form: "meowberus",
  34606. extraAttributes: {
  34607. "pawArea": {
  34608. name: "Paw Size",
  34609. power: 2,
  34610. type: "area",
  34611. base: math.unit(35, "m^2")
  34612. }
  34613. }
  34614. },
  34615. },
  34616. [
  34617. {
  34618. name: "Normal",
  34619. height: math.unit(15 + 7/12, "feet"),
  34620. default: true,
  34621. form: "normal"
  34622. },
  34623. {
  34624. name: "Angry",
  34625. height: math.unit(30 + 6/12, "feet"),
  34626. form: "normal"
  34627. },
  34628. {
  34629. name: "Enraged",
  34630. height: math.unit(102 + 1/12, "feet"),
  34631. form: "normal"
  34632. },
  34633. {
  34634. name: "True",
  34635. height: math.unit(200, "feet"),
  34636. default: true,
  34637. form: "true-form"
  34638. },
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(75, "feet"),
  34642. default: true,
  34643. form: "meowberus"
  34644. },
  34645. ],
  34646. {
  34647. "normal": {
  34648. name: "Normal",
  34649. default: true
  34650. },
  34651. "true-form": {
  34652. name: "True Form"
  34653. },
  34654. "meowberus": {
  34655. name: "Meowberus",
  34656. },
  34657. }
  34658. ))
  34659. characterMakers.push(() => makeCharacter(
  34660. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34661. {
  34662. front: {
  34663. height: math.unit(6 + 8/12, "feet"),
  34664. weight: math.unit(300, "lb"),
  34665. name: "Front",
  34666. image: {
  34667. source: "./media/characters/jrain/front.svg",
  34668. extra: 3039/2865,
  34669. bottom: 399/3438
  34670. }
  34671. },
  34672. back: {
  34673. height: math.unit(6 + 8/12, "feet"),
  34674. weight: math.unit(300, "lb"),
  34675. name: "Back",
  34676. image: {
  34677. source: "./media/characters/jrain/back.svg",
  34678. extra: 3089/2938,
  34679. bottom: 172/3261
  34680. }
  34681. },
  34682. head: {
  34683. height: math.unit(2.14, "feet"),
  34684. name: "Head",
  34685. image: {
  34686. source: "./media/characters/jrain/head.svg"
  34687. }
  34688. },
  34689. maw: {
  34690. height: math.unit(1.77, "feet"),
  34691. name: "Maw",
  34692. image: {
  34693. source: "./media/characters/jrain/maw.svg"
  34694. }
  34695. },
  34696. leftHand: {
  34697. height: math.unit(1.1, "feet"),
  34698. name: "Left Hand",
  34699. image: {
  34700. source: "./media/characters/jrain/left-hand.svg"
  34701. }
  34702. },
  34703. rightHand: {
  34704. height: math.unit(1.1, "feet"),
  34705. name: "Right Hand",
  34706. image: {
  34707. source: "./media/characters/jrain/right-hand.svg"
  34708. }
  34709. },
  34710. eye: {
  34711. height: math.unit(0.35, "feet"),
  34712. name: "Eye",
  34713. image: {
  34714. source: "./media/characters/jrain/eye.svg"
  34715. }
  34716. },
  34717. },
  34718. [
  34719. {
  34720. name: "Normal",
  34721. height: math.unit(6 + 8/12, "feet"),
  34722. default: true
  34723. },
  34724. {
  34725. name: "Casually Large",
  34726. height: math.unit(25, "feet")
  34727. },
  34728. {
  34729. name: "Giant",
  34730. height: math.unit(100, "feet")
  34731. },
  34732. {
  34733. name: "Kaiju",
  34734. height: math.unit(300, "feet")
  34735. },
  34736. ]
  34737. ))
  34738. characterMakers.push(() => makeCharacter(
  34739. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34740. {
  34741. dragon: {
  34742. height: math.unit(5, "meters"),
  34743. name: "Dragon",
  34744. image: {
  34745. source: "./media/characters/sabrina/dragon.svg",
  34746. extra: 3670 / 2365,
  34747. bottom: 333 / 4003
  34748. }
  34749. },
  34750. gryphon: {
  34751. height: math.unit(3, "meters"),
  34752. name: "Gryphon",
  34753. image: {
  34754. source: "./media/characters/sabrina/gryphon.svg",
  34755. extra: 1576 / 945,
  34756. bottom: 71 / 1647
  34757. }
  34758. },
  34759. snake: {
  34760. height: math.unit(12, "meters"),
  34761. name: "Snake",
  34762. image: {
  34763. source: "./media/characters/sabrina/snake.svg",
  34764. extra: 1758 / 1320,
  34765. bottom: 186 / 1944
  34766. }
  34767. },
  34768. collar: {
  34769. height: math.unit(1.86, "meters"),
  34770. name: "Collar",
  34771. image: {
  34772. source: "./media/characters/sabrina/collar.svg"
  34773. }
  34774. },
  34775. eye: {
  34776. height: math.unit(0.53, "meters"),
  34777. name: "Eye",
  34778. image: {
  34779. source: "./media/characters/sabrina/eye.svg"
  34780. }
  34781. },
  34782. foot: {
  34783. height: math.unit(1.86, "meters"),
  34784. name: "Foot",
  34785. image: {
  34786. source: "./media/characters/sabrina/foot.svg"
  34787. }
  34788. },
  34789. hand: {
  34790. height: math.unit(1.32, "meters"),
  34791. name: "Hand",
  34792. image: {
  34793. source: "./media/characters/sabrina/hand.svg"
  34794. }
  34795. },
  34796. head: {
  34797. height: math.unit(2.44, "meters"),
  34798. name: "Head",
  34799. image: {
  34800. source: "./media/characters/sabrina/head.svg"
  34801. }
  34802. },
  34803. headAngry: {
  34804. height: math.unit(2.44, "meters"),
  34805. name: "Head (Angry))",
  34806. image: {
  34807. source: "./media/characters/sabrina/head-angry.svg"
  34808. }
  34809. },
  34810. maw: {
  34811. height: math.unit(1.65, "meters"),
  34812. name: "Maw",
  34813. image: {
  34814. source: "./media/characters/sabrina/maw.svg"
  34815. }
  34816. },
  34817. spikes: {
  34818. height: math.unit(1.69, "meters"),
  34819. name: "Spikes",
  34820. image: {
  34821. source: "./media/characters/sabrina/spikes.svg"
  34822. }
  34823. },
  34824. stomach: {
  34825. height: math.unit(1.15, "meters"),
  34826. name: "Stomach",
  34827. image: {
  34828. source: "./media/characters/sabrina/stomach.svg"
  34829. }
  34830. },
  34831. tongue: {
  34832. height: math.unit(1.27, "meters"),
  34833. name: "Tongue",
  34834. image: {
  34835. source: "./media/characters/sabrina/tongue.svg"
  34836. }
  34837. },
  34838. wingDorsal: {
  34839. height: math.unit(4.85, "meters"),
  34840. name: "Wing (Dorsal)",
  34841. image: {
  34842. source: "./media/characters/sabrina/wing-dorsal.svg"
  34843. }
  34844. },
  34845. wingVentral: {
  34846. height: math.unit(4.85, "meters"),
  34847. name: "Wing (Ventral)",
  34848. image: {
  34849. source: "./media/characters/sabrina/wing-ventral.svg"
  34850. }
  34851. },
  34852. },
  34853. [
  34854. {
  34855. name: "Normal",
  34856. height: math.unit(5, "meters"),
  34857. default: true
  34858. },
  34859. ]
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34863. {
  34864. frontMaid: {
  34865. height: math.unit(5 + 5/12, "feet"),
  34866. weight: math.unit(130, "lb"),
  34867. name: "Front (Maid)",
  34868. image: {
  34869. source: "./media/characters/midnight-tales/front-maid.svg",
  34870. extra: 489/454,
  34871. bottom: 61/550
  34872. }
  34873. },
  34874. frontFormal: {
  34875. height: math.unit(5 + 5/12, "feet"),
  34876. weight: math.unit(130, "lb"),
  34877. name: "Front (Formal)",
  34878. image: {
  34879. source: "./media/characters/midnight-tales/front-formal.svg",
  34880. extra: 489/454,
  34881. bottom: 61/550
  34882. }
  34883. },
  34884. back: {
  34885. height: math.unit(5 + 5/12, "feet"),
  34886. weight: math.unit(130, "lb"),
  34887. name: "Back",
  34888. image: {
  34889. source: "./media/characters/midnight-tales/back.svg",
  34890. extra: 498/456,
  34891. bottom: 33/531
  34892. }
  34893. },
  34894. frontBeast: {
  34895. height: math.unit(40, "feet"),
  34896. weight: math.unit(64000, "lb"),
  34897. name: "Front (Beast)",
  34898. image: {
  34899. source: "./media/characters/midnight-tales/front-beast.svg",
  34900. extra: 927/860,
  34901. bottom: 53/980
  34902. }
  34903. },
  34904. backBeast: {
  34905. height: math.unit(40, "feet"),
  34906. weight: math.unit(64000, "lb"),
  34907. name: "Back (Beast)",
  34908. image: {
  34909. source: "./media/characters/midnight-tales/back-beast.svg",
  34910. extra: 929/855,
  34911. bottom: 16/945
  34912. }
  34913. },
  34914. footBeast: {
  34915. height: math.unit(6.7, "feet"),
  34916. name: "Foot (Beast)",
  34917. image: {
  34918. source: "./media/characters/midnight-tales/foot-beast.svg"
  34919. }
  34920. },
  34921. headBeast: {
  34922. height: math.unit(8, "feet"),
  34923. name: "Head (Beast)",
  34924. image: {
  34925. source: "./media/characters/midnight-tales/head-beast.svg"
  34926. }
  34927. },
  34928. },
  34929. [
  34930. {
  34931. name: "Normal",
  34932. height: math.unit(5 + 5 / 12, "feet"),
  34933. default: true
  34934. },
  34935. {
  34936. name: "Macro",
  34937. height: math.unit(25, "feet")
  34938. },
  34939. ]
  34940. ))
  34941. characterMakers.push(() => makeCharacter(
  34942. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34943. {
  34944. front: {
  34945. height: math.unit(5 + 10/12, "feet"),
  34946. name: "Front",
  34947. image: {
  34948. source: "./media/characters/argon/front.svg",
  34949. extra: 2009/1935,
  34950. bottom: 118/2127
  34951. }
  34952. },
  34953. back: {
  34954. height: math.unit(5 + 10/12, "feet"),
  34955. name: "Back",
  34956. image: {
  34957. source: "./media/characters/argon/back.svg",
  34958. extra: 2047/1992,
  34959. bottom: 20/2067
  34960. }
  34961. },
  34962. frontDressed: {
  34963. height: math.unit(5 + 10/12, "feet"),
  34964. name: "Front (Dressed)",
  34965. image: {
  34966. source: "./media/characters/argon/front-dressed.svg",
  34967. extra: 2009/1935,
  34968. bottom: 118/2127
  34969. }
  34970. },
  34971. },
  34972. [
  34973. {
  34974. name: "Normal",
  34975. height: math.unit(5 + 10/12, "feet"),
  34976. default: true
  34977. },
  34978. ]
  34979. ))
  34980. characterMakers.push(() => makeCharacter(
  34981. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34982. {
  34983. front: {
  34984. height: math.unit(8 + 6/12, "feet"),
  34985. weight: math.unit(1150, "lb"),
  34986. name: "Front",
  34987. image: {
  34988. source: "./media/characters/kichi/front.svg",
  34989. extra: 1267/1164,
  34990. bottom: 61/1328
  34991. }
  34992. },
  34993. back: {
  34994. height: math.unit(8 + 6/12, "feet"),
  34995. weight: math.unit(1150, "lb"),
  34996. name: "Back",
  34997. image: {
  34998. source: "./media/characters/kichi/back.svg",
  34999. extra: 1273/1166,
  35000. bottom: 33/1306
  35001. }
  35002. },
  35003. },
  35004. [
  35005. {
  35006. name: "Normal",
  35007. height: math.unit(8 + 6/12, "feet"),
  35008. default: true
  35009. },
  35010. ]
  35011. ))
  35012. characterMakers.push(() => makeCharacter(
  35013. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35014. {
  35015. front: {
  35016. height: math.unit(6, "feet"),
  35017. weight: math.unit(210, "lb"),
  35018. name: "Front",
  35019. image: {
  35020. source: "./media/characters/manetel-greyscale/front.svg",
  35021. extra: 350/312,
  35022. bottom: 8/358
  35023. }
  35024. },
  35025. },
  35026. [
  35027. {
  35028. name: "Micro",
  35029. height: math.unit(2, "inches")
  35030. },
  35031. {
  35032. name: "Normal",
  35033. height: math.unit(6, "feet"),
  35034. default: true
  35035. },
  35036. {
  35037. name: "Minimacro",
  35038. height: math.unit(17, "feet")
  35039. },
  35040. {
  35041. name: "Macro",
  35042. height: math.unit(117, "feet")
  35043. },
  35044. ]
  35045. ))
  35046. characterMakers.push(() => makeCharacter(
  35047. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35048. {
  35049. side: {
  35050. height: math.unit(5 + 1/12, "feet"),
  35051. weight: math.unit(418, "lb"),
  35052. name: "Side",
  35053. image: {
  35054. source: "./media/characters/softpurr/side.svg",
  35055. extra: 1993/1945,
  35056. bottom: 134/2127
  35057. }
  35058. },
  35059. front: {
  35060. height: math.unit(5 + 1/12, "feet"),
  35061. weight: math.unit(418, "lb"),
  35062. name: "Front",
  35063. image: {
  35064. source: "./media/characters/softpurr/front.svg",
  35065. extra: 1950/1856,
  35066. bottom: 174/2124
  35067. }
  35068. },
  35069. paw: {
  35070. height: math.unit(1, "feet"),
  35071. name: "Paw",
  35072. image: {
  35073. source: "./media/characters/softpurr/paw.svg"
  35074. }
  35075. },
  35076. },
  35077. [
  35078. {
  35079. name: "Normal",
  35080. height: math.unit(5 + 1/12, "feet"),
  35081. default: true
  35082. },
  35083. ]
  35084. ))
  35085. characterMakers.push(() => makeCharacter(
  35086. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35087. {
  35088. front: {
  35089. height: math.unit(260, "meters"),
  35090. name: "Front",
  35091. image: {
  35092. source: "./media/characters/anahita/front.svg",
  35093. extra: 665/635,
  35094. bottom: 89/754
  35095. }
  35096. },
  35097. },
  35098. [
  35099. {
  35100. name: "Macro",
  35101. height: math.unit(260, "meters"),
  35102. default: true
  35103. },
  35104. ]
  35105. ))
  35106. characterMakers.push(() => makeCharacter(
  35107. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35108. {
  35109. front: {
  35110. height: math.unit(4 + 10/12, "feet"),
  35111. weight: math.unit(160, "lb"),
  35112. name: "Front",
  35113. image: {
  35114. source: "./media/characters/chip-mouse/front.svg",
  35115. extra: 3528/3408,
  35116. bottom: 0/3528
  35117. }
  35118. },
  35119. frontNsfw: {
  35120. height: math.unit(4 + 10/12, "feet"),
  35121. weight: math.unit(160, "lb"),
  35122. name: "Front (NSFW)",
  35123. image: {
  35124. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35125. extra: 3528/3408,
  35126. bottom: 0/3528
  35127. }
  35128. },
  35129. },
  35130. [
  35131. {
  35132. name: "Normal",
  35133. height: math.unit(4 + 10/12, "feet"),
  35134. default: true
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35140. {
  35141. side: {
  35142. height: math.unit(10, "feet"),
  35143. weight: math.unit(14000, "lb"),
  35144. name: "Side",
  35145. image: {
  35146. source: "./media/characters/kremm/side.svg",
  35147. extra: 1390/1053,
  35148. bottom: 90/1480
  35149. }
  35150. },
  35151. gut: {
  35152. height: math.unit(5.8, "feet"),
  35153. name: "Gut",
  35154. image: {
  35155. source: "./media/characters/kremm/gut.svg"
  35156. }
  35157. },
  35158. ass: {
  35159. height: math.unit(6.1, "feet"),
  35160. name: "Ass",
  35161. image: {
  35162. source: "./media/characters/kremm/ass.svg"
  35163. }
  35164. },
  35165. jaws: {
  35166. height: math.unit(2.2, "feet"),
  35167. name: "Jaws",
  35168. image: {
  35169. source: "./media/characters/kremm/jaws.svg"
  35170. }
  35171. },
  35172. dick: {
  35173. height: math.unit(4.26, "feet"),
  35174. name: "Dick",
  35175. image: {
  35176. source: "./media/characters/kremm/dick.svg"
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Normal",
  35183. height: math.unit(10, "feet"),
  35184. default: true
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35190. {
  35191. front: {
  35192. height: math.unit(30, "stories"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/kai/front.svg",
  35196. extra: 1892/1718,
  35197. bottom: 162/2054
  35198. }
  35199. },
  35200. },
  35201. [
  35202. {
  35203. name: "Macro",
  35204. height: math.unit(30, "stories"),
  35205. default: true
  35206. },
  35207. ]
  35208. ))
  35209. characterMakers.push(() => makeCharacter(
  35210. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35211. {
  35212. front: {
  35213. height: math.unit(6 + 4/12, "feet"),
  35214. weight: math.unit(145, "lb"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/sykes/front.svg",
  35218. extra: 1321 / 1187,
  35219. bottom: 66 / 1387
  35220. }
  35221. },
  35222. back: {
  35223. height: math.unit(6 + 4/12, "feet"),
  35224. weight: math.unit(145, "lb"),
  35225. name: "Back",
  35226. image: {
  35227. source: "./media/characters/sykes/back.svg",
  35228. extra: 1326/1181,
  35229. bottom: 31/1357
  35230. }
  35231. },
  35232. traditionalOutfit: {
  35233. height: math.unit(6 + 4/12, "feet"),
  35234. weight: math.unit(145, "lb"),
  35235. name: "Traditional Outfit",
  35236. image: {
  35237. source: "./media/characters/sykes/traditional-outfit.svg",
  35238. extra: 1321 / 1187,
  35239. bottom: 66 / 1387
  35240. }
  35241. },
  35242. adventureOutfit: {
  35243. height: math.unit(6 + 4/12, "feet"),
  35244. weight: math.unit(145, "lb"),
  35245. name: "Adventure Outfit",
  35246. image: {
  35247. source: "./media/characters/sykes/adventure-outfit.svg",
  35248. extra: 1321 / 1187,
  35249. bottom: 66 / 1387
  35250. }
  35251. },
  35252. handLeft: {
  35253. height: math.unit(0.9, "feet"),
  35254. name: "Hand (Left)",
  35255. image: {
  35256. source: "./media/characters/sykes/hand-left.svg"
  35257. }
  35258. },
  35259. handRight: {
  35260. height: math.unit(0.839, "feet"),
  35261. name: "Hand (Right)",
  35262. image: {
  35263. source: "./media/characters/sykes/hand-right.svg"
  35264. }
  35265. },
  35266. leftFoot: {
  35267. height: math.unit(1.2, "feet"),
  35268. name: "Foot (Left)",
  35269. image: {
  35270. source: "./media/characters/sykes/foot-left.svg"
  35271. }
  35272. },
  35273. rightFoot: {
  35274. height: math.unit(1.2, "feet"),
  35275. name: "Foot (Right)",
  35276. image: {
  35277. source: "./media/characters/sykes/foot-right.svg"
  35278. }
  35279. },
  35280. maw: {
  35281. height: math.unit(1.93, "feet"),
  35282. name: "Maw",
  35283. image: {
  35284. source: "./media/characters/sykes/maw.svg"
  35285. }
  35286. },
  35287. teeth: {
  35288. height: math.unit(0.51, "feet"),
  35289. name: "Teeth",
  35290. image: {
  35291. source: "./media/characters/sykes/teeth.svg"
  35292. }
  35293. },
  35294. tongue: {
  35295. height: math.unit(2.13, "feet"),
  35296. name: "Tongue",
  35297. image: {
  35298. source: "./media/characters/sykes/tongue.svg"
  35299. }
  35300. },
  35301. uvula: {
  35302. height: math.unit(0.16, "feet"),
  35303. name: "Uvula",
  35304. image: {
  35305. source: "./media/characters/sykes/uvula.svg"
  35306. }
  35307. },
  35308. collar: {
  35309. height: math.unit(0.287, "feet"),
  35310. name: "Collar",
  35311. image: {
  35312. source: "./media/characters/sykes/collar.svg"
  35313. }
  35314. },
  35315. tail: {
  35316. height: math.unit(3.8, "feet"),
  35317. name: "Tail",
  35318. image: {
  35319. source: "./media/characters/sykes/tail.svg"
  35320. }
  35321. },
  35322. },
  35323. [
  35324. {
  35325. name: "Shrunken",
  35326. height: math.unit(5, "inches")
  35327. },
  35328. {
  35329. name: "Normal",
  35330. height: math.unit(6 + 4 / 12, "feet"),
  35331. default: true
  35332. },
  35333. {
  35334. name: "Big",
  35335. height: math.unit(15, "feet")
  35336. },
  35337. ]
  35338. ))
  35339. characterMakers.push(() => makeCharacter(
  35340. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35341. {
  35342. front: {
  35343. height: math.unit(5 + 8/12, "feet"),
  35344. weight: math.unit(190, "lb"),
  35345. name: "Front",
  35346. image: {
  35347. source: "./media/characters/oven-otter/front.svg",
  35348. extra: 1809/1740,
  35349. bottom: 181/1990
  35350. }
  35351. },
  35352. back: {
  35353. height: math.unit(5 + 8/12, "feet"),
  35354. weight: math.unit(190, "lb"),
  35355. name: "Back",
  35356. image: {
  35357. source: "./media/characters/oven-otter/back.svg",
  35358. extra: 1709/1635,
  35359. bottom: 118/1827
  35360. }
  35361. },
  35362. hand: {
  35363. height: math.unit(1.07, "feet"),
  35364. name: "Hand",
  35365. image: {
  35366. source: "./media/characters/oven-otter/hand.svg"
  35367. }
  35368. },
  35369. beans: {
  35370. height: math.unit(1.74, "feet"),
  35371. name: "Beans",
  35372. image: {
  35373. source: "./media/characters/oven-otter/beans.svg"
  35374. }
  35375. },
  35376. },
  35377. [
  35378. {
  35379. name: "Micro",
  35380. height: math.unit(0.5, "inches")
  35381. },
  35382. {
  35383. name: "Normal",
  35384. height: math.unit(5 + 8/12, "feet"),
  35385. default: true
  35386. },
  35387. {
  35388. name: "Macro",
  35389. height: math.unit(250, "feet")
  35390. },
  35391. {
  35392. name: "Really High",
  35393. height: math.unit(420, "feet")
  35394. },
  35395. ]
  35396. ))
  35397. characterMakers.push(() => makeCharacter(
  35398. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35399. {
  35400. front: {
  35401. height: math.unit(5, "meters"),
  35402. weight: math.unit(292000000000000, "kg"),
  35403. name: "Front",
  35404. image: {
  35405. source: "./media/characters/devourer/front.svg",
  35406. extra: 1800/1733,
  35407. bottom: 211/2011
  35408. }
  35409. },
  35410. maw: {
  35411. height: math.unit(1.1, "meter"),
  35412. name: "Maw",
  35413. image: {
  35414. source: "./media/characters/devourer/maw.svg"
  35415. }
  35416. },
  35417. },
  35418. [
  35419. {
  35420. name: "Small",
  35421. height: math.unit(3, "meters")
  35422. },
  35423. {
  35424. name: "Large",
  35425. height: math.unit(5, "meters"),
  35426. default: true
  35427. },
  35428. ]
  35429. ))
  35430. characterMakers.push(() => makeCharacter(
  35431. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35432. {
  35433. front: {
  35434. height: math.unit(6, "feet"),
  35435. weight: math.unit(400, "lb"),
  35436. name: "Front",
  35437. image: {
  35438. source: "./media/characters/ellarby/front.svg",
  35439. extra: 1909/1763,
  35440. bottom: 80/1989
  35441. }
  35442. },
  35443. back: {
  35444. height: math.unit(6, "feet"),
  35445. weight: math.unit(400, "lb"),
  35446. name: "Back",
  35447. image: {
  35448. source: "./media/characters/ellarby/back.svg",
  35449. extra: 1914/1784,
  35450. bottom: 172/2086
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Mischief",
  35457. height: math.unit(18, "inches")
  35458. },
  35459. {
  35460. name: "Trouble",
  35461. height: math.unit(12, "feet")
  35462. },
  35463. {
  35464. name: "Havoc",
  35465. height: math.unit(200, "feet"),
  35466. default: true
  35467. },
  35468. {
  35469. name: "Pandemonium",
  35470. height: math.unit(1, "mile")
  35471. },
  35472. {
  35473. name: "Catastrophe",
  35474. height: math.unit(100, "miles")
  35475. },
  35476. ]
  35477. ))
  35478. characterMakers.push(() => makeCharacter(
  35479. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35480. {
  35481. front: {
  35482. height: math.unit(4.7, "meters"),
  35483. weight: math.unit(6500, "kg"),
  35484. name: "Front",
  35485. image: {
  35486. source: "./media/characters/vex/front.svg",
  35487. extra: 1288/1140,
  35488. bottom: 100/1388
  35489. }
  35490. },
  35491. },
  35492. [
  35493. {
  35494. name: "Normal",
  35495. height: math.unit(4.7, "meters"),
  35496. default: true
  35497. },
  35498. ]
  35499. ))
  35500. characterMakers.push(() => makeCharacter(
  35501. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35502. {
  35503. normal: {
  35504. height: math.unit(6, "feet"),
  35505. weight: math.unit(350, "lb"),
  35506. name: "Normal",
  35507. image: {
  35508. source: "./media/characters/teshy/normal.svg",
  35509. extra: 1795/1735,
  35510. bottom: 16/1811
  35511. }
  35512. },
  35513. monsterFront: {
  35514. height: math.unit(12, "feet"),
  35515. weight: math.unit(4700, "lb"),
  35516. name: "Monster (Front)",
  35517. image: {
  35518. source: "./media/characters/teshy/monster-front.svg",
  35519. extra: 2042/2034,
  35520. bottom: 128/2170
  35521. }
  35522. },
  35523. monsterSide: {
  35524. height: math.unit(12, "feet"),
  35525. weight: math.unit(4700, "lb"),
  35526. name: "Monster (Side)",
  35527. image: {
  35528. source: "./media/characters/teshy/monster-side.svg",
  35529. extra: 2067/2056,
  35530. bottom: 70/2137
  35531. }
  35532. },
  35533. monsterBack: {
  35534. height: math.unit(12, "feet"),
  35535. weight: math.unit(4700, "lb"),
  35536. name: "Monster (Back)",
  35537. image: {
  35538. source: "./media/characters/teshy/monster-back.svg",
  35539. extra: 1921/1914,
  35540. bottom: 171/2092
  35541. }
  35542. },
  35543. },
  35544. [
  35545. {
  35546. name: "Normal",
  35547. height: math.unit(6, "feet"),
  35548. default: true
  35549. },
  35550. ]
  35551. ))
  35552. characterMakers.push(() => makeCharacter(
  35553. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35554. {
  35555. front: {
  35556. height: math.unit(6, "feet"),
  35557. name: "Front",
  35558. image: {
  35559. source: "./media/characters/ramey/front.svg",
  35560. extra: 790/787,
  35561. bottom: 27/817
  35562. }
  35563. },
  35564. },
  35565. [
  35566. {
  35567. name: "Normal",
  35568. height: math.unit(6, "feet"),
  35569. default: true
  35570. },
  35571. ]
  35572. ))
  35573. characterMakers.push(() => makeCharacter(
  35574. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35575. {
  35576. front: {
  35577. height: math.unit(5 + 5/12, "feet"),
  35578. weight: math.unit(120, "lb"),
  35579. name: "Front",
  35580. image: {
  35581. source: "./media/characters/phirae/front.svg",
  35582. extra: 2491/2436,
  35583. bottom: 38/2529
  35584. }
  35585. },
  35586. },
  35587. [
  35588. {
  35589. name: "Normal",
  35590. height: math.unit(5 + 5/12, "feet"),
  35591. default: true
  35592. },
  35593. ]
  35594. ))
  35595. characterMakers.push(() => makeCharacter(
  35596. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35597. {
  35598. front: {
  35599. height: math.unit(5 + 3/12, "feet"),
  35600. name: "Front",
  35601. image: {
  35602. source: "./media/characters/stagglas/front.svg",
  35603. extra: 962/882,
  35604. bottom: 53/1015
  35605. }
  35606. },
  35607. feral: {
  35608. height: math.unit(335, "cm"),
  35609. name: "Feral",
  35610. image: {
  35611. source: "./media/characters/stagglas/feral.svg",
  35612. extra: 1732/1090,
  35613. bottom: 48/1780
  35614. }
  35615. },
  35616. },
  35617. [
  35618. {
  35619. name: "Normal",
  35620. height: math.unit(5 + 3/12, "feet"),
  35621. default: true
  35622. },
  35623. ]
  35624. ))
  35625. characterMakers.push(() => makeCharacter(
  35626. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35627. {
  35628. front: {
  35629. height: math.unit(5 + 4/12, "feet"),
  35630. weight: math.unit(145, "lb"),
  35631. name: "Front",
  35632. image: {
  35633. source: "./media/characters/starra/front.svg",
  35634. extra: 1790/1691,
  35635. bottom: 91/1881
  35636. }
  35637. },
  35638. },
  35639. [
  35640. {
  35641. name: "Normal",
  35642. height: math.unit(5 + 4/12, "feet"),
  35643. default: true
  35644. },
  35645. ]
  35646. ))
  35647. characterMakers.push(() => makeCharacter(
  35648. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35649. {
  35650. front: {
  35651. height: math.unit(2.2, "meters"),
  35652. name: "Front",
  35653. image: {
  35654. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35655. extra: 1194/1005,
  35656. bottom: 25/1219
  35657. }
  35658. },
  35659. },
  35660. [
  35661. {
  35662. name: "Normal",
  35663. height: math.unit(2.2, "meters"),
  35664. default: true
  35665. },
  35666. ]
  35667. ))
  35668. characterMakers.push(() => makeCharacter(
  35669. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35670. {
  35671. side: {
  35672. height: math.unit(8 + 2/12, "feet"),
  35673. weight: math.unit(1240, "lb"),
  35674. name: "Side",
  35675. image: {
  35676. source: "./media/characters/mika-valentine/side.svg",
  35677. extra: 2670/2501,
  35678. bottom: 250/2920
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Normal",
  35685. height: math.unit(8 + 2/12, "feet"),
  35686. default: true
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35692. {
  35693. front: {
  35694. height: math.unit(7 + 2/12, "feet"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/xoltol/front.svg",
  35698. extra: 2212/2124,
  35699. bottom: 84/2296
  35700. }
  35701. },
  35702. side: {
  35703. height: math.unit(7 + 2/12, "feet"),
  35704. name: "Side",
  35705. image: {
  35706. source: "./media/characters/xoltol/side.svg",
  35707. extra: 2273/2197,
  35708. bottom: 26/2299
  35709. }
  35710. },
  35711. hand: {
  35712. height: math.unit(2.5, "feet"),
  35713. name: "Hand",
  35714. image: {
  35715. source: "./media/characters/xoltol/hand.svg"
  35716. }
  35717. },
  35718. },
  35719. [
  35720. {
  35721. name: "Small-ish",
  35722. height: math.unit(5 + 11/12, "feet")
  35723. },
  35724. {
  35725. name: "Normal",
  35726. height: math.unit(7 + 2/12, "feet")
  35727. },
  35728. {
  35729. name: "\"Macro\"",
  35730. height: math.unit(14 + 9/12, "feet"),
  35731. default: true
  35732. },
  35733. {
  35734. name: "Alternate Height",
  35735. height: math.unit(20, "feet")
  35736. },
  35737. {
  35738. name: "Actually Macro",
  35739. height: math.unit(100, "feet")
  35740. },
  35741. ]
  35742. ))
  35743. characterMakers.push(() => makeCharacter(
  35744. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35745. {
  35746. front: {
  35747. height: math.unit(5 + 2/12, "feet"),
  35748. name: "Front",
  35749. image: {
  35750. source: "./media/characters/kotetsu-redwood/front.svg",
  35751. extra: 1053/942,
  35752. bottom: 60/1113
  35753. }
  35754. },
  35755. },
  35756. [
  35757. {
  35758. name: "Normal",
  35759. height: math.unit(5 + 2/12, "feet"),
  35760. default: true
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35766. {
  35767. front: {
  35768. height: math.unit(2.4, "meters"),
  35769. weight: math.unit(125, "kg"),
  35770. name: "Front",
  35771. image: {
  35772. source: "./media/characters/lilith/front.svg",
  35773. extra: 1590/1513,
  35774. bottom: 203/1793
  35775. }
  35776. },
  35777. },
  35778. [
  35779. {
  35780. name: "Humanoid",
  35781. height: math.unit(2.4, "meters")
  35782. },
  35783. {
  35784. name: "Normal",
  35785. height: math.unit(6, "meters"),
  35786. default: true
  35787. },
  35788. {
  35789. name: "Largest",
  35790. height: math.unit(55, "meters")
  35791. },
  35792. ]
  35793. ))
  35794. characterMakers.push(() => makeCharacter(
  35795. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35796. {
  35797. front: {
  35798. height: math.unit(8 + 4/12, "feet"),
  35799. weight: math.unit(535, "lb"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/beh'kah-bolger/front.svg",
  35803. extra: 1660/1603,
  35804. bottom: 37/1697
  35805. }
  35806. },
  35807. },
  35808. [
  35809. {
  35810. name: "Normal",
  35811. height: math.unit(8 + 4/12, "feet"),
  35812. default: true
  35813. },
  35814. {
  35815. name: "Kaiju",
  35816. height: math.unit(250, "feet")
  35817. },
  35818. {
  35819. name: "Still Growing",
  35820. height: math.unit(10, "miles")
  35821. },
  35822. {
  35823. name: "Continental",
  35824. height: math.unit(5000, "miles")
  35825. },
  35826. {
  35827. name: "Final Form",
  35828. height: math.unit(2500000, "miles")
  35829. },
  35830. ]
  35831. ))
  35832. characterMakers.push(() => makeCharacter(
  35833. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35834. {
  35835. front: {
  35836. height: math.unit(7 + 2/12, "feet"),
  35837. weight: math.unit(230, "kg"),
  35838. name: "Front",
  35839. image: {
  35840. source: "./media/characters/tatyana-milewska/front.svg",
  35841. extra: 1199/1150,
  35842. bottom: 86/1285
  35843. }
  35844. },
  35845. },
  35846. [
  35847. {
  35848. name: "Normal",
  35849. height: math.unit(7 + 2/12, "feet"),
  35850. default: true
  35851. },
  35852. {
  35853. name: "Big",
  35854. height: math.unit(12, "feet")
  35855. },
  35856. {
  35857. name: "Minimacro",
  35858. height: math.unit(20, "feet")
  35859. },
  35860. {
  35861. name: "Macro",
  35862. height: math.unit(120, "feet")
  35863. },
  35864. ]
  35865. ))
  35866. characterMakers.push(() => makeCharacter(
  35867. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35868. {
  35869. front: {
  35870. height: math.unit(7 + 8/12, "feet"),
  35871. weight: math.unit(152, "kg"),
  35872. name: "Front",
  35873. image: {
  35874. source: "./media/characters/helen-arri/front.svg",
  35875. extra: 440/423,
  35876. bottom: 14/454
  35877. }
  35878. },
  35879. back: {
  35880. height: math.unit(7 + 8/12, "feet"),
  35881. weight: math.unit(152, "kg"),
  35882. name: "Back",
  35883. image: {
  35884. source: "./media/characters/helen-arri/back.svg",
  35885. extra: 443/426,
  35886. bottom: 8/451
  35887. }
  35888. },
  35889. },
  35890. [
  35891. {
  35892. name: "Normal",
  35893. height: math.unit(7 + 8/12, "feet"),
  35894. default: true
  35895. },
  35896. {
  35897. name: "Big",
  35898. height: math.unit(14, "feet")
  35899. },
  35900. {
  35901. name: "Minimacro",
  35902. height: math.unit(24, "feet")
  35903. },
  35904. {
  35905. name: "Macro",
  35906. height: math.unit(140, "feet")
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35912. {
  35913. front: {
  35914. height: math.unit(6, "meters"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/ehanu-rehu/front.svg",
  35918. extra: 1800/1800,
  35919. bottom: 59/1859
  35920. }
  35921. },
  35922. },
  35923. [
  35924. {
  35925. name: "Normal",
  35926. height: math.unit(6, "meters"),
  35927. default: true
  35928. },
  35929. ]
  35930. ))
  35931. characterMakers.push(() => makeCharacter(
  35932. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35933. {
  35934. front: {
  35935. height: math.unit(7 + 3/12, "feet"),
  35936. name: "Front",
  35937. image: {
  35938. source: "./media/characters/renholder/front.svg",
  35939. extra: 3096/2960,
  35940. bottom: 250/3346
  35941. }
  35942. },
  35943. },
  35944. [
  35945. {
  35946. name: "Normal Bat",
  35947. height: math.unit(7 + 3/12, "feet"),
  35948. default: true
  35949. },
  35950. {
  35951. name: "Slightly Tall Bat",
  35952. height: math.unit(100, "feet")
  35953. },
  35954. {
  35955. name: "Big Bat",
  35956. height: math.unit(1000, "feet")
  35957. },
  35958. {
  35959. name: "City-Sized Bat",
  35960. height: math.unit(200000, "feet")
  35961. },
  35962. {
  35963. name: "Bigger Bat",
  35964. height: math.unit(10000, "miles")
  35965. },
  35966. {
  35967. name: "Solar Sized Bat",
  35968. height: math.unit(100, "AU")
  35969. },
  35970. {
  35971. name: "Galactic Bat",
  35972. height: math.unit(200000, "lightyears")
  35973. },
  35974. {
  35975. name: "Universally Known Bat",
  35976. height: math.unit(1, "universe")
  35977. },
  35978. ]
  35979. ))
  35980. characterMakers.push(() => makeCharacter(
  35981. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35982. {
  35983. front: {
  35984. height: math.unit(6 + 11/12, "feet"),
  35985. weight: math.unit(250, "lb"),
  35986. name: "Front",
  35987. image: {
  35988. source: "./media/characters/cookiecat/front.svg",
  35989. extra: 893/827,
  35990. bottom: 14/907
  35991. }
  35992. },
  35993. },
  35994. [
  35995. {
  35996. name: "Micro",
  35997. height: math.unit(3, "inches")
  35998. },
  35999. {
  36000. name: "Normal",
  36001. height: math.unit(6 + 11/12, "feet"),
  36002. default: true
  36003. },
  36004. {
  36005. name: "Macro",
  36006. height: math.unit(100, "feet")
  36007. },
  36008. {
  36009. name: "Macro+",
  36010. height: math.unit(404, "feet")
  36011. },
  36012. {
  36013. name: "Megamacro",
  36014. height: math.unit(165, "miles")
  36015. },
  36016. {
  36017. name: "Planetary",
  36018. height: math.unit(4600, "miles")
  36019. },
  36020. ]
  36021. ))
  36022. characterMakers.push(() => makeCharacter(
  36023. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36024. {
  36025. front: {
  36026. height: math.unit(10 + 3/12, "feet"),
  36027. weight: math.unit(1500, "lb"),
  36028. name: "Front",
  36029. image: {
  36030. source: "./media/characters/tux-kusanagi/front.svg",
  36031. extra: 944/840,
  36032. bottom: 39/983
  36033. }
  36034. },
  36035. back: {
  36036. height: math.unit(10 + 3/12, "feet"),
  36037. weight: math.unit(1500, "lb"),
  36038. name: "Back",
  36039. image: {
  36040. source: "./media/characters/tux-kusanagi/back.svg",
  36041. extra: 941/842,
  36042. bottom: 28/969
  36043. }
  36044. },
  36045. rump: {
  36046. height: math.unit(5.25, "feet"),
  36047. name: "Rump",
  36048. image: {
  36049. source: "./media/characters/tux-kusanagi/rump.svg"
  36050. }
  36051. },
  36052. beak: {
  36053. height: math.unit(1.54, "feet"),
  36054. name: "Beak",
  36055. image: {
  36056. source: "./media/characters/tux-kusanagi/beak.svg"
  36057. }
  36058. },
  36059. },
  36060. [
  36061. {
  36062. name: "Normal",
  36063. height: math.unit(10 + 3/12, "feet"),
  36064. default: true
  36065. },
  36066. ]
  36067. ))
  36068. characterMakers.push(() => makeCharacter(
  36069. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36070. {
  36071. front: {
  36072. height: math.unit(58, "feet"),
  36073. weight: math.unit(200, "tons"),
  36074. name: "Front",
  36075. image: {
  36076. source: "./media/characters/uzarmazari/front.svg",
  36077. extra: 1575/1455,
  36078. bottom: 152/1727
  36079. }
  36080. },
  36081. back: {
  36082. height: math.unit(58, "feet"),
  36083. weight: math.unit(200, "tons"),
  36084. name: "Back",
  36085. image: {
  36086. source: "./media/characters/uzarmazari/back.svg",
  36087. extra: 1585/1510,
  36088. bottom: 157/1742
  36089. }
  36090. },
  36091. head: {
  36092. height: math.unit(26, "feet"),
  36093. name: "Head",
  36094. image: {
  36095. source: "./media/characters/uzarmazari/head.svg"
  36096. }
  36097. },
  36098. },
  36099. [
  36100. {
  36101. name: "Normal",
  36102. height: math.unit(58, "feet"),
  36103. default: true
  36104. },
  36105. ]
  36106. ))
  36107. characterMakers.push(() => makeCharacter(
  36108. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36109. {
  36110. side: {
  36111. height: math.unit(15, "feet"),
  36112. name: "Side",
  36113. image: {
  36114. source: "./media/characters/akitu/side.svg",
  36115. extra: 1421/1321,
  36116. bottom: 157/1578
  36117. }
  36118. },
  36119. front: {
  36120. height: math.unit(15, "feet"),
  36121. name: "Front",
  36122. image: {
  36123. source: "./media/characters/akitu/front.svg",
  36124. extra: 1435/1326,
  36125. bottom: 232/1667
  36126. }
  36127. },
  36128. },
  36129. [
  36130. {
  36131. name: "Normal",
  36132. height: math.unit(15, "feet"),
  36133. default: true
  36134. },
  36135. ]
  36136. ))
  36137. characterMakers.push(() => makeCharacter(
  36138. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36139. {
  36140. front: {
  36141. height: math.unit(10 + 8/12, "feet"),
  36142. name: "Front",
  36143. image: {
  36144. source: "./media/characters/azalie-croixland/front.svg",
  36145. extra: 1972/1856,
  36146. bottom: 31/2003
  36147. }
  36148. },
  36149. },
  36150. [
  36151. {
  36152. name: "Original Height",
  36153. height: math.unit(5 + 4/12, "feet")
  36154. },
  36155. {
  36156. name: "Normal Height",
  36157. height: math.unit(10 + 8/12, "feet"),
  36158. default: true
  36159. },
  36160. ]
  36161. ))
  36162. characterMakers.push(() => makeCharacter(
  36163. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36164. {
  36165. side: {
  36166. height: math.unit(7 + 1/12, "feet"),
  36167. weight: math.unit(245, "lb"),
  36168. name: "Side",
  36169. image: {
  36170. source: "./media/characters/kavus-kazian/side.svg",
  36171. extra: 349/342,
  36172. bottom: 15/364
  36173. }
  36174. },
  36175. },
  36176. [
  36177. {
  36178. name: "Normal",
  36179. height: math.unit(7 + 1/12, "feet"),
  36180. default: true
  36181. },
  36182. ]
  36183. ))
  36184. characterMakers.push(() => makeCharacter(
  36185. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36186. {
  36187. normalFront: {
  36188. height: math.unit(5 + 11/12, "feet"),
  36189. name: "Front",
  36190. image: {
  36191. source: "./media/characters/moonlight-rose/normal-front.svg",
  36192. extra: 1980/1825,
  36193. bottom: 18/1998
  36194. },
  36195. form: "normal",
  36196. default: true
  36197. },
  36198. normalBack: {
  36199. height: math.unit(5 + 11/12, "feet"),
  36200. name: "Back",
  36201. image: {
  36202. source: "./media/characters/moonlight-rose/normal-back.svg",
  36203. extra: 2010/1839,
  36204. bottom: 10/2020
  36205. },
  36206. form: "normal"
  36207. },
  36208. demonFront: {
  36209. height: math.unit(1.5, "earths"),
  36210. name: "Front",
  36211. image: {
  36212. source: "./media/characters/moonlight-rose/demon.svg",
  36213. extra: 1400/1294,
  36214. bottom: 45/1445
  36215. },
  36216. form: "demon",
  36217. default: true
  36218. },
  36219. terraFront: {
  36220. height: math.unit(1.5, "earths"),
  36221. name: "Front",
  36222. image: {
  36223. source: "./media/characters/moonlight-rose/terra.svg"
  36224. },
  36225. form: "terra",
  36226. default: true
  36227. },
  36228. jupiterFront: {
  36229. height: math.unit(69911*2, "km"),
  36230. name: "Front",
  36231. image: {
  36232. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36233. extra: 1367/1286,
  36234. bottom: 55/1422
  36235. },
  36236. form: "jupiter",
  36237. default: true
  36238. },
  36239. neptuneFront: {
  36240. height: math.unit(24622*2, "feet"),
  36241. name: "Front",
  36242. image: {
  36243. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36244. extra: 1851/1712,
  36245. bottom: 0/1851
  36246. },
  36247. form: "neptune",
  36248. default: true
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "\"Natural\" Height",
  36254. height: math.unit(5 + 11/12, "feet"),
  36255. form: "normal"
  36256. },
  36257. {
  36258. name: "Smallest comfortable size",
  36259. height: math.unit(40, "meters"),
  36260. form: "normal"
  36261. },
  36262. {
  36263. name: "Common size",
  36264. height: math.unit(50, "km"),
  36265. form: "normal",
  36266. default: true
  36267. },
  36268. {
  36269. name: "Normal",
  36270. height: math.unit(1.5, "earths"),
  36271. form: "demon",
  36272. default: true
  36273. },
  36274. {
  36275. name: "Universal",
  36276. height: math.unit(15, "universes"),
  36277. form: "demon"
  36278. },
  36279. {
  36280. name: "Earth",
  36281. height: math.unit(1.5, "earths"),
  36282. form: "terra",
  36283. default: true
  36284. },
  36285. {
  36286. name: "Super Earth",
  36287. height: math.unit(67.5, "earths"),
  36288. form: "terra"
  36289. },
  36290. {
  36291. name: "Doesn't fit in a solar system...",
  36292. height: math.unit(1, "galaxy"),
  36293. form: "terra"
  36294. },
  36295. {
  36296. name: "Saturn",
  36297. height: math.unit(58232*2, "km"),
  36298. form: "jupiter"
  36299. },
  36300. {
  36301. name: "Jupiter",
  36302. height: math.unit(69911*2, "km"),
  36303. form: "jupiter",
  36304. default: true
  36305. },
  36306. {
  36307. name: "HD 100546 b",
  36308. height: math.unit(482938, "km"),
  36309. form: "jupiter"
  36310. },
  36311. {
  36312. name: "Enceladus",
  36313. height: math.unit(513*2, "km"),
  36314. form: "neptune"
  36315. },
  36316. {
  36317. name: "Europe",
  36318. height: math.unit(1560*2, "km"),
  36319. form: "neptune"
  36320. },
  36321. {
  36322. name: "Neptune",
  36323. height: math.unit(24622*2, "km"),
  36324. form: "neptune",
  36325. default: true
  36326. },
  36327. {
  36328. name: "CoRoT-9b",
  36329. height: math.unit(75067*2, "km"),
  36330. form: "neptune"
  36331. },
  36332. ],
  36333. {
  36334. "normal": {
  36335. name: "Normal",
  36336. default: true
  36337. },
  36338. "demon": {
  36339. name: "Demon"
  36340. },
  36341. "terra": {
  36342. name: "Terra"
  36343. },
  36344. "jupiter": {
  36345. name: "Jupiter"
  36346. },
  36347. "neptune": {
  36348. name: "Neptune"
  36349. }
  36350. }
  36351. ))
  36352. characterMakers.push(() => makeCharacter(
  36353. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36354. {
  36355. front: {
  36356. height: math.unit(16, "feet"),
  36357. weight: math.unit(610, "kg"),
  36358. name: "Front",
  36359. image: {
  36360. source: "./media/characters/huckle/front.svg",
  36361. extra: 1731/1625,
  36362. bottom: 33/1764
  36363. }
  36364. },
  36365. back: {
  36366. height: math.unit(16, "feet"),
  36367. weight: math.unit(610, "kg"),
  36368. name: "Back",
  36369. image: {
  36370. source: "./media/characters/huckle/back.svg",
  36371. extra: 1738/1651,
  36372. bottom: 37/1775
  36373. }
  36374. },
  36375. laughing: {
  36376. height: math.unit(3.75, "feet"),
  36377. name: "Laughing",
  36378. image: {
  36379. source: "./media/characters/huckle/laughing.svg"
  36380. }
  36381. },
  36382. angry: {
  36383. height: math.unit(4.15, "feet"),
  36384. name: "Angry",
  36385. image: {
  36386. source: "./media/characters/huckle/angry.svg"
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(16, "feet"),
  36394. default: true
  36395. },
  36396. {
  36397. name: "Mini Macro",
  36398. height: math.unit(463, "feet")
  36399. },
  36400. {
  36401. name: "Macro",
  36402. height: math.unit(1680, "meters")
  36403. },
  36404. {
  36405. name: "Mega Macro",
  36406. height: math.unit(175, "km")
  36407. },
  36408. {
  36409. name: "Terra Macro",
  36410. height: math.unit(32, "gigameters")
  36411. },
  36412. {
  36413. name: "Multiverse+",
  36414. height: math.unit(2.56e23, "yottameters")
  36415. },
  36416. ]
  36417. ))
  36418. characterMakers.push(() => makeCharacter(
  36419. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36420. {
  36421. front: {
  36422. height: math.unit(6 + 9/12, "feet"),
  36423. weight: math.unit(280, "lb"),
  36424. name: "Front",
  36425. image: {
  36426. source: "./media/characters/candy/front.svg",
  36427. extra: 234/217,
  36428. bottom: 11/245
  36429. }
  36430. },
  36431. },
  36432. [
  36433. {
  36434. name: "Really Small",
  36435. height: math.unit(0.1, "nm")
  36436. },
  36437. {
  36438. name: "Micro",
  36439. height: math.unit(2, "inches")
  36440. },
  36441. {
  36442. name: "Normal",
  36443. height: math.unit(6 + 9/12, "feet"),
  36444. default: true
  36445. },
  36446. {
  36447. name: "Small Macro",
  36448. height: math.unit(69, "feet")
  36449. },
  36450. {
  36451. name: "Macro",
  36452. height: math.unit(160, "feet")
  36453. },
  36454. {
  36455. name: "Megamacro",
  36456. height: math.unit(22000, "miles")
  36457. },
  36458. {
  36459. name: "Gigamacro",
  36460. height: math.unit(50000, "miles")
  36461. },
  36462. ]
  36463. ))
  36464. characterMakers.push(() => makeCharacter(
  36465. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36466. {
  36467. front: {
  36468. height: math.unit(4, "feet"),
  36469. weight: math.unit(90, "lb"),
  36470. name: "Front",
  36471. image: {
  36472. source: "./media/characters/joey-mcdonald/front.svg",
  36473. extra: 1059/852,
  36474. bottom: 33/1092
  36475. }
  36476. },
  36477. back: {
  36478. height: math.unit(4, "feet"),
  36479. weight: math.unit(90, "lb"),
  36480. name: "Back",
  36481. image: {
  36482. source: "./media/characters/joey-mcdonald/back.svg",
  36483. extra: 1077/879,
  36484. bottom: 5/1082
  36485. }
  36486. },
  36487. frontKobold: {
  36488. height: math.unit(4, "feet"),
  36489. weight: math.unit(100, "lb"),
  36490. name: "Front-kobold",
  36491. image: {
  36492. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36493. extra: 1480/1367,
  36494. bottom: 0/1480
  36495. }
  36496. },
  36497. backKobold: {
  36498. height: math.unit(4, "feet"),
  36499. weight: math.unit(100, "lb"),
  36500. name: "Back-kobold",
  36501. image: {
  36502. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36503. extra: 1449/1361,
  36504. bottom: 0/1449
  36505. }
  36506. },
  36507. },
  36508. [
  36509. {
  36510. name: "Normal",
  36511. height: math.unit(4, "feet"),
  36512. default: true
  36513. },
  36514. ]
  36515. ))
  36516. characterMakers.push(() => makeCharacter(
  36517. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36518. {
  36519. front: {
  36520. height: math.unit(12 + 6/12, "feet"),
  36521. name: "Front",
  36522. image: {
  36523. source: "./media/characters/kass-lockheed/front.svg",
  36524. extra: 354/343,
  36525. bottom: 9/363
  36526. }
  36527. },
  36528. back: {
  36529. height: math.unit(12 + 6/12, "feet"),
  36530. name: "Back",
  36531. image: {
  36532. source: "./media/characters/kass-lockheed/back.svg",
  36533. extra: 364/352,
  36534. bottom: 3/367
  36535. }
  36536. },
  36537. dick: {
  36538. height: math.unit(3.12, "feet"),
  36539. name: "Dick",
  36540. image: {
  36541. source: "./media/characters/kass-lockheed/dick.svg"
  36542. }
  36543. },
  36544. head: {
  36545. height: math.unit(2.6, "feet"),
  36546. name: "Head",
  36547. image: {
  36548. source: "./media/characters/kass-lockheed/head.svg"
  36549. }
  36550. },
  36551. bleh: {
  36552. height: math.unit(2.85, "feet"),
  36553. name: "Bleh",
  36554. image: {
  36555. source: "./media/characters/kass-lockheed/bleh.svg"
  36556. }
  36557. },
  36558. smug: {
  36559. height: math.unit(2.85, "feet"),
  36560. name: "Smug",
  36561. image: {
  36562. source: "./media/characters/kass-lockheed/smug.svg"
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(12 + 6/12, "feet"),
  36570. default: true
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36576. {
  36577. front: {
  36578. height: math.unit(6 + 2/12, "feet"),
  36579. name: "Front",
  36580. image: {
  36581. source: "./media/characters/taylor/front.svg",
  36582. extra: 639/495,
  36583. bottom: 12/651
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(6 + 2/12, "feet"),
  36591. default: true
  36592. },
  36593. {
  36594. name: "Big",
  36595. height: math.unit(15, "feet")
  36596. },
  36597. {
  36598. name: "Lorg",
  36599. height: math.unit(80, "feet")
  36600. },
  36601. {
  36602. name: "Too Lorg",
  36603. height: math.unit(120, "feet")
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(15, "feet"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/kaizer/front.svg",
  36615. extra: 1612/1436,
  36616. bottom: 43/1655
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Normal",
  36623. height: math.unit(15, "feet"),
  36624. default: true
  36625. },
  36626. ]
  36627. ))
  36628. characterMakers.push(() => makeCharacter(
  36629. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36630. {
  36631. front: {
  36632. height: math.unit(2, "feet"),
  36633. weight: math.unit(30, "lb"),
  36634. name: "Front",
  36635. image: {
  36636. source: "./media/characters/sandy/front.svg",
  36637. extra: 1439/1307,
  36638. bottom: 194/1633
  36639. }
  36640. },
  36641. },
  36642. [
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(2, "feet"),
  36646. default: true
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(3, "feet"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/mellvi/front.svg",
  36658. extra: 1831/1630,
  36659. bottom: 58/1889
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Normal",
  36666. height: math.unit(3, "feet"),
  36667. default: true
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36673. {
  36674. front: {
  36675. height: math.unit(5 + 11/12, "feet"),
  36676. weight: math.unit(200, "lb"),
  36677. name: "Front",
  36678. image: {
  36679. source: "./media/characters/shirou/front.svg",
  36680. extra: 2491/2383,
  36681. bottom: 189/2680
  36682. }
  36683. },
  36684. back: {
  36685. height: math.unit(5 + 11/12, "feet"),
  36686. weight: math.unit(200, "lb"),
  36687. name: "Back",
  36688. image: {
  36689. source: "./media/characters/shirou/back.svg",
  36690. extra: 2554/2450,
  36691. bottom: 76/2630
  36692. }
  36693. },
  36694. },
  36695. [
  36696. {
  36697. name: "Normal",
  36698. height: math.unit(5 + 11/12, "feet"),
  36699. default: true
  36700. },
  36701. ]
  36702. ))
  36703. characterMakers.push(() => makeCharacter(
  36704. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36705. {
  36706. front: {
  36707. height: math.unit(6 + 3/12, "feet"),
  36708. weight: math.unit(177, "lb"),
  36709. name: "Front",
  36710. image: {
  36711. source: "./media/characters/noryu/front.svg",
  36712. extra: 973/885,
  36713. bottom: 10/983
  36714. }
  36715. },
  36716. },
  36717. [
  36718. {
  36719. name: "Normal",
  36720. height: math.unit(6 + 3/12, "feet"),
  36721. default: true
  36722. },
  36723. ]
  36724. ))
  36725. characterMakers.push(() => makeCharacter(
  36726. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36727. {
  36728. front: {
  36729. height: math.unit(5 + 6/12, "feet"),
  36730. weight: math.unit(170, "lb"),
  36731. name: "Front",
  36732. image: {
  36733. source: "./media/characters/mevolas-rubenido/front.svg",
  36734. extra: 2109/1901,
  36735. bottom: 96/2205
  36736. }
  36737. },
  36738. },
  36739. [
  36740. {
  36741. name: "Normal",
  36742. height: math.unit(5 + 6/12, "feet"),
  36743. default: true
  36744. },
  36745. ]
  36746. ))
  36747. characterMakers.push(() => makeCharacter(
  36748. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36749. {
  36750. front: {
  36751. height: math.unit(100, "feet"),
  36752. name: "Front",
  36753. image: {
  36754. source: "./media/characters/dee/front.svg",
  36755. extra: 2153/2036,
  36756. bottom: 59/2212
  36757. }
  36758. },
  36759. back: {
  36760. height: math.unit(100, "feet"),
  36761. name: "Back",
  36762. image: {
  36763. source: "./media/characters/dee/back.svg",
  36764. extra: 2183/2058,
  36765. bottom: 75/2258
  36766. }
  36767. },
  36768. foot: {
  36769. height: math.unit(19.43, "feet"),
  36770. name: "Foot",
  36771. image: {
  36772. source: "./media/characters/dee/foot.svg"
  36773. }
  36774. },
  36775. hoof: {
  36776. height: math.unit(20.6, "feet"),
  36777. name: "Hoof",
  36778. image: {
  36779. source: "./media/characters/dee/hoof.svg"
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "Macro",
  36786. height: math.unit(100, "feet"),
  36787. default: true
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(5 + 6/12, "feet"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/teh/front.svg",
  36799. extra: 1002/847,
  36800. bottom: 62/1064
  36801. }
  36802. },
  36803. },
  36804. [
  36805. {
  36806. name: "Normal",
  36807. height: math.unit(5 + 6/12, "feet"),
  36808. default: true
  36809. },
  36810. ]
  36811. ))
  36812. characterMakers.push(() => makeCharacter(
  36813. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36814. {
  36815. side: {
  36816. height: math.unit(6 + 1/12, "feet"),
  36817. weight: math.unit(204, "lb"),
  36818. name: "Side",
  36819. image: {
  36820. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36821. extra: 974/775,
  36822. bottom: 169/1143
  36823. }
  36824. },
  36825. sitting: {
  36826. height: math.unit(6 + 2/12, "feet"),
  36827. weight: math.unit(204, "lb"),
  36828. name: "Sitting",
  36829. image: {
  36830. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36831. extra: 1175/964,
  36832. bottom: 378/1553
  36833. }
  36834. },
  36835. },
  36836. [
  36837. {
  36838. name: "Normal",
  36839. height: math.unit(6 + 1/12, "feet"),
  36840. default: true
  36841. },
  36842. ]
  36843. ))
  36844. characterMakers.push(() => makeCharacter(
  36845. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36846. {
  36847. front: {
  36848. height: math.unit(6, "inches"),
  36849. name: "Front",
  36850. image: {
  36851. source: "./media/characters/tululi/front.svg",
  36852. extra: 1997/1876,
  36853. bottom: 20/2017
  36854. }
  36855. },
  36856. },
  36857. [
  36858. {
  36859. name: "Normal",
  36860. height: math.unit(6, "inches"),
  36861. default: true
  36862. },
  36863. ]
  36864. ))
  36865. characterMakers.push(() => makeCharacter(
  36866. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36867. {
  36868. front: {
  36869. height: math.unit(4 + 1/12, "feet"),
  36870. name: "Front",
  36871. image: {
  36872. source: "./media/characters/star/front.svg",
  36873. extra: 1493/1189,
  36874. bottom: 48/1541
  36875. }
  36876. },
  36877. },
  36878. [
  36879. {
  36880. name: "Normal",
  36881. height: math.unit(4 + 1/12, "feet"),
  36882. default: true
  36883. },
  36884. ]
  36885. ))
  36886. characterMakers.push(() => makeCharacter(
  36887. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36888. {
  36889. front: {
  36890. height: math.unit(6 + 3/12, "feet"),
  36891. name: "Front",
  36892. image: {
  36893. source: "./media/characters/comet/front.svg",
  36894. extra: 1681/1462,
  36895. bottom: 26/1707
  36896. }
  36897. },
  36898. },
  36899. [
  36900. {
  36901. name: "Normal",
  36902. height: math.unit(6 + 3/12, "feet"),
  36903. default: true
  36904. },
  36905. ]
  36906. ))
  36907. characterMakers.push(() => makeCharacter(
  36908. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36909. {
  36910. front: {
  36911. height: math.unit(950, "feet"),
  36912. name: "Front",
  36913. image: {
  36914. source: "./media/characters/vortex/front.svg",
  36915. extra: 1497/1434,
  36916. bottom: 56/1553
  36917. }
  36918. },
  36919. maw: {
  36920. height: math.unit(285, "feet"),
  36921. name: "Maw",
  36922. image: {
  36923. source: "./media/characters/vortex/maw.svg"
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Macro",
  36930. height: math.unit(950, "feet"),
  36931. default: true
  36932. },
  36933. ]
  36934. ))
  36935. characterMakers.push(() => makeCharacter(
  36936. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36937. {
  36938. front: {
  36939. height: math.unit(600, "feet"),
  36940. weight: math.unit(0.02, "grams"),
  36941. name: "Front",
  36942. image: {
  36943. source: "./media/characters/doodle/front.svg",
  36944. extra: 1578/1413,
  36945. bottom: 37/1615
  36946. }
  36947. },
  36948. },
  36949. [
  36950. {
  36951. name: "Macro",
  36952. height: math.unit(600, "feet"),
  36953. default: true
  36954. },
  36955. ]
  36956. ))
  36957. characterMakers.push(() => makeCharacter(
  36958. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36959. {
  36960. front: {
  36961. height: math.unit(6 + 6/12, "feet"),
  36962. name: "Front",
  36963. image: {
  36964. source: "./media/characters/jai/front.svg",
  36965. extra: 1645/1534,
  36966. bottom: 115/1760
  36967. }
  36968. },
  36969. },
  36970. [
  36971. {
  36972. name: "Normal",
  36973. height: math.unit(6 + 6/12, "feet"),
  36974. default: true
  36975. },
  36976. ]
  36977. ))
  36978. characterMakers.push(() => makeCharacter(
  36979. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36980. {
  36981. front: {
  36982. height: math.unit(6 + 8/12, "feet"),
  36983. name: "Front",
  36984. image: {
  36985. source: "./media/characters/pixel/front.svg",
  36986. extra: 1900/1735,
  36987. bottom: 63/1963
  36988. }
  36989. },
  36990. },
  36991. [
  36992. {
  36993. name: "Normal",
  36994. height: math.unit(6 + 8/12, "feet"),
  36995. default: true
  36996. },
  36997. ]
  36998. ))
  36999. characterMakers.push(() => makeCharacter(
  37000. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37001. {
  37002. back: {
  37003. height: math.unit(4 + 1/12, "feet"),
  37004. weight: math.unit(75, "lb"),
  37005. name: "Back",
  37006. image: {
  37007. source: "./media/characters/rhett/back.svg",
  37008. extra: 930/878,
  37009. bottom: 25/955
  37010. }
  37011. },
  37012. front: {
  37013. height: math.unit(4 + 1/12, "feet"),
  37014. weight: math.unit(75, "lb"),
  37015. name: "Front",
  37016. image: {
  37017. source: "./media/characters/rhett/front.svg",
  37018. extra: 1682/1586,
  37019. bottom: 92/1774
  37020. }
  37021. },
  37022. },
  37023. [
  37024. {
  37025. name: "Micro",
  37026. height: math.unit(8, "inches")
  37027. },
  37028. {
  37029. name: "Tiny",
  37030. height: math.unit(2, "feet")
  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: "Penny", species: ["mouse"], tags: ["anthro"] },
  37041. {
  37042. front: {
  37043. height: math.unit(3 + 3/12, "feet"),
  37044. name: "Front",
  37045. image: {
  37046. source: "./media/characters/penny/front.svg",
  37047. extra: 1406/1311,
  37048. bottom: 26/1432
  37049. }
  37050. },
  37051. },
  37052. [
  37053. {
  37054. name: "Normal",
  37055. height: math.unit(3 + 3/12, "feet"),
  37056. default: true
  37057. },
  37058. ]
  37059. ))
  37060. characterMakers.push(() => makeCharacter(
  37061. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37062. {
  37063. front: {
  37064. height: math.unit(4 + 11/12, "feet"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/monty/front.svg",
  37068. extra: 1479/1209,
  37069. bottom: 0/1479
  37070. }
  37071. },
  37072. },
  37073. [
  37074. {
  37075. name: "Normal",
  37076. height: math.unit(4 + 11/12, "feet"),
  37077. default: true
  37078. },
  37079. ]
  37080. ))
  37081. characterMakers.push(() => makeCharacter(
  37082. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37083. {
  37084. front: {
  37085. height: math.unit(8 + 4/12, "feet"),
  37086. name: "Front",
  37087. image: {
  37088. source: "./media/characters/sterling/front.svg",
  37089. extra: 1420/1236,
  37090. bottom: 27/1447
  37091. }
  37092. },
  37093. },
  37094. [
  37095. {
  37096. name: "Normal",
  37097. height: math.unit(8 + 4/12, "feet"),
  37098. default: true
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(15, "feet"),
  37107. name: "Front",
  37108. image: {
  37109. source: "./media/characters/marble/front.svg",
  37110. extra: 973/937,
  37111. bottom: 32/1005
  37112. }
  37113. },
  37114. },
  37115. [
  37116. {
  37117. name: "Normal",
  37118. height: math.unit(15, "feet"),
  37119. default: true
  37120. },
  37121. ]
  37122. ))
  37123. characterMakers.push(() => makeCharacter(
  37124. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37125. {
  37126. front: {
  37127. height: math.unit(3, "inches"),
  37128. name: "Front",
  37129. image: {
  37130. source: "./media/characters/powder/front.svg",
  37131. extra: 1504/1334,
  37132. bottom: 518/2022
  37133. }
  37134. },
  37135. },
  37136. [
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(3, "inches"),
  37140. default: true
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37146. {
  37147. front: {
  37148. height: math.unit(4 + 5/12, "feet"),
  37149. name: "Front",
  37150. image: {
  37151. source: "./media/characters/joey-raccoon/front.svg",
  37152. extra: 1273/1197,
  37153. bottom: 0/1273
  37154. }
  37155. },
  37156. },
  37157. [
  37158. {
  37159. name: "Normal",
  37160. height: math.unit(4 + 5/12, "feet"),
  37161. default: true
  37162. },
  37163. ]
  37164. ))
  37165. characterMakers.push(() => makeCharacter(
  37166. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37167. {
  37168. front: {
  37169. height: math.unit(8 + 4/12, "feet"),
  37170. name: "Front",
  37171. image: {
  37172. source: "./media/characters/vick/front.svg",
  37173. extra: 2187/2118,
  37174. bottom: 47/2234
  37175. }
  37176. },
  37177. },
  37178. [
  37179. {
  37180. name: "Normal",
  37181. height: math.unit(8 + 4/12, "feet"),
  37182. default: true
  37183. },
  37184. ]
  37185. ))
  37186. characterMakers.push(() => makeCharacter(
  37187. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37188. {
  37189. front: {
  37190. height: math.unit(5 + 5/12, "feet"),
  37191. name: "Front",
  37192. image: {
  37193. source: "./media/characters/mitsy/front.svg",
  37194. extra: 1842/1695,
  37195. bottom: 0/1842
  37196. }
  37197. },
  37198. },
  37199. [
  37200. {
  37201. name: "Normal",
  37202. height: math.unit(5 + 5/12, "feet"),
  37203. default: true
  37204. },
  37205. ]
  37206. ))
  37207. characterMakers.push(() => makeCharacter(
  37208. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37209. {
  37210. front: {
  37211. height: math.unit(6 + 3/12, "feet"),
  37212. name: "Front",
  37213. image: {
  37214. source: "./media/characters/silvy/front.svg",
  37215. extra: 1995/1836,
  37216. bottom: 225/2220
  37217. }
  37218. },
  37219. },
  37220. [
  37221. {
  37222. name: "Normal",
  37223. height: math.unit(6 + 3/12, "feet"),
  37224. default: true
  37225. },
  37226. ]
  37227. ))
  37228. characterMakers.push(() => makeCharacter(
  37229. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37230. {
  37231. front: {
  37232. height: math.unit(3 + 8/12, "feet"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/rodney/front.svg",
  37236. extra: 1956/1747,
  37237. bottom: 31/1987
  37238. }
  37239. },
  37240. frontDressed: {
  37241. height: math.unit(2.9, "feet"),
  37242. name: "Front (Dressed)",
  37243. image: {
  37244. source: "./media/characters/rodney/front-dressed.svg",
  37245. extra: 1382/1241,
  37246. bottom: 385/1767
  37247. }
  37248. },
  37249. },
  37250. [
  37251. {
  37252. name: "Normal",
  37253. height: math.unit(3 + 8/12, "feet"),
  37254. default: true
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37260. {
  37261. front: {
  37262. height: math.unit(5 + 9/12, "feet"),
  37263. weight: math.unit(194, "lbs"),
  37264. name: "Front",
  37265. image: {
  37266. source: "./media/characters/zakail-sudekai/front.svg",
  37267. extra: 2696/2533,
  37268. bottom: 248/2944
  37269. }
  37270. },
  37271. maw: {
  37272. height: math.unit(1.35, "feet"),
  37273. name: "Maw",
  37274. image: {
  37275. source: "./media/characters/zakail-sudekai/maw.svg"
  37276. }
  37277. },
  37278. },
  37279. [
  37280. {
  37281. name: "Normal",
  37282. height: math.unit(5 + 9/12, "feet"),
  37283. default: true
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37289. {
  37290. front: {
  37291. height: math.unit(8 + 4/12, "feet"),
  37292. weight: math.unit(1200, "lb"),
  37293. name: "Front",
  37294. image: {
  37295. source: "./media/characters/eleanor/front.svg",
  37296. extra: 1226/1192,
  37297. bottom: 52/1278
  37298. }
  37299. },
  37300. back: {
  37301. height: math.unit(8 + 4/12, "feet"),
  37302. weight: math.unit(1200, "lb"),
  37303. name: "Back",
  37304. image: {
  37305. source: "./media/characters/eleanor/back.svg",
  37306. extra: 1242/1184,
  37307. bottom: 60/1302
  37308. }
  37309. },
  37310. head: {
  37311. height: math.unit(2.62, "feet"),
  37312. name: "Head",
  37313. image: {
  37314. source: "./media/characters/eleanor/head.svg"
  37315. }
  37316. },
  37317. },
  37318. [
  37319. {
  37320. name: "Normal",
  37321. height: math.unit(8 + 4/12, "feet"),
  37322. default: true
  37323. },
  37324. ]
  37325. ))
  37326. characterMakers.push(() => makeCharacter(
  37327. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37328. {
  37329. front: {
  37330. height: math.unit(8 + 4/12, "feet"),
  37331. weight: math.unit(750, "lb"),
  37332. name: "Front",
  37333. image: {
  37334. source: "./media/characters/tanya/front.svg",
  37335. extra: 1749/1615,
  37336. bottom: 33/1782
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Normal",
  37343. height: math.unit(8 + 4/12, "feet"),
  37344. default: true
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37350. {
  37351. front: {
  37352. height: math.unit(5, "feet"),
  37353. weight: math.unit(225, "lb"),
  37354. name: "Front",
  37355. image: {
  37356. source: "./media/characters/cindy/front.svg",
  37357. extra: 1320/1250,
  37358. bottom: 42/1362
  37359. }
  37360. },
  37361. frontDressed: {
  37362. height: math.unit(5, "feet"),
  37363. weight: math.unit(225, "lb"),
  37364. name: "Front (Dressed)",
  37365. image: {
  37366. source: "./media/characters/cindy/front-dressed.svg",
  37367. extra: 1320/1250,
  37368. bottom: 42/1362
  37369. }
  37370. },
  37371. back: {
  37372. height: math.unit(5, "feet"),
  37373. weight: math.unit(225, "lb"),
  37374. name: "Back",
  37375. image: {
  37376. source: "./media/characters/cindy/back.svg",
  37377. extra: 1384/1346,
  37378. bottom: 14/1398
  37379. }
  37380. },
  37381. },
  37382. [
  37383. {
  37384. name: "Normal",
  37385. height: math.unit(5, "feet"),
  37386. default: true
  37387. },
  37388. ]
  37389. ))
  37390. characterMakers.push(() => makeCharacter(
  37391. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37392. {
  37393. front: {
  37394. height: math.unit(6 + 9/12, "feet"),
  37395. weight: math.unit(440, "lb"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/wilbur-owen/front.svg",
  37399. extra: 1575/1448,
  37400. bottom: 72/1647
  37401. }
  37402. },
  37403. back: {
  37404. height: math.unit(6 + 9/12, "feet"),
  37405. weight: math.unit(440, "lb"),
  37406. name: "Back",
  37407. image: {
  37408. source: "./media/characters/wilbur-owen/back.svg",
  37409. extra: 1578/1445,
  37410. bottom: 36/1614
  37411. }
  37412. },
  37413. },
  37414. [
  37415. {
  37416. name: "Normal",
  37417. height: math.unit(6 + 9/12, "feet"),
  37418. default: true
  37419. },
  37420. ]
  37421. ))
  37422. characterMakers.push(() => makeCharacter(
  37423. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37424. {
  37425. front: {
  37426. height: math.unit(6 + 5/12, "feet"),
  37427. weight: math.unit(650, "lb"),
  37428. name: "Front",
  37429. image: {
  37430. source: "./media/characters/keegan/front.svg",
  37431. extra: 2387/2198,
  37432. bottom: 33/2420
  37433. }
  37434. },
  37435. side: {
  37436. height: math.unit(6 + 5/12, "feet"),
  37437. weight: math.unit(650, "lb"),
  37438. name: "Side",
  37439. image: {
  37440. source: "./media/characters/keegan/side.svg",
  37441. extra: 2390/2202,
  37442. bottom: 47/2437
  37443. }
  37444. },
  37445. back: {
  37446. height: math.unit(6 + 5/12, "feet"),
  37447. weight: math.unit(650, "lb"),
  37448. name: "Back",
  37449. image: {
  37450. source: "./media/characters/keegan/back.svg",
  37451. extra: 2418/2268,
  37452. bottom: 15/2433
  37453. }
  37454. },
  37455. frontSfw: {
  37456. height: math.unit(6 + 5/12, "feet"),
  37457. weight: math.unit(650, "lb"),
  37458. name: "Front (SFW)",
  37459. image: {
  37460. source: "./media/characters/keegan/front-sfw.svg",
  37461. extra: 2387/2198,
  37462. bottom: 33/2420
  37463. }
  37464. },
  37465. beans: {
  37466. height: math.unit(1.85, "feet"),
  37467. name: "Beans",
  37468. image: {
  37469. source: "./media/characters/keegan/beans.svg"
  37470. }
  37471. },
  37472. },
  37473. [
  37474. {
  37475. name: "Normal",
  37476. height: math.unit(6 + 5/12, "feet"),
  37477. default: true
  37478. },
  37479. ]
  37480. ))
  37481. characterMakers.push(() => makeCharacter(
  37482. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37483. {
  37484. front: {
  37485. height: math.unit(9, "feet"),
  37486. name: "Front",
  37487. image: {
  37488. source: "./media/characters/colton/front.svg",
  37489. extra: 1589/1326,
  37490. bottom: 139/1728
  37491. }
  37492. },
  37493. },
  37494. [
  37495. {
  37496. name: "Normal",
  37497. height: math.unit(9, "feet"),
  37498. default: true
  37499. },
  37500. ]
  37501. ))
  37502. characterMakers.push(() => makeCharacter(
  37503. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37504. {
  37505. front: {
  37506. height: math.unit(2 + 9/12, "feet"),
  37507. name: "Front",
  37508. image: {
  37509. source: "./media/characters/bora/front.svg",
  37510. extra: 1265/1250,
  37511. bottom: 24/1289
  37512. }
  37513. },
  37514. },
  37515. [
  37516. {
  37517. name: "Normal",
  37518. height: math.unit(2 + 9/12, "feet"),
  37519. default: true
  37520. },
  37521. ]
  37522. ))
  37523. characterMakers.push(() => makeCharacter(
  37524. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37525. {
  37526. front: {
  37527. height: math.unit(8, "feet"),
  37528. name: "Front",
  37529. image: {
  37530. source: "./media/characters/myu-myu/front.svg",
  37531. extra: 1949/1857,
  37532. bottom: 90/2039
  37533. }
  37534. },
  37535. },
  37536. [
  37537. {
  37538. name: "Normal",
  37539. height: math.unit(8, "feet"),
  37540. default: true
  37541. },
  37542. {
  37543. name: "Big",
  37544. height: math.unit(15, "feet")
  37545. },
  37546. {
  37547. name: "BIG",
  37548. height: math.unit(25, "feet")
  37549. },
  37550. ]
  37551. ))
  37552. characterMakers.push(() => makeCharacter(
  37553. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37554. {
  37555. side: {
  37556. height: math.unit(7 + 5/12, "feet"),
  37557. weight: math.unit(2800, "lb"),
  37558. name: "Side",
  37559. image: {
  37560. source: "./media/characters/haloren/side.svg",
  37561. extra: 1793/409,
  37562. bottom: 59/1852
  37563. }
  37564. },
  37565. frontPaw: {
  37566. height: math.unit(2.36, "feet"),
  37567. name: "Front paw",
  37568. image: {
  37569. source: "./media/characters/haloren/front-paw.svg"
  37570. }
  37571. },
  37572. hindPaw: {
  37573. height: math.unit(3.18, "feet"),
  37574. name: "Hind paw",
  37575. image: {
  37576. source: "./media/characters/haloren/hind-paw.svg"
  37577. }
  37578. },
  37579. maw: {
  37580. height: math.unit(5.05, "feet"),
  37581. name: "Maw",
  37582. image: {
  37583. source: "./media/characters/haloren/maw.svg"
  37584. }
  37585. },
  37586. dick: {
  37587. height: math.unit(2.90, "feet"),
  37588. name: "Dick",
  37589. image: {
  37590. source: "./media/characters/haloren/dick.svg"
  37591. }
  37592. },
  37593. },
  37594. [
  37595. {
  37596. name: "Normal",
  37597. height: math.unit(7 + 5/12, "feet"),
  37598. default: true
  37599. },
  37600. {
  37601. name: "Enhanced",
  37602. height: math.unit(14 + 3/12, "feet")
  37603. },
  37604. ]
  37605. ))
  37606. characterMakers.push(() => makeCharacter(
  37607. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37608. {
  37609. front: {
  37610. height: math.unit(171, "cm"),
  37611. name: "Front",
  37612. image: {
  37613. source: "./media/characters/kimmy/front.svg",
  37614. extra: 1491/1435,
  37615. bottom: 53/1544
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Small",
  37622. height: math.unit(9, "cm")
  37623. },
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(171, "cm"),
  37627. default: true
  37628. },
  37629. ]
  37630. ))
  37631. characterMakers.push(() => makeCharacter(
  37632. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37633. {
  37634. front: {
  37635. height: math.unit(8, "feet"),
  37636. weight: math.unit(300, "lb"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/galeboomer/front.svg",
  37640. extra: 4651/4415,
  37641. bottom: 162/4813
  37642. }
  37643. },
  37644. back: {
  37645. height: math.unit(8, "feet"),
  37646. weight: math.unit(300, "lb"),
  37647. name: "Back",
  37648. image: {
  37649. source: "./media/characters/galeboomer/back.svg",
  37650. extra: 4544/4314,
  37651. bottom: 16/4560
  37652. }
  37653. },
  37654. frontAlt: {
  37655. height: math.unit(8, "feet"),
  37656. weight: math.unit(300, "lb"),
  37657. name: "Front (Alt)",
  37658. image: {
  37659. source: "./media/characters/galeboomer/front-alt.svg",
  37660. extra: 4458/4228,
  37661. bottom: 68/4526
  37662. }
  37663. },
  37664. maw: {
  37665. height: math.unit(1.2, "feet"),
  37666. name: "Maw",
  37667. image: {
  37668. source: "./media/characters/galeboomer/maw.svg"
  37669. }
  37670. },
  37671. },
  37672. [
  37673. {
  37674. name: "Normal",
  37675. height: math.unit(8, "feet"),
  37676. default: true
  37677. },
  37678. ]
  37679. ))
  37680. characterMakers.push(() => makeCharacter(
  37681. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37682. {
  37683. front: {
  37684. height: math.unit(5 + 9/12, "feet"),
  37685. weight: math.unit(120, "lb"),
  37686. name: "Front",
  37687. image: {
  37688. source: "./media/characters/chyr/front.svg",
  37689. extra: 1323/1254,
  37690. bottom: 63/1386
  37691. }
  37692. },
  37693. back: {
  37694. height: math.unit(5 + 9/12, "feet"),
  37695. weight: math.unit(120, "lb"),
  37696. name: "Back",
  37697. image: {
  37698. source: "./media/characters/chyr/back.svg",
  37699. extra: 1323/1252,
  37700. bottom: 48/1371
  37701. }
  37702. },
  37703. },
  37704. [
  37705. {
  37706. name: "Normal",
  37707. height: math.unit(5 + 9/12, "feet"),
  37708. default: true
  37709. },
  37710. ]
  37711. ))
  37712. characterMakers.push(() => makeCharacter(
  37713. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37714. {
  37715. front: {
  37716. height: math.unit(7, "feet"),
  37717. weight: math.unit(310, "lb"),
  37718. name: "Front",
  37719. image: {
  37720. source: "./media/characters/solarus/front.svg",
  37721. extra: 2415/2021,
  37722. bottom: 103/2518
  37723. }
  37724. },
  37725. back: {
  37726. height: math.unit(7, "feet"),
  37727. weight: math.unit(310, "lb"),
  37728. name: "Back",
  37729. image: {
  37730. source: "./media/characters/solarus/back.svg",
  37731. extra: 2463/2089,
  37732. bottom: 79/2542
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Normal",
  37739. height: math.unit(7, "feet"),
  37740. default: true
  37741. },
  37742. ]
  37743. ))
  37744. characterMakers.push(() => makeCharacter(
  37745. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37746. {
  37747. front: {
  37748. height: math.unit(16, "feet"),
  37749. name: "Front",
  37750. image: {
  37751. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37752. extra: 1844/1780,
  37753. bottom: 58/1902
  37754. }
  37755. },
  37756. winterCoat: {
  37757. height: math.unit(16, "feet"),
  37758. name: "Winter Coat",
  37759. image: {
  37760. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37761. extra: 1807/1775,
  37762. bottom: 69/1876
  37763. }
  37764. },
  37765. },
  37766. [
  37767. {
  37768. name: "Normal",
  37769. height: math.unit(16, "feet"),
  37770. default: true
  37771. },
  37772. {
  37773. name: "Chicago Size",
  37774. height: math.unit(560, "feet")
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(11 + 6/12, "feet"),
  37783. weight: math.unit(1366, "lb"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/lexor/front.svg",
  37787. extra: 1560/1481,
  37788. bottom: 211/1771
  37789. }
  37790. },
  37791. back: {
  37792. height: math.unit(11 + 6/12, "feet"),
  37793. weight: math.unit(1366, "lb"),
  37794. name: "Back",
  37795. image: {
  37796. source: "./media/characters/lexor/back.svg",
  37797. extra: 1614/1533,
  37798. bottom: 76/1690
  37799. }
  37800. },
  37801. maw: {
  37802. height: math.unit(3, "feet"),
  37803. name: "Maw",
  37804. image: {
  37805. source: "./media/characters/lexor/maw.svg"
  37806. }
  37807. },
  37808. dick: {
  37809. height: math.unit(2.59, "feet"),
  37810. name: "Dick",
  37811. image: {
  37812. source: "./media/characters/lexor/dick.svg"
  37813. }
  37814. },
  37815. },
  37816. [
  37817. {
  37818. name: "Normal",
  37819. height: math.unit(11 + 6/12, "feet"),
  37820. default: true
  37821. },
  37822. ]
  37823. ))
  37824. characterMakers.push(() => makeCharacter(
  37825. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37826. {
  37827. front: {
  37828. height: math.unit(5 + 8/12, "feet"),
  37829. name: "Front",
  37830. image: {
  37831. source: "./media/characters/magnum/front.svg",
  37832. extra: 942/855,
  37833. bottom: 26/968
  37834. }
  37835. },
  37836. },
  37837. [
  37838. {
  37839. name: "Normal",
  37840. height: math.unit(5 + 8/12, "feet"),
  37841. default: true
  37842. },
  37843. ]
  37844. ))
  37845. characterMakers.push(() => makeCharacter(
  37846. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37847. {
  37848. front: {
  37849. height: math.unit(18 + 4/12, "feet"),
  37850. weight: math.unit(1500, "kg"),
  37851. name: "Front",
  37852. image: {
  37853. source: "./media/characters/solas-sharpsman/front.svg",
  37854. extra: 1698/1589,
  37855. bottom: 0/1698
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(18 + 4/12, "feet"),
  37863. default: true
  37864. },
  37865. ]
  37866. ))
  37867. characterMakers.push(() => makeCharacter(
  37868. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37869. {
  37870. front: {
  37871. height: math.unit(5 + 5/12, "feet"),
  37872. weight: math.unit(180, "lb"),
  37873. name: "Front",
  37874. image: {
  37875. source: "./media/characters/october/front.svg",
  37876. extra: 1800/1650,
  37877. bottom: 0/1800
  37878. }
  37879. },
  37880. frontNsfw: {
  37881. height: math.unit(5 + 5/12, "feet"),
  37882. weight: math.unit(180, "lb"),
  37883. name: "Front (NSFW)",
  37884. image: {
  37885. source: "./media/characters/october/front-nsfw.svg",
  37886. extra: 1392/1307,
  37887. bottom: 42/1434
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(5 + 5/12, "feet"),
  37895. default: true
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37901. {
  37902. front: {
  37903. height: math.unit(8 + 6/12, "feet"),
  37904. name: "Front",
  37905. image: {
  37906. source: "./media/characters/essynkardi/front.svg",
  37907. extra: 1914/1846,
  37908. bottom: 22/1936
  37909. }
  37910. },
  37911. },
  37912. [
  37913. {
  37914. name: "Normal",
  37915. height: math.unit(8 + 6/12, "feet"),
  37916. default: true
  37917. },
  37918. ]
  37919. ))
  37920. characterMakers.push(() => makeCharacter(
  37921. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37922. {
  37923. front: {
  37924. height: math.unit(6 + 6/12, "feet"),
  37925. weight: math.unit(7, "lb"),
  37926. name: "Front",
  37927. image: {
  37928. source: "./media/characters/icky/front.svg",
  37929. extra: 813/782,
  37930. bottom: 66/879
  37931. }
  37932. },
  37933. back: {
  37934. height: math.unit(6 + 6/12, "feet"),
  37935. weight: math.unit(7, "lb"),
  37936. name: "Back",
  37937. image: {
  37938. source: "./media/characters/icky/back.svg",
  37939. extra: 754/735,
  37940. bottom: 56/810
  37941. }
  37942. },
  37943. },
  37944. [
  37945. {
  37946. name: "Normal",
  37947. height: math.unit(6 + 6/12, "feet"),
  37948. default: true
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(15, "feet"),
  37957. name: "Front",
  37958. image: {
  37959. source: "./media/characters/rojas/front.svg",
  37960. extra: 1462/1408,
  37961. bottom: 95/1557
  37962. }
  37963. },
  37964. back: {
  37965. height: math.unit(15, "feet"),
  37966. name: "Back",
  37967. image: {
  37968. source: "./media/characters/rojas/back.svg",
  37969. extra: 1023/954,
  37970. bottom: 28/1051
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Normal",
  37977. height: math.unit(15, "feet"),
  37978. default: true
  37979. },
  37980. ]
  37981. ))
  37982. characterMakers.push(() => makeCharacter(
  37983. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37984. {
  37985. frontHuman: {
  37986. height: math.unit(5 + 7/12, "feet"),
  37987. name: "Front (Human)",
  37988. image: {
  37989. source: "./media/characters/alek-dryagan/front-human.svg",
  37990. extra: 1687/1667,
  37991. bottom: 69/1756
  37992. }
  37993. },
  37994. backHuman: {
  37995. height: math.unit(5 + 7/12, "feet"),
  37996. name: "Back (Human)",
  37997. image: {
  37998. source: "./media/characters/alek-dryagan/back-human.svg",
  37999. extra: 1670/1649,
  38000. bottom: 65/1735
  38001. }
  38002. },
  38003. frontDemi: {
  38004. height: math.unit(65, "feet"),
  38005. name: "Front (Demi)",
  38006. image: {
  38007. source: "./media/characters/alek-dryagan/front-demi.svg",
  38008. extra: 1669/1642,
  38009. bottom: 49/1718
  38010. }
  38011. },
  38012. backDemi: {
  38013. height: math.unit(65, "feet"),
  38014. name: "Back (Demi)",
  38015. image: {
  38016. source: "./media/characters/alek-dryagan/back-demi.svg",
  38017. extra: 1658/1637,
  38018. bottom: 40/1698
  38019. }
  38020. },
  38021. mawHuman: {
  38022. height: math.unit(0.3, "feet"),
  38023. name: "Maw (Human)",
  38024. image: {
  38025. source: "./media/characters/alek-dryagan/maw-human.svg"
  38026. }
  38027. },
  38028. mawDemi: {
  38029. height: math.unit(3.8, "feet"),
  38030. name: "Maw (Demi)",
  38031. image: {
  38032. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38033. }
  38034. },
  38035. },
  38036. [
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(5 + 7/12, "feet"),
  38040. default: true
  38041. },
  38042. ]
  38043. ))
  38044. characterMakers.push(() => makeCharacter(
  38045. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38046. {
  38047. frontHuman: {
  38048. height: math.unit(5 + 2/12, "feet"),
  38049. name: "Front (Human)",
  38050. image: {
  38051. source: "./media/characters/gen/front-human.svg",
  38052. extra: 1627/1538,
  38053. bottom: 71/1698
  38054. }
  38055. },
  38056. backHuman: {
  38057. height: math.unit(5 + 2/12, "feet"),
  38058. name: "Back (Human)",
  38059. image: {
  38060. source: "./media/characters/gen/back-human.svg",
  38061. extra: 1638/1548,
  38062. bottom: 69/1707
  38063. }
  38064. },
  38065. frontDemi: {
  38066. height: math.unit(5 + 2/12, "feet"),
  38067. name: "Front (Demi)",
  38068. image: {
  38069. source: "./media/characters/gen/front-demi.svg",
  38070. extra: 1627/1538,
  38071. bottom: 71/1698
  38072. }
  38073. },
  38074. backDemi: {
  38075. height: math.unit(5 + 2/12, "feet"),
  38076. name: "Back (Demi)",
  38077. image: {
  38078. source: "./media/characters/gen/back-demi.svg",
  38079. extra: 1638/1548,
  38080. bottom: 69/1707
  38081. }
  38082. },
  38083. },
  38084. [
  38085. {
  38086. name: "Normal",
  38087. height: math.unit(5 + 2/12, "feet"),
  38088. default: true
  38089. },
  38090. ]
  38091. ))
  38092. characterMakers.push(() => makeCharacter(
  38093. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38094. {
  38095. frontImp: {
  38096. height: math.unit(1 + 11/12, "feet"),
  38097. name: "Front (Imp)",
  38098. image: {
  38099. source: "./media/characters/max-kobold/front-imp.svg",
  38100. extra: 1238/1134,
  38101. bottom: 81/1319
  38102. }
  38103. },
  38104. backImp: {
  38105. height: math.unit(1 + 11/12, "feet"),
  38106. name: "Back (Imp)",
  38107. image: {
  38108. source: "./media/characters/max-kobold/back-imp.svg",
  38109. extra: 1334/1175,
  38110. bottom: 34/1368
  38111. }
  38112. },
  38113. frontDemi: {
  38114. height: math.unit(5 + 9/12, "feet"),
  38115. name: "Front (Demi)",
  38116. image: {
  38117. source: "./media/characters/max-kobold/front-demi.svg",
  38118. extra: 1715/1685,
  38119. bottom: 54/1769
  38120. }
  38121. },
  38122. backDemi: {
  38123. height: math.unit(5 + 9/12, "feet"),
  38124. name: "Back (Demi)",
  38125. image: {
  38126. source: "./media/characters/max-kobold/back-demi.svg",
  38127. extra: 1752/1729,
  38128. bottom: 41/1793
  38129. }
  38130. },
  38131. handImp: {
  38132. height: math.unit(0.45, "feet"),
  38133. name: "Hand (Imp)",
  38134. image: {
  38135. source: "./media/characters/max-kobold/hand.svg"
  38136. }
  38137. },
  38138. pawImp: {
  38139. height: math.unit(0.46, "feet"),
  38140. name: "Paw (Imp)",
  38141. image: {
  38142. source: "./media/characters/max-kobold/paw.svg"
  38143. }
  38144. },
  38145. handDemi: {
  38146. height: math.unit(0.80, "feet"),
  38147. name: "Hand (Demi)",
  38148. image: {
  38149. source: "./media/characters/max-kobold/hand.svg"
  38150. }
  38151. },
  38152. pawDemi: {
  38153. height: math.unit(1.1, "feet"),
  38154. name: "Paw (Demi)",
  38155. image: {
  38156. source: "./media/characters/max-kobold/paw.svg"
  38157. }
  38158. },
  38159. headImp: {
  38160. height: math.unit(1.33, "feet"),
  38161. name: "Head (Imp)",
  38162. image: {
  38163. source: "./media/characters/max-kobold/head-imp.svg"
  38164. }
  38165. },
  38166. mawImp: {
  38167. height: math.unit(0.75, "feet"),
  38168. name: "Maw (Imp)",
  38169. image: {
  38170. source: "./media/characters/max-kobold/maw-imp.svg"
  38171. }
  38172. },
  38173. mawDemi: {
  38174. height: math.unit(0.42, "feet"),
  38175. name: "Maw (Demi)",
  38176. image: {
  38177. source: "./media/characters/max-kobold/maw-demi.svg"
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Normal",
  38184. height: math.unit(1 + 11/12, "feet"),
  38185. default: true
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38191. {
  38192. front: {
  38193. height: math.unit(7 + 5/12, "feet"),
  38194. name: "Front",
  38195. image: {
  38196. source: "./media/characters/carbon/front.svg",
  38197. extra: 1754/1689,
  38198. bottom: 65/1819
  38199. }
  38200. },
  38201. back: {
  38202. height: math.unit(7 + 5/12, "feet"),
  38203. name: "Back",
  38204. image: {
  38205. source: "./media/characters/carbon/back.svg",
  38206. extra: 1762/1695,
  38207. bottom: 24/1786
  38208. }
  38209. },
  38210. frontGigantamax: {
  38211. height: math.unit(150, "feet"),
  38212. name: "Front (Gigantamax)",
  38213. image: {
  38214. source: "./media/characters/carbon/front-gigantamax.svg",
  38215. extra: 1826/1669,
  38216. bottom: 59/1885
  38217. }
  38218. },
  38219. backGigantamax: {
  38220. height: math.unit(150, "feet"),
  38221. name: "Back (Gigantamax)",
  38222. image: {
  38223. source: "./media/characters/carbon/back-gigantamax.svg",
  38224. extra: 1796/1653,
  38225. bottom: 53/1849
  38226. }
  38227. },
  38228. maw: {
  38229. height: math.unit(0.48, "feet"),
  38230. name: "Maw",
  38231. image: {
  38232. source: "./media/characters/carbon/maw.svg"
  38233. }
  38234. },
  38235. mawGigantamax: {
  38236. height: math.unit(7.5, "feet"),
  38237. name: "Maw (Gigantamax)",
  38238. image: {
  38239. source: "./media/characters/carbon/maw-gigantamax.svg"
  38240. }
  38241. },
  38242. },
  38243. [
  38244. {
  38245. name: "Normal",
  38246. height: math.unit(7 + 5/12, "feet"),
  38247. default: true
  38248. },
  38249. ]
  38250. ))
  38251. characterMakers.push(() => makeCharacter(
  38252. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38253. {
  38254. front: {
  38255. height: math.unit(6, "feet"),
  38256. name: "Front",
  38257. image: {
  38258. source: "./media/characters/maverick/front.svg",
  38259. extra: 1672/1661,
  38260. bottom: 85/1757
  38261. }
  38262. },
  38263. back: {
  38264. height: math.unit(6, "feet"),
  38265. name: "Back",
  38266. image: {
  38267. source: "./media/characters/maverick/back.svg",
  38268. extra: 1642/1631,
  38269. bottom: 38/1680
  38270. }
  38271. },
  38272. },
  38273. [
  38274. {
  38275. name: "Normal",
  38276. height: math.unit(6, "feet"),
  38277. default: true
  38278. },
  38279. ]
  38280. ))
  38281. characterMakers.push(() => makeCharacter(
  38282. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38283. {
  38284. front: {
  38285. height: math.unit(15, "feet"),
  38286. weight: math.unit(615, "lb"),
  38287. name: "Front",
  38288. image: {
  38289. source: "./media/characters/grockle/front.svg",
  38290. extra: 1535/1427,
  38291. bottom: 56/1591
  38292. }
  38293. },
  38294. },
  38295. [
  38296. {
  38297. name: "Normal",
  38298. height: math.unit(15, "feet"),
  38299. default: true
  38300. },
  38301. {
  38302. name: "Large",
  38303. height: math.unit(150, "feet")
  38304. },
  38305. {
  38306. name: "Macro",
  38307. height: math.unit(1876, "feet")
  38308. },
  38309. {
  38310. name: "Mega Macro",
  38311. height: math.unit(121940, "feet")
  38312. },
  38313. {
  38314. name: "Giga Macro",
  38315. height: math.unit(750, "km")
  38316. },
  38317. {
  38318. name: "Tera Macro",
  38319. height: math.unit(750000, "km")
  38320. },
  38321. {
  38322. name: "Galactic",
  38323. height: math.unit(1.4e5, "km")
  38324. },
  38325. {
  38326. name: "Godlike",
  38327. height: math.unit(9.8e280, "galaxies")
  38328. },
  38329. ]
  38330. ))
  38331. characterMakers.push(() => makeCharacter(
  38332. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38333. {
  38334. front: {
  38335. height: math.unit(11, "meters"),
  38336. weight: math.unit(20, "tonnes"),
  38337. name: "Front",
  38338. image: {
  38339. source: "./media/characters/alistair/front.svg",
  38340. extra: 1265/1009,
  38341. bottom: 93/1358
  38342. }
  38343. },
  38344. },
  38345. [
  38346. {
  38347. name: "Normal",
  38348. height: math.unit(11, "meters"),
  38349. default: true
  38350. },
  38351. ]
  38352. ))
  38353. characterMakers.push(() => makeCharacter(
  38354. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38355. {
  38356. front: {
  38357. height: math.unit(5 + 8/12, "feet"),
  38358. name: "Front",
  38359. image: {
  38360. source: "./media/characters/haruka/front.svg",
  38361. extra: 2012/1952,
  38362. bottom: 0/2012
  38363. }
  38364. },
  38365. },
  38366. [
  38367. {
  38368. name: "Normal",
  38369. height: math.unit(5 + 8/12, "feet"),
  38370. default: true
  38371. },
  38372. ]
  38373. ))
  38374. characterMakers.push(() => makeCharacter(
  38375. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38376. {
  38377. back: {
  38378. height: math.unit(9, "feet"),
  38379. name: "Back",
  38380. image: {
  38381. source: "./media/characters/vivian-sylveon/back.svg",
  38382. extra: 1853/1714,
  38383. bottom: 0/1853
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(9, "feet"),
  38391. default: true
  38392. },
  38393. {
  38394. name: "Macro",
  38395. height: math.unit(500, "feet")
  38396. },
  38397. {
  38398. name: "Megamacro",
  38399. height: math.unit(600, "miles")
  38400. },
  38401. {
  38402. name: "Gigamacro",
  38403. height: math.unit(30000, "miles")
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38409. {
  38410. anthro: {
  38411. height: math.unit(5 + 10/12, "feet"),
  38412. weight: math.unit(100, "lb"),
  38413. name: "Anthro",
  38414. image: {
  38415. source: "./media/characters/daiki/anthro.svg",
  38416. extra: 1115/1027,
  38417. bottom: 69/1184
  38418. }
  38419. },
  38420. feral: {
  38421. height: math.unit(200, "feet"),
  38422. name: "Feral",
  38423. image: {
  38424. source: "./media/characters/daiki/feral.svg",
  38425. extra: 1256/313,
  38426. bottom: 39/1295
  38427. }
  38428. },
  38429. feralHead: {
  38430. height: math.unit(171, "feet"),
  38431. name: "Feral Head",
  38432. image: {
  38433. source: "./media/characters/daiki/feral-head.svg"
  38434. }
  38435. },
  38436. manaDragon: {
  38437. height: math.unit(170, "meters"),
  38438. name: "Mana-dragon",
  38439. image: {
  38440. source: "./media/characters/daiki/mana-dragon.svg",
  38441. extra: 763/420,
  38442. bottom: 97/860
  38443. }
  38444. },
  38445. },
  38446. [
  38447. {
  38448. name: "Normal",
  38449. height: math.unit(5 + 10/12, "feet"),
  38450. default: true
  38451. },
  38452. ]
  38453. ))
  38454. characterMakers.push(() => makeCharacter(
  38455. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38456. {
  38457. fullyEquippedFront: {
  38458. height: math.unit(3 + 1/12, "feet"),
  38459. weight: math.unit(24, "lb"),
  38460. name: "Fully Equipped (Front)",
  38461. image: {
  38462. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38463. extra: 687/605,
  38464. bottom: 18/705
  38465. }
  38466. },
  38467. fullyEquippedBack: {
  38468. height: math.unit(3 + 1/12, "feet"),
  38469. weight: math.unit(24, "lb"),
  38470. name: "Fully Equipped (Back)",
  38471. image: {
  38472. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38473. extra: 689/590,
  38474. bottom: 18/707
  38475. }
  38476. },
  38477. dailyWear: {
  38478. height: math.unit(3 + 1/12, "feet"),
  38479. weight: math.unit(24, "lb"),
  38480. name: "Daily Wear",
  38481. image: {
  38482. source: "./media/characters/tea-spot/daily-wear.svg",
  38483. extra: 701/620,
  38484. bottom: 21/722
  38485. }
  38486. },
  38487. maidWork: {
  38488. height: math.unit(3 + 1/12, "feet"),
  38489. weight: math.unit(24, "lb"),
  38490. name: "Maid Work",
  38491. image: {
  38492. source: "./media/characters/tea-spot/maid-work.svg",
  38493. extra: 693/609,
  38494. bottom: 15/708
  38495. }
  38496. },
  38497. },
  38498. [
  38499. {
  38500. name: "Normal",
  38501. height: math.unit(3 + 1/12, "feet"),
  38502. default: true
  38503. },
  38504. ]
  38505. ))
  38506. characterMakers.push(() => makeCharacter(
  38507. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38508. {
  38509. front: {
  38510. height: math.unit(175, "cm"),
  38511. weight: math.unit(75, "kg"),
  38512. name: "Front",
  38513. image: {
  38514. source: "./media/characters/chee/front.svg",
  38515. extra: 1796/1740,
  38516. bottom: 40/1836
  38517. }
  38518. },
  38519. },
  38520. [
  38521. {
  38522. name: "Micro-Micro",
  38523. height: math.unit(1, "nm")
  38524. },
  38525. {
  38526. name: "Micro-erst",
  38527. height: math.unit(1, "micrometer")
  38528. },
  38529. {
  38530. name: "Micro-er",
  38531. height: math.unit(1, "cm")
  38532. },
  38533. {
  38534. name: "Normal",
  38535. height: math.unit(175, "cm"),
  38536. default: true
  38537. },
  38538. {
  38539. name: "Macro",
  38540. height: math.unit(100, "m")
  38541. },
  38542. {
  38543. name: "Macro-er",
  38544. height: math.unit(1, "km")
  38545. },
  38546. {
  38547. name: "Macro-erst",
  38548. height: math.unit(10, "km")
  38549. },
  38550. {
  38551. name: "Macro-Macro",
  38552. height: math.unit(100, "km")
  38553. },
  38554. ]
  38555. ))
  38556. characterMakers.push(() => makeCharacter(
  38557. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38558. {
  38559. front: {
  38560. height: math.unit(11 + 9/12, "feet"),
  38561. weight: math.unit(935, "lb"),
  38562. name: "Front",
  38563. image: {
  38564. source: "./media/characters/kingsley/front.svg",
  38565. extra: 1803/1674,
  38566. bottom: 127/1930
  38567. }
  38568. },
  38569. frontNude: {
  38570. height: math.unit(11 + 9/12, "feet"),
  38571. weight: math.unit(935, "lb"),
  38572. name: "Front (Nude)",
  38573. image: {
  38574. source: "./media/characters/kingsley/front-nude.svg",
  38575. extra: 1803/1674,
  38576. bottom: 127/1930
  38577. }
  38578. },
  38579. },
  38580. [
  38581. {
  38582. name: "Normal",
  38583. height: math.unit(11 + 9/12, "feet"),
  38584. default: true
  38585. },
  38586. ]
  38587. ))
  38588. characterMakers.push(() => makeCharacter(
  38589. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38590. {
  38591. side: {
  38592. height: math.unit(9, "feet"),
  38593. name: "Side",
  38594. image: {
  38595. source: "./media/characters/rymel/side.svg",
  38596. extra: 792/469,
  38597. bottom: 121/913
  38598. }
  38599. },
  38600. maw: {
  38601. height: math.unit(2.4, "meters"),
  38602. name: "Maw",
  38603. image: {
  38604. source: "./media/characters/rymel/maw.svg"
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "House Drake",
  38611. height: math.unit(2, "feet")
  38612. },
  38613. {
  38614. name: "Reduced",
  38615. height: math.unit(4.5, "feet")
  38616. },
  38617. {
  38618. name: "Normal",
  38619. height: math.unit(9, "feet"),
  38620. default: true
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(1.74, "meters"),
  38629. weight: math.unit(55, "kg"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/rubus/front.svg",
  38633. extra: 1894/1742,
  38634. bottom: 44/1938
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Normal",
  38641. height: math.unit(1.74, "meters"),
  38642. default: true
  38643. },
  38644. ]
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38648. {
  38649. front: {
  38650. height: math.unit(5 + 2/12, "feet"),
  38651. weight: math.unit(112, "lb"),
  38652. name: "Front",
  38653. image: {
  38654. source: "./media/characters/cassie-kingston/front.svg",
  38655. extra: 1438/1390,
  38656. bottom: 47/1485
  38657. }
  38658. },
  38659. },
  38660. [
  38661. {
  38662. name: "Normal",
  38663. height: math.unit(5 + 2/12, "feet"),
  38664. default: true
  38665. },
  38666. {
  38667. name: "Macro",
  38668. height: math.unit(128, "feet")
  38669. },
  38670. {
  38671. name: "Megamacro",
  38672. height: math.unit(2.56, "miles")
  38673. },
  38674. ]
  38675. ))
  38676. characterMakers.push(() => makeCharacter(
  38677. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38678. {
  38679. front: {
  38680. height: math.unit(7, "feet"),
  38681. name: "Front",
  38682. image: {
  38683. source: "./media/characters/fox/front.svg",
  38684. extra: 1798/1703,
  38685. bottom: 55/1853
  38686. }
  38687. },
  38688. back: {
  38689. height: math.unit(7, "feet"),
  38690. name: "Back",
  38691. image: {
  38692. source: "./media/characters/fox/back.svg",
  38693. extra: 1748/1649,
  38694. bottom: 32/1780
  38695. }
  38696. },
  38697. head: {
  38698. height: math.unit(1.95, "feet"),
  38699. name: "Head",
  38700. image: {
  38701. source: "./media/characters/fox/head.svg"
  38702. }
  38703. },
  38704. dick: {
  38705. height: math.unit(1.33, "feet"),
  38706. name: "Dick",
  38707. image: {
  38708. source: "./media/characters/fox/dick.svg"
  38709. }
  38710. },
  38711. foot: {
  38712. height: math.unit(1, "feet"),
  38713. name: "Foot",
  38714. image: {
  38715. source: "./media/characters/fox/foot.svg"
  38716. }
  38717. },
  38718. paw: {
  38719. height: math.unit(0.92, "feet"),
  38720. name: "Paw",
  38721. image: {
  38722. source: "./media/characters/fox/paw.svg"
  38723. }
  38724. },
  38725. },
  38726. [
  38727. {
  38728. name: "Small",
  38729. height: math.unit(3, "inches")
  38730. },
  38731. {
  38732. name: "\"Realistic\"",
  38733. height: math.unit(7, "feet")
  38734. },
  38735. {
  38736. name: "Normal",
  38737. height: math.unit(150, "feet"),
  38738. default: true
  38739. },
  38740. {
  38741. name: "BIG",
  38742. height: math.unit(1200, "feet")
  38743. },
  38744. {
  38745. name: "👀",
  38746. height: math.unit(5, "miles")
  38747. },
  38748. {
  38749. name: "👀👀👀",
  38750. height: math.unit(64, "miles")
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38756. {
  38757. front: {
  38758. height: math.unit(625, "feet"),
  38759. name: "Front",
  38760. image: {
  38761. source: "./media/characters/asonja-rossa/front.svg",
  38762. extra: 1833/1686,
  38763. bottom: 24/1857
  38764. }
  38765. },
  38766. back: {
  38767. height: math.unit(625, "feet"),
  38768. name: "Back",
  38769. image: {
  38770. source: "./media/characters/asonja-rossa/back.svg",
  38771. extra: 1852/1753,
  38772. bottom: 26/1878
  38773. }
  38774. },
  38775. },
  38776. [
  38777. {
  38778. name: "Macro",
  38779. height: math.unit(625, "feet"),
  38780. default: true
  38781. },
  38782. ]
  38783. ))
  38784. characterMakers.push(() => makeCharacter(
  38785. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38786. {
  38787. side: {
  38788. height: math.unit(8, "feet"),
  38789. name: "Side",
  38790. image: {
  38791. source: "./media/characters/rezukii/side.svg",
  38792. extra: 979/542,
  38793. bottom: 87/1066
  38794. }
  38795. },
  38796. sitting: {
  38797. height: math.unit(14.6, "feet"),
  38798. name: "Sitting",
  38799. image: {
  38800. source: "./media/characters/rezukii/sitting.svg",
  38801. extra: 1023/813,
  38802. bottom: 45/1068
  38803. }
  38804. },
  38805. },
  38806. [
  38807. {
  38808. name: "Tiny",
  38809. height: math.unit(2, "feet")
  38810. },
  38811. {
  38812. name: "Smol",
  38813. height: math.unit(4, "feet")
  38814. },
  38815. {
  38816. name: "Normal",
  38817. height: math.unit(8, "feet"),
  38818. default: true
  38819. },
  38820. {
  38821. name: "Big",
  38822. height: math.unit(12, "feet")
  38823. },
  38824. {
  38825. name: "Macro",
  38826. height: math.unit(30, "feet")
  38827. },
  38828. ]
  38829. ))
  38830. characterMakers.push(() => makeCharacter(
  38831. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38832. {
  38833. front: {
  38834. height: math.unit(14, "feet"),
  38835. weight: math.unit(9.5, "tonnes"),
  38836. name: "Front",
  38837. image: {
  38838. source: "./media/characters/dawnheart/front.svg",
  38839. extra: 2792/2675,
  38840. bottom: 64/2856
  38841. }
  38842. },
  38843. },
  38844. [
  38845. {
  38846. name: "Normal",
  38847. height: math.unit(14, "feet"),
  38848. default: true
  38849. },
  38850. ]
  38851. ))
  38852. characterMakers.push(() => makeCharacter(
  38853. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38854. {
  38855. front: {
  38856. height: math.unit(1.7, "m"),
  38857. name: "Front",
  38858. image: {
  38859. source: "./media/characters/gladi/front.svg",
  38860. extra: 1460/1362,
  38861. bottom: 19/1479
  38862. }
  38863. },
  38864. back: {
  38865. height: math.unit(1.7, "m"),
  38866. name: "Back",
  38867. image: {
  38868. source: "./media/characters/gladi/back.svg",
  38869. extra: 1459/1357,
  38870. bottom: 12/1471
  38871. }
  38872. },
  38873. feral: {
  38874. height: math.unit(2.05, "m"),
  38875. name: "Feral",
  38876. image: {
  38877. source: "./media/characters/gladi/feral.svg",
  38878. extra: 821/557,
  38879. bottom: 91/912
  38880. }
  38881. },
  38882. },
  38883. [
  38884. {
  38885. name: "Shortest",
  38886. height: math.unit(70, "cm")
  38887. },
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(1.7, "m")
  38891. },
  38892. {
  38893. name: "Macro",
  38894. height: math.unit(10, "m"),
  38895. default: true
  38896. },
  38897. {
  38898. name: "Tallest",
  38899. height: math.unit(200, "m")
  38900. },
  38901. ]
  38902. ))
  38903. characterMakers.push(() => makeCharacter(
  38904. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38905. {
  38906. front: {
  38907. height: math.unit(5 + 7/12, "feet"),
  38908. weight: math.unit(2, "tons"),
  38909. name: "Front",
  38910. image: {
  38911. source: "./media/characters/erdno/front.svg",
  38912. extra: 1234/1129,
  38913. bottom: 35/1269
  38914. }
  38915. },
  38916. angled: {
  38917. height: math.unit(5 + 7/12, "feet"),
  38918. weight: math.unit(2, "tons"),
  38919. name: "Angled",
  38920. image: {
  38921. source: "./media/characters/erdno/angled.svg",
  38922. extra: 1185/1139,
  38923. bottom: 36/1221
  38924. }
  38925. },
  38926. side: {
  38927. height: math.unit(5 + 7/12, "feet"),
  38928. weight: math.unit(2, "tons"),
  38929. name: "Side",
  38930. image: {
  38931. source: "./media/characters/erdno/side.svg",
  38932. extra: 1191/1144,
  38933. bottom: 40/1231
  38934. }
  38935. },
  38936. back: {
  38937. height: math.unit(5 + 7/12, "feet"),
  38938. weight: math.unit(2, "tons"),
  38939. name: "Back",
  38940. image: {
  38941. source: "./media/characters/erdno/back.svg",
  38942. extra: 1202/1146,
  38943. bottom: 17/1219
  38944. }
  38945. },
  38946. frontNsfw: {
  38947. height: math.unit(5 + 7/12, "feet"),
  38948. weight: math.unit(2, "tons"),
  38949. name: "Front (NSFW)",
  38950. image: {
  38951. source: "./media/characters/erdno/front-nsfw.svg",
  38952. extra: 1234/1129,
  38953. bottom: 35/1269
  38954. }
  38955. },
  38956. angledNsfw: {
  38957. height: math.unit(5 + 7/12, "feet"),
  38958. weight: math.unit(2, "tons"),
  38959. name: "Angled (NSFW)",
  38960. image: {
  38961. source: "./media/characters/erdno/angled-nsfw.svg",
  38962. extra: 1185/1139,
  38963. bottom: 36/1221
  38964. }
  38965. },
  38966. sideNsfw: {
  38967. height: math.unit(5 + 7/12, "feet"),
  38968. weight: math.unit(2, "tons"),
  38969. name: "Side (NSFW)",
  38970. image: {
  38971. source: "./media/characters/erdno/side-nsfw.svg",
  38972. extra: 1191/1144,
  38973. bottom: 40/1231
  38974. }
  38975. },
  38976. backNsfw: {
  38977. height: math.unit(5 + 7/12, "feet"),
  38978. weight: math.unit(2, "tons"),
  38979. name: "Back (NSFW)",
  38980. image: {
  38981. source: "./media/characters/erdno/back-nsfw.svg",
  38982. extra: 1202/1146,
  38983. bottom: 17/1219
  38984. }
  38985. },
  38986. frontHyper: {
  38987. height: math.unit(5 + 7/12, "feet"),
  38988. weight: math.unit(2, "tons"),
  38989. name: "Front (Hyper)",
  38990. image: {
  38991. source: "./media/characters/erdno/front-hyper.svg",
  38992. extra: 1298/1136,
  38993. bottom: 35/1333
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Normal",
  39000. height: math.unit(5 + 7/12, "feet"),
  39001. default: true
  39002. },
  39003. {
  39004. name: "Big",
  39005. height: math.unit(5.7, "meters")
  39006. },
  39007. {
  39008. name: "Macro",
  39009. height: math.unit(5.7, "kilometers")
  39010. },
  39011. {
  39012. name: "Megamacro",
  39013. height: math.unit(5.7, "earths")
  39014. },
  39015. ]
  39016. ))
  39017. characterMakers.push(() => makeCharacter(
  39018. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39019. {
  39020. front: {
  39021. height: math.unit(5 + 10/12, "feet"),
  39022. weight: math.unit(150, "lb"),
  39023. name: "Front",
  39024. image: {
  39025. source: "./media/characters/jamie/front.svg",
  39026. extra: 1908/1768,
  39027. bottom: 19/1927
  39028. }
  39029. },
  39030. },
  39031. [
  39032. {
  39033. name: "Minimum",
  39034. height: math.unit(2, "cm")
  39035. },
  39036. {
  39037. name: "Micro",
  39038. height: math.unit(3, "inches")
  39039. },
  39040. {
  39041. name: "Normal",
  39042. height: math.unit(5 + 10/12, "feet"),
  39043. default: true
  39044. },
  39045. {
  39046. name: "Macro",
  39047. height: math.unit(150, "feet")
  39048. },
  39049. {
  39050. name: "Megamacro",
  39051. height: math.unit(10000, "m")
  39052. },
  39053. ]
  39054. ))
  39055. characterMakers.push(() => makeCharacter(
  39056. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39057. {
  39058. front: {
  39059. height: math.unit(2, "meters"),
  39060. weight: math.unit(100, "kg"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/shiron/front.svg",
  39064. extra: 2103/1985,
  39065. bottom: 98/2201
  39066. }
  39067. },
  39068. back: {
  39069. height: math.unit(2, "meters"),
  39070. weight: math.unit(100, "kg"),
  39071. name: "Back",
  39072. image: {
  39073. source: "./media/characters/shiron/back.svg",
  39074. extra: 2110/2015,
  39075. bottom: 89/2199
  39076. }
  39077. },
  39078. hand: {
  39079. height: math.unit(0.96, "feet"),
  39080. name: "Hand",
  39081. image: {
  39082. source: "./media/characters/shiron/hand.svg"
  39083. }
  39084. },
  39085. foot: {
  39086. height: math.unit(1.464, "feet"),
  39087. name: "Foot",
  39088. image: {
  39089. source: "./media/characters/shiron/foot.svg"
  39090. }
  39091. },
  39092. },
  39093. [
  39094. {
  39095. name: "Normal",
  39096. height: math.unit(2, "meters")
  39097. },
  39098. {
  39099. name: "Macro",
  39100. height: math.unit(500, "meters"),
  39101. default: true
  39102. },
  39103. {
  39104. name: "Megamacro",
  39105. height: math.unit(20, "km")
  39106. },
  39107. ]
  39108. ))
  39109. characterMakers.push(() => makeCharacter(
  39110. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39111. {
  39112. front: {
  39113. height: math.unit(6, "feet"),
  39114. name: "Front",
  39115. image: {
  39116. source: "./media/characters/sam/front.svg",
  39117. extra: 849/826,
  39118. bottom: 19/868
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(6, "feet"),
  39126. default: true
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39132. {
  39133. front: {
  39134. height: math.unit(8 + 4/12, "feet"),
  39135. weight: math.unit(122, "kg"),
  39136. name: "Front",
  39137. image: {
  39138. source: "./media/characters/namori-kurogawa/front.svg",
  39139. extra: 1894/1576,
  39140. bottom: 34/1928
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Normal",
  39147. height: math.unit(8 + 4/12, "feet"),
  39148. default: true
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39154. {
  39155. front: {
  39156. height: math.unit(9, "feet"),
  39157. weight: math.unit(621, "lb"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/unmru/front.svg",
  39161. extra: 1853/1747,
  39162. bottom: 73/1926
  39163. }
  39164. },
  39165. side: {
  39166. height: math.unit(9, "feet"),
  39167. weight: math.unit(621, "lb"),
  39168. name: "Side",
  39169. image: {
  39170. source: "./media/characters/unmru/side.svg",
  39171. extra: 1781/1671,
  39172. bottom: 127/1908
  39173. }
  39174. },
  39175. back: {
  39176. height: math.unit(9, "feet"),
  39177. weight: math.unit(621, "lb"),
  39178. name: "Back",
  39179. image: {
  39180. source: "./media/characters/unmru/back.svg",
  39181. extra: 1894/1765,
  39182. bottom: 75/1969
  39183. }
  39184. },
  39185. dick: {
  39186. height: math.unit(3, "feet"),
  39187. weight: math.unit(35, "lb"),
  39188. name: "Dick",
  39189. image: {
  39190. source: "./media/characters/unmru/dick.svg"
  39191. }
  39192. },
  39193. },
  39194. [
  39195. {
  39196. name: "Normal",
  39197. height: math.unit(9, "feet")
  39198. },
  39199. {
  39200. name: "Natural",
  39201. height: math.unit(27, "feet"),
  39202. default: true
  39203. },
  39204. {
  39205. name: "Giant",
  39206. height: math.unit(90, "feet")
  39207. },
  39208. {
  39209. name: "Kaiju",
  39210. height: math.unit(270, "feet")
  39211. },
  39212. {
  39213. name: "Macro",
  39214. height: math.unit(900, "feet")
  39215. },
  39216. {
  39217. name: "Macro+",
  39218. height: math.unit(2700, "feet")
  39219. },
  39220. {
  39221. name: "Megamacro",
  39222. height: math.unit(9000, "feet")
  39223. },
  39224. {
  39225. name: "City-Crushing",
  39226. height: math.unit(27000, "feet")
  39227. },
  39228. {
  39229. name: "Mountain-Mashing",
  39230. height: math.unit(90000, "feet")
  39231. },
  39232. {
  39233. name: "Earth-Eclipsing",
  39234. height: math.unit(2.7e8, "feet")
  39235. },
  39236. {
  39237. name: "Sol-Swallowing",
  39238. height: math.unit(9e10, "feet")
  39239. },
  39240. {
  39241. name: "Majoris-Munching",
  39242. height: math.unit(2.7e13, "feet")
  39243. },
  39244. ]
  39245. ))
  39246. characterMakers.push(() => makeCharacter(
  39247. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39248. {
  39249. front: {
  39250. height: math.unit(1, "inch"),
  39251. name: "Front",
  39252. image: {
  39253. source: "./media/characters/squeaks-mouse/front.svg",
  39254. extra: 352/308,
  39255. bottom: 25/377
  39256. }
  39257. },
  39258. },
  39259. [
  39260. {
  39261. name: "Micro",
  39262. height: math.unit(1, "inch"),
  39263. default: true
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39269. {
  39270. side: {
  39271. height: math.unit(35, "feet"),
  39272. name: "Side",
  39273. image: {
  39274. source: "./media/characters/sayko/side.svg",
  39275. extra: 1697/1021,
  39276. bottom: 82/1779
  39277. }
  39278. },
  39279. head: {
  39280. height: math.unit(16, "feet"),
  39281. name: "Head",
  39282. image: {
  39283. source: "./media/characters/sayko/head.svg"
  39284. }
  39285. },
  39286. forepaw: {
  39287. height: math.unit(7.85, "feet"),
  39288. name: "Forepaw",
  39289. image: {
  39290. source: "./media/characters/sayko/forepaw.svg"
  39291. }
  39292. },
  39293. hindpaw: {
  39294. height: math.unit(8.8, "feet"),
  39295. name: "Hindpaw",
  39296. image: {
  39297. source: "./media/characters/sayko/hindpaw.svg"
  39298. }
  39299. },
  39300. },
  39301. [
  39302. {
  39303. name: "Normal",
  39304. height: math.unit(35, "feet"),
  39305. default: true
  39306. },
  39307. {
  39308. name: "Colossus",
  39309. height: math.unit(100, "meters")
  39310. },
  39311. {
  39312. name: "\"Small\" Deity",
  39313. height: math.unit(1, "km")
  39314. },
  39315. {
  39316. name: "\"Large\" Deity",
  39317. height: math.unit(15, "km")
  39318. },
  39319. ]
  39320. ))
  39321. characterMakers.push(() => makeCharacter(
  39322. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39323. {
  39324. front: {
  39325. height: math.unit(6, "feet"),
  39326. weight: math.unit(250, "lb"),
  39327. name: "Front",
  39328. image: {
  39329. source: "./media/characters/mukiro/front.svg",
  39330. extra: 1368/1310,
  39331. bottom: 34/1402
  39332. }
  39333. },
  39334. },
  39335. [
  39336. {
  39337. name: "Normal",
  39338. height: math.unit(6, "feet"),
  39339. default: true
  39340. },
  39341. ]
  39342. ))
  39343. characterMakers.push(() => makeCharacter(
  39344. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39345. {
  39346. front: {
  39347. height: math.unit(12 + 4/12, "feet"),
  39348. name: "Front",
  39349. image: {
  39350. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39351. extra: 1346/1311,
  39352. bottom: 65/1411
  39353. }
  39354. },
  39355. },
  39356. [
  39357. {
  39358. name: "Base",
  39359. height: math.unit(12 + 4/12, "feet"),
  39360. default: true
  39361. },
  39362. {
  39363. name: "Macro",
  39364. height: math.unit(150, "feet")
  39365. },
  39366. {
  39367. name: "Mega",
  39368. height: math.unit(2, "miles")
  39369. },
  39370. {
  39371. name: "Demi God",
  39372. height: math.unit(4, "AU")
  39373. },
  39374. {
  39375. name: "God Size",
  39376. height: math.unit(1, "universe")
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(3 + 3/12, "feet"),
  39385. weight: math.unit(88, "lb"),
  39386. name: "Front",
  39387. image: {
  39388. source: "./media/characters/trey/front.svg",
  39389. extra: 1815/1509,
  39390. bottom: 60/1875
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(3 + 3/12, "feet"),
  39398. default: true
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39404. {
  39405. front: {
  39406. height: math.unit(4, "meters"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/adelonda/front.svg",
  39410. extra: 1077/982,
  39411. bottom: 39/1116
  39412. }
  39413. },
  39414. back: {
  39415. height: math.unit(4, "meters"),
  39416. name: "Back",
  39417. image: {
  39418. source: "./media/characters/adelonda/back.svg",
  39419. extra: 1105/1003,
  39420. bottom: 25/1130
  39421. }
  39422. },
  39423. feral: {
  39424. height: math.unit(40/1.5, "meters"),
  39425. name: "Feral",
  39426. image: {
  39427. source: "./media/characters/adelonda/feral.svg",
  39428. extra: 597/271,
  39429. bottom: 387/984
  39430. }
  39431. },
  39432. },
  39433. [
  39434. {
  39435. name: "Normal",
  39436. height: math.unit(4, "meters"),
  39437. default: true
  39438. },
  39439. ]
  39440. ))
  39441. characterMakers.push(() => makeCharacter(
  39442. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39443. {
  39444. front: {
  39445. height: math.unit(8 + 4/12, "feet"),
  39446. weight: math.unit(670, "lb"),
  39447. name: "Front",
  39448. image: {
  39449. source: "./media/characters/acadiel/front.svg",
  39450. extra: 1901/1595,
  39451. bottom: 142/2043
  39452. }
  39453. },
  39454. },
  39455. [
  39456. {
  39457. name: "Normal",
  39458. height: math.unit(8 + 4/12, "feet"),
  39459. default: true
  39460. },
  39461. {
  39462. name: "Macro",
  39463. height: math.unit(200, "feet")
  39464. },
  39465. ]
  39466. ))
  39467. characterMakers.push(() => makeCharacter(
  39468. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39469. {
  39470. front: {
  39471. height: math.unit(6 + 2/12, "feet"),
  39472. weight: math.unit(185, "lb"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/kayne-ein/front.svg",
  39476. extra: 1780/1560,
  39477. bottom: 81/1861
  39478. }
  39479. },
  39480. },
  39481. [
  39482. {
  39483. name: "Normal",
  39484. height: math.unit(6 + 2/12, "feet"),
  39485. default: true
  39486. },
  39487. {
  39488. name: "Transformation Stage",
  39489. height: math.unit(15, "feet")
  39490. },
  39491. {
  39492. name: "Macro",
  39493. height: math.unit(150, "feet")
  39494. },
  39495. {
  39496. name: "Earth's Shadow",
  39497. height: math.unit(6200, "miles")
  39498. },
  39499. {
  39500. name: "Universal Demon",
  39501. height: math.unit(28e9, "parsecs")
  39502. },
  39503. {
  39504. name: "Multiverse God",
  39505. height: math.unit(3, "multiverses")
  39506. },
  39507. ]
  39508. ))
  39509. characterMakers.push(() => makeCharacter(
  39510. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39511. {
  39512. front: {
  39513. height: math.unit(5 + 5/12, "feet"),
  39514. name: "Front",
  39515. image: {
  39516. source: "./media/characters/fawn/front.svg",
  39517. extra: 1873/1731,
  39518. bottom: 95/1968
  39519. }
  39520. },
  39521. back: {
  39522. height: math.unit(5 + 5/12, "feet"),
  39523. name: "Back",
  39524. image: {
  39525. source: "./media/characters/fawn/back.svg",
  39526. extra: 1813/1700,
  39527. bottom: 14/1827
  39528. }
  39529. },
  39530. hoof: {
  39531. height: math.unit(1.45, "feet"),
  39532. name: "Hoof",
  39533. image: {
  39534. source: "./media/characters/fawn/hoof.svg"
  39535. }
  39536. },
  39537. },
  39538. [
  39539. {
  39540. name: "Normal",
  39541. height: math.unit(5 + 5/12, "feet"),
  39542. default: true
  39543. },
  39544. ]
  39545. ))
  39546. characterMakers.push(() => makeCharacter(
  39547. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39548. {
  39549. front: {
  39550. height: math.unit(2 + 5/12, "feet"),
  39551. name: "Front",
  39552. image: {
  39553. source: "./media/characters/orion/front.svg",
  39554. extra: 1366/1304,
  39555. bottom: 43/1409
  39556. }
  39557. },
  39558. paw: {
  39559. height: math.unit(0.52, "feet"),
  39560. name: "Paw",
  39561. image: {
  39562. source: "./media/characters/orion/paw.svg"
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Normal",
  39569. height: math.unit(2 + 5/12, "feet"),
  39570. default: true
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39576. {
  39577. front: {
  39578. height: math.unit(5 + 10/12, "feet"),
  39579. name: "Front",
  39580. image: {
  39581. source: "./media/characters/vera/front.svg",
  39582. extra: 1680/1575,
  39583. bottom: 49/1729
  39584. }
  39585. },
  39586. back: {
  39587. height: math.unit(5 + 10/12, "feet"),
  39588. name: "Back",
  39589. image: {
  39590. source: "./media/characters/vera/back.svg",
  39591. extra: 1700/1588,
  39592. bottom: 18/1718
  39593. }
  39594. },
  39595. arcanine: {
  39596. height: math.unit(6 + 8/12, "feet"),
  39597. name: "Arcanine",
  39598. image: {
  39599. source: "./media/characters/vera/arcanine.svg",
  39600. extra: 1590/1511,
  39601. bottom: 71/1661
  39602. }
  39603. },
  39604. maw: {
  39605. height: math.unit(0.82, "feet"),
  39606. name: "Maw",
  39607. image: {
  39608. source: "./media/characters/vera/maw.svg"
  39609. }
  39610. },
  39611. mawArcanine: {
  39612. height: math.unit(0.97, "feet"),
  39613. name: "Maw (Arcanine)",
  39614. image: {
  39615. source: "./media/characters/vera/maw-arcanine.svg"
  39616. }
  39617. },
  39618. paw: {
  39619. height: math.unit(0.75, "feet"),
  39620. name: "Paw",
  39621. image: {
  39622. source: "./media/characters/vera/paw.svg"
  39623. }
  39624. },
  39625. pawprint: {
  39626. height: math.unit(0.52, "feet"),
  39627. name: "Pawprint",
  39628. image: {
  39629. source: "./media/characters/vera/pawprint.svg"
  39630. }
  39631. },
  39632. },
  39633. [
  39634. {
  39635. name: "Normal",
  39636. height: math.unit(5 + 10/12, "feet"),
  39637. default: true
  39638. },
  39639. {
  39640. name: "Macro",
  39641. height: math.unit(75, "feet")
  39642. },
  39643. ]
  39644. ))
  39645. characterMakers.push(() => makeCharacter(
  39646. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39647. {
  39648. front: {
  39649. height: math.unit(4, "feet"),
  39650. weight: math.unit(40, "lb"),
  39651. name: "Front",
  39652. image: {
  39653. source: "./media/characters/orvan-rabbit/front.svg",
  39654. extra: 1896/1642,
  39655. bottom: 29/1925
  39656. }
  39657. },
  39658. },
  39659. [
  39660. {
  39661. name: "Normal",
  39662. height: math.unit(4, "feet"),
  39663. default: true
  39664. },
  39665. ]
  39666. ))
  39667. characterMakers.push(() => makeCharacter(
  39668. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39669. {
  39670. front: {
  39671. height: math.unit(6, "feet"),
  39672. weight: math.unit(168, "lb"),
  39673. name: "Front",
  39674. image: {
  39675. source: "./media/characters/lisa/front.svg",
  39676. extra: 2065/1867,
  39677. bottom: 46/2111
  39678. }
  39679. },
  39680. back: {
  39681. height: math.unit(6, "feet"),
  39682. weight: math.unit(168, "lb"),
  39683. name: "Back",
  39684. image: {
  39685. source: "./media/characters/lisa/back.svg",
  39686. extra: 1982/1838,
  39687. bottom: 29/2011
  39688. }
  39689. },
  39690. maw: {
  39691. height: math.unit(0.81, "feet"),
  39692. name: "Maw",
  39693. image: {
  39694. source: "./media/characters/lisa/maw.svg"
  39695. }
  39696. },
  39697. paw: {
  39698. height: math.unit(0.9, "feet"),
  39699. name: "Paw",
  39700. image: {
  39701. source: "./media/characters/lisa/paw.svg"
  39702. }
  39703. },
  39704. caribousune: {
  39705. height: math.unit(7 + 2/12, "feet"),
  39706. weight: math.unit(268, "lb"),
  39707. name: "Caribousune",
  39708. image: {
  39709. source: "./media/characters/lisa/caribousune.svg",
  39710. extra: 1843/1633,
  39711. bottom: 29/1872
  39712. }
  39713. },
  39714. frontCaribousune: {
  39715. height: math.unit(7 + 2/12, "feet"),
  39716. weight: math.unit(268, "lb"),
  39717. name: "Front (Caribousune)",
  39718. image: {
  39719. source: "./media/characters/lisa/front-caribousune.svg",
  39720. extra: 1818/1638,
  39721. bottom: 52/1870
  39722. }
  39723. },
  39724. sideCaribousune: {
  39725. height: math.unit(7 + 2/12, "feet"),
  39726. weight: math.unit(268, "lb"),
  39727. name: "Side (Caribousune)",
  39728. image: {
  39729. source: "./media/characters/lisa/side-caribousune.svg",
  39730. extra: 1851/1635,
  39731. bottom: 16/1867
  39732. }
  39733. },
  39734. backCaribousune: {
  39735. height: math.unit(7 + 2/12, "feet"),
  39736. weight: math.unit(268, "lb"),
  39737. name: "Back (Caribousune)",
  39738. image: {
  39739. source: "./media/characters/lisa/back-caribousune.svg",
  39740. extra: 1801/1604,
  39741. bottom: 44/1845
  39742. }
  39743. },
  39744. caribou: {
  39745. height: math.unit(7 + 2/12, "feet"),
  39746. weight: math.unit(268, "lb"),
  39747. name: "Caribou",
  39748. image: {
  39749. source: "./media/characters/lisa/caribou.svg",
  39750. extra: 1843/1633,
  39751. bottom: 29/1872
  39752. }
  39753. },
  39754. frontCaribou: {
  39755. height: math.unit(7 + 2/12, "feet"),
  39756. weight: math.unit(268, "lb"),
  39757. name: "Front (Caribou)",
  39758. image: {
  39759. source: "./media/characters/lisa/front-caribou.svg",
  39760. extra: 1818/1638,
  39761. bottom: 52/1870
  39762. }
  39763. },
  39764. sideCaribou: {
  39765. height: math.unit(7 + 2/12, "feet"),
  39766. weight: math.unit(268, "lb"),
  39767. name: "Side (Caribou)",
  39768. image: {
  39769. source: "./media/characters/lisa/side-caribou.svg",
  39770. extra: 1851/1635,
  39771. bottom: 16/1867
  39772. }
  39773. },
  39774. backCaribou: {
  39775. height: math.unit(7 + 2/12, "feet"),
  39776. weight: math.unit(268, "lb"),
  39777. name: "Back (Caribou)",
  39778. image: {
  39779. source: "./media/characters/lisa/back-caribou.svg",
  39780. extra: 1801/1604,
  39781. bottom: 44/1845
  39782. }
  39783. },
  39784. mawCaribou: {
  39785. height: math.unit(1.45, "feet"),
  39786. name: "Maw (Caribou)",
  39787. image: {
  39788. source: "./media/characters/lisa/maw-caribou.svg"
  39789. }
  39790. },
  39791. mawCaribousune: {
  39792. height: math.unit(1.45, "feet"),
  39793. name: "Maw (Caribousune)",
  39794. image: {
  39795. source: "./media/characters/lisa/maw-caribousune.svg"
  39796. }
  39797. },
  39798. pawCaribousune: {
  39799. height: math.unit(1.61, "feet"),
  39800. name: "Paw (Caribou)",
  39801. image: {
  39802. source: "./media/characters/lisa/paw-caribousune.svg"
  39803. }
  39804. },
  39805. },
  39806. [
  39807. {
  39808. name: "Normal",
  39809. height: math.unit(6, "feet")
  39810. },
  39811. {
  39812. name: "God Size",
  39813. height: math.unit(72, "feet"),
  39814. default: true
  39815. },
  39816. {
  39817. name: "Towering",
  39818. height: math.unit(288, "feet")
  39819. },
  39820. {
  39821. name: "City Size",
  39822. height: math.unit(48384, "feet")
  39823. },
  39824. {
  39825. name: "Continental",
  39826. height: math.unit(4200, "miles")
  39827. },
  39828. {
  39829. name: "Planet Eater",
  39830. height: math.unit(42, "earths")
  39831. },
  39832. {
  39833. name: "Star Swallower",
  39834. height: math.unit(42, "solarradii")
  39835. },
  39836. {
  39837. name: "System Swallower",
  39838. height: math.unit(84000, "AU")
  39839. },
  39840. {
  39841. name: "Galaxy Gobbler",
  39842. height: math.unit(42, "galaxies")
  39843. },
  39844. {
  39845. name: "Universe Devourer",
  39846. height: math.unit(42, "universes")
  39847. },
  39848. {
  39849. name: "Multiverse Muncher",
  39850. height: math.unit(42, "multiverses")
  39851. },
  39852. ]
  39853. ))
  39854. characterMakers.push(() => makeCharacter(
  39855. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39856. {
  39857. front: {
  39858. height: math.unit(36, "feet"),
  39859. name: "Front",
  39860. image: {
  39861. source: "./media/characters/shadow-rat/front.svg",
  39862. extra: 1845/1758,
  39863. bottom: 83/1928
  39864. }
  39865. },
  39866. },
  39867. [
  39868. {
  39869. name: "Macro",
  39870. height: math.unit(36, "feet"),
  39871. default: true
  39872. },
  39873. ]
  39874. ))
  39875. characterMakers.push(() => makeCharacter(
  39876. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39877. {
  39878. side: {
  39879. height: math.unit(8, "feet"),
  39880. weight: math.unit(2630, "lb"),
  39881. name: "Side",
  39882. image: {
  39883. source: "./media/characters/torallia/side.svg",
  39884. extra: 2164/2021,
  39885. bottom: 371/2535
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Mortal Interaction",
  39892. height: math.unit(8, "feet")
  39893. },
  39894. {
  39895. name: "Natural",
  39896. height: math.unit(24, "feet"),
  39897. default: true
  39898. },
  39899. {
  39900. name: "Giant",
  39901. height: math.unit(80, "feet")
  39902. },
  39903. {
  39904. name: "Kaiju",
  39905. height: math.unit(240, "feet")
  39906. },
  39907. {
  39908. name: "Macro",
  39909. height: math.unit(800, "feet")
  39910. },
  39911. {
  39912. name: "Macro+",
  39913. height: math.unit(2400, "feet")
  39914. },
  39915. {
  39916. name: "Macro++",
  39917. height: math.unit(8000, "feet")
  39918. },
  39919. {
  39920. name: "City-Crushing",
  39921. height: math.unit(24000, "feet")
  39922. },
  39923. {
  39924. name: "Mountain-Mashing",
  39925. height: math.unit(80000, "feet")
  39926. },
  39927. {
  39928. name: "District Demolisher",
  39929. height: math.unit(240000, "feet")
  39930. },
  39931. {
  39932. name: "Tri-County Terror",
  39933. height: math.unit(800000, "feet")
  39934. },
  39935. {
  39936. name: "State Smasher",
  39937. height: math.unit(2.4e6, "feet")
  39938. },
  39939. {
  39940. name: "Nation Nemesis",
  39941. height: math.unit(8e6, "feet")
  39942. },
  39943. {
  39944. name: "Continent Cracker",
  39945. height: math.unit(2.4e7, "feet")
  39946. },
  39947. {
  39948. name: "Planet-Pillaging",
  39949. height: math.unit(8e7, "feet")
  39950. },
  39951. {
  39952. name: "Earth-Eclipsing",
  39953. height: math.unit(2.4e8, "feet")
  39954. },
  39955. {
  39956. name: "Jovian-Jostling",
  39957. height: math.unit(8e8, "feet")
  39958. },
  39959. {
  39960. name: "Gas Giant Gulper",
  39961. height: math.unit(2.4e9, "feet")
  39962. },
  39963. {
  39964. name: "Astral Annihilator",
  39965. height: math.unit(8e9, "feet")
  39966. },
  39967. {
  39968. name: "Celestial Conqueror",
  39969. height: math.unit(2.4e10, "feet")
  39970. },
  39971. {
  39972. name: "Sol-Swallowing",
  39973. height: math.unit(8e10, "feet")
  39974. },
  39975. {
  39976. name: "Hunter of the Heavens",
  39977. height: math.unit(2.4e13, "feet")
  39978. },
  39979. ]
  39980. ))
  39981. characterMakers.push(() => makeCharacter(
  39982. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39983. {
  39984. front: {
  39985. height: math.unit(6 + 8/12, "feet"),
  39986. weight: math.unit(250, "kilograms"),
  39987. volume: math.unit(28, "liters"),
  39988. name: "Front",
  39989. image: {
  39990. source: "./media/characters/rebecca-pawlson/front.svg",
  39991. extra: 1737/1596,
  39992. bottom: 107/1844
  39993. }
  39994. },
  39995. back: {
  39996. height: math.unit(6 + 8/12, "feet"),
  39997. weight: math.unit(250, "kilograms"),
  39998. volume: math.unit(28, "liters"),
  39999. name: "Back",
  40000. image: {
  40001. source: "./media/characters/rebecca-pawlson/back.svg",
  40002. extra: 1702/1523,
  40003. bottom: 86/1788
  40004. }
  40005. },
  40006. },
  40007. [
  40008. {
  40009. name: "Normal",
  40010. height: math.unit(6 + 8/12, "feet")
  40011. },
  40012. {
  40013. name: "Mini Macro",
  40014. height: math.unit(10, "feet"),
  40015. default: true
  40016. },
  40017. {
  40018. name: "Macro",
  40019. height: math.unit(100, "feet")
  40020. },
  40021. {
  40022. name: "Mega Macro",
  40023. height: math.unit(2500, "feet")
  40024. },
  40025. {
  40026. name: "Giga Macro",
  40027. height: math.unit(50, "miles")
  40028. },
  40029. ]
  40030. ))
  40031. characterMakers.push(() => makeCharacter(
  40032. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40033. {
  40034. front: {
  40035. height: math.unit(7 + 6/12, "feet"),
  40036. weight: math.unit(600, "lb"),
  40037. name: "Front",
  40038. image: {
  40039. source: "./media/characters/moxie-nova/front.svg",
  40040. extra: 1734/1652,
  40041. bottom: 41/1775
  40042. }
  40043. },
  40044. },
  40045. [
  40046. {
  40047. name: "Normal",
  40048. height: math.unit(7 + 6/12, "feet"),
  40049. default: true
  40050. },
  40051. ]
  40052. ))
  40053. characterMakers.push(() => makeCharacter(
  40054. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40055. {
  40056. goat: {
  40057. height: math.unit(4, "feet"),
  40058. weight: math.unit(180, "lb"),
  40059. name: "Goat",
  40060. image: {
  40061. source: "./media/characters/tiffany/goat.svg",
  40062. extra: 1845/1595,
  40063. bottom: 106/1951
  40064. }
  40065. },
  40066. front: {
  40067. height: math.unit(5, "feet"),
  40068. weight: math.unit(150, "lb"),
  40069. name: "Foxcoon",
  40070. image: {
  40071. source: "./media/characters/tiffany/foxcoon.svg",
  40072. extra: 1941/1845,
  40073. bottom: 58/1999
  40074. }
  40075. },
  40076. },
  40077. [
  40078. {
  40079. name: "Normal",
  40080. height: math.unit(5, "feet"),
  40081. default: true
  40082. },
  40083. ]
  40084. ))
  40085. characterMakers.push(() => makeCharacter(
  40086. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40087. {
  40088. front: {
  40089. height: math.unit(8, "feet"),
  40090. weight: math.unit(300, "lb"),
  40091. name: "Front",
  40092. image: {
  40093. source: "./media/characters/raxinath/front.svg",
  40094. extra: 1407/1309,
  40095. bottom: 39/1446
  40096. }
  40097. },
  40098. back: {
  40099. height: math.unit(8, "feet"),
  40100. weight: math.unit(300, "lb"),
  40101. name: "Back",
  40102. image: {
  40103. source: "./media/characters/raxinath/back.svg",
  40104. extra: 1405/1315,
  40105. bottom: 9/1414
  40106. }
  40107. },
  40108. },
  40109. [
  40110. {
  40111. name: "Speck",
  40112. height: math.unit(0.5, "nm")
  40113. },
  40114. {
  40115. name: "Micro",
  40116. height: math.unit(3, "inches")
  40117. },
  40118. {
  40119. name: "Kobold",
  40120. height: math.unit(3, "feet")
  40121. },
  40122. {
  40123. name: "Normal",
  40124. height: math.unit(8, "feet"),
  40125. default: true
  40126. },
  40127. {
  40128. name: "Giant",
  40129. height: math.unit(50, "feet")
  40130. },
  40131. {
  40132. name: "Macro",
  40133. height: math.unit(1000, "feet")
  40134. },
  40135. {
  40136. name: "Megamacro",
  40137. height: math.unit(1, "mile")
  40138. },
  40139. ]
  40140. ))
  40141. characterMakers.push(() => makeCharacter(
  40142. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40143. {
  40144. front: {
  40145. height: math.unit(10, "feet"),
  40146. weight: math.unit(1442, "lb"),
  40147. name: "Front",
  40148. image: {
  40149. source: "./media/characters/mal-dragon/front.svg",
  40150. extra: 1515/1444,
  40151. bottom: 113/1628
  40152. }
  40153. },
  40154. back: {
  40155. height: math.unit(10, "feet"),
  40156. weight: math.unit(1442, "lb"),
  40157. name: "Back",
  40158. image: {
  40159. source: "./media/characters/mal-dragon/back.svg",
  40160. extra: 1527/1434,
  40161. bottom: 25/1552
  40162. }
  40163. },
  40164. },
  40165. [
  40166. {
  40167. name: "Mortal Interaction",
  40168. height: math.unit(10, "feet"),
  40169. default: true
  40170. },
  40171. {
  40172. name: "Large",
  40173. height: math.unit(30, "feet")
  40174. },
  40175. {
  40176. name: "Kaiju",
  40177. height: math.unit(300, "feet")
  40178. },
  40179. {
  40180. name: "Megamacro",
  40181. height: math.unit(10000, "feet")
  40182. },
  40183. {
  40184. name: "Continent Cracker",
  40185. height: math.unit(30000000, "feet")
  40186. },
  40187. {
  40188. name: "Sol-Swallowing",
  40189. height: math.unit(1e11, "feet")
  40190. },
  40191. {
  40192. name: "Light Universal",
  40193. height: math.unit(5, "universes")
  40194. },
  40195. {
  40196. name: "Universe Atoms",
  40197. height: math.unit(1.829e9, "universes")
  40198. },
  40199. {
  40200. name: "Light Multiversal",
  40201. height: math.unit(5, "multiverses")
  40202. },
  40203. {
  40204. name: "Multiverse Atoms",
  40205. height: math.unit(1.829e9, "multiverses")
  40206. },
  40207. {
  40208. name: "Fabric of Time",
  40209. height: math.unit(1e262, "multiverses")
  40210. },
  40211. ]
  40212. ))
  40213. characterMakers.push(() => makeCharacter(
  40214. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40215. {
  40216. front: {
  40217. height: math.unit(9, "feet"),
  40218. weight: math.unit(1050, "lb"),
  40219. name: "Front",
  40220. image: {
  40221. source: "./media/characters/tabitha/front.svg",
  40222. extra: 2083/1994,
  40223. bottom: 68/2151
  40224. }
  40225. },
  40226. },
  40227. [
  40228. {
  40229. name: "Baseline",
  40230. height: math.unit(9, "feet"),
  40231. default: true
  40232. },
  40233. {
  40234. name: "Giant",
  40235. height: math.unit(90, "feet")
  40236. },
  40237. {
  40238. name: "Macro",
  40239. height: math.unit(900, "feet")
  40240. },
  40241. {
  40242. name: "Megamacro",
  40243. height: math.unit(9000, "feet")
  40244. },
  40245. {
  40246. name: "City-Crushing",
  40247. height: math.unit(27000, "feet")
  40248. },
  40249. {
  40250. name: "Mountain-Mashing",
  40251. height: math.unit(90000, "feet")
  40252. },
  40253. {
  40254. name: "Nation Nemesis",
  40255. height: math.unit(9e6, "feet")
  40256. },
  40257. {
  40258. name: "Continent Cracker",
  40259. height: math.unit(27e6, "feet")
  40260. },
  40261. {
  40262. name: "Earth-Eclipsing",
  40263. height: math.unit(2.7e8, "feet")
  40264. },
  40265. {
  40266. name: "Gas Giant Gulper",
  40267. height: math.unit(2.7e9, "feet")
  40268. },
  40269. {
  40270. name: "Sol-Swallowing",
  40271. height: math.unit(9e10, "feet")
  40272. },
  40273. {
  40274. name: "Galaxy Gulper",
  40275. height: math.unit(9, "galaxies")
  40276. },
  40277. {
  40278. name: "Cosmos Churner",
  40279. height: math.unit(9, "universes")
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40285. {
  40286. front: {
  40287. height: math.unit(160, "cm"),
  40288. weight: math.unit(55, "kg"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/tow/front.svg",
  40292. extra: 1751/1722,
  40293. bottom: 74/1825
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Norm",
  40300. height: math.unit(160, "cm")
  40301. },
  40302. {
  40303. name: "Casual",
  40304. height: math.unit(3200, "m"),
  40305. default: true
  40306. },
  40307. {
  40308. name: "Show-Off",
  40309. height: math.unit(160, "km")
  40310. },
  40311. ]
  40312. ))
  40313. characterMakers.push(() => makeCharacter(
  40314. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40315. {
  40316. front: {
  40317. height: math.unit(7 + 11/12, "feet"),
  40318. weight: math.unit(342.8, "lb"),
  40319. name: "Front",
  40320. image: {
  40321. source: "./media/characters/vivian-orca-dragon/front.svg",
  40322. extra: 1890/1865,
  40323. bottom: 28/1918
  40324. }
  40325. },
  40326. },
  40327. [
  40328. {
  40329. name: "Micro",
  40330. height: math.unit(5, "inches")
  40331. },
  40332. {
  40333. name: "Normal",
  40334. height: math.unit(7 + 11/12, "feet"),
  40335. default: true
  40336. },
  40337. {
  40338. name: "Macro",
  40339. height: math.unit(395 + 7/12, "feet")
  40340. },
  40341. ]
  40342. ))
  40343. characterMakers.push(() => makeCharacter(
  40344. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40345. {
  40346. side: {
  40347. height: math.unit(10, "feet"),
  40348. weight: math.unit(1442, "lb"),
  40349. name: "Side",
  40350. image: {
  40351. source: "./media/characters/lotherakon/side.svg",
  40352. extra: 1604/1497,
  40353. bottom: 89/1693
  40354. }
  40355. },
  40356. },
  40357. [
  40358. {
  40359. name: "Mortal Interaction",
  40360. height: math.unit(10, "feet")
  40361. },
  40362. {
  40363. name: "Large",
  40364. height: math.unit(30, "feet"),
  40365. default: true
  40366. },
  40367. {
  40368. name: "Giant",
  40369. height: math.unit(100, "feet")
  40370. },
  40371. {
  40372. name: "Kaiju",
  40373. height: math.unit(300, "feet")
  40374. },
  40375. {
  40376. name: "Macro",
  40377. height: math.unit(1000, "feet")
  40378. },
  40379. {
  40380. name: "Macro+",
  40381. height: math.unit(3000, "feet")
  40382. },
  40383. {
  40384. name: "Megamacro",
  40385. height: math.unit(10000, "feet")
  40386. },
  40387. {
  40388. name: "City-Crushing",
  40389. height: math.unit(30000, "feet")
  40390. },
  40391. {
  40392. name: "Continent Cracker",
  40393. height: math.unit(30e6, "feet")
  40394. },
  40395. {
  40396. name: "Earth Eclipsing",
  40397. height: math.unit(3e8, "feet")
  40398. },
  40399. {
  40400. name: "Gas Giant Gulper",
  40401. height: math.unit(3e9, "feet")
  40402. },
  40403. {
  40404. name: "Sol-Swallowing",
  40405. height: math.unit(1e11, "feet")
  40406. },
  40407. {
  40408. name: "System Swallower",
  40409. height: math.unit(3e14, "feet")
  40410. },
  40411. {
  40412. name: "Galaxy Gulper",
  40413. height: math.unit(10, "galaxies")
  40414. },
  40415. {
  40416. name: "Light Universal",
  40417. height: math.unit(5, "universes")
  40418. },
  40419. {
  40420. name: "Universe Palm",
  40421. height: math.unit(20, "universes")
  40422. },
  40423. {
  40424. name: "Light Multiversal",
  40425. height: math.unit(5, "multiverses")
  40426. },
  40427. {
  40428. name: "Multiverse Palm",
  40429. height: math.unit(20, "multiverses")
  40430. },
  40431. {
  40432. name: "Inferno Incarnate",
  40433. height: math.unit(1e7, "multiverses")
  40434. },
  40435. ]
  40436. ))
  40437. characterMakers.push(() => makeCharacter(
  40438. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40439. {
  40440. front: {
  40441. height: math.unit(8, "feet"),
  40442. weight: math.unit(1200, "lb"),
  40443. name: "Front",
  40444. image: {
  40445. source: "./media/characters/malithee/front.svg",
  40446. extra: 1675/1640,
  40447. bottom: 162/1837
  40448. }
  40449. },
  40450. },
  40451. [
  40452. {
  40453. name: "Mortal Interaction",
  40454. height: math.unit(8, "feet"),
  40455. default: true
  40456. },
  40457. {
  40458. name: "Large",
  40459. height: math.unit(24, "feet")
  40460. },
  40461. {
  40462. name: "Kaiju",
  40463. height: math.unit(240, "feet")
  40464. },
  40465. {
  40466. name: "Megamacro",
  40467. height: math.unit(8000, "feet")
  40468. },
  40469. {
  40470. name: "Continent Cracker",
  40471. height: math.unit(24e6, "feet")
  40472. },
  40473. {
  40474. name: "Earth-Eclipsing",
  40475. height: math.unit(2.4e8, "feet")
  40476. },
  40477. {
  40478. name: "Sol-Swallowing",
  40479. height: math.unit(8e10, "feet")
  40480. },
  40481. {
  40482. name: "Galaxy Gulper",
  40483. height: math.unit(8, "galaxies")
  40484. },
  40485. {
  40486. name: "Light Universal",
  40487. height: math.unit(4, "universes")
  40488. },
  40489. {
  40490. name: "Universe Atoms",
  40491. height: math.unit(1.829e9, "universes")
  40492. },
  40493. {
  40494. name: "Light Multiversal",
  40495. height: math.unit(4, "multiverses")
  40496. },
  40497. {
  40498. name: "Multiverse Atoms",
  40499. height: math.unit(1.829e9, "multiverses")
  40500. },
  40501. {
  40502. name: "Nigh-Omnipresence",
  40503. height: math.unit(8e261, "multiverses")
  40504. },
  40505. ]
  40506. ))
  40507. characterMakers.push(() => makeCharacter(
  40508. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40509. {
  40510. front: {
  40511. height: math.unit(10, "feet"),
  40512. weight: math.unit(1500, "lb"),
  40513. name: "Front",
  40514. image: {
  40515. source: "./media/characters/miles-thestia/front.svg",
  40516. extra: 1812/1727,
  40517. bottom: 86/1898
  40518. }
  40519. },
  40520. back: {
  40521. height: math.unit(10, "feet"),
  40522. weight: math.unit(1500, "lb"),
  40523. name: "Back",
  40524. image: {
  40525. source: "./media/characters/miles-thestia/back.svg",
  40526. extra: 1799/1690,
  40527. bottom: 47/1846
  40528. }
  40529. },
  40530. frontNsfw: {
  40531. height: math.unit(10, "feet"),
  40532. weight: math.unit(1500, "lb"),
  40533. name: "Front (NSFW)",
  40534. image: {
  40535. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40536. extra: 1812/1727,
  40537. bottom: 86/1898
  40538. }
  40539. },
  40540. },
  40541. [
  40542. {
  40543. name: "Mini-Macro",
  40544. height: math.unit(10, "feet"),
  40545. default: true
  40546. },
  40547. ]
  40548. ))
  40549. characterMakers.push(() => makeCharacter(
  40550. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40551. {
  40552. front: {
  40553. height: math.unit(25, "feet"),
  40554. name: "Front",
  40555. image: {
  40556. source: "./media/characters/titan-s-wulf/front.svg",
  40557. extra: 1560/1484,
  40558. bottom: 76/1636
  40559. }
  40560. },
  40561. },
  40562. [
  40563. {
  40564. name: "Smallest",
  40565. height: math.unit(25, "feet"),
  40566. default: true
  40567. },
  40568. {
  40569. name: "Normal",
  40570. height: math.unit(200, "feet")
  40571. },
  40572. {
  40573. name: "Macro",
  40574. height: math.unit(200000, "feet")
  40575. },
  40576. {
  40577. name: "Multiversal Original",
  40578. height: math.unit(10000, "multiverses")
  40579. },
  40580. ]
  40581. ))
  40582. characterMakers.push(() => makeCharacter(
  40583. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40584. {
  40585. front: {
  40586. height: math.unit(8, "feet"),
  40587. weight: math.unit(553, "lb"),
  40588. name: "Front",
  40589. image: {
  40590. source: "./media/characters/tawendeh/front.svg",
  40591. extra: 2365/2268,
  40592. bottom: 83/2448
  40593. }
  40594. },
  40595. frontClothed: {
  40596. height: math.unit(8, "feet"),
  40597. weight: math.unit(553, "lb"),
  40598. name: "Front (Clothed)",
  40599. image: {
  40600. source: "./media/characters/tawendeh/front-clothed.svg",
  40601. extra: 2365/2268,
  40602. bottom: 83/2448
  40603. }
  40604. },
  40605. back: {
  40606. height: math.unit(8, "feet"),
  40607. weight: math.unit(553, "lb"),
  40608. name: "Back",
  40609. image: {
  40610. source: "./media/characters/tawendeh/back.svg",
  40611. extra: 2397/2294,
  40612. bottom: 42/2439
  40613. }
  40614. },
  40615. },
  40616. [
  40617. {
  40618. name: "Mortal Interaction",
  40619. height: math.unit(8, "feet"),
  40620. default: true
  40621. },
  40622. {
  40623. name: "Giant",
  40624. height: math.unit(80, "feet")
  40625. },
  40626. {
  40627. name: "Macro",
  40628. height: math.unit(800, "feet")
  40629. },
  40630. {
  40631. name: "Megamacro",
  40632. height: math.unit(8000, "feet")
  40633. },
  40634. {
  40635. name: "City-Crushing",
  40636. height: math.unit(24000, "feet")
  40637. },
  40638. {
  40639. name: "Mountain-Mashing",
  40640. height: math.unit(80000, "feet")
  40641. },
  40642. {
  40643. name: "Nation Nemesis",
  40644. height: math.unit(8e6, "feet")
  40645. },
  40646. {
  40647. name: "Continent Cracker",
  40648. height: math.unit(24e6, "feet")
  40649. },
  40650. {
  40651. name: "Earth-Eclipsing",
  40652. height: math.unit(2.4e8, "feet")
  40653. },
  40654. {
  40655. name: "Gas Giant Gulper",
  40656. height: math.unit(2.4e9, "feet")
  40657. },
  40658. {
  40659. name: "Sol-Swallowing",
  40660. height: math.unit(8e10, "feet")
  40661. },
  40662. {
  40663. name: "Galaxy Gulper",
  40664. height: math.unit(8, "galaxies")
  40665. },
  40666. {
  40667. name: "Cosmos Churner",
  40668. height: math.unit(8, "universes")
  40669. },
  40670. {
  40671. name: "Omnipotent Otter",
  40672. height: math.unit(80, "universes")
  40673. },
  40674. ]
  40675. ))
  40676. characterMakers.push(() => makeCharacter(
  40677. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40678. {
  40679. front: {
  40680. height: math.unit(2.6, "meters"),
  40681. weight: math.unit(900, "kg"),
  40682. name: "Front",
  40683. image: {
  40684. source: "./media/characters/neesha/front.svg",
  40685. extra: 1803/1653,
  40686. bottom: 128/1931
  40687. }
  40688. },
  40689. },
  40690. [
  40691. {
  40692. name: "Normal",
  40693. height: math.unit(2.6, "meters"),
  40694. default: true
  40695. },
  40696. {
  40697. name: "Macro",
  40698. height: math.unit(50, "meters")
  40699. },
  40700. ]
  40701. ))
  40702. characterMakers.push(() => makeCharacter(
  40703. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40704. {
  40705. front: {
  40706. height: math.unit(5, "feet"),
  40707. weight: math.unit(185, "lb"),
  40708. name: "Front",
  40709. image: {
  40710. source: "./media/characters/kyera/front.svg",
  40711. extra: 1875/1790,
  40712. bottom: 96/1971
  40713. }
  40714. },
  40715. },
  40716. [
  40717. {
  40718. name: "Normal",
  40719. height: math.unit(5, "feet"),
  40720. default: true
  40721. },
  40722. ]
  40723. ))
  40724. characterMakers.push(() => makeCharacter(
  40725. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40726. {
  40727. front: {
  40728. height: math.unit(7 + 6/12, "feet"),
  40729. weight: math.unit(540, "lb"),
  40730. name: "Front",
  40731. image: {
  40732. source: "./media/characters/yuko/front.svg",
  40733. extra: 1282/1222,
  40734. bottom: 101/1383
  40735. }
  40736. },
  40737. frontClothed: {
  40738. height: math.unit(7 + 6/12, "feet"),
  40739. weight: math.unit(540, "lb"),
  40740. name: "Front (Clothed)",
  40741. image: {
  40742. source: "./media/characters/yuko/front-clothed.svg",
  40743. extra: 1282/1222,
  40744. bottom: 101/1383
  40745. }
  40746. },
  40747. },
  40748. [
  40749. {
  40750. name: "Normal",
  40751. height: math.unit(7 + 6/12, "feet"),
  40752. default: true
  40753. },
  40754. {
  40755. name: "Macro",
  40756. height: math.unit(26 + 9/12, "feet")
  40757. },
  40758. {
  40759. name: "Megamacro",
  40760. height: math.unit(300, "feet")
  40761. },
  40762. {
  40763. name: "Gigamacro",
  40764. height: math.unit(5000, "feet")
  40765. },
  40766. {
  40767. name: "Planetary",
  40768. height: math.unit(10000, "miles")
  40769. },
  40770. ]
  40771. ))
  40772. characterMakers.push(() => makeCharacter(
  40773. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40774. {
  40775. front: {
  40776. height: math.unit(8 + 2/12, "feet"),
  40777. weight: math.unit(600, "lb"),
  40778. name: "Front",
  40779. image: {
  40780. source: "./media/characters/deam-nitrel/front.svg",
  40781. extra: 1308/1234,
  40782. bottom: 125/1433
  40783. }
  40784. },
  40785. },
  40786. [
  40787. {
  40788. name: "Normal",
  40789. height: math.unit(8 + 2/12, "feet"),
  40790. default: true
  40791. },
  40792. ]
  40793. ))
  40794. characterMakers.push(() => makeCharacter(
  40795. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40796. {
  40797. front: {
  40798. height: math.unit(6.1, "feet"),
  40799. weight: math.unit(180, "lb"),
  40800. name: "Front",
  40801. image: {
  40802. source: "./media/characters/skyress/front.svg",
  40803. extra: 1045/915,
  40804. bottom: 28/1073
  40805. }
  40806. },
  40807. maw: {
  40808. height: math.unit(1, "feet"),
  40809. name: "Maw",
  40810. image: {
  40811. source: "./media/characters/skyress/maw.svg"
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Normal",
  40818. height: math.unit(6.1, "feet"),
  40819. default: true
  40820. },
  40821. {
  40822. name: "Macro",
  40823. height: math.unit(200, "feet")
  40824. },
  40825. ]
  40826. ))
  40827. characterMakers.push(() => makeCharacter(
  40828. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40829. {
  40830. front: {
  40831. height: math.unit(4 + 2/12, "feet"),
  40832. weight: math.unit(40, "kg"),
  40833. name: "Front",
  40834. image: {
  40835. source: "./media/characters/amethyst-jones/front.svg",
  40836. extra: 1220/1150,
  40837. bottom: 101/1321
  40838. }
  40839. },
  40840. },
  40841. [
  40842. {
  40843. name: "Normal",
  40844. height: math.unit(4 + 2/12, "feet"),
  40845. default: true
  40846. },
  40847. ]
  40848. ))
  40849. characterMakers.push(() => makeCharacter(
  40850. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40851. {
  40852. front: {
  40853. height: math.unit(1.7, "m"),
  40854. weight: math.unit(135, "lb"),
  40855. name: "Front",
  40856. image: {
  40857. source: "./media/characters/jade/front.svg",
  40858. extra: 1818/1767,
  40859. bottom: 32/1850
  40860. }
  40861. },
  40862. back: {
  40863. height: math.unit(1.7, "m"),
  40864. weight: math.unit(135, "lb"),
  40865. name: "Back",
  40866. image: {
  40867. source: "./media/characters/jade/back.svg",
  40868. extra: 1869/1809,
  40869. bottom: 35/1904
  40870. }
  40871. },
  40872. hand: {
  40873. height: math.unit(0.24, "m"),
  40874. name: "Hand",
  40875. image: {
  40876. source: "./media/characters/jade/hand.svg"
  40877. }
  40878. },
  40879. foot: {
  40880. height: math.unit(0.263, "m"),
  40881. name: "Foot",
  40882. image: {
  40883. source: "./media/characters/jade/foot.svg"
  40884. }
  40885. },
  40886. dick: {
  40887. height: math.unit(0.47, "m"),
  40888. name: "Dick",
  40889. image: {
  40890. source: "./media/characters/jade/dick.svg"
  40891. }
  40892. },
  40893. },
  40894. [
  40895. {
  40896. name: "Micro",
  40897. height: math.unit(22, "cm")
  40898. },
  40899. {
  40900. name: "Normal",
  40901. height: math.unit(1.7, "m"),
  40902. default: true
  40903. },
  40904. {
  40905. name: "Macro",
  40906. height: math.unit(152, "m")
  40907. },
  40908. ]
  40909. ))
  40910. characterMakers.push(() => makeCharacter(
  40911. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40912. {
  40913. front: {
  40914. height: math.unit(100, "miles"),
  40915. weight: math.unit(20000, "tons"),
  40916. name: "Front",
  40917. image: {
  40918. source: "./media/characters/cookie/front.svg",
  40919. extra: 1125/1070,
  40920. bottom: 30/1155
  40921. }
  40922. },
  40923. },
  40924. [
  40925. {
  40926. name: "Big",
  40927. height: math.unit(50, "feet")
  40928. },
  40929. {
  40930. name: "Macro",
  40931. height: math.unit(100, "miles"),
  40932. default: true
  40933. },
  40934. {
  40935. name: "Megamacro",
  40936. height: math.unit(90000, "miles")
  40937. },
  40938. ]
  40939. ))
  40940. characterMakers.push(() => makeCharacter(
  40941. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40942. {
  40943. front: {
  40944. height: math.unit(6, "feet"),
  40945. weight: math.unit(145, "lb"),
  40946. name: "Front",
  40947. image: {
  40948. source: "./media/characters/farzian/front.svg",
  40949. extra: 1902/1693,
  40950. bottom: 108/2010
  40951. }
  40952. },
  40953. },
  40954. [
  40955. {
  40956. name: "Macro",
  40957. height: math.unit(500, "feet"),
  40958. default: true
  40959. },
  40960. ]
  40961. ))
  40962. characterMakers.push(() => makeCharacter(
  40963. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40964. {
  40965. front: {
  40966. height: math.unit(3 + 6/12, "feet"),
  40967. weight: math.unit(50, "lb"),
  40968. name: "Front",
  40969. image: {
  40970. source: "./media/characters/kimberly-tilson/front.svg",
  40971. extra: 1400/1322,
  40972. bottom: 36/1436
  40973. }
  40974. },
  40975. back: {
  40976. height: math.unit(3 + 6/12, "feet"),
  40977. weight: math.unit(50, "lb"),
  40978. name: "Back",
  40979. image: {
  40980. source: "./media/characters/kimberly-tilson/back.svg",
  40981. extra: 1370/1307,
  40982. bottom: 20/1390
  40983. }
  40984. },
  40985. },
  40986. [
  40987. {
  40988. name: "Normal",
  40989. height: math.unit(3 + 6/12, "feet"),
  40990. default: true
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(1148, "feet"),
  40999. weight: math.unit(34057, "lb"),
  41000. name: "Front",
  41001. image: {
  41002. source: "./media/characters/harthos/front.svg",
  41003. extra: 1391/1339,
  41004. bottom: 13/1404
  41005. }
  41006. },
  41007. },
  41008. [
  41009. {
  41010. name: "Macro",
  41011. height: math.unit(1148, "feet"),
  41012. default: true
  41013. },
  41014. ]
  41015. ))
  41016. characterMakers.push(() => makeCharacter(
  41017. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41018. {
  41019. front: {
  41020. height: math.unit(15, "feet"),
  41021. name: "Front",
  41022. image: {
  41023. source: "./media/characters/hypatia/front.svg",
  41024. extra: 1653/1591,
  41025. bottom: 79/1732
  41026. }
  41027. },
  41028. },
  41029. [
  41030. {
  41031. name: "Normal",
  41032. height: math.unit(15, "feet")
  41033. },
  41034. {
  41035. name: "Small",
  41036. height: math.unit(300, "feet")
  41037. },
  41038. {
  41039. name: "Macro",
  41040. height: math.unit(2500, "feet"),
  41041. default: true
  41042. },
  41043. {
  41044. name: "Mega Macro",
  41045. height: math.unit(1500, "miles")
  41046. },
  41047. {
  41048. name: "Giga Macro",
  41049. height: math.unit(1.5e6, "miles")
  41050. },
  41051. ]
  41052. ))
  41053. characterMakers.push(() => makeCharacter(
  41054. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41055. {
  41056. front: {
  41057. height: math.unit(6, "feet"),
  41058. weight: math.unit(200, "lb"),
  41059. name: "Front",
  41060. image: {
  41061. source: "./media/characters/wulver/front.svg",
  41062. extra: 1724/1632,
  41063. bottom: 130/1854
  41064. }
  41065. },
  41066. frontNsfw: {
  41067. height: math.unit(6, "feet"),
  41068. weight: math.unit(200, "lb"),
  41069. name: "Front (NSFW)",
  41070. image: {
  41071. source: "./media/characters/wulver/front-nsfw.svg",
  41072. extra: 1724/1632,
  41073. bottom: 130/1854
  41074. }
  41075. },
  41076. },
  41077. [
  41078. {
  41079. name: "Human-Sized",
  41080. height: math.unit(6, "feet")
  41081. },
  41082. {
  41083. name: "Normal",
  41084. height: math.unit(4, "meters"),
  41085. default: true
  41086. },
  41087. {
  41088. name: "Large",
  41089. height: math.unit(6, "m")
  41090. },
  41091. ]
  41092. ))
  41093. characterMakers.push(() => makeCharacter(
  41094. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41095. {
  41096. front: {
  41097. height: math.unit(7, "feet"),
  41098. name: "Front",
  41099. image: {
  41100. source: "./media/characters/maru/front.svg",
  41101. extra: 1595/1570,
  41102. bottom: 0/1595
  41103. }
  41104. },
  41105. },
  41106. [
  41107. {
  41108. name: "Normal",
  41109. height: math.unit(7, "feet"),
  41110. default: true
  41111. },
  41112. {
  41113. name: "Macro",
  41114. height: math.unit(700, "feet")
  41115. },
  41116. {
  41117. name: "Mega Macro",
  41118. height: math.unit(25, "miles")
  41119. },
  41120. ]
  41121. ))
  41122. characterMakers.push(() => makeCharacter(
  41123. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41124. {
  41125. front: {
  41126. height: math.unit(6, "feet"),
  41127. weight: math.unit(170, "lb"),
  41128. name: "Front",
  41129. image: {
  41130. source: "./media/characters/xenon/front.svg",
  41131. extra: 1376/1305,
  41132. bottom: 56/1432
  41133. }
  41134. },
  41135. back: {
  41136. height: math.unit(6, "feet"),
  41137. weight: math.unit(170, "lb"),
  41138. name: "Back",
  41139. image: {
  41140. source: "./media/characters/xenon/back.svg",
  41141. extra: 1328/1259,
  41142. bottom: 95/1423
  41143. }
  41144. },
  41145. maw: {
  41146. height: math.unit(0.52, "feet"),
  41147. name: "Maw",
  41148. image: {
  41149. source: "./media/characters/xenon/maw.svg"
  41150. }
  41151. },
  41152. hand: {
  41153. height: math.unit(0.82, "feet"),
  41154. name: "Hand",
  41155. image: {
  41156. source: "./media/characters/xenon/hand.svg"
  41157. }
  41158. },
  41159. foot: {
  41160. height: math.unit(1.13, "feet"),
  41161. name: "Foot",
  41162. image: {
  41163. source: "./media/characters/xenon/foot.svg"
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Micro",
  41170. height: math.unit(0.8, "inches")
  41171. },
  41172. {
  41173. name: "Normal",
  41174. height: math.unit(6, "feet")
  41175. },
  41176. {
  41177. name: "Macro",
  41178. height: math.unit(50, "feet"),
  41179. default: true
  41180. },
  41181. {
  41182. name: "Macro+",
  41183. height: math.unit(250, "feet")
  41184. },
  41185. {
  41186. name: "Megamacro",
  41187. height: math.unit(1500, "feet")
  41188. },
  41189. ]
  41190. ))
  41191. characterMakers.push(() => makeCharacter(
  41192. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41193. {
  41194. front: {
  41195. height: math.unit(7 + 5/12, "feet"),
  41196. name: "Front",
  41197. image: {
  41198. source: "./media/characters/zane/front.svg",
  41199. extra: 1260/1203,
  41200. bottom: 94/1354
  41201. }
  41202. },
  41203. back: {
  41204. height: math.unit(5.05, "feet"),
  41205. name: "Back",
  41206. image: {
  41207. source: "./media/characters/zane/back.svg",
  41208. extra: 893/829,
  41209. bottom: 30/923
  41210. }
  41211. },
  41212. werewolf: {
  41213. height: math.unit(11, "feet"),
  41214. name: "Werewolf",
  41215. image: {
  41216. source: "./media/characters/zane/werewolf.svg",
  41217. extra: 1383/1323,
  41218. bottom: 89/1472
  41219. }
  41220. },
  41221. foot: {
  41222. height: math.unit(1.46, "feet"),
  41223. name: "Foot",
  41224. image: {
  41225. source: "./media/characters/zane/foot.svg"
  41226. }
  41227. },
  41228. footFront: {
  41229. height: math.unit(0.784, "feet"),
  41230. name: "Foot (Front)",
  41231. image: {
  41232. source: "./media/characters/zane/foot-front.svg"
  41233. }
  41234. },
  41235. dick: {
  41236. height: math.unit(1.95, "feet"),
  41237. name: "Dick",
  41238. image: {
  41239. source: "./media/characters/zane/dick.svg"
  41240. }
  41241. },
  41242. dickWerewolf: {
  41243. height: math.unit(3.77, "feet"),
  41244. name: "Dick (Werewolf)",
  41245. image: {
  41246. source: "./media/characters/zane/dick.svg"
  41247. }
  41248. },
  41249. },
  41250. [
  41251. {
  41252. name: "Normal",
  41253. height: math.unit(7 + 5/12, "feet"),
  41254. default: true
  41255. },
  41256. ]
  41257. ))
  41258. characterMakers.push(() => makeCharacter(
  41259. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41260. {
  41261. front: {
  41262. height: math.unit(6 + 2/12, "feet"),
  41263. weight: math.unit(284, "lb"),
  41264. name: "Front",
  41265. image: {
  41266. source: "./media/characters/benni-desparque/front.svg",
  41267. extra: 1353/1126,
  41268. bottom: 69/1422
  41269. }
  41270. },
  41271. },
  41272. [
  41273. {
  41274. name: "Civilian",
  41275. height: math.unit(6 + 2/12, "feet")
  41276. },
  41277. {
  41278. name: "Normal",
  41279. height: math.unit(98, "feet"),
  41280. default: true
  41281. },
  41282. {
  41283. name: "Kaiju Fighter",
  41284. height: math.unit(268, "feet")
  41285. },
  41286. ]
  41287. ))
  41288. characterMakers.push(() => makeCharacter(
  41289. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41290. {
  41291. front: {
  41292. height: math.unit(5, "feet"),
  41293. weight: math.unit(105, "lb"),
  41294. name: "Front",
  41295. image: {
  41296. source: "./media/characters/maxine/front.svg",
  41297. extra: 1386/1250,
  41298. bottom: 71/1457
  41299. }
  41300. },
  41301. },
  41302. [
  41303. {
  41304. name: "Normal",
  41305. height: math.unit(5, "feet"),
  41306. default: true
  41307. },
  41308. ]
  41309. ))
  41310. characterMakers.push(() => makeCharacter(
  41311. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41312. {
  41313. front: {
  41314. height: math.unit(11 + 7/12, "feet"),
  41315. weight: math.unit(9576, "lb"),
  41316. name: "Front",
  41317. image: {
  41318. source: "./media/characters/scaly/front.svg",
  41319. extra: 888/867,
  41320. bottom: 36/924
  41321. }
  41322. },
  41323. },
  41324. [
  41325. {
  41326. name: "Normal",
  41327. height: math.unit(11 + 7/12, "feet"),
  41328. default: true
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41334. {
  41335. front: {
  41336. height: math.unit(6 + 3/12, "feet"),
  41337. name: "Front",
  41338. image: {
  41339. source: "./media/characters/saelria/front.svg",
  41340. extra: 1243/1138,
  41341. bottom: 46/1289
  41342. }
  41343. },
  41344. },
  41345. [
  41346. {
  41347. name: "Micro",
  41348. height: math.unit(6, "inches"),
  41349. },
  41350. {
  41351. name: "Normal",
  41352. height: math.unit(6 + 3/12, "feet"),
  41353. default: true
  41354. },
  41355. {
  41356. name: "Macro",
  41357. height: math.unit(25, "feet")
  41358. },
  41359. ]
  41360. ))
  41361. characterMakers.push(() => makeCharacter(
  41362. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41363. {
  41364. front: {
  41365. height: math.unit(80, "meters"),
  41366. weight: math.unit(7000, "tonnes"),
  41367. name: "Front",
  41368. image: {
  41369. source: "./media/characters/tef/front.svg",
  41370. extra: 2036/1991,
  41371. bottom: 54/2090
  41372. }
  41373. },
  41374. back: {
  41375. height: math.unit(80, "meters"),
  41376. weight: math.unit(7000, "tonnes"),
  41377. name: "Back",
  41378. image: {
  41379. source: "./media/characters/tef/back.svg",
  41380. extra: 2036/1991,
  41381. bottom: 54/2090
  41382. }
  41383. },
  41384. },
  41385. [
  41386. {
  41387. name: "Macro",
  41388. height: math.unit(80, "meters"),
  41389. default: true
  41390. },
  41391. ]
  41392. ))
  41393. characterMakers.push(() => makeCharacter(
  41394. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41395. {
  41396. front: {
  41397. height: math.unit(13, "feet"),
  41398. weight: math.unit(6, "tons"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/rover/front.svg",
  41402. extra: 1233/1156,
  41403. bottom: 50/1283
  41404. }
  41405. },
  41406. back: {
  41407. height: math.unit(13, "feet"),
  41408. weight: math.unit(6, "tons"),
  41409. name: "Back",
  41410. image: {
  41411. source: "./media/characters/rover/back.svg",
  41412. extra: 1327/1258,
  41413. bottom: 39/1366
  41414. }
  41415. },
  41416. },
  41417. [
  41418. {
  41419. name: "Normal",
  41420. height: math.unit(13, "feet"),
  41421. default: true
  41422. },
  41423. {
  41424. name: "Macro",
  41425. height: math.unit(1300, "feet")
  41426. },
  41427. {
  41428. name: "Megamacro",
  41429. height: math.unit(1300, "miles")
  41430. },
  41431. {
  41432. name: "Gigamacro",
  41433. height: math.unit(1300000, "miles")
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41439. {
  41440. front: {
  41441. height: math.unit(6, "feet"),
  41442. weight: math.unit(150, "lb"),
  41443. name: "Front",
  41444. image: {
  41445. source: "./media/characters/ariz/front.svg",
  41446. extra: 1401/1346,
  41447. bottom: 5/1406
  41448. }
  41449. },
  41450. },
  41451. [
  41452. {
  41453. name: "Normal",
  41454. height: math.unit(10, "feet"),
  41455. default: true
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41461. {
  41462. front: {
  41463. height: math.unit(6, "feet"),
  41464. weight: math.unit(140, "lb"),
  41465. name: "Front",
  41466. image: {
  41467. source: "./media/characters/sigrun/front.svg",
  41468. extra: 1418/1359,
  41469. bottom: 27/1445
  41470. }
  41471. },
  41472. },
  41473. [
  41474. {
  41475. name: "Macro",
  41476. height: math.unit(35, "feet"),
  41477. default: true
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41483. {
  41484. front: {
  41485. height: math.unit(6, "feet"),
  41486. weight: math.unit(150, "lb"),
  41487. name: "Front",
  41488. image: {
  41489. source: "./media/characters/numin/front.svg",
  41490. extra: 1433/1388,
  41491. bottom: 12/1445
  41492. }
  41493. },
  41494. },
  41495. [
  41496. {
  41497. name: "Macro",
  41498. height: math.unit(21.5, "km"),
  41499. default: true
  41500. },
  41501. ]
  41502. ))
  41503. characterMakers.push(() => makeCharacter(
  41504. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41505. {
  41506. front: {
  41507. height: math.unit(6, "feet"),
  41508. weight: math.unit(463, "lb"),
  41509. name: "Front",
  41510. image: {
  41511. source: "./media/characters/melwa/front.svg",
  41512. extra: 1307/1248,
  41513. bottom: 93/1400
  41514. }
  41515. },
  41516. },
  41517. [
  41518. {
  41519. name: "Macro",
  41520. height: math.unit(50, "meters"),
  41521. default: true
  41522. },
  41523. ]
  41524. ))
  41525. characterMakers.push(() => makeCharacter(
  41526. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41527. {
  41528. front: {
  41529. height: math.unit(325, "feet"),
  41530. name: "Front",
  41531. image: {
  41532. source: "./media/characters/zorkaiju/front.svg",
  41533. extra: 1955/1814,
  41534. bottom: 40/1995
  41535. }
  41536. },
  41537. frontExtended: {
  41538. height: math.unit(325, "feet"),
  41539. name: "Front (Extended)",
  41540. image: {
  41541. source: "./media/characters/zorkaiju/front-extended.svg",
  41542. extra: 1955/1814,
  41543. bottom: 40/1995
  41544. }
  41545. },
  41546. side: {
  41547. height: math.unit(325, "feet"),
  41548. name: "Side",
  41549. image: {
  41550. source: "./media/characters/zorkaiju/side.svg",
  41551. extra: 1495/1396,
  41552. bottom: 17/1512
  41553. }
  41554. },
  41555. sideExtended: {
  41556. height: math.unit(325, "feet"),
  41557. name: "Side (Extended)",
  41558. image: {
  41559. source: "./media/characters/zorkaiju/side-extended.svg",
  41560. extra: 1495/1396,
  41561. bottom: 17/1512
  41562. }
  41563. },
  41564. back: {
  41565. height: math.unit(325, "feet"),
  41566. name: "Back",
  41567. image: {
  41568. source: "./media/characters/zorkaiju/back.svg",
  41569. extra: 1959/1821,
  41570. bottom: 31/1990
  41571. }
  41572. },
  41573. backExtended: {
  41574. height: math.unit(325, "feet"),
  41575. name: "Back (Extended)",
  41576. image: {
  41577. source: "./media/characters/zorkaiju/back-extended.svg",
  41578. extra: 1959/1821,
  41579. bottom: 31/1990
  41580. }
  41581. },
  41582. hand: {
  41583. height: math.unit(58.4, "feet"),
  41584. name: "Hand",
  41585. image: {
  41586. source: "./media/characters/zorkaiju/hand.svg"
  41587. }
  41588. },
  41589. handExtended: {
  41590. height: math.unit(61.4, "feet"),
  41591. name: "Hand (Extended)",
  41592. image: {
  41593. source: "./media/characters/zorkaiju/hand-extended.svg"
  41594. }
  41595. },
  41596. foot: {
  41597. height: math.unit(95, "feet"),
  41598. name: "Foot",
  41599. image: {
  41600. source: "./media/characters/zorkaiju/foot.svg"
  41601. }
  41602. },
  41603. leftArm: {
  41604. height: math.unit(59, "feet"),
  41605. name: "Left Arm",
  41606. image: {
  41607. source: "./media/characters/zorkaiju/left-arm.svg"
  41608. }
  41609. },
  41610. rightArm: {
  41611. height: math.unit(59, "feet"),
  41612. name: "Right Arm",
  41613. image: {
  41614. source: "./media/characters/zorkaiju/right-arm.svg"
  41615. }
  41616. },
  41617. leftArmExtended: {
  41618. height: math.unit(59 * 1.033546, "feet"),
  41619. name: "Left Arm (Extended)",
  41620. image: {
  41621. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41622. }
  41623. },
  41624. rightArmExtended: {
  41625. height: math.unit(59 * 1.0496, "feet"),
  41626. name: "Right Arm (Extended)",
  41627. image: {
  41628. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41629. }
  41630. },
  41631. tail: {
  41632. height: math.unit(104, "feet"),
  41633. name: "Tail",
  41634. image: {
  41635. source: "./media/characters/zorkaiju/tail.svg"
  41636. }
  41637. },
  41638. tailExtended: {
  41639. height: math.unit(104, "feet"),
  41640. name: "Tail (Extended)",
  41641. image: {
  41642. source: "./media/characters/zorkaiju/tail-extended.svg"
  41643. }
  41644. },
  41645. tailBottom: {
  41646. height: math.unit(104, "feet"),
  41647. name: "Tail Bottom",
  41648. image: {
  41649. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41650. }
  41651. },
  41652. crystal: {
  41653. height: math.unit(27.54, "feet"),
  41654. name: "Crystal",
  41655. image: {
  41656. source: "./media/characters/zorkaiju/crystal.svg"
  41657. }
  41658. },
  41659. },
  41660. [
  41661. {
  41662. name: "Kaiju",
  41663. height: math.unit(325, "feet"),
  41664. default: true
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41670. {
  41671. front: {
  41672. height: math.unit(6 + 1/12, "feet"),
  41673. weight: math.unit(115, "lb"),
  41674. name: "Front",
  41675. image: {
  41676. source: "./media/characters/bailey-belfry/front.svg",
  41677. extra: 1240/1121,
  41678. bottom: 101/1341
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "Normal",
  41685. height: math.unit(6 + 1/12, "feet"),
  41686. default: true
  41687. },
  41688. ]
  41689. ))
  41690. characterMakers.push(() => makeCharacter(
  41691. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41692. {
  41693. side: {
  41694. height: math.unit(4, "meters"),
  41695. weight: math.unit(250, "kg"),
  41696. name: "Side",
  41697. image: {
  41698. source: "./media/characters/blacky/side.svg",
  41699. extra: 1027/919,
  41700. bottom: 43/1070
  41701. }
  41702. },
  41703. maw: {
  41704. height: math.unit(1, "meters"),
  41705. name: "Maw",
  41706. image: {
  41707. source: "./media/characters/blacky/maw.svg"
  41708. }
  41709. },
  41710. paw: {
  41711. height: math.unit(1, "meters"),
  41712. name: "Paw",
  41713. image: {
  41714. source: "./media/characters/blacky/paw.svg"
  41715. }
  41716. },
  41717. },
  41718. [
  41719. {
  41720. name: "Normal",
  41721. height: math.unit(4, "meters"),
  41722. default: true
  41723. },
  41724. ]
  41725. ))
  41726. characterMakers.push(() => makeCharacter(
  41727. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41728. {
  41729. front: {
  41730. height: math.unit(170, "cm"),
  41731. weight: math.unit(66, "kg"),
  41732. name: "Front",
  41733. image: {
  41734. source: "./media/characters/thux-ei/front.svg",
  41735. extra: 1109/1011,
  41736. bottom: 8/1117
  41737. }
  41738. },
  41739. },
  41740. [
  41741. {
  41742. name: "Normal",
  41743. height: math.unit(170, "cm"),
  41744. default: true
  41745. },
  41746. ]
  41747. ))
  41748. characterMakers.push(() => makeCharacter(
  41749. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41750. {
  41751. front: {
  41752. height: math.unit(5, "feet"),
  41753. weight: math.unit(120, "lb"),
  41754. name: "Front",
  41755. image: {
  41756. source: "./media/characters/roxanne-voltaire/front.svg",
  41757. extra: 1901/1779,
  41758. bottom: 53/1954
  41759. }
  41760. },
  41761. },
  41762. [
  41763. {
  41764. name: "Normal",
  41765. height: math.unit(5, "feet"),
  41766. default: true
  41767. },
  41768. {
  41769. name: "Giant",
  41770. height: math.unit(50, "feet")
  41771. },
  41772. {
  41773. name: "Titan",
  41774. height: math.unit(500, "feet")
  41775. },
  41776. {
  41777. name: "Macro",
  41778. height: math.unit(5000, "feet")
  41779. },
  41780. {
  41781. name: "Megamacro",
  41782. height: math.unit(50000, "feet")
  41783. },
  41784. {
  41785. name: "Gigamacro",
  41786. height: math.unit(500000, "feet")
  41787. },
  41788. {
  41789. name: "Teramacro",
  41790. height: math.unit(5e6, "feet")
  41791. },
  41792. ]
  41793. ))
  41794. characterMakers.push(() => makeCharacter(
  41795. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41796. {
  41797. front: {
  41798. height: math.unit(6 + 2/12, "feet"),
  41799. name: "Front",
  41800. image: {
  41801. source: "./media/characters/squeaks/front.svg",
  41802. extra: 1823/1768,
  41803. bottom: 138/1961
  41804. }
  41805. },
  41806. },
  41807. [
  41808. {
  41809. name: "Micro",
  41810. height: math.unit(0.5, "inches")
  41811. },
  41812. {
  41813. name: "Normal",
  41814. height: math.unit(6 + 2/12, "feet"),
  41815. default: true
  41816. },
  41817. {
  41818. name: "Macro",
  41819. height: math.unit(600, "feet")
  41820. },
  41821. ]
  41822. ))
  41823. characterMakers.push(() => makeCharacter(
  41824. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41825. {
  41826. front: {
  41827. height: math.unit(1.72, "meters"),
  41828. name: "Front",
  41829. image: {
  41830. source: "./media/characters/archinger/front.svg",
  41831. extra: 1861/1675,
  41832. bottom: 125/1986
  41833. }
  41834. },
  41835. back: {
  41836. height: math.unit(1.72, "meters"),
  41837. name: "Back",
  41838. image: {
  41839. source: "./media/characters/archinger/back.svg",
  41840. extra: 1844/1701,
  41841. bottom: 104/1948
  41842. }
  41843. },
  41844. cock: {
  41845. height: math.unit(0.59, "feet"),
  41846. name: "Cock",
  41847. image: {
  41848. source: "./media/characters/archinger/cock.svg"
  41849. }
  41850. },
  41851. },
  41852. [
  41853. {
  41854. name: "Normal",
  41855. height: math.unit(1.72, "meters"),
  41856. default: true
  41857. },
  41858. {
  41859. name: "Macro",
  41860. height: math.unit(84, "meters")
  41861. },
  41862. {
  41863. name: "Macro+",
  41864. height: math.unit(112, "meters")
  41865. },
  41866. {
  41867. name: "Macro++",
  41868. height: math.unit(960, "meters")
  41869. },
  41870. {
  41871. name: "Macro+++",
  41872. height: math.unit(4, "km")
  41873. },
  41874. {
  41875. name: "Macro++++",
  41876. height: math.unit(48, "km")
  41877. },
  41878. {
  41879. name: "Macro+++++",
  41880. height: math.unit(4500, "km")
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41886. {
  41887. front: {
  41888. height: math.unit(5 + 5/12, "feet"),
  41889. name: "Front",
  41890. image: {
  41891. source: "./media/characters/alsnapz/front.svg",
  41892. extra: 1157/1065,
  41893. bottom: 42/1199
  41894. }
  41895. },
  41896. },
  41897. [
  41898. {
  41899. name: "Normal",
  41900. height: math.unit(5 + 5/12, "feet"),
  41901. default: true
  41902. },
  41903. ]
  41904. ))
  41905. characterMakers.push(() => makeCharacter(
  41906. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41907. {
  41908. side: {
  41909. height: math.unit(3.2, "earths"),
  41910. name: "Side",
  41911. image: {
  41912. source: "./media/characters/mag/side.svg",
  41913. extra: 1331/1008,
  41914. bottom: 52/1383
  41915. }
  41916. },
  41917. wing: {
  41918. height: math.unit(1.94, "earths"),
  41919. name: "Wing",
  41920. image: {
  41921. source: "./media/characters/mag/wing.svg"
  41922. }
  41923. },
  41924. dick: {
  41925. height: math.unit(1.8, "earths"),
  41926. name: "Dick",
  41927. image: {
  41928. source: "./media/characters/mag/dick.svg"
  41929. }
  41930. },
  41931. ass: {
  41932. height: math.unit(1.33, "earths"),
  41933. name: "Ass",
  41934. image: {
  41935. source: "./media/characters/mag/ass.svg"
  41936. }
  41937. },
  41938. head: {
  41939. height: math.unit(1.1, "earths"),
  41940. name: "Head",
  41941. image: {
  41942. source: "./media/characters/mag/head.svg"
  41943. }
  41944. },
  41945. maw: {
  41946. height: math.unit(1.62, "earths"),
  41947. name: "Maw",
  41948. image: {
  41949. source: "./media/characters/mag/maw.svg"
  41950. }
  41951. },
  41952. },
  41953. [
  41954. {
  41955. name: "Small",
  41956. height: math.unit(162, "feet")
  41957. },
  41958. {
  41959. name: "Normal",
  41960. height: math.unit(3.2, "earths"),
  41961. default: true
  41962. },
  41963. ]
  41964. ))
  41965. characterMakers.push(() => makeCharacter(
  41966. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41967. {
  41968. front: {
  41969. height: math.unit(512, "feet"),
  41970. weight: math.unit(63509, "tonnes"),
  41971. name: "Front",
  41972. image: {
  41973. source: "./media/characters/vorrel-harroc/front.svg",
  41974. extra: 1075/1063,
  41975. bottom: 62/1137
  41976. }
  41977. },
  41978. },
  41979. [
  41980. {
  41981. name: "Normal",
  41982. height: math.unit(10, "feet")
  41983. },
  41984. {
  41985. name: "Macro",
  41986. height: math.unit(512, "feet"),
  41987. default: true
  41988. },
  41989. {
  41990. name: "Megamacro",
  41991. height: math.unit(256, "miles")
  41992. },
  41993. {
  41994. name: "Gigamacro",
  41995. height: math.unit(4096, "miles")
  41996. },
  41997. ]
  41998. ))
  41999. characterMakers.push(() => makeCharacter(
  42000. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42001. {
  42002. side: {
  42003. height: math.unit(50, "feet"),
  42004. name: "Side",
  42005. image: {
  42006. source: "./media/characters/froimar/side.svg",
  42007. extra: 855/638,
  42008. bottom: 99/954
  42009. }
  42010. },
  42011. },
  42012. [
  42013. {
  42014. name: "Macro",
  42015. height: math.unit(50, "feet"),
  42016. default: true
  42017. },
  42018. ]
  42019. ))
  42020. characterMakers.push(() => makeCharacter(
  42021. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42022. {
  42023. front: {
  42024. height: math.unit(210, "miles"),
  42025. name: "Front",
  42026. image: {
  42027. source: "./media/characters/timothy/front.svg",
  42028. extra: 1007/943,
  42029. bottom: 62/1069
  42030. }
  42031. },
  42032. frontSkirt: {
  42033. height: math.unit(210, "miles"),
  42034. name: "Front (Skirt)",
  42035. image: {
  42036. source: "./media/characters/timothy/front-skirt.svg",
  42037. extra: 1007/943,
  42038. bottom: 62/1069
  42039. }
  42040. },
  42041. frontCoat: {
  42042. height: math.unit(210, "miles"),
  42043. name: "Front (Coat)",
  42044. image: {
  42045. source: "./media/characters/timothy/front-coat.svg",
  42046. extra: 1007/943,
  42047. bottom: 62/1069
  42048. }
  42049. },
  42050. },
  42051. [
  42052. {
  42053. name: "Macro",
  42054. height: math.unit(210, "miles"),
  42055. default: true
  42056. },
  42057. {
  42058. name: "Megamacro",
  42059. height: math.unit(210000, "miles")
  42060. },
  42061. ]
  42062. ))
  42063. characterMakers.push(() => makeCharacter(
  42064. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42065. {
  42066. front: {
  42067. height: math.unit(188, "feet"),
  42068. name: "Front",
  42069. image: {
  42070. source: "./media/characters/pyotr/front.svg",
  42071. extra: 1912/1826,
  42072. bottom: 18/1930
  42073. }
  42074. },
  42075. },
  42076. [
  42077. {
  42078. name: "Macro",
  42079. height: math.unit(188, "feet"),
  42080. default: true
  42081. },
  42082. {
  42083. name: "Megamacro",
  42084. height: math.unit(8, "miles")
  42085. },
  42086. ]
  42087. ))
  42088. characterMakers.push(() => makeCharacter(
  42089. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42090. {
  42091. side: {
  42092. height: math.unit(10, "feet"),
  42093. weight: math.unit(4500, "lb"),
  42094. name: "Side",
  42095. image: {
  42096. source: "./media/characters/ackart/side.svg",
  42097. extra: 1776/1668,
  42098. bottom: 116/1892
  42099. }
  42100. },
  42101. },
  42102. [
  42103. {
  42104. name: "Normal",
  42105. height: math.unit(10, "feet"),
  42106. default: true
  42107. },
  42108. ]
  42109. ))
  42110. characterMakers.push(() => makeCharacter(
  42111. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42112. {
  42113. side: {
  42114. height: math.unit(21, "feet"),
  42115. name: "Side",
  42116. image: {
  42117. source: "./media/characters/nolow/side.svg",
  42118. extra: 1484/1434,
  42119. bottom: 85/1569
  42120. }
  42121. },
  42122. sideErect: {
  42123. height: math.unit(21, "feet"),
  42124. name: "Side-erect",
  42125. image: {
  42126. source: "./media/characters/nolow/side-erect.svg",
  42127. extra: 1484/1434,
  42128. bottom: 85/1569
  42129. }
  42130. },
  42131. },
  42132. [
  42133. {
  42134. name: "Regular",
  42135. height: math.unit(12, "feet")
  42136. },
  42137. {
  42138. name: "Big Chee",
  42139. height: math.unit(21, "feet"),
  42140. default: true
  42141. },
  42142. ]
  42143. ))
  42144. characterMakers.push(() => makeCharacter(
  42145. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42146. {
  42147. front: {
  42148. height: math.unit(7, "feet"),
  42149. weight: math.unit(250, "lb"),
  42150. name: "Front",
  42151. image: {
  42152. source: "./media/characters/nines/front.svg",
  42153. extra: 1741/1607,
  42154. bottom: 41/1782
  42155. }
  42156. },
  42157. side: {
  42158. height: math.unit(7, "feet"),
  42159. weight: math.unit(250, "lb"),
  42160. name: "Side",
  42161. image: {
  42162. source: "./media/characters/nines/side.svg",
  42163. extra: 1854/1735,
  42164. bottom: 93/1947
  42165. }
  42166. },
  42167. back: {
  42168. height: math.unit(7, "feet"),
  42169. weight: math.unit(250, "lb"),
  42170. name: "Back",
  42171. image: {
  42172. source: "./media/characters/nines/back.svg",
  42173. extra: 1748/1615,
  42174. bottom: 20/1768
  42175. }
  42176. },
  42177. },
  42178. [
  42179. {
  42180. name: "Megamacro",
  42181. height: math.unit(99, "km"),
  42182. default: true
  42183. },
  42184. ]
  42185. ))
  42186. characterMakers.push(() => makeCharacter(
  42187. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42188. {
  42189. front: {
  42190. height: math.unit(5 + 10/12, "feet"),
  42191. weight: math.unit(210, "lb"),
  42192. name: "Front",
  42193. image: {
  42194. source: "./media/characters/zenith/front.svg",
  42195. extra: 1531/1452,
  42196. bottom: 198/1729
  42197. }
  42198. },
  42199. back: {
  42200. height: math.unit(5 + 10/12, "feet"),
  42201. weight: math.unit(210, "lb"),
  42202. name: "Back",
  42203. image: {
  42204. source: "./media/characters/zenith/back.svg",
  42205. extra: 1571/1487,
  42206. bottom: 75/1646
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Normal",
  42213. height: math.unit(5 + 10/12, "feet"),
  42214. default: true
  42215. }
  42216. ]
  42217. ))
  42218. characterMakers.push(() => makeCharacter(
  42219. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42220. {
  42221. front: {
  42222. height: math.unit(4, "feet"),
  42223. weight: math.unit(60, "lb"),
  42224. name: "Front",
  42225. image: {
  42226. source: "./media/characters/jasper/front.svg",
  42227. extra: 1450/1379,
  42228. bottom: 19/1469
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Normal",
  42235. height: math.unit(4, "feet"),
  42236. default: true
  42237. },
  42238. ]
  42239. ))
  42240. characterMakers.push(() => makeCharacter(
  42241. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42242. {
  42243. front: {
  42244. height: math.unit(6 + 5/12, "feet"),
  42245. weight: math.unit(290, "lb"),
  42246. name: "Front",
  42247. image: {
  42248. source: "./media/characters/tiberius-thyben/front.svg",
  42249. extra: 757/739,
  42250. bottom: 39/796
  42251. }
  42252. },
  42253. },
  42254. [
  42255. {
  42256. name: "Micro",
  42257. height: math.unit(1.5, "inches")
  42258. },
  42259. {
  42260. name: "Normal",
  42261. height: math.unit(6 + 5/12, "feet"),
  42262. default: true
  42263. },
  42264. {
  42265. name: "Macro",
  42266. height: math.unit(300, "feet")
  42267. },
  42268. ]
  42269. ))
  42270. characterMakers.push(() => makeCharacter(
  42271. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42272. {
  42273. front: {
  42274. height: math.unit(5 + 6/12, "feet"),
  42275. weight: math.unit(60, "kg"),
  42276. name: "Front",
  42277. image: {
  42278. source: "./media/characters/sabre/front.svg",
  42279. extra: 738/671,
  42280. bottom: 27/765
  42281. }
  42282. },
  42283. },
  42284. [
  42285. {
  42286. name: "Teeny",
  42287. height: math.unit(2, "inches")
  42288. },
  42289. {
  42290. name: "Smol",
  42291. height: math.unit(8, "inches")
  42292. },
  42293. {
  42294. name: "Normal",
  42295. height: math.unit(5 + 6/12, "feet"),
  42296. default: true
  42297. },
  42298. {
  42299. name: "Mini-Macro",
  42300. height: math.unit(15, "feet")
  42301. },
  42302. {
  42303. name: "Macro",
  42304. height: math.unit(50, "feet")
  42305. },
  42306. ]
  42307. ))
  42308. characterMakers.push(() => makeCharacter(
  42309. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42310. {
  42311. front: {
  42312. height: math.unit(6 + 4/12, "feet"),
  42313. weight: math.unit(170, "lb"),
  42314. name: "Front",
  42315. image: {
  42316. source: "./media/characters/charlie/front.svg",
  42317. extra: 1348/1228,
  42318. bottom: 15/1363
  42319. }
  42320. },
  42321. },
  42322. [
  42323. {
  42324. name: "Macro",
  42325. height: math.unit(1700, "meters"),
  42326. default: true
  42327. },
  42328. {
  42329. name: "MegaMacro",
  42330. height: math.unit(20400, "meters")
  42331. },
  42332. ]
  42333. ))
  42334. characterMakers.push(() => makeCharacter(
  42335. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42336. {
  42337. front: {
  42338. height: math.unit(6 + 3/12, "feet"),
  42339. weight: math.unit(185, "lb"),
  42340. name: "Front",
  42341. image: {
  42342. source: "./media/characters/susan-grant/front.svg",
  42343. extra: 1351/1327,
  42344. bottom: 26/1377
  42345. }
  42346. },
  42347. },
  42348. [
  42349. {
  42350. name: "Normal",
  42351. height: math.unit(6 + 3/12, "feet"),
  42352. default: true
  42353. },
  42354. {
  42355. name: "Macro",
  42356. height: math.unit(225, "feet")
  42357. },
  42358. {
  42359. name: "Macro+",
  42360. height: math.unit(900, "feet")
  42361. },
  42362. {
  42363. name: "MegaMacro",
  42364. height: math.unit(14400, "feet")
  42365. },
  42366. ]
  42367. ))
  42368. characterMakers.push(() => makeCharacter(
  42369. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42370. {
  42371. front: {
  42372. height: math.unit(5 + 4/12, "feet"),
  42373. weight: math.unit(110, "lb"),
  42374. name: "Front",
  42375. image: {
  42376. source: "./media/characters/axel-isanov/front.svg",
  42377. extra: 1096/1065,
  42378. bottom: 13/1109
  42379. }
  42380. },
  42381. },
  42382. [
  42383. {
  42384. name: "Normal",
  42385. height: math.unit(5 + 4/12, "feet"),
  42386. default: true
  42387. },
  42388. ]
  42389. ))
  42390. characterMakers.push(() => makeCharacter(
  42391. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42392. {
  42393. front: {
  42394. height: math.unit(9, "feet"),
  42395. weight: math.unit(467, "lb"),
  42396. name: "Front",
  42397. image: {
  42398. source: "./media/characters/necahual/front.svg",
  42399. extra: 920/873,
  42400. bottom: 26/946
  42401. }
  42402. },
  42403. back: {
  42404. height: math.unit(9, "feet"),
  42405. weight: math.unit(467, "lb"),
  42406. name: "Back",
  42407. image: {
  42408. source: "./media/characters/necahual/back.svg",
  42409. extra: 930/884,
  42410. bottom: 16/946
  42411. }
  42412. },
  42413. frontUnderwear: {
  42414. height: math.unit(9, "feet"),
  42415. weight: math.unit(467, "lb"),
  42416. name: "Front (Underwear)",
  42417. image: {
  42418. source: "./media/characters/necahual/front-underwear.svg",
  42419. extra: 920/873,
  42420. bottom: 26/946
  42421. }
  42422. },
  42423. frontDressed: {
  42424. height: math.unit(9, "feet"),
  42425. weight: math.unit(467, "lb"),
  42426. name: "Front (Dressed)",
  42427. image: {
  42428. source: "./media/characters/necahual/front-dressed.svg",
  42429. extra: 920/873,
  42430. bottom: 26/946
  42431. }
  42432. },
  42433. },
  42434. [
  42435. {
  42436. name: "Comprsesed",
  42437. height: math.unit(9, "feet")
  42438. },
  42439. {
  42440. name: "Natural",
  42441. height: math.unit(15, "feet"),
  42442. default: true
  42443. },
  42444. {
  42445. name: "Boosted",
  42446. height: math.unit(50, "feet")
  42447. },
  42448. {
  42449. name: "Boosted+",
  42450. height: math.unit(150, "feet")
  42451. },
  42452. {
  42453. name: "Max",
  42454. height: math.unit(500, "feet")
  42455. },
  42456. ]
  42457. ))
  42458. characterMakers.push(() => makeCharacter(
  42459. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42460. {
  42461. front: {
  42462. height: math.unit(22 + 1/12, "feet"),
  42463. weight: math.unit(3200, "lb"),
  42464. name: "Front",
  42465. image: {
  42466. source: "./media/characters/theo-acacia/front.svg",
  42467. extra: 1796/1741,
  42468. bottom: 83/1879
  42469. }
  42470. },
  42471. frontUnderwear: {
  42472. height: math.unit(22 + 1/12, "feet"),
  42473. weight: math.unit(3200, "lb"),
  42474. name: "Front (Underwear)",
  42475. image: {
  42476. source: "./media/characters/theo-acacia/front-underwear.svg",
  42477. extra: 1796/1741,
  42478. bottom: 83/1879
  42479. }
  42480. },
  42481. frontNude: {
  42482. height: math.unit(22 + 1/12, "feet"),
  42483. weight: math.unit(3200, "lb"),
  42484. name: "Front (Nude)",
  42485. image: {
  42486. source: "./media/characters/theo-acacia/front-nude.svg",
  42487. extra: 1796/1741,
  42488. bottom: 83/1879
  42489. }
  42490. },
  42491. },
  42492. [
  42493. {
  42494. name: "Normal",
  42495. height: math.unit(22 + 1/12, "feet"),
  42496. default: true
  42497. },
  42498. ]
  42499. ))
  42500. characterMakers.push(() => makeCharacter(
  42501. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42502. {
  42503. front: {
  42504. height: math.unit(20, "feet"),
  42505. name: "Front",
  42506. image: {
  42507. source: "./media/characters/astra/front.svg",
  42508. extra: 1850/1714,
  42509. bottom: 106/1956
  42510. }
  42511. },
  42512. frontUndressed: {
  42513. height: math.unit(20, "feet"),
  42514. name: "Front (Undressed)",
  42515. image: {
  42516. source: "./media/characters/astra/front-undressed.svg",
  42517. extra: 1926/1749,
  42518. bottom: 0/1926
  42519. }
  42520. },
  42521. hand: {
  42522. height: math.unit(1.53, "feet"),
  42523. name: "Hand",
  42524. image: {
  42525. source: "./media/characters/astra/hand.svg"
  42526. }
  42527. },
  42528. paw: {
  42529. height: math.unit(1.53, "feet"),
  42530. name: "Paw",
  42531. image: {
  42532. source: "./media/characters/astra/paw.svg"
  42533. }
  42534. },
  42535. },
  42536. [
  42537. {
  42538. name: "Smallest",
  42539. height: math.unit(20, "feet")
  42540. },
  42541. {
  42542. name: "Normal",
  42543. height: math.unit(1e9, "miles"),
  42544. default: true
  42545. },
  42546. {
  42547. name: "Larger",
  42548. height: math.unit(5, "multiverses")
  42549. },
  42550. {
  42551. name: "Largest",
  42552. height: math.unit(1e9, "multiverses")
  42553. },
  42554. ]
  42555. ))
  42556. characterMakers.push(() => makeCharacter(
  42557. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42558. {
  42559. front: {
  42560. height: math.unit(8, "feet"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/breanna/front.svg",
  42564. extra: 1912/1632,
  42565. bottom: 33/1945
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Smallest",
  42572. height: math.unit(8, "feet")
  42573. },
  42574. {
  42575. name: "Normal",
  42576. height: math.unit(1, "mile"),
  42577. default: true
  42578. },
  42579. {
  42580. name: "Maximum",
  42581. height: math.unit(1500000000000, "lightyears")
  42582. },
  42583. ]
  42584. ))
  42585. characterMakers.push(() => makeCharacter(
  42586. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42587. {
  42588. front: {
  42589. height: math.unit(5 + 11/12, "feet"),
  42590. weight: math.unit(155, "lb"),
  42591. name: "Front",
  42592. image: {
  42593. source: "./media/characters/cai/front.svg",
  42594. extra: 1823/1702,
  42595. bottom: 32/1855
  42596. }
  42597. },
  42598. back: {
  42599. height: math.unit(5 + 11/12, "feet"),
  42600. weight: math.unit(155, "lb"),
  42601. name: "Back",
  42602. image: {
  42603. source: "./media/characters/cai/back.svg",
  42604. extra: 1809/1708,
  42605. bottom: 31/1840
  42606. }
  42607. },
  42608. },
  42609. [
  42610. {
  42611. name: "Normal",
  42612. height: math.unit(5 + 11/12, "feet"),
  42613. default: true
  42614. },
  42615. {
  42616. name: "Big",
  42617. height: math.unit(15, "feet")
  42618. },
  42619. {
  42620. name: "Macro",
  42621. height: math.unit(200, "feet")
  42622. },
  42623. ]
  42624. ))
  42625. characterMakers.push(() => makeCharacter(
  42626. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42627. {
  42628. front: {
  42629. height: math.unit(5 + 6/12, "feet"),
  42630. weight: math.unit(160, "lb"),
  42631. name: "Front",
  42632. image: {
  42633. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42634. extra: 1227/1174,
  42635. bottom: 37/1264
  42636. }
  42637. },
  42638. },
  42639. [
  42640. {
  42641. name: "Macro",
  42642. height: math.unit(444, "meters"),
  42643. default: true
  42644. },
  42645. ]
  42646. ))
  42647. characterMakers.push(() => makeCharacter(
  42648. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42649. {
  42650. front: {
  42651. height: math.unit(18 + 7/12, "feet"),
  42652. name: "Front",
  42653. image: {
  42654. source: "./media/characters/rex/front.svg",
  42655. extra: 1941/1807,
  42656. bottom: 66/2007
  42657. }
  42658. },
  42659. back: {
  42660. height: math.unit(18 + 7/12, "feet"),
  42661. name: "Back",
  42662. image: {
  42663. source: "./media/characters/rex/back.svg",
  42664. extra: 1937/1822,
  42665. bottom: 42/1979
  42666. }
  42667. },
  42668. boot: {
  42669. height: math.unit(3.45, "feet"),
  42670. name: "Boot",
  42671. image: {
  42672. source: "./media/characters/rex/boot.svg"
  42673. }
  42674. },
  42675. paw: {
  42676. height: math.unit(4.17, "feet"),
  42677. name: "Paw",
  42678. image: {
  42679. source: "./media/characters/rex/paw.svg"
  42680. }
  42681. },
  42682. head: {
  42683. height: math.unit(6.728, "feet"),
  42684. name: "Head",
  42685. image: {
  42686. source: "./media/characters/rex/head.svg"
  42687. }
  42688. },
  42689. },
  42690. [
  42691. {
  42692. name: "Nano",
  42693. height: math.unit(18 + 7/12, "feet")
  42694. },
  42695. {
  42696. name: "Micro",
  42697. height: math.unit(1.5, "megameters")
  42698. },
  42699. {
  42700. name: "Normal",
  42701. height: math.unit(440, "megameters"),
  42702. default: true
  42703. },
  42704. {
  42705. name: "Macro",
  42706. height: math.unit(2.5, "gigameters")
  42707. },
  42708. {
  42709. name: "Gigamacro",
  42710. height: math.unit(2, "galaxies")
  42711. },
  42712. ]
  42713. ))
  42714. characterMakers.push(() => makeCharacter(
  42715. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42716. {
  42717. side: {
  42718. height: math.unit(32, "feet"),
  42719. weight: math.unit(250000, "lb"),
  42720. name: "Side",
  42721. image: {
  42722. source: "./media/characters/silverwing/side.svg",
  42723. extra: 1100/1019,
  42724. bottom: 204/1304
  42725. }
  42726. },
  42727. },
  42728. [
  42729. {
  42730. name: "Normal",
  42731. height: math.unit(32, "feet"),
  42732. default: true
  42733. },
  42734. ]
  42735. ))
  42736. characterMakers.push(() => makeCharacter(
  42737. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42738. {
  42739. front: {
  42740. height: math.unit(6 + 6/12, "feet"),
  42741. weight: math.unit(350, "lb"),
  42742. name: "Front",
  42743. image: {
  42744. source: "./media/characters/tristan-hawthorne/front.svg",
  42745. extra: 1159/1124,
  42746. bottom: 37/1196
  42747. },
  42748. form: "labrador",
  42749. default: true
  42750. },
  42751. skunkFront: {
  42752. height: math.unit(4 + 6/12, "feet"),
  42753. weight: math.unit(120, "lb"),
  42754. name: "Front",
  42755. image: {
  42756. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42757. extra: 1609/1551,
  42758. bottom: 169/1778
  42759. },
  42760. form: "skunk",
  42761. default: true
  42762. },
  42763. },
  42764. [
  42765. {
  42766. name: "Normal",
  42767. height: math.unit(6 + 6/12, "feet"),
  42768. form: "labrador",
  42769. default: true
  42770. },
  42771. {
  42772. name: "Normal",
  42773. height: math.unit(4 + 6/12, "feet"),
  42774. form: "skunk",
  42775. default: true
  42776. },
  42777. ],
  42778. {
  42779. "labrador": {
  42780. name: "Labrador",
  42781. default: true
  42782. },
  42783. "skunk": {
  42784. name: "Skunk"
  42785. }
  42786. }
  42787. ))
  42788. characterMakers.push(() => makeCharacter(
  42789. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42790. {
  42791. front: {
  42792. height: math.unit(5 + 11/12, "feet"),
  42793. weight: math.unit(190, "lb"),
  42794. name: "Front",
  42795. image: {
  42796. source: "./media/characters/mizu/front.svg",
  42797. extra: 1988/1788,
  42798. bottom: 14/2002
  42799. }
  42800. },
  42801. },
  42802. [
  42803. {
  42804. name: "Normal",
  42805. height: math.unit(5 + 11/12, "feet"),
  42806. default: true
  42807. },
  42808. ]
  42809. ))
  42810. characterMakers.push(() => makeCharacter(
  42811. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42812. {
  42813. front: {
  42814. height: math.unit(1.7, "feet"),
  42815. weight: math.unit(50, "lb"),
  42816. name: "Front",
  42817. image: {
  42818. source: "./media/characters/dechroma/front.svg",
  42819. extra: 1095/859,
  42820. bottom: 64/1159
  42821. }
  42822. },
  42823. },
  42824. [
  42825. {
  42826. name: "Normal",
  42827. height: math.unit(1.7, "feet"),
  42828. default: true
  42829. },
  42830. ]
  42831. ))
  42832. characterMakers.push(() => makeCharacter(
  42833. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42834. {
  42835. side: {
  42836. height: math.unit(30, "feet"),
  42837. name: "Side",
  42838. image: {
  42839. source: "./media/characters/veluren-thanazel/side.svg",
  42840. extra: 1611/633,
  42841. bottom: 118/1729
  42842. }
  42843. },
  42844. front: {
  42845. height: math.unit(30, "feet"),
  42846. name: "Front",
  42847. image: {
  42848. source: "./media/characters/veluren-thanazel/front.svg",
  42849. extra: 1486/636,
  42850. bottom: 238/1724
  42851. }
  42852. },
  42853. head: {
  42854. height: math.unit(21.4, "feet"),
  42855. name: "Head",
  42856. image: {
  42857. source: "./media/characters/veluren-thanazel/head.svg"
  42858. }
  42859. },
  42860. genitals: {
  42861. height: math.unit(19.4, "feet"),
  42862. name: "Genitals",
  42863. image: {
  42864. source: "./media/characters/veluren-thanazel/genitals.svg"
  42865. }
  42866. },
  42867. },
  42868. [
  42869. {
  42870. name: "Social",
  42871. height: math.unit(6, "feet")
  42872. },
  42873. {
  42874. name: "Play",
  42875. height: math.unit(12, "feet")
  42876. },
  42877. {
  42878. name: "True",
  42879. height: math.unit(30, "feet"),
  42880. default: true
  42881. },
  42882. ]
  42883. ))
  42884. characterMakers.push(() => makeCharacter(
  42885. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42886. {
  42887. front: {
  42888. height: math.unit(7 + 6/12, "feet"),
  42889. weight: math.unit(500, "kg"),
  42890. name: "Front",
  42891. image: {
  42892. source: "./media/characters/arcturas/front.svg",
  42893. extra: 1700/1500,
  42894. bottom: 145/1845
  42895. }
  42896. },
  42897. },
  42898. [
  42899. {
  42900. name: "Normal",
  42901. height: math.unit(7 + 6/12, "feet"),
  42902. default: true
  42903. },
  42904. ]
  42905. ))
  42906. characterMakers.push(() => makeCharacter(
  42907. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42908. {
  42909. side: {
  42910. height: math.unit(6, "feet"),
  42911. weight: math.unit(2, "tons"),
  42912. name: "Side",
  42913. image: {
  42914. source: "./media/characters/vitaen/side.svg",
  42915. extra: 1157/617,
  42916. bottom: 122/1279
  42917. }
  42918. },
  42919. },
  42920. [
  42921. {
  42922. name: "Normal",
  42923. height: math.unit(6, "feet"),
  42924. default: true
  42925. },
  42926. ]
  42927. ))
  42928. characterMakers.push(() => makeCharacter(
  42929. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42930. {
  42931. front: {
  42932. height: math.unit(19, "feet"),
  42933. name: "Front",
  42934. image: {
  42935. source: "./media/characters/fia-dreamweaver/front.svg",
  42936. extra: 1630/1504,
  42937. bottom: 25/1655
  42938. }
  42939. },
  42940. },
  42941. [
  42942. {
  42943. name: "Normal",
  42944. height: math.unit(19, "feet"),
  42945. default: true
  42946. },
  42947. ]
  42948. ))
  42949. characterMakers.push(() => makeCharacter(
  42950. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42951. {
  42952. front: {
  42953. height: math.unit(5 + 4/12, "feet"),
  42954. name: "Front",
  42955. image: {
  42956. source: "./media/characters/artan/front.svg",
  42957. extra: 1618/1535,
  42958. bottom: 46/1664
  42959. }
  42960. },
  42961. back: {
  42962. height: math.unit(5 + 4/12, "feet"),
  42963. name: "Back",
  42964. image: {
  42965. source: "./media/characters/artan/back.svg",
  42966. extra: 1618/1543,
  42967. bottom: 31/1649
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Normal",
  42974. height: math.unit(5 + 4/12, "feet"),
  42975. default: true
  42976. },
  42977. ]
  42978. ))
  42979. characterMakers.push(() => makeCharacter(
  42980. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42981. {
  42982. side: {
  42983. height: math.unit(182, "cm"),
  42984. weight: math.unit(1000, "lb"),
  42985. name: "Side",
  42986. image: {
  42987. source: "./media/characters/silver-dragon/side.svg",
  42988. extra: 710/287,
  42989. bottom: 88/798
  42990. }
  42991. },
  42992. },
  42993. [
  42994. {
  42995. name: "Normal",
  42996. height: math.unit(182, "cm"),
  42997. default: true
  42998. },
  42999. ]
  43000. ))
  43001. characterMakers.push(() => makeCharacter(
  43002. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43003. {
  43004. side: {
  43005. height: math.unit(6 + 6/12, "feet"),
  43006. weight: math.unit(1.5, "tons"),
  43007. name: "Side",
  43008. image: {
  43009. source: "./media/characters/zephyr/side.svg",
  43010. extra: 1433/586,
  43011. bottom: 109/1542
  43012. }
  43013. },
  43014. },
  43015. [
  43016. {
  43017. name: "Normal",
  43018. height: math.unit(6 + 6/12, "feet"),
  43019. default: true
  43020. },
  43021. ]
  43022. ))
  43023. characterMakers.push(() => makeCharacter(
  43024. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43025. {
  43026. side: {
  43027. height: math.unit(1, "feet"),
  43028. name: "Side",
  43029. image: {
  43030. source: "./media/characters/vixye/side.svg",
  43031. extra: 632/541,
  43032. bottom: 0/632
  43033. }
  43034. },
  43035. },
  43036. [
  43037. {
  43038. name: "Normal",
  43039. height: math.unit(1, "feet"),
  43040. default: true
  43041. },
  43042. {
  43043. name: "True",
  43044. height: math.unit(1e15, "multiverses")
  43045. },
  43046. ]
  43047. ))
  43048. characterMakers.push(() => makeCharacter(
  43049. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43050. {
  43051. front: {
  43052. height: math.unit(8 + 2/12, "feet"),
  43053. weight: math.unit(650, "lb"),
  43054. name: "Front",
  43055. image: {
  43056. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43057. extra: 1174/1137,
  43058. bottom: 82/1256
  43059. }
  43060. },
  43061. back: {
  43062. height: math.unit(8 + 2/12, "feet"),
  43063. weight: math.unit(650, "lb"),
  43064. name: "Back",
  43065. image: {
  43066. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43067. extra: 1204/1157,
  43068. bottom: 46/1250
  43069. }
  43070. },
  43071. },
  43072. [
  43073. {
  43074. name: "Wildform",
  43075. height: math.unit(8 + 2/12, "feet"),
  43076. default: true
  43077. },
  43078. ]
  43079. ))
  43080. characterMakers.push(() => makeCharacter(
  43081. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43082. {
  43083. front: {
  43084. height: math.unit(18, "feet"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/cyphin/front.svg",
  43088. extra: 970/886,
  43089. bottom: 42/1012
  43090. }
  43091. },
  43092. back: {
  43093. height: math.unit(18, "feet"),
  43094. name: "Back",
  43095. image: {
  43096. source: "./media/characters/cyphin/back.svg",
  43097. extra: 1009/894,
  43098. bottom: 24/1033
  43099. }
  43100. },
  43101. head: {
  43102. height: math.unit(5.05, "feet"),
  43103. name: "Head",
  43104. image: {
  43105. source: "./media/characters/cyphin/head.svg"
  43106. }
  43107. },
  43108. tailbud: {
  43109. height: math.unit(5, "feet"),
  43110. name: "Tailbud",
  43111. image: {
  43112. source: "./media/characters/cyphin/tailbud.svg"
  43113. }
  43114. },
  43115. },
  43116. [
  43117. ]
  43118. ))
  43119. characterMakers.push(() => makeCharacter(
  43120. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43121. {
  43122. side: {
  43123. height: math.unit(10, "feet"),
  43124. weight: math.unit(6, "tons"),
  43125. name: "Side",
  43126. image: {
  43127. source: "./media/characters/raijin/side.svg",
  43128. extra: 1529/613,
  43129. bottom: 337/1866
  43130. }
  43131. },
  43132. },
  43133. [
  43134. {
  43135. name: "Normal",
  43136. height: math.unit(10, "feet"),
  43137. default: true
  43138. },
  43139. ]
  43140. ))
  43141. characterMakers.push(() => makeCharacter(
  43142. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43143. {
  43144. side: {
  43145. height: math.unit(9, "feet"),
  43146. name: "Side",
  43147. image: {
  43148. source: "./media/characters/nilghais/side.svg",
  43149. extra: 1047/744,
  43150. bottom: 91/1138
  43151. }
  43152. },
  43153. head: {
  43154. height: math.unit(3.14, "feet"),
  43155. name: "Head",
  43156. image: {
  43157. source: "./media/characters/nilghais/head.svg"
  43158. }
  43159. },
  43160. mouth: {
  43161. height: math.unit(4.6, "feet"),
  43162. name: "Mouth",
  43163. image: {
  43164. source: "./media/characters/nilghais/mouth.svg"
  43165. }
  43166. },
  43167. wings: {
  43168. height: math.unit(24, "feet"),
  43169. name: "Wings",
  43170. image: {
  43171. source: "./media/characters/nilghais/wings.svg"
  43172. }
  43173. },
  43174. ass: {
  43175. height: math.unit(6.12, "feet"),
  43176. name: "Ass",
  43177. image: {
  43178. source: "./media/characters/nilghais/ass.svg"
  43179. }
  43180. },
  43181. },
  43182. [
  43183. {
  43184. name: "Normal",
  43185. height: math.unit(9, "feet"),
  43186. default: true
  43187. },
  43188. ]
  43189. ))
  43190. characterMakers.push(() => makeCharacter(
  43191. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43192. {
  43193. regular: {
  43194. height: math.unit(16 + 2/12, "feet"),
  43195. weight: math.unit(2300, "lb"),
  43196. name: "Regular",
  43197. image: {
  43198. source: "./media/characters/zolgar/regular.svg",
  43199. extra: 1246/1004,
  43200. bottom: 124/1370
  43201. }
  43202. },
  43203. boxers: {
  43204. height: math.unit(16 + 2/12, "feet"),
  43205. weight: math.unit(2300, "lb"),
  43206. name: "Boxers",
  43207. image: {
  43208. source: "./media/characters/zolgar/boxers.svg",
  43209. extra: 1246/1004,
  43210. bottom: 124/1370
  43211. }
  43212. },
  43213. armored: {
  43214. height: math.unit(16 + 2/12, "feet"),
  43215. weight: math.unit(2300, "lb"),
  43216. name: "Armored",
  43217. image: {
  43218. source: "./media/characters/zolgar/armored.svg",
  43219. extra: 1246/1004,
  43220. bottom: 124/1370
  43221. }
  43222. },
  43223. goth: {
  43224. height: math.unit(16 + 2/12, "feet"),
  43225. weight: math.unit(2300, "lb"),
  43226. name: "Goth",
  43227. image: {
  43228. source: "./media/characters/zolgar/goth.svg",
  43229. extra: 1246/1004,
  43230. bottom: 124/1370
  43231. }
  43232. },
  43233. },
  43234. [
  43235. {
  43236. name: "Shrunken Down",
  43237. height: math.unit(9 + 2/12, "feet")
  43238. },
  43239. {
  43240. name: "Normal",
  43241. height: math.unit(16 + 2/12, "feet"),
  43242. default: true
  43243. },
  43244. ]
  43245. ))
  43246. characterMakers.push(() => makeCharacter(
  43247. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43248. {
  43249. front: {
  43250. height: math.unit(6, "feet"),
  43251. weight: math.unit(168, "lb"),
  43252. name: "Front",
  43253. image: {
  43254. source: "./media/characters/luca/front.svg",
  43255. extra: 841/667,
  43256. bottom: 102/943
  43257. }
  43258. },
  43259. },
  43260. [
  43261. {
  43262. name: "Normal",
  43263. height: math.unit(6, "feet"),
  43264. default: true
  43265. },
  43266. ]
  43267. ))
  43268. characterMakers.push(() => makeCharacter(
  43269. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43270. {
  43271. side: {
  43272. height: math.unit(7 + 3/12, "feet"),
  43273. weight: math.unit(312, "lb"),
  43274. name: "Side",
  43275. image: {
  43276. source: "./media/characters/zezo/side.svg",
  43277. extra: 1192/1067,
  43278. bottom: 63/1255
  43279. }
  43280. },
  43281. },
  43282. [
  43283. {
  43284. name: "Normal",
  43285. height: math.unit(7 + 3/12, "feet"),
  43286. default: true
  43287. },
  43288. ]
  43289. ))
  43290. characterMakers.push(() => makeCharacter(
  43291. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43292. {
  43293. front: {
  43294. height: math.unit(5 + 5/12, "feet"),
  43295. weight: math.unit(170, "lb"),
  43296. name: "Front",
  43297. image: {
  43298. source: "./media/characters/mayso/front.svg",
  43299. extra: 1215/1108,
  43300. bottom: 16/1231
  43301. }
  43302. },
  43303. },
  43304. [
  43305. {
  43306. name: "Normal",
  43307. height: math.unit(5 + 5/12, "feet"),
  43308. default: true
  43309. },
  43310. ]
  43311. ))
  43312. characterMakers.push(() => makeCharacter(
  43313. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43314. {
  43315. front: {
  43316. height: math.unit(4 + 3/12, "feet"),
  43317. weight: math.unit(80, "lb"),
  43318. name: "Front",
  43319. image: {
  43320. source: "./media/characters/hess/front.svg",
  43321. extra: 1200/1123,
  43322. bottom: 16/1216
  43323. }
  43324. },
  43325. },
  43326. [
  43327. {
  43328. name: "Normal",
  43329. height: math.unit(4 + 3/12, "feet"),
  43330. default: true
  43331. },
  43332. ]
  43333. ))
  43334. characterMakers.push(() => makeCharacter(
  43335. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43336. {
  43337. front: {
  43338. height: math.unit(1.9, "meters"),
  43339. name: "Front",
  43340. image: {
  43341. source: "./media/characters/ashgar/front.svg",
  43342. extra: 1177/1146,
  43343. bottom: 99/1276
  43344. }
  43345. },
  43346. back: {
  43347. height: math.unit(1.9, "meters"),
  43348. name: "Back",
  43349. image: {
  43350. source: "./media/characters/ashgar/back.svg",
  43351. extra: 1201/1183,
  43352. bottom: 53/1254
  43353. }
  43354. },
  43355. feral: {
  43356. height: math.unit(1.4, "meters"),
  43357. name: "Feral",
  43358. image: {
  43359. source: "./media/characters/ashgar/feral.svg",
  43360. extra: 370/345,
  43361. bottom: 45/415
  43362. }
  43363. },
  43364. },
  43365. [
  43366. {
  43367. name: "Normal",
  43368. height: math.unit(1.9, "meters"),
  43369. default: true
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43375. {
  43376. regular: {
  43377. height: math.unit(6, "feet"),
  43378. weight: math.unit(220, "lb"),
  43379. name: "Regular",
  43380. image: {
  43381. source: "./media/characters/phillip/regular.svg",
  43382. extra: 1373/1277,
  43383. bottom: 75/1448
  43384. }
  43385. },
  43386. dressed: {
  43387. height: math.unit(6, "feet"),
  43388. weight: math.unit(220, "lb"),
  43389. name: "Dressed",
  43390. image: {
  43391. source: "./media/characters/phillip/dressed.svg",
  43392. extra: 1373/1277,
  43393. bottom: 75/1448
  43394. }
  43395. },
  43396. paw: {
  43397. height: math.unit(1.44, "feet"),
  43398. name: "Paw",
  43399. image: {
  43400. source: "./media/characters/phillip/paw.svg"
  43401. }
  43402. },
  43403. },
  43404. [
  43405. {
  43406. name: "Normal",
  43407. height: math.unit(6, "feet"),
  43408. default: true
  43409. },
  43410. ]
  43411. ))
  43412. characterMakers.push(() => makeCharacter(
  43413. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43414. {
  43415. side: {
  43416. height: math.unit(42, "feet"),
  43417. name: "Side",
  43418. image: {
  43419. source: "./media/characters/uvula/side.svg",
  43420. extra: 683/586,
  43421. bottom: 60/743
  43422. }
  43423. },
  43424. front: {
  43425. height: math.unit(42, "feet"),
  43426. name: "Front",
  43427. image: {
  43428. source: "./media/characters/uvula/front.svg",
  43429. extra: 705/613,
  43430. bottom: 54/759
  43431. }
  43432. },
  43433. maw: {
  43434. height: math.unit(23.5, "feet"),
  43435. name: "Maw",
  43436. image: {
  43437. source: "./media/characters/uvula/maw.svg"
  43438. }
  43439. },
  43440. },
  43441. [
  43442. {
  43443. name: "Original Size",
  43444. height: math.unit(14, "inches")
  43445. },
  43446. {
  43447. name: "Human Size",
  43448. height: math.unit(6, "feet")
  43449. },
  43450. {
  43451. name: "Big",
  43452. height: math.unit(42, "feet"),
  43453. default: true
  43454. },
  43455. {
  43456. name: "Bigger",
  43457. height: math.unit(100, "feet")
  43458. },
  43459. ]
  43460. ))
  43461. characterMakers.push(() => makeCharacter(
  43462. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43463. {
  43464. front: {
  43465. height: math.unit(5 + 11/12, "feet"),
  43466. name: "Front",
  43467. image: {
  43468. source: "./media/characters/lannah/front.svg",
  43469. extra: 1208/1113,
  43470. bottom: 97/1305
  43471. }
  43472. },
  43473. },
  43474. [
  43475. {
  43476. name: "Normal",
  43477. height: math.unit(5 + 11/12, "feet"),
  43478. default: true
  43479. },
  43480. ]
  43481. ))
  43482. characterMakers.push(() => makeCharacter(
  43483. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43484. {
  43485. front: {
  43486. height: math.unit(6 + 3/12, "feet"),
  43487. weight: math.unit(3.5, "tons"),
  43488. name: "Front",
  43489. image: {
  43490. source: "./media/characters/emberflame/front.svg",
  43491. extra: 1198/672,
  43492. bottom: 82/1280
  43493. }
  43494. },
  43495. side: {
  43496. height: math.unit(6 + 3/12, "feet"),
  43497. weight: math.unit(3.5, "tons"),
  43498. name: "Side",
  43499. image: {
  43500. source: "./media/characters/emberflame/side.svg",
  43501. extra: 938/527,
  43502. bottom: 56/994
  43503. }
  43504. },
  43505. },
  43506. [
  43507. {
  43508. name: "Normal",
  43509. height: math.unit(6 + 3/12, "feet"),
  43510. default: true
  43511. },
  43512. ]
  43513. ))
  43514. characterMakers.push(() => makeCharacter(
  43515. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43516. {
  43517. side: {
  43518. height: math.unit(17.5, "feet"),
  43519. weight: math.unit(35, "tons"),
  43520. name: "Side",
  43521. image: {
  43522. source: "./media/characters/sophie-ambrose/side.svg",
  43523. extra: 1573/1242,
  43524. bottom: 71/1644
  43525. }
  43526. },
  43527. maw: {
  43528. height: math.unit(7.4, "feet"),
  43529. name: "Maw",
  43530. image: {
  43531. source: "./media/characters/sophie-ambrose/maw.svg"
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "Normal",
  43538. height: math.unit(17.5, "feet"),
  43539. default: true
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43545. {
  43546. front: {
  43547. height: math.unit(280, "feet"),
  43548. weight: math.unit(550, "tons"),
  43549. name: "Front",
  43550. image: {
  43551. source: "./media/characters/king-mugi/front.svg",
  43552. extra: 1102/947,
  43553. bottom: 104/1206
  43554. }
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "King Mugi",
  43560. height: math.unit(280, "feet"),
  43561. default: true
  43562. },
  43563. ]
  43564. ))
  43565. characterMakers.push(() => makeCharacter(
  43566. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43567. {
  43568. front: {
  43569. height: math.unit(64, "meters"),
  43570. name: "Front",
  43571. image: {
  43572. source: "./media/characters/nova-fox/front.svg",
  43573. extra: 1310/1246,
  43574. bottom: 65/1375
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Macro",
  43581. height: math.unit(64, "meters"),
  43582. default: true
  43583. },
  43584. ]
  43585. ))
  43586. characterMakers.push(() => makeCharacter(
  43587. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43588. {
  43589. front: {
  43590. height: math.unit(6 + 3/12, "feet"),
  43591. weight: math.unit(170, "lb"),
  43592. name: "Front",
  43593. image: {
  43594. source: "./media/characters/sam-bat/front.svg",
  43595. extra: 1601/1411,
  43596. bottom: 125/1726
  43597. }
  43598. },
  43599. back: {
  43600. height: math.unit(6 + 3/12, "feet"),
  43601. weight: math.unit(170, "lb"),
  43602. name: "Back",
  43603. image: {
  43604. source: "./media/characters/sam-bat/back.svg",
  43605. extra: 1577/1405,
  43606. bottom: 58/1635
  43607. }
  43608. },
  43609. },
  43610. [
  43611. {
  43612. name: "Normal",
  43613. height: math.unit(6 + 3/12, "feet"),
  43614. default: true
  43615. },
  43616. ]
  43617. ))
  43618. characterMakers.push(() => makeCharacter(
  43619. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43620. {
  43621. front: {
  43622. height: math.unit(59, "feet"),
  43623. weight: math.unit(40000, "lb"),
  43624. name: "Front",
  43625. image: {
  43626. source: "./media/characters/inari/front.svg",
  43627. extra: 1884/1350,
  43628. bottom: 95/1979
  43629. }
  43630. },
  43631. },
  43632. [
  43633. {
  43634. name: "Gigantamax",
  43635. height: math.unit(59, "feet"),
  43636. default: true
  43637. },
  43638. ]
  43639. ))
  43640. characterMakers.push(() => makeCharacter(
  43641. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43642. {
  43643. front: {
  43644. height: math.unit(5 + 8/12, "feet"),
  43645. name: "Front",
  43646. image: {
  43647. source: "./media/characters/elizabeth/front.svg",
  43648. extra: 1395/1298,
  43649. bottom: 54/1449
  43650. }
  43651. },
  43652. mouth: {
  43653. height: math.unit(1.97, "feet"),
  43654. name: "Mouth",
  43655. image: {
  43656. source: "./media/characters/elizabeth/mouth.svg"
  43657. }
  43658. },
  43659. foot: {
  43660. height: math.unit(1.17, "feet"),
  43661. name: "Foot",
  43662. image: {
  43663. source: "./media/characters/elizabeth/foot.svg"
  43664. }
  43665. },
  43666. },
  43667. [
  43668. {
  43669. name: "Normal",
  43670. height: math.unit(5 + 8/12, "feet"),
  43671. default: true
  43672. },
  43673. {
  43674. name: "Minimacro",
  43675. height: math.unit(18, "feet")
  43676. },
  43677. {
  43678. name: "Macro",
  43679. height: math.unit(180, "feet")
  43680. },
  43681. ]
  43682. ))
  43683. characterMakers.push(() => makeCharacter(
  43684. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43685. {
  43686. front: {
  43687. height: math.unit(5 + 2/12, "feet"),
  43688. name: "Front",
  43689. image: {
  43690. source: "./media/characters/october-gossamer/front.svg",
  43691. extra: 505/454,
  43692. bottom: 7/512
  43693. }
  43694. },
  43695. back: {
  43696. height: math.unit(5 + 2/12, "feet"),
  43697. name: "Back",
  43698. image: {
  43699. source: "./media/characters/october-gossamer/back.svg",
  43700. extra: 501/454,
  43701. bottom: 11/512
  43702. }
  43703. },
  43704. },
  43705. [
  43706. {
  43707. name: "Normal",
  43708. height: math.unit(5 + 2/12, "feet"),
  43709. default: true
  43710. },
  43711. ]
  43712. ))
  43713. characterMakers.push(() => makeCharacter(
  43714. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43715. {
  43716. front: {
  43717. height: math.unit(5, "feet"),
  43718. name: "Front",
  43719. image: {
  43720. source: "./media/characters/epiglottis/front.svg",
  43721. extra: 923/849,
  43722. bottom: 17/940
  43723. }
  43724. },
  43725. },
  43726. [
  43727. {
  43728. name: "Original Size",
  43729. height: math.unit(10, "inches")
  43730. },
  43731. {
  43732. name: "Human Size",
  43733. height: math.unit(5, "feet"),
  43734. default: true
  43735. },
  43736. {
  43737. name: "Big",
  43738. height: math.unit(25, "feet")
  43739. },
  43740. {
  43741. name: "Bigger",
  43742. height: math.unit(50, "feet")
  43743. },
  43744. {
  43745. name: "oh lawd",
  43746. height: math.unit(75, "feet")
  43747. },
  43748. ]
  43749. ))
  43750. characterMakers.push(() => makeCharacter(
  43751. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43752. {
  43753. front: {
  43754. height: math.unit(2 + 4/12, "feet"),
  43755. weight: math.unit(60, "lb"),
  43756. name: "Front",
  43757. image: {
  43758. source: "./media/characters/lerm/front.svg",
  43759. extra: 796/790,
  43760. bottom: 79/875
  43761. }
  43762. },
  43763. },
  43764. [
  43765. {
  43766. name: "Normal",
  43767. height: math.unit(2 + 4/12, "feet"),
  43768. default: true
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43774. {
  43775. front: {
  43776. height: math.unit(5.5, "feet"),
  43777. weight: math.unit(130, "lb"),
  43778. name: "Front",
  43779. image: {
  43780. source: "./media/characters/xena-nebadon/front.svg",
  43781. extra: 1828/1730,
  43782. bottom: 79/1907
  43783. }
  43784. },
  43785. },
  43786. [
  43787. {
  43788. name: "Tiny Puppy",
  43789. height: math.unit(3, "inches")
  43790. },
  43791. {
  43792. name: "Normal",
  43793. height: math.unit(5.5, "feet"),
  43794. default: true
  43795. },
  43796. {
  43797. name: "Lotta Lady",
  43798. height: math.unit(12, "feet")
  43799. },
  43800. {
  43801. name: "Pretty Big",
  43802. height: math.unit(100, "feet")
  43803. },
  43804. {
  43805. name: "Big",
  43806. height: math.unit(500, "feet")
  43807. },
  43808. {
  43809. name: "Skyscraper Toys",
  43810. height: math.unit(2500, "feet")
  43811. },
  43812. {
  43813. name: "Plane Catcher",
  43814. height: math.unit(8, "miles")
  43815. },
  43816. {
  43817. name: "Planet Toys",
  43818. height: math.unit(15, "earths")
  43819. },
  43820. {
  43821. name: "Stardust",
  43822. height: math.unit(0.25, "galaxies")
  43823. },
  43824. {
  43825. name: "Snacks",
  43826. height: math.unit(70, "universes")
  43827. },
  43828. ]
  43829. ))
  43830. characterMakers.push(() => makeCharacter(
  43831. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43832. {
  43833. front: {
  43834. height: math.unit(1.6, "meters"),
  43835. weight: math.unit(60, "kg"),
  43836. name: "Front",
  43837. image: {
  43838. source: "./media/characters/bounty/front.svg",
  43839. extra: 1426/1308,
  43840. bottom: 15/1441
  43841. }
  43842. },
  43843. back: {
  43844. height: math.unit(1.6, "meters"),
  43845. weight: math.unit(60, "kg"),
  43846. name: "Back",
  43847. image: {
  43848. source: "./media/characters/bounty/back.svg",
  43849. extra: 1417/1307,
  43850. bottom: 8/1425
  43851. }
  43852. },
  43853. },
  43854. [
  43855. {
  43856. name: "Normal",
  43857. height: math.unit(1.6, "meters"),
  43858. default: true
  43859. },
  43860. {
  43861. name: "Macro",
  43862. height: math.unit(300, "meters")
  43863. },
  43864. ]
  43865. ))
  43866. characterMakers.push(() => makeCharacter(
  43867. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43868. {
  43869. front: {
  43870. height: math.unit(2 + 8/12, "feet"),
  43871. weight: math.unit(15, "lb"),
  43872. name: "Front",
  43873. image: {
  43874. source: "./media/characters/mochi/front.svg",
  43875. extra: 1022/852,
  43876. bottom: 435/1457
  43877. }
  43878. },
  43879. back: {
  43880. height: math.unit(2 + 8/12, "feet"),
  43881. weight: math.unit(15, "lb"),
  43882. name: "Back",
  43883. image: {
  43884. source: "./media/characters/mochi/back.svg",
  43885. extra: 1335/1119,
  43886. bottom: 39/1374
  43887. }
  43888. },
  43889. bird: {
  43890. height: math.unit(2 + 8/12, "feet"),
  43891. weight: math.unit(15, "lb"),
  43892. name: "Bird",
  43893. image: {
  43894. source: "./media/characters/mochi/bird.svg",
  43895. extra: 1251/1113,
  43896. bottom: 178/1429
  43897. }
  43898. },
  43899. kaiju: {
  43900. height: math.unit(154, "feet"),
  43901. weight: math.unit(1e7, "lb"),
  43902. name: "Kaiju",
  43903. image: {
  43904. source: "./media/characters/mochi/kaiju.svg",
  43905. extra: 460/324,
  43906. bottom: 40/500
  43907. }
  43908. },
  43909. head: {
  43910. height: math.unit(1.21, "feet"),
  43911. name: "Head",
  43912. image: {
  43913. source: "./media/characters/mochi/head.svg"
  43914. }
  43915. },
  43916. alternateTail: {
  43917. height: math.unit(2 + 8/12, "feet"),
  43918. weight: math.unit(45, "lb"),
  43919. name: "Alternate Tail",
  43920. image: {
  43921. source: "./media/characters/mochi/alternate-tail.svg",
  43922. extra: 139/76,
  43923. bottom: 45/184
  43924. }
  43925. },
  43926. },
  43927. [
  43928. {
  43929. name: "Micro",
  43930. height: math.unit(2, "inches")
  43931. },
  43932. {
  43933. name: "Normal",
  43934. height: math.unit(2 + 8/12, "feet"),
  43935. default: true
  43936. },
  43937. {
  43938. name: "Macro",
  43939. height: math.unit(106, "feet")
  43940. },
  43941. ]
  43942. ))
  43943. characterMakers.push(() => makeCharacter(
  43944. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43945. {
  43946. front: {
  43947. height: math.unit(5.67, "feet"),
  43948. weight: math.unit(135, "lb"),
  43949. name: "Front",
  43950. image: {
  43951. source: "./media/characters/sarel/front.svg",
  43952. extra: 865/788,
  43953. bottom: 97/962
  43954. }
  43955. },
  43956. back: {
  43957. height: math.unit(5.67, "feet"),
  43958. weight: math.unit(135, "lb"),
  43959. name: "Back",
  43960. image: {
  43961. source: "./media/characters/sarel/back.svg",
  43962. extra: 857/777,
  43963. bottom: 32/889
  43964. }
  43965. },
  43966. chozoan: {
  43967. height: math.unit(5.67, "feet"),
  43968. weight: math.unit(135, "lb"),
  43969. name: "Chozoan",
  43970. image: {
  43971. source: "./media/characters/sarel/chozoan.svg",
  43972. extra: 865/788,
  43973. bottom: 97/962
  43974. }
  43975. },
  43976. current: {
  43977. height: math.unit(5.67, "feet"),
  43978. weight: math.unit(135, "lb"),
  43979. name: "Current",
  43980. image: {
  43981. source: "./media/characters/sarel/current.svg",
  43982. extra: 865/788,
  43983. bottom: 97/962
  43984. }
  43985. },
  43986. head: {
  43987. height: math.unit(1.77, "feet"),
  43988. name: "Head",
  43989. image: {
  43990. source: "./media/characters/sarel/head.svg"
  43991. }
  43992. },
  43993. claws: {
  43994. height: math.unit(1.8, "feet"),
  43995. name: "Claws",
  43996. image: {
  43997. source: "./media/characters/sarel/claws.svg"
  43998. }
  43999. },
  44000. clawsAlt: {
  44001. height: math.unit(1.8, "feet"),
  44002. name: "Claws-alt",
  44003. image: {
  44004. source: "./media/characters/sarel/claws-alt.svg"
  44005. }
  44006. },
  44007. },
  44008. [
  44009. {
  44010. name: "Normal",
  44011. height: math.unit(5.67, "feet"),
  44012. default: true
  44013. },
  44014. ]
  44015. ))
  44016. characterMakers.push(() => makeCharacter(
  44017. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44018. {
  44019. front: {
  44020. height: math.unit(5500, "feet"),
  44021. name: "Front",
  44022. image: {
  44023. source: "./media/characters/alyonia/front.svg",
  44024. extra: 1200/1135,
  44025. bottom: 29/1229
  44026. }
  44027. },
  44028. back: {
  44029. height: math.unit(5500, "feet"),
  44030. name: "Back",
  44031. image: {
  44032. source: "./media/characters/alyonia/back.svg",
  44033. extra: 1205/1138,
  44034. bottom: 10/1215
  44035. }
  44036. },
  44037. },
  44038. [
  44039. {
  44040. name: "Small",
  44041. height: math.unit(10, "feet")
  44042. },
  44043. {
  44044. name: "Macro",
  44045. height: math.unit(500, "feet")
  44046. },
  44047. {
  44048. name: "Mega Macro",
  44049. height: math.unit(5500, "feet"),
  44050. default: true
  44051. },
  44052. {
  44053. name: "Mega Macro+",
  44054. height: math.unit(500000, "feet")
  44055. },
  44056. {
  44057. name: "Giga Macro",
  44058. height: math.unit(3000, "miles")
  44059. },
  44060. {
  44061. name: "Tera Macro",
  44062. height: math.unit(2.8e6, "miles")
  44063. },
  44064. {
  44065. name: "Galactic",
  44066. height: math.unit(120000, "lightyears")
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44072. {
  44073. werewolf: {
  44074. height: math.unit(8, "feet"),
  44075. weight: math.unit(425, "lb"),
  44076. name: "Werewolf",
  44077. image: {
  44078. source: "./media/characters/autumn/werewolf.svg",
  44079. extra: 2154/2031,
  44080. bottom: 160/2314
  44081. }
  44082. },
  44083. human: {
  44084. height: math.unit(5 + 8/12, "feet"),
  44085. weight: math.unit(150, "lb"),
  44086. name: "Human",
  44087. image: {
  44088. source: "./media/characters/autumn/human.svg",
  44089. extra: 1200/1149,
  44090. bottom: 30/1230
  44091. }
  44092. },
  44093. },
  44094. [
  44095. {
  44096. name: "Normal",
  44097. height: math.unit(8, "feet"),
  44098. default: true
  44099. },
  44100. ]
  44101. ))
  44102. characterMakers.push(() => makeCharacter(
  44103. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44104. {
  44105. front: {
  44106. height: math.unit(8 + 5/12, "feet"),
  44107. weight: math.unit(825, "lb"),
  44108. name: "Front",
  44109. image: {
  44110. source: "./media/characters/cobalt-charizard/front.svg",
  44111. extra: 1268/1155,
  44112. bottom: 122/1390
  44113. }
  44114. },
  44115. side: {
  44116. height: math.unit(8 + 5/12, "feet"),
  44117. weight: math.unit(825, "lb"),
  44118. name: "Side",
  44119. image: {
  44120. source: "./media/characters/cobalt-charizard/side.svg",
  44121. extra: 1348/1257,
  44122. bottom: 58/1406
  44123. }
  44124. },
  44125. gMax: {
  44126. height: math.unit(134 + 11/12, "feet"),
  44127. name: "G-Max",
  44128. image: {
  44129. source: "./media/characters/cobalt-charizard/g-max.svg",
  44130. extra: 1835/1541,
  44131. bottom: 151/1986
  44132. }
  44133. },
  44134. },
  44135. [
  44136. {
  44137. name: "Normal",
  44138. height: math.unit(8 + 5/12, "feet"),
  44139. default: true
  44140. },
  44141. ]
  44142. ))
  44143. characterMakers.push(() => makeCharacter(
  44144. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44145. {
  44146. front: {
  44147. height: math.unit(6 + 3/12, "feet"),
  44148. weight: math.unit(210, "lb"),
  44149. name: "Front",
  44150. image: {
  44151. source: "./media/characters/stella/front.svg",
  44152. extra: 3549/3335,
  44153. bottom: 51/3600
  44154. }
  44155. },
  44156. },
  44157. [
  44158. {
  44159. name: "Normal",
  44160. height: math.unit(6 + 3/12, "feet"),
  44161. default: true
  44162. },
  44163. ]
  44164. ))
  44165. characterMakers.push(() => makeCharacter(
  44166. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44167. {
  44168. front: {
  44169. height: math.unit(5, "feet"),
  44170. weight: math.unit(90, "lb"),
  44171. name: "Front",
  44172. image: {
  44173. source: "./media/characters/riley-bishop/front.svg",
  44174. extra: 1450/1428,
  44175. bottom: 152/1602
  44176. }
  44177. },
  44178. },
  44179. [
  44180. {
  44181. name: "Normal",
  44182. height: math.unit(5, "feet"),
  44183. default: true
  44184. },
  44185. ]
  44186. ))
  44187. characterMakers.push(() => makeCharacter(
  44188. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44189. {
  44190. side: {
  44191. height: math.unit(8 + 2/12, "feet"),
  44192. weight: math.unit(500, "kg"),
  44193. name: "Side",
  44194. image: {
  44195. source: "./media/characters/theo-arcanine/side.svg",
  44196. extra: 1342/1074,
  44197. bottom: 111/1453
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Normal",
  44204. height: math.unit(8 + 2/12, "feet"),
  44205. default: true
  44206. },
  44207. ]
  44208. ))
  44209. characterMakers.push(() => makeCharacter(
  44210. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44211. {
  44212. front: {
  44213. height: math.unit(4, "feet"),
  44214. name: "Front",
  44215. image: {
  44216. source: "./media/characters/kali/front.svg",
  44217. extra: 1921/1357,
  44218. bottom: 70/1991
  44219. }
  44220. },
  44221. },
  44222. [
  44223. {
  44224. name: "Normal",
  44225. height: math.unit(4, "feet"),
  44226. default: true
  44227. },
  44228. {
  44229. name: "Macro",
  44230. height: math.unit(32, "meters")
  44231. },
  44232. {
  44233. name: "Macro+",
  44234. height: math.unit(150, "meters")
  44235. },
  44236. {
  44237. name: "Megamacro",
  44238. height: math.unit(7500, "meters")
  44239. },
  44240. {
  44241. name: "Megamacro+",
  44242. height: math.unit(80, "kilometers")
  44243. },
  44244. ]
  44245. ))
  44246. characterMakers.push(() => makeCharacter(
  44247. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44248. {
  44249. side: {
  44250. height: math.unit(5 + 11/12, "feet"),
  44251. weight: math.unit(236, "lb"),
  44252. name: "Side",
  44253. image: {
  44254. source: "./media/characters/gapp/side.svg",
  44255. extra: 775/340,
  44256. bottom: 58/833
  44257. }
  44258. },
  44259. mouth: {
  44260. height: math.unit(2.98, "feet"),
  44261. name: "Mouth",
  44262. image: {
  44263. source: "./media/characters/gapp/mouth.svg"
  44264. }
  44265. },
  44266. },
  44267. [
  44268. {
  44269. name: "Normal",
  44270. height: math.unit(5 + 1/12, "feet"),
  44271. default: true
  44272. },
  44273. ]
  44274. ))
  44275. characterMakers.push(() => makeCharacter(
  44276. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44277. {
  44278. front: {
  44279. height: math.unit(6, "feet"),
  44280. name: "Front",
  44281. image: {
  44282. source: "./media/characters/persephone/front.svg",
  44283. extra: 1895/1717,
  44284. bottom: 96/1991
  44285. }
  44286. },
  44287. back: {
  44288. height: math.unit(6, "feet"),
  44289. name: "Back",
  44290. image: {
  44291. source: "./media/characters/persephone/back.svg",
  44292. extra: 1868/1679,
  44293. bottom: 26/1894
  44294. }
  44295. },
  44296. casual: {
  44297. height: math.unit(6, "feet"),
  44298. name: "Casual",
  44299. image: {
  44300. source: "./media/characters/persephone/casual.svg",
  44301. extra: 1713/1541,
  44302. bottom: 76/1789
  44303. }
  44304. },
  44305. },
  44306. [
  44307. {
  44308. name: "Human Size",
  44309. height: math.unit(6, "feet")
  44310. },
  44311. {
  44312. name: "Big Steppy",
  44313. height: math.unit(600, "meters"),
  44314. default: true
  44315. },
  44316. {
  44317. name: "Galaxy Brain",
  44318. height: math.unit(1, "zettameter")
  44319. },
  44320. ]
  44321. ))
  44322. characterMakers.push(() => makeCharacter(
  44323. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44324. {
  44325. front: {
  44326. height: math.unit(1.85, "meters"),
  44327. name: "Front",
  44328. image: {
  44329. source: "./media/characters/riley-foxthing/front.svg",
  44330. extra: 1495/1354,
  44331. bottom: 122/1617
  44332. }
  44333. },
  44334. frontAlt: {
  44335. height: math.unit(1.85, "meters"),
  44336. name: "Front (Alt)",
  44337. image: {
  44338. source: "./media/characters/riley-foxthing/front-alt.svg",
  44339. extra: 1572/1389,
  44340. bottom: 116/1688
  44341. }
  44342. },
  44343. },
  44344. [
  44345. {
  44346. name: "Normal Sized",
  44347. height: math.unit(1.85, "meters"),
  44348. default: true
  44349. },
  44350. {
  44351. name: "Quite Sizable",
  44352. height: math.unit(5, "meters")
  44353. },
  44354. {
  44355. name: "Rather Large",
  44356. height: math.unit(20, "meters")
  44357. },
  44358. {
  44359. name: "Macro",
  44360. height: math.unit(450, "meters")
  44361. },
  44362. {
  44363. name: "Giga",
  44364. height: math.unit(5, "km")
  44365. },
  44366. ]
  44367. ))
  44368. characterMakers.push(() => makeCharacter(
  44369. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44370. {
  44371. front: {
  44372. height: math.unit(6, "feet"),
  44373. weight: math.unit(200, "lb"),
  44374. name: "Front",
  44375. image: {
  44376. source: "./media/characters/blizzard/front.svg",
  44377. extra: 1136/990,
  44378. bottom: 136/1272
  44379. }
  44380. },
  44381. back: {
  44382. height: math.unit(6, "feet"),
  44383. weight: math.unit(200, "lb"),
  44384. name: "Back",
  44385. image: {
  44386. source: "./media/characters/blizzard/back.svg",
  44387. extra: 1175/1034,
  44388. bottom: 97/1272
  44389. }
  44390. },
  44391. sitting: {
  44392. height: math.unit(3.725, "feet"),
  44393. weight: math.unit(200, "lb"),
  44394. name: "Sitting",
  44395. image: {
  44396. source: "./media/characters/blizzard/sitting.svg",
  44397. extra: 581/485,
  44398. bottom: 90/671
  44399. }
  44400. },
  44401. frontWizard: {
  44402. height: math.unit(7.9, "feet"),
  44403. weight: math.unit(200, "lb"),
  44404. name: "Front (Wizard)",
  44405. image: {
  44406. source: "./media/characters/blizzard/front-wizard.svg"
  44407. }
  44408. },
  44409. backWizard: {
  44410. height: math.unit(7.9, "feet"),
  44411. weight: math.unit(200, "lb"),
  44412. name: "Back (Wizard)",
  44413. image: {
  44414. source: "./media/characters/blizzard/back-wizard.svg"
  44415. }
  44416. },
  44417. frontNsfw: {
  44418. height: math.unit(6, "feet"),
  44419. weight: math.unit(200, "lb"),
  44420. name: "Front (NSFW)",
  44421. image: {
  44422. source: "./media/characters/blizzard/front-nsfw.svg",
  44423. extra: 1136/990,
  44424. bottom: 136/1272
  44425. }
  44426. },
  44427. backNsfw: {
  44428. height: math.unit(6, "feet"),
  44429. weight: math.unit(200, "lb"),
  44430. name: "Back (NSFW)",
  44431. image: {
  44432. source: "./media/characters/blizzard/back-nsfw.svg",
  44433. extra: 1175/1034,
  44434. bottom: 97/1272
  44435. }
  44436. },
  44437. sittingNsfw: {
  44438. height: math.unit(3.725, "feet"),
  44439. weight: math.unit(200, "lb"),
  44440. name: "Sitting (NSFW)",
  44441. image: {
  44442. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44443. extra: 581/485,
  44444. bottom: 90/671
  44445. }
  44446. },
  44447. wizardFrontNsfw: {
  44448. height: math.unit(7.9, "feet"),
  44449. weight: math.unit(200, "lb"),
  44450. name: "Wizard (Front, NSFW)",
  44451. image: {
  44452. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44453. }
  44454. },
  44455. },
  44456. [
  44457. {
  44458. name: "Normal",
  44459. height: math.unit(6, "feet"),
  44460. default: true
  44461. },
  44462. ]
  44463. ))
  44464. characterMakers.push(() => makeCharacter(
  44465. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44466. {
  44467. front: {
  44468. height: math.unit(5 + 2/12, "feet"),
  44469. name: "Front",
  44470. image: {
  44471. source: "./media/characters/lumi/front.svg",
  44472. extra: 1328/1268,
  44473. bottom: 103/1431
  44474. }
  44475. },
  44476. back: {
  44477. height: math.unit(5 + 2/12, "feet"),
  44478. name: "Back",
  44479. image: {
  44480. source: "./media/characters/lumi/back.svg",
  44481. extra: 1381/1327,
  44482. bottom: 43/1424
  44483. }
  44484. },
  44485. },
  44486. [
  44487. {
  44488. name: "Normal",
  44489. height: math.unit(5 + 2/12, "feet"),
  44490. default: true
  44491. },
  44492. ]
  44493. ))
  44494. characterMakers.push(() => makeCharacter(
  44495. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44496. {
  44497. front: {
  44498. height: math.unit(5 + 9/12, "feet"),
  44499. name: "Front",
  44500. image: {
  44501. source: "./media/characters/aliya-cotton/front.svg",
  44502. extra: 577/564,
  44503. bottom: 29/606
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Normal",
  44510. height: math.unit(5 + 9/12, "feet"),
  44511. default: true
  44512. },
  44513. ]
  44514. ))
  44515. characterMakers.push(() => makeCharacter(
  44516. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44517. {
  44518. front: {
  44519. height: math.unit(2.7, "meters"),
  44520. weight: math.unit(25000, "lb"),
  44521. name: "Front",
  44522. image: {
  44523. source: "./media/characters/noah-luxray/front.svg",
  44524. extra: 1644/825,
  44525. bottom: 339/1983
  44526. }
  44527. },
  44528. side: {
  44529. height: math.unit(2.97, "meters"),
  44530. weight: math.unit(25000, "lb"),
  44531. name: "Side",
  44532. image: {
  44533. source: "./media/characters/noah-luxray/side.svg",
  44534. extra: 1319/650,
  44535. bottom: 163/1482
  44536. }
  44537. },
  44538. dick: {
  44539. height: math.unit(7.4, "feet"),
  44540. weight: math.unit(2500, "lb"),
  44541. name: "Dick",
  44542. image: {
  44543. source: "./media/characters/noah-luxray/dick.svg"
  44544. }
  44545. },
  44546. dickAlt: {
  44547. height: math.unit(10.83, "feet"),
  44548. weight: math.unit(2500, "lb"),
  44549. name: "Dick-alt",
  44550. image: {
  44551. source: "./media/characters/noah-luxray/dick-alt.svg"
  44552. }
  44553. },
  44554. },
  44555. [
  44556. {
  44557. name: "BIG",
  44558. height: math.unit(2.7, "meters"),
  44559. default: true
  44560. },
  44561. ]
  44562. ))
  44563. characterMakers.push(() => makeCharacter(
  44564. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44565. {
  44566. standing: {
  44567. height: math.unit(183, "cm"),
  44568. weight: math.unit(68, "kg"),
  44569. name: "Standing",
  44570. image: {
  44571. source: "./media/characters/arion/standing.svg",
  44572. extra: 1869/1807,
  44573. bottom: 93/1962
  44574. }
  44575. },
  44576. reclining: {
  44577. height: math.unit(70.5, "cm"),
  44578. weight: math.unit(68, "lb"),
  44579. name: "Reclining",
  44580. image: {
  44581. source: "./media/characters/arion/reclining.svg",
  44582. extra: 937/870,
  44583. bottom: 63/1000
  44584. }
  44585. },
  44586. },
  44587. [
  44588. {
  44589. name: "Colossus Size, Low",
  44590. height: math.unit(33, "meters"),
  44591. default: true
  44592. },
  44593. {
  44594. name: "Colossus Size, Mid",
  44595. height: math.unit(52, "meters")
  44596. },
  44597. {
  44598. name: "Colossus Size, High",
  44599. height: math.unit(60, "meters")
  44600. },
  44601. {
  44602. name: "Titan Size, Low",
  44603. height: math.unit(91, "meters"),
  44604. },
  44605. {
  44606. name: "Titan Size, Mid",
  44607. height: math.unit(122, "meters")
  44608. },
  44609. {
  44610. name: "Titan Size, High",
  44611. height: math.unit(162, "meters")
  44612. },
  44613. ]
  44614. ))
  44615. characterMakers.push(() => makeCharacter(
  44616. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44617. {
  44618. front: {
  44619. height: math.unit(53, "meters"),
  44620. name: "Front",
  44621. image: {
  44622. source: "./media/characters/stellar-marbey/front.svg",
  44623. extra: 1913/1805,
  44624. bottom: 92/2005
  44625. }
  44626. },
  44627. back: {
  44628. height: math.unit(53, "meters"),
  44629. name: "Back",
  44630. image: {
  44631. source: "./media/characters/stellar-marbey/back.svg",
  44632. extra: 1960/1851,
  44633. bottom: 28/1988
  44634. }
  44635. },
  44636. mouth: {
  44637. height: math.unit(3.5, "meters"),
  44638. name: "Mouth",
  44639. image: {
  44640. source: "./media/characters/stellar-marbey/mouth.svg"
  44641. }
  44642. },
  44643. },
  44644. [
  44645. {
  44646. name: "Macro",
  44647. height: math.unit(53, "meters"),
  44648. default: true
  44649. },
  44650. ]
  44651. ))
  44652. characterMakers.push(() => makeCharacter(
  44653. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44654. {
  44655. front: {
  44656. height: math.unit(8 + 1/12, "feet"),
  44657. weight: math.unit(233, "lb"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/matsu/front.svg",
  44661. extra: 832/772,
  44662. bottom: 40/872
  44663. }
  44664. },
  44665. back: {
  44666. height: math.unit(8 + 1/12, "feet"),
  44667. weight: math.unit(233, "lb"),
  44668. name: "Back",
  44669. image: {
  44670. source: "./media/characters/matsu/back.svg",
  44671. extra: 839/780,
  44672. bottom: 47/886
  44673. }
  44674. },
  44675. },
  44676. [
  44677. {
  44678. name: "Normal",
  44679. height: math.unit(8 + 1/12, "feet"),
  44680. default: true
  44681. },
  44682. ]
  44683. ))
  44684. characterMakers.push(() => makeCharacter(
  44685. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44686. {
  44687. front: {
  44688. height: math.unit(4, "feet"),
  44689. weight: math.unit(148, "lb"),
  44690. name: "Front",
  44691. image: {
  44692. source: "./media/characters/thiz/front.svg",
  44693. extra: 1913/1748,
  44694. bottom: 62/1975
  44695. }
  44696. },
  44697. },
  44698. [
  44699. {
  44700. name: "Normal",
  44701. height: math.unit(4, "feet"),
  44702. default: true
  44703. },
  44704. ]
  44705. ))
  44706. characterMakers.push(() => makeCharacter(
  44707. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44708. {
  44709. front: {
  44710. height: math.unit(7 + 6/12, "feet"),
  44711. weight: math.unit(267, "lb"),
  44712. name: "Front",
  44713. image: {
  44714. source: "./media/characters/marcel/front.svg",
  44715. extra: 1221/1096,
  44716. bottom: 76/1297
  44717. }
  44718. },
  44719. },
  44720. [
  44721. {
  44722. name: "Normal",
  44723. height: math.unit(7 + 6/12, "feet"),
  44724. default: true
  44725. },
  44726. ]
  44727. ))
  44728. characterMakers.push(() => makeCharacter(
  44729. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44730. {
  44731. side: {
  44732. height: math.unit(42, "meters"),
  44733. name: "Side",
  44734. image: {
  44735. source: "./media/characters/flake/side.svg",
  44736. extra: 1525/1306,
  44737. bottom: 209/1734
  44738. }
  44739. },
  44740. },
  44741. [
  44742. {
  44743. name: "Normal",
  44744. height: math.unit(42, "meters"),
  44745. default: true
  44746. },
  44747. ]
  44748. ))
  44749. characterMakers.push(() => makeCharacter(
  44750. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44751. {
  44752. dressed: {
  44753. height: math.unit(6 + 4/12, "feet"),
  44754. weight: math.unit(520, "lb"),
  44755. name: "Dressed",
  44756. image: {
  44757. source: "./media/characters/someonne/dressed.svg",
  44758. extra: 1020/1010,
  44759. bottom: 178/1198
  44760. }
  44761. },
  44762. undressed: {
  44763. height: math.unit(6 + 4/12, "feet"),
  44764. weight: math.unit(520, "lb"),
  44765. name: "Undressed",
  44766. image: {
  44767. source: "./media/characters/someonne/undressed.svg",
  44768. extra: 1019/1014,
  44769. bottom: 169/1188
  44770. }
  44771. },
  44772. },
  44773. [
  44774. {
  44775. name: "Normal",
  44776. height: math.unit(6 + 4/12, "feet"),
  44777. default: true
  44778. },
  44779. ]
  44780. ))
  44781. characterMakers.push(() => makeCharacter(
  44782. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44783. {
  44784. front: {
  44785. height: math.unit(3, "feet"),
  44786. weight: math.unit(30, "lb"),
  44787. name: "Front",
  44788. image: {
  44789. source: "./media/characters/till/front.svg",
  44790. extra: 892/823,
  44791. bottom: 55/947
  44792. }
  44793. },
  44794. },
  44795. [
  44796. {
  44797. name: "Normal",
  44798. height: math.unit(3, "feet"),
  44799. default: true
  44800. },
  44801. ]
  44802. ))
  44803. characterMakers.push(() => makeCharacter(
  44804. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44805. {
  44806. front: {
  44807. height: math.unit(9 + 8/12, "feet"),
  44808. weight: math.unit(800, "lb"),
  44809. name: "Front",
  44810. image: {
  44811. source: "./media/characters/sydney-heki/front.svg",
  44812. extra: 1360/1300,
  44813. bottom: 22/1382
  44814. }
  44815. },
  44816. back: {
  44817. height: math.unit(9 + 8/12, "feet"),
  44818. weight: math.unit(800, "lb"),
  44819. name: "Back",
  44820. image: {
  44821. source: "./media/characters/sydney-heki/back.svg",
  44822. extra: 1356/1293,
  44823. bottom: 12/1368
  44824. }
  44825. },
  44826. frontDressed: {
  44827. height: math.unit(9 + 8/12, "feet"),
  44828. weight: math.unit(800, "lb"),
  44829. name: "Front-dressed",
  44830. image: {
  44831. source: "./media/characters/sydney-heki/front-dressed.svg",
  44832. extra: 1360/1300,
  44833. bottom: 22/1382
  44834. }
  44835. },
  44836. },
  44837. [
  44838. {
  44839. name: "Normal",
  44840. height: math.unit(9 + 8/12, "feet"),
  44841. default: true
  44842. },
  44843. {
  44844. name: "Macro",
  44845. height: math.unit(500, "feet")
  44846. },
  44847. {
  44848. name: "Megamacro",
  44849. height: math.unit(3.6, "miles")
  44850. },
  44851. ]
  44852. ))
  44853. characterMakers.push(() => makeCharacter(
  44854. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44855. {
  44856. front: {
  44857. height: math.unit(200, "cm"),
  44858. weight: math.unit(250, "lb"),
  44859. name: "Front",
  44860. image: {
  44861. source: "./media/characters/fowler-karlsson/front.svg",
  44862. extra: 897/845,
  44863. bottom: 123/1020
  44864. }
  44865. },
  44866. back: {
  44867. height: math.unit(200, "cm"),
  44868. weight: math.unit(250, "lb"),
  44869. name: "Back",
  44870. image: {
  44871. source: "./media/characters/fowler-karlsson/back.svg",
  44872. extra: 999/944,
  44873. bottom: 26/1025
  44874. }
  44875. },
  44876. dick: {
  44877. height: math.unit(1.92, "feet"),
  44878. weight: math.unit(150, "lb"),
  44879. name: "Dick",
  44880. image: {
  44881. source: "./media/characters/fowler-karlsson/dick.svg"
  44882. }
  44883. },
  44884. },
  44885. [
  44886. {
  44887. name: "Normal",
  44888. height: math.unit(200, "cm"),
  44889. default: true
  44890. },
  44891. {
  44892. name: "Smaller Macro",
  44893. height: math.unit(90, "m")
  44894. },
  44895. {
  44896. name: "Macro",
  44897. height: math.unit(150, "m")
  44898. },
  44899. {
  44900. name: "Bigger Macro",
  44901. height: math.unit(300, "m")
  44902. },
  44903. ]
  44904. ))
  44905. characterMakers.push(() => makeCharacter(
  44906. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44907. {
  44908. side: {
  44909. height: math.unit(8 + 2/12, "feet"),
  44910. weight: math.unit(1, "tonne"),
  44911. name: "Side",
  44912. image: {
  44913. source: "./media/characters/rylide/side.svg",
  44914. extra: 1318/1034,
  44915. bottom: 106/1424
  44916. }
  44917. },
  44918. sitting: {
  44919. height: math.unit(303, "cm"),
  44920. weight: math.unit(1, "tonne"),
  44921. name: "Sitting",
  44922. image: {
  44923. source: "./media/characters/rylide/sitting.svg",
  44924. extra: 1303/1103,
  44925. bottom: 36/1339
  44926. }
  44927. },
  44928. },
  44929. [
  44930. {
  44931. name: "Normal",
  44932. height: math.unit(8 + 2/12, "feet"),
  44933. default: true
  44934. },
  44935. ]
  44936. ))
  44937. characterMakers.push(() => makeCharacter(
  44938. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44939. {
  44940. front: {
  44941. height: math.unit(5 + 10/12, "feet"),
  44942. weight: math.unit(160, "lb"),
  44943. name: "Front",
  44944. image: {
  44945. source: "./media/characters/pudask/front.svg",
  44946. extra: 1616/1590,
  44947. bottom: 161/1777
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Ferret Height",
  44954. height: math.unit(2 + 5/12, "feet")
  44955. },
  44956. {
  44957. name: "Canon Height",
  44958. height: math.unit(5 + 10/12, "feet"),
  44959. default: true
  44960. },
  44961. ]
  44962. ))
  44963. characterMakers.push(() => makeCharacter(
  44964. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44965. {
  44966. front: {
  44967. height: math.unit(3 + 6/12, "feet"),
  44968. weight: math.unit(60, "lb"),
  44969. name: "Front",
  44970. image: {
  44971. source: "./media/characters/ramita/front.svg",
  44972. extra: 1402/1232,
  44973. bottom: 62/1464
  44974. }
  44975. },
  44976. dressed: {
  44977. height: math.unit(3 + 6/12, "feet"),
  44978. weight: math.unit(60, "lb"),
  44979. name: "Dressed",
  44980. image: {
  44981. source: "./media/characters/ramita/dressed.svg",
  44982. extra: 1534/1249,
  44983. bottom: 50/1584
  44984. }
  44985. },
  44986. },
  44987. [
  44988. {
  44989. name: "Normal",
  44990. height: math.unit(3 + 6/12, "feet"),
  44991. default: true
  44992. },
  44993. ]
  44994. ))
  44995. characterMakers.push(() => makeCharacter(
  44996. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44997. {
  44998. front: {
  44999. height: math.unit(8, "feet"),
  45000. name: "Front",
  45001. image: {
  45002. source: "./media/characters/ark/front.svg",
  45003. extra: 772/693,
  45004. bottom: 45/817
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Normal",
  45011. height: math.unit(8, "feet"),
  45012. default: true
  45013. },
  45014. ]
  45015. ))
  45016. characterMakers.push(() => makeCharacter(
  45017. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45018. {
  45019. front: {
  45020. height: math.unit(6, "feet"),
  45021. weight: math.unit(250, "lb"),
  45022. volume: math.unit(5/8, "gallons"),
  45023. name: "Front",
  45024. image: {
  45025. source: "./media/characters/ludwig-horn/front.svg",
  45026. extra: 1782/1635,
  45027. bottom: 96/1878
  45028. }
  45029. },
  45030. back: {
  45031. height: math.unit(6, "feet"),
  45032. weight: math.unit(250, "lb"),
  45033. volume: math.unit(5/8, "gallons"),
  45034. name: "Back",
  45035. image: {
  45036. source: "./media/characters/ludwig-horn/back.svg",
  45037. extra: 1874/1729,
  45038. bottom: 27/1901
  45039. }
  45040. },
  45041. dick: {
  45042. height: math.unit(1.05, "feet"),
  45043. weight: math.unit(15, "lb"),
  45044. volume: math.unit(5/8, "gallons"),
  45045. name: "Dick",
  45046. image: {
  45047. source: "./media/characters/ludwig-horn/dick.svg"
  45048. }
  45049. },
  45050. },
  45051. [
  45052. {
  45053. name: "Small",
  45054. height: math.unit(6, "feet")
  45055. },
  45056. {
  45057. name: "Typical",
  45058. height: math.unit(12, "feet"),
  45059. default: true
  45060. },
  45061. {
  45062. name: "Building",
  45063. height: math.unit(80, "feet")
  45064. },
  45065. {
  45066. name: "Town",
  45067. height: math.unit(800, "feet")
  45068. },
  45069. {
  45070. name: "Kingdom",
  45071. height: math.unit(80000, "feet")
  45072. },
  45073. {
  45074. name: "Planet",
  45075. height: math.unit(8000000, "feet")
  45076. },
  45077. {
  45078. name: "Universe",
  45079. height: math.unit(8000000000, "feet")
  45080. },
  45081. {
  45082. name: "Transcended",
  45083. height: math.unit(8e27, "feet")
  45084. },
  45085. ]
  45086. ))
  45087. characterMakers.push(() => makeCharacter(
  45088. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45089. {
  45090. front: {
  45091. height: math.unit(5, "feet"),
  45092. weight: math.unit(50, "kg"),
  45093. name: "Front",
  45094. image: {
  45095. source: "./media/characters/biot-avery/front.svg",
  45096. extra: 1295/1232,
  45097. bottom: 86/1381
  45098. }
  45099. },
  45100. },
  45101. [
  45102. {
  45103. name: "Normal",
  45104. height: math.unit(5, "feet"),
  45105. default: true
  45106. },
  45107. ]
  45108. ))
  45109. characterMakers.push(() => makeCharacter(
  45110. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45111. {
  45112. front: {
  45113. height: math.unit(6, "feet"),
  45114. name: "Front",
  45115. image: {
  45116. source: "./media/characters/kitsune-kiro/front.svg",
  45117. extra: 1270/1158,
  45118. bottom: 42/1312
  45119. }
  45120. },
  45121. frontAlt: {
  45122. height: math.unit(6, "feet"),
  45123. name: "Front-alt",
  45124. image: {
  45125. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45126. extra: 1130/1081,
  45127. bottom: 36/1166
  45128. }
  45129. },
  45130. },
  45131. [
  45132. {
  45133. name: "Smol",
  45134. height: math.unit(3, "feet")
  45135. },
  45136. {
  45137. name: "Normal",
  45138. height: math.unit(6, "feet"),
  45139. default: true
  45140. },
  45141. ]
  45142. ))
  45143. characterMakers.push(() => makeCharacter(
  45144. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45145. {
  45146. front: {
  45147. height: math.unit(6, "feet"),
  45148. weight: math.unit(125, "lb"),
  45149. name: "Front",
  45150. image: {
  45151. source: "./media/characters/jack-thatcher/front.svg",
  45152. extra: 1474/1370,
  45153. bottom: 26/1500
  45154. }
  45155. },
  45156. back: {
  45157. height: math.unit(6, "feet"),
  45158. weight: math.unit(125, "lb"),
  45159. name: "Back",
  45160. image: {
  45161. source: "./media/characters/jack-thatcher/back.svg",
  45162. extra: 1489/1384,
  45163. bottom: 18/1507
  45164. }
  45165. },
  45166. },
  45167. [
  45168. {
  45169. name: "Normal",
  45170. height: math.unit(6, "feet"),
  45171. default: true
  45172. },
  45173. {
  45174. name: "Macro",
  45175. height: math.unit(75, "feet")
  45176. },
  45177. {
  45178. name: "Macro-er",
  45179. height: math.unit(250, "feet")
  45180. },
  45181. ]
  45182. ))
  45183. characterMakers.push(() => makeCharacter(
  45184. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45185. {
  45186. front: {
  45187. height: math.unit(7, "feet"),
  45188. weight: math.unit(110, "kg"),
  45189. name: "Front",
  45190. image: {
  45191. source: "./media/characters/max-hyper/front.svg",
  45192. extra: 1969/1881,
  45193. bottom: 49/2018
  45194. }
  45195. },
  45196. },
  45197. [
  45198. {
  45199. name: "Normal",
  45200. height: math.unit(7, "feet"),
  45201. default: true
  45202. },
  45203. ]
  45204. ))
  45205. characterMakers.push(() => makeCharacter(
  45206. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45207. {
  45208. front: {
  45209. height: math.unit(5 + 5/12, "feet"),
  45210. weight: math.unit(160, "lb"),
  45211. name: "Front",
  45212. image: {
  45213. source: "./media/characters/spook/front.svg",
  45214. extra: 794/791,
  45215. bottom: 54/848
  45216. }
  45217. },
  45218. back: {
  45219. height: math.unit(5 + 5/12, "feet"),
  45220. weight: math.unit(160, "lb"),
  45221. name: "Back",
  45222. image: {
  45223. source: "./media/characters/spook/back.svg",
  45224. extra: 812/798,
  45225. bottom: 32/844
  45226. }
  45227. },
  45228. },
  45229. [
  45230. {
  45231. name: "Normal",
  45232. height: math.unit(5 + 5/12, "feet"),
  45233. default: true
  45234. },
  45235. ]
  45236. ))
  45237. characterMakers.push(() => makeCharacter(
  45238. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45239. {
  45240. front: {
  45241. height: math.unit(18, "feet"),
  45242. name: "Front",
  45243. image: {
  45244. source: "./media/characters/xeaduulix/front.svg",
  45245. extra: 1380/1166,
  45246. bottom: 110/1490
  45247. }
  45248. },
  45249. back: {
  45250. height: math.unit(18, "feet"),
  45251. name: "Back",
  45252. image: {
  45253. source: "./media/characters/xeaduulix/back.svg",
  45254. extra: 1592/1170,
  45255. bottom: 128/1720
  45256. }
  45257. },
  45258. frontNsfw: {
  45259. height: math.unit(18, "feet"),
  45260. name: "Front (NSFW)",
  45261. image: {
  45262. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45263. extra: 1380/1166,
  45264. bottom: 110/1490
  45265. }
  45266. },
  45267. backNsfw: {
  45268. height: math.unit(18, "feet"),
  45269. name: "Back (NSFW)",
  45270. image: {
  45271. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45272. extra: 1592/1170,
  45273. bottom: 128/1720
  45274. }
  45275. },
  45276. },
  45277. [
  45278. {
  45279. name: "Normal",
  45280. height: math.unit(18, "feet"),
  45281. default: true
  45282. },
  45283. ]
  45284. ))
  45285. characterMakers.push(() => makeCharacter(
  45286. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45287. {
  45288. spreadWings: {
  45289. height: math.unit(20, "feet"),
  45290. name: "Spread Wings",
  45291. image: {
  45292. source: "./media/characters/fledge/spread-wings.svg",
  45293. extra: 693/635,
  45294. bottom: 26/719
  45295. }
  45296. },
  45297. front: {
  45298. height: math.unit(20, "feet"),
  45299. name: "Front",
  45300. image: {
  45301. source: "./media/characters/fledge/front.svg",
  45302. extra: 684/637,
  45303. bottom: 18/702
  45304. }
  45305. },
  45306. frontAlt: {
  45307. height: math.unit(20, "feet"),
  45308. name: "Front (Alt)",
  45309. image: {
  45310. source: "./media/characters/fledge/front-alt.svg",
  45311. extra: 708/664,
  45312. bottom: 13/721
  45313. }
  45314. },
  45315. back: {
  45316. height: math.unit(20, "feet"),
  45317. name: "Back",
  45318. image: {
  45319. source: "./media/characters/fledge/back.svg",
  45320. extra: 718/634,
  45321. bottom: 22/740
  45322. }
  45323. },
  45324. head: {
  45325. height: math.unit(5.55, "feet"),
  45326. name: "Head",
  45327. image: {
  45328. source: "./media/characters/fledge/head.svg"
  45329. }
  45330. },
  45331. headAlt: {
  45332. height: math.unit(5.1, "feet"),
  45333. name: "Head (Alt)",
  45334. image: {
  45335. source: "./media/characters/fledge/head-alt.svg"
  45336. }
  45337. },
  45338. },
  45339. [
  45340. {
  45341. name: "Small",
  45342. height: math.unit(6 + 2/12, "feet")
  45343. },
  45344. {
  45345. name: "Big",
  45346. height: math.unit(20, "feet"),
  45347. default: true
  45348. },
  45349. {
  45350. name: "Giant",
  45351. height: math.unit(100, "feet")
  45352. },
  45353. {
  45354. name: "Macro",
  45355. height: math.unit(200, "feet")
  45356. },
  45357. ]
  45358. ))
  45359. characterMakers.push(() => makeCharacter(
  45360. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45361. {
  45362. front: {
  45363. height: math.unit(1, "meter"),
  45364. name: "Front",
  45365. image: {
  45366. source: "./media/characters/atlas-morenai/front.svg",
  45367. extra: 1275/1043,
  45368. bottom: 19/1294
  45369. }
  45370. },
  45371. back: {
  45372. height: math.unit(1, "meter"),
  45373. name: "Back",
  45374. image: {
  45375. source: "./media/characters/atlas-morenai/back.svg",
  45376. extra: 1141/1001,
  45377. bottom: 25/1166
  45378. }
  45379. },
  45380. },
  45381. [
  45382. {
  45383. name: "Normal",
  45384. height: math.unit(1, "meter"),
  45385. default: true
  45386. },
  45387. {
  45388. name: "Magic-Infused",
  45389. height: math.unit(5, "meters")
  45390. },
  45391. ]
  45392. ))
  45393. characterMakers.push(() => makeCharacter(
  45394. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45395. {
  45396. front: {
  45397. height: math.unit(5, "meters"),
  45398. name: "Front",
  45399. image: {
  45400. source: "./media/characters/cintia/front.svg",
  45401. extra: 1312/1228,
  45402. bottom: 38/1350
  45403. }
  45404. },
  45405. back: {
  45406. height: math.unit(5, "meters"),
  45407. name: "Back",
  45408. image: {
  45409. source: "./media/characters/cintia/back.svg",
  45410. extra: 1260/1166,
  45411. bottom: 98/1358
  45412. }
  45413. },
  45414. frontDick: {
  45415. height: math.unit(5, "meters"),
  45416. name: "Front (Dick)",
  45417. image: {
  45418. source: "./media/characters/cintia/front-dick.svg",
  45419. extra: 1312/1228,
  45420. bottom: 38/1350
  45421. }
  45422. },
  45423. backDick: {
  45424. height: math.unit(5, "meters"),
  45425. name: "Back (Dick)",
  45426. image: {
  45427. source: "./media/characters/cintia/back-dick.svg",
  45428. extra: 1260/1166,
  45429. bottom: 98/1358
  45430. }
  45431. },
  45432. bust: {
  45433. height: math.unit(1.97, "meters"),
  45434. name: "Bust",
  45435. image: {
  45436. source: "./media/characters/cintia/bust.svg",
  45437. extra: 617/565,
  45438. bottom: 0/617
  45439. }
  45440. },
  45441. },
  45442. [
  45443. {
  45444. name: "Normal",
  45445. height: math.unit(5, "meters"),
  45446. default: true
  45447. },
  45448. ]
  45449. ))
  45450. characterMakers.push(() => makeCharacter(
  45451. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45452. {
  45453. side: {
  45454. height: math.unit(100, "feet"),
  45455. name: "Side",
  45456. image: {
  45457. source: "./media/characters/denora/side.svg",
  45458. extra: 875/803,
  45459. bottom: 9/884
  45460. }
  45461. },
  45462. },
  45463. [
  45464. {
  45465. name: "Standard",
  45466. height: math.unit(100, "feet"),
  45467. default: true
  45468. },
  45469. {
  45470. name: "Grand",
  45471. height: math.unit(1000, "feet")
  45472. },
  45473. {
  45474. name: "Conquering",
  45475. height: math.unit(10000, "feet")
  45476. },
  45477. ]
  45478. ))
  45479. characterMakers.push(() => makeCharacter(
  45480. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45481. {
  45482. dressed: {
  45483. height: math.unit(8 + 5/12, "feet"),
  45484. weight: math.unit(700, "lb"),
  45485. name: "Dressed",
  45486. image: {
  45487. source: "./media/characters/kiva/dressed.svg",
  45488. extra: 1102/1055,
  45489. bottom: 60/1162
  45490. }
  45491. },
  45492. nude: {
  45493. height: math.unit(8 + 5/12, "feet"),
  45494. weight: math.unit(700, "lb"),
  45495. name: "Nude",
  45496. image: {
  45497. source: "./media/characters/kiva/nude.svg",
  45498. extra: 1102/1055,
  45499. bottom: 60/1162
  45500. }
  45501. },
  45502. },
  45503. [
  45504. {
  45505. name: "Base Height",
  45506. height: math.unit(8 + 5/12, "feet"),
  45507. default: true
  45508. },
  45509. {
  45510. name: "Macro",
  45511. height: math.unit(100, "feet")
  45512. },
  45513. {
  45514. name: "Max",
  45515. height: math.unit(3280, "feet")
  45516. },
  45517. ]
  45518. ))
  45519. characterMakers.push(() => makeCharacter(
  45520. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45521. {
  45522. front: {
  45523. height: math.unit(6 + 8/12, "feet"),
  45524. weight: math.unit(250, "lb"),
  45525. name: "Front",
  45526. image: {
  45527. source: "./media/characters/ztragon/front.svg",
  45528. extra: 1825/1684,
  45529. bottom: 98/1923
  45530. }
  45531. },
  45532. },
  45533. [
  45534. {
  45535. name: "Normal",
  45536. height: math.unit(6 + 8/12, "feet"),
  45537. default: true
  45538. },
  45539. {
  45540. name: "Macro",
  45541. height: math.unit(80, "feet")
  45542. },
  45543. ]
  45544. ))
  45545. characterMakers.push(() => makeCharacter(
  45546. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45547. {
  45548. front: {
  45549. height: math.unit(10.4, "feet"),
  45550. weight: math.unit(2, "tons"),
  45551. name: "Front",
  45552. image: {
  45553. source: "./media/characters/yesenia/front.svg",
  45554. extra: 1479/1474,
  45555. bottom: 233/1712
  45556. }
  45557. },
  45558. },
  45559. [
  45560. {
  45561. name: "Normal",
  45562. height: math.unit(10.4, "feet"),
  45563. default: true
  45564. },
  45565. ]
  45566. ))
  45567. characterMakers.push(() => makeCharacter(
  45568. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45569. {
  45570. normal: {
  45571. height: math.unit(6 + 1/12, "feet"),
  45572. weight: math.unit(180, "lb"),
  45573. name: "Normal",
  45574. image: {
  45575. source: "./media/characters/leanne-lycheborne/normal.svg",
  45576. extra: 1748/1660,
  45577. bottom: 98/1846
  45578. }
  45579. },
  45580. were: {
  45581. height: math.unit(12, "feet"),
  45582. weight: math.unit(1600, "lb"),
  45583. name: "Were",
  45584. image: {
  45585. source: "./media/characters/leanne-lycheborne/were.svg",
  45586. extra: 1485/1432,
  45587. bottom: 66/1551
  45588. }
  45589. },
  45590. },
  45591. [
  45592. {
  45593. name: "Normal",
  45594. height: math.unit(6 + 1/12, "feet"),
  45595. default: true
  45596. },
  45597. ]
  45598. ))
  45599. characterMakers.push(() => makeCharacter(
  45600. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45601. {
  45602. side: {
  45603. height: math.unit(13, "feet"),
  45604. name: "Side",
  45605. image: {
  45606. source: "./media/characters/kira-tyler/side.svg",
  45607. extra: 693/393,
  45608. bottom: 58/751
  45609. }
  45610. },
  45611. },
  45612. [
  45613. {
  45614. name: "Normal",
  45615. height: math.unit(13, "feet"),
  45616. default: true
  45617. },
  45618. ]
  45619. ))
  45620. characterMakers.push(() => makeCharacter(
  45621. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45622. {
  45623. front: {
  45624. height: math.unit(10.3, "feet"),
  45625. weight: math.unit(150, "lb"),
  45626. name: "Front",
  45627. image: {
  45628. source: "./media/characters/blaze/front.svg",
  45629. extra: 1378/1286,
  45630. bottom: 172/1550
  45631. }
  45632. },
  45633. },
  45634. [
  45635. {
  45636. name: "Normal",
  45637. height: math.unit(10.3, "feet"),
  45638. default: true
  45639. },
  45640. ]
  45641. ))
  45642. characterMakers.push(() => makeCharacter(
  45643. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45644. {
  45645. side: {
  45646. height: math.unit(2, "meters"),
  45647. weight: math.unit(400, "kg"),
  45648. name: "Side",
  45649. image: {
  45650. source: "./media/characters/anu/side.svg",
  45651. extra: 506/394,
  45652. bottom: 18/524
  45653. }
  45654. },
  45655. },
  45656. [
  45657. {
  45658. name: "Humanoid",
  45659. height: math.unit(2, "meters")
  45660. },
  45661. {
  45662. name: "Normal",
  45663. height: math.unit(5, "meters"),
  45664. default: true
  45665. },
  45666. ]
  45667. ))
  45668. characterMakers.push(() => makeCharacter(
  45669. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45670. {
  45671. front: {
  45672. height: math.unit(5 + 5/12, "feet"),
  45673. weight: math.unit(170, "lb"),
  45674. name: "Front",
  45675. image: {
  45676. source: "./media/characters/synx-the-lynx/front.svg",
  45677. extra: 1893/1745,
  45678. bottom: 17/1910
  45679. }
  45680. },
  45681. side: {
  45682. height: math.unit(5 + 5/12, "feet"),
  45683. weight: math.unit(170, "lb"),
  45684. name: "Side",
  45685. image: {
  45686. source: "./media/characters/synx-the-lynx/side.svg",
  45687. extra: 1884/1740,
  45688. bottom: 39/1923
  45689. }
  45690. },
  45691. back: {
  45692. height: math.unit(5 + 5/12, "feet"),
  45693. weight: math.unit(170, "lb"),
  45694. name: "Back",
  45695. image: {
  45696. source: "./media/characters/synx-the-lynx/back.svg",
  45697. extra: 1903/1755,
  45698. bottom: 14/1917
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(5 + 5/12, "feet"),
  45706. default: true
  45707. },
  45708. ]
  45709. ))
  45710. characterMakers.push(() => makeCharacter(
  45711. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45712. {
  45713. back: {
  45714. height: math.unit(15, "feet"),
  45715. name: "Back",
  45716. image: {
  45717. source: "./media/characters/nadezda-fex/back.svg",
  45718. extra: 1695/1481,
  45719. bottom: 25/1720
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "Normal",
  45726. height: math.unit(15, "feet"),
  45727. default: true
  45728. },
  45729. {
  45730. name: "Macro",
  45731. height: math.unit(2.5, "miles")
  45732. },
  45733. {
  45734. name: "Goddess",
  45735. height: math.unit(2, "multiverses")
  45736. },
  45737. ]
  45738. ))
  45739. characterMakers.push(() => makeCharacter(
  45740. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45741. {
  45742. front: {
  45743. height: math.unit(216, "cm"),
  45744. name: "Front",
  45745. image: {
  45746. source: "./media/characters/lev/front.svg",
  45747. extra: 1728/1670,
  45748. bottom: 82/1810
  45749. }
  45750. },
  45751. back: {
  45752. height: math.unit(216, "cm"),
  45753. name: "Back",
  45754. image: {
  45755. source: "./media/characters/lev/back.svg",
  45756. extra: 1738/1675,
  45757. bottom: 24/1762
  45758. }
  45759. },
  45760. dressed: {
  45761. height: math.unit(216, "cm"),
  45762. name: "Dressed",
  45763. image: {
  45764. source: "./media/characters/lev/dressed.svg",
  45765. extra: 1397/1351,
  45766. bottom: 73/1470
  45767. }
  45768. },
  45769. head: {
  45770. height: math.unit(0.51, "meter"),
  45771. name: "Head",
  45772. image: {
  45773. source: "./media/characters/lev/head.svg"
  45774. }
  45775. },
  45776. },
  45777. [
  45778. {
  45779. name: "Normal",
  45780. height: math.unit(216, "cm"),
  45781. default: true
  45782. },
  45783. {
  45784. name: "Relatively Macro",
  45785. height: math.unit(80, "meters")
  45786. },
  45787. {
  45788. name: "Megamacro",
  45789. height: math.unit(21600, "meters")
  45790. },
  45791. {
  45792. name: "Megamacro+",
  45793. height: math.unit(64800, "meters")
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45799. {
  45800. front: {
  45801. height: math.unit(2, "meters"),
  45802. weight: math.unit(80, "kg"),
  45803. name: "Front",
  45804. image: {
  45805. source: "./media/characters/moka/front.svg",
  45806. extra: 1337/1255,
  45807. bottom: 58/1395
  45808. }
  45809. },
  45810. },
  45811. [
  45812. {
  45813. name: "Micro",
  45814. height: math.unit(15, "cm")
  45815. },
  45816. {
  45817. name: "Normal",
  45818. height: math.unit(2, "meters"),
  45819. default: true
  45820. },
  45821. {
  45822. name: "Macro",
  45823. height: math.unit(20, "meters"),
  45824. },
  45825. ]
  45826. ))
  45827. characterMakers.push(() => makeCharacter(
  45828. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45829. {
  45830. front: {
  45831. height: math.unit(9, "feet"),
  45832. weight: math.unit(240, "lb"),
  45833. name: "Front",
  45834. image: {
  45835. source: "./media/characters/kuzco/front.svg",
  45836. extra: 1593/1487,
  45837. bottom: 32/1625
  45838. }
  45839. },
  45840. side: {
  45841. height: math.unit(9, "feet"),
  45842. weight: math.unit(240, "lb"),
  45843. name: "Side",
  45844. image: {
  45845. source: "./media/characters/kuzco/side.svg",
  45846. extra: 1575/1485,
  45847. bottom: 30/1605
  45848. }
  45849. },
  45850. back: {
  45851. height: math.unit(9, "feet"),
  45852. weight: math.unit(240, "lb"),
  45853. name: "Back",
  45854. image: {
  45855. source: "./media/characters/kuzco/back.svg",
  45856. extra: 1603/1514,
  45857. bottom: 14/1617
  45858. }
  45859. },
  45860. },
  45861. [
  45862. {
  45863. name: "Normal",
  45864. height: math.unit(9, "feet"),
  45865. default: true
  45866. },
  45867. ]
  45868. ))
  45869. characterMakers.push(() => makeCharacter(
  45870. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45871. {
  45872. side: {
  45873. height: math.unit(2, "meters"),
  45874. weight: math.unit(300, "kg"),
  45875. name: "Side",
  45876. image: {
  45877. source: "./media/characters/ceruleus/side.svg",
  45878. extra: 1068/974,
  45879. bottom: 126/1194
  45880. }
  45881. },
  45882. },
  45883. [
  45884. {
  45885. name: "Normal",
  45886. height: math.unit(16, "meters"),
  45887. default: true
  45888. },
  45889. ]
  45890. ))
  45891. characterMakers.push(() => makeCharacter(
  45892. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45893. {
  45894. front: {
  45895. height: math.unit(9, "feet"),
  45896. weight: math.unit(500, "kg"),
  45897. name: "Front",
  45898. image: {
  45899. source: "./media/characters/acouya/front.svg",
  45900. extra: 1660/1473,
  45901. bottom: 28/1688
  45902. }
  45903. },
  45904. },
  45905. [
  45906. {
  45907. name: "Normal",
  45908. height: math.unit(9, "feet"),
  45909. default: true
  45910. },
  45911. ]
  45912. ))
  45913. characterMakers.push(() => makeCharacter(
  45914. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45915. {
  45916. front: {
  45917. height: math.unit(5 + 6/12, "feet"),
  45918. weight: math.unit(195, "lb"),
  45919. name: "Front",
  45920. image: {
  45921. source: "./media/characters/vant/front.svg",
  45922. extra: 1396/1320,
  45923. bottom: 20/1416
  45924. }
  45925. },
  45926. back: {
  45927. height: math.unit(5 + 6/12, "feet"),
  45928. weight: math.unit(195, "lb"),
  45929. name: "Back",
  45930. image: {
  45931. source: "./media/characters/vant/back.svg",
  45932. extra: 1396/1320,
  45933. bottom: 20/1416
  45934. }
  45935. },
  45936. maw: {
  45937. height: math.unit(0.75, "feet"),
  45938. name: "Maw",
  45939. image: {
  45940. source: "./media/characters/vant/maw.svg"
  45941. }
  45942. },
  45943. paw: {
  45944. height: math.unit(1.07, "feet"),
  45945. name: "Paw",
  45946. image: {
  45947. source: "./media/characters/vant/paw.svg"
  45948. }
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Micro",
  45954. height: math.unit(0.25, "inches")
  45955. },
  45956. {
  45957. name: "Normal",
  45958. height: math.unit(5 + 6/12, "feet"),
  45959. default: true
  45960. },
  45961. {
  45962. name: "Macro",
  45963. height: math.unit(75, "feet")
  45964. },
  45965. ]
  45966. ))
  45967. characterMakers.push(() => makeCharacter(
  45968. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45969. {
  45970. front: {
  45971. height: math.unit(30, "meters"),
  45972. weight: math.unit(363, "tons"),
  45973. name: "Front",
  45974. image: {
  45975. source: "./media/characters/ahra/front.svg",
  45976. extra: 1914/1814,
  45977. bottom: 46/1960
  45978. }
  45979. },
  45980. },
  45981. [
  45982. {
  45983. name: "Macro",
  45984. height: math.unit(30, "meters"),
  45985. default: true
  45986. },
  45987. ]
  45988. ))
  45989. characterMakers.push(() => makeCharacter(
  45990. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45991. {
  45992. undressed: {
  45993. height: math.unit(2, "m"),
  45994. weight: math.unit(250, "kg"),
  45995. name: "Undressed",
  45996. image: {
  45997. source: "./media/characters/coriander/undressed.svg",
  45998. extra: 1757/1606,
  45999. bottom: 107/1864
  46000. }
  46001. },
  46002. dressed: {
  46003. height: math.unit(2, "m"),
  46004. weight: math.unit(250, "kg"),
  46005. name: "Dressed",
  46006. image: {
  46007. source: "./media/characters/coriander/dressed.svg",
  46008. extra: 1757/1606,
  46009. bottom: 107/1864
  46010. }
  46011. },
  46012. },
  46013. [
  46014. {
  46015. name: "Normal",
  46016. height: math.unit(4, "meters"),
  46017. default: true
  46018. },
  46019. {
  46020. name: "XL",
  46021. height: math.unit(6, "meters")
  46022. },
  46023. {
  46024. name: "XXL",
  46025. height: math.unit(8, "meters")
  46026. },
  46027. ]
  46028. ))
  46029. characterMakers.push(() => makeCharacter(
  46030. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46031. {
  46032. front: {
  46033. height: math.unit(6, "feet"),
  46034. name: "Front",
  46035. image: {
  46036. source: "./media/characters/syrinx/front.svg",
  46037. extra: 1557/1259,
  46038. bottom: 171/1728
  46039. }
  46040. },
  46041. },
  46042. [
  46043. {
  46044. name: "Normal",
  46045. height: math.unit(6 + 3/12, "feet"),
  46046. default: true
  46047. },
  46048. ]
  46049. ))
  46050. characterMakers.push(() => makeCharacter(
  46051. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46052. {
  46053. front: {
  46054. height: math.unit(11 + 6/12, "feet"),
  46055. weight: math.unit(1.5, "tons"),
  46056. name: "Front",
  46057. image: {
  46058. source: "./media/characters/bor/front.svg",
  46059. extra: 1189/1109,
  46060. bottom: 170/1359
  46061. }
  46062. },
  46063. },
  46064. [
  46065. {
  46066. name: "Normal",
  46067. height: math.unit(11 + 6/12, "feet"),
  46068. default: true
  46069. },
  46070. {
  46071. name: "Macro",
  46072. height: math.unit(32 + 9/12, "feet")
  46073. },
  46074. ]
  46075. ))
  46076. characterMakers.push(() => makeCharacter(
  46077. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46078. {
  46079. anthro: {
  46080. height: math.unit(9, "feet"),
  46081. weight: math.unit(2076, "lb"),
  46082. name: "Anthro",
  46083. image: {
  46084. source: "./media/characters/abacus/anthro.svg",
  46085. extra: 1540/1494,
  46086. bottom: 233/1773
  46087. }
  46088. },
  46089. pigeon: {
  46090. height: math.unit(1, "feet"),
  46091. name: "Pigeon",
  46092. image: {
  46093. source: "./media/characters/abacus/pigeon.svg",
  46094. extra: 528/525,
  46095. bottom: 46/574
  46096. }
  46097. },
  46098. },
  46099. [
  46100. {
  46101. name: "Normal",
  46102. height: math.unit(9, "feet"),
  46103. default: true
  46104. },
  46105. ]
  46106. ))
  46107. characterMakers.push(() => makeCharacter(
  46108. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46109. {
  46110. side: {
  46111. height: math.unit(6, "feet"),
  46112. name: "Side",
  46113. image: {
  46114. source: "./media/characters/delkhan/side.svg",
  46115. extra: 1884/1786,
  46116. bottom: 308/2192
  46117. }
  46118. },
  46119. head: {
  46120. height: math.unit(3.38, "feet"),
  46121. name: "Head",
  46122. image: {
  46123. source: "./media/characters/delkhan/head.svg"
  46124. }
  46125. },
  46126. },
  46127. [
  46128. {
  46129. name: "Normal",
  46130. height: math.unit(72, "feet"),
  46131. default: true
  46132. },
  46133. {
  46134. name: "Giant",
  46135. height: math.unit(172, "feet")
  46136. },
  46137. ]
  46138. ))
  46139. characterMakers.push(() => makeCharacter(
  46140. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46141. {
  46142. standing: {
  46143. height: math.unit(6, "feet"),
  46144. name: "Standing",
  46145. image: {
  46146. source: "./media/characters/euchidat/standing.svg",
  46147. extra: 1612/1553,
  46148. bottom: 116/1728
  46149. }
  46150. },
  46151. leaning: {
  46152. height: math.unit(6, "feet"),
  46153. name: "Leaning",
  46154. image: {
  46155. source: "./media/characters/euchidat/leaning.svg",
  46156. extra: 1719/1674,
  46157. bottom: 27/1746
  46158. }
  46159. },
  46160. },
  46161. [
  46162. {
  46163. name: "Normal",
  46164. height: math.unit(175, "feet"),
  46165. default: true
  46166. },
  46167. {
  46168. name: "Megamacro",
  46169. height: math.unit(190, "miles")
  46170. },
  46171. {
  46172. name: "Gigamacro",
  46173. height: math.unit(190000, "miles")
  46174. },
  46175. ]
  46176. ))
  46177. characterMakers.push(() => makeCharacter(
  46178. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46179. {
  46180. front: {
  46181. height: math.unit(6, "feet"),
  46182. weight: math.unit(150, "lb"),
  46183. name: "Front",
  46184. image: {
  46185. source: "./media/characters/rebecca-stack/front.svg",
  46186. extra: 1256/1201,
  46187. bottom: 18/1274
  46188. }
  46189. },
  46190. },
  46191. [
  46192. {
  46193. name: "Normal",
  46194. height: math.unit(5 + 8/12, "feet"),
  46195. default: true
  46196. },
  46197. {
  46198. name: "Demolitionist",
  46199. height: math.unit(200, "feet")
  46200. },
  46201. {
  46202. name: "Out of Control",
  46203. height: math.unit(2, "miles")
  46204. },
  46205. {
  46206. name: "Giga",
  46207. height: math.unit(7200, "miles")
  46208. },
  46209. ]
  46210. ))
  46211. characterMakers.push(() => makeCharacter(
  46212. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46213. {
  46214. front: {
  46215. height: math.unit(6, "feet"),
  46216. weight: math.unit(150, "lb"),
  46217. name: "Front",
  46218. image: {
  46219. source: "./media/characters/jenny-cartwright/front.svg",
  46220. extra: 1384/1376,
  46221. bottom: 58/1442
  46222. }
  46223. },
  46224. },
  46225. [
  46226. {
  46227. name: "Normal",
  46228. height: math.unit(6 + 7/12, "feet"),
  46229. default: true
  46230. },
  46231. {
  46232. name: "Librarian",
  46233. height: math.unit(55, "feet")
  46234. },
  46235. {
  46236. name: "Sightseer",
  46237. height: math.unit(50, "miles")
  46238. },
  46239. {
  46240. name: "Giga",
  46241. height: math.unit(30000, "miles")
  46242. },
  46243. ]
  46244. ))
  46245. characterMakers.push(() => makeCharacter(
  46246. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46247. {
  46248. nude: {
  46249. height: math.unit(8, "feet"),
  46250. weight: math.unit(225, "lb"),
  46251. name: "Nude",
  46252. image: {
  46253. source: "./media/characters/marvy/nude.svg",
  46254. extra: 1900/1683,
  46255. bottom: 89/1989
  46256. }
  46257. },
  46258. dressed: {
  46259. height: math.unit(8, "feet"),
  46260. weight: math.unit(225, "lb"),
  46261. name: "Dressed",
  46262. image: {
  46263. source: "./media/characters/marvy/dressed.svg",
  46264. extra: 1900/1683,
  46265. bottom: 89/1989
  46266. }
  46267. },
  46268. head: {
  46269. height: math.unit(2.85, "feet"),
  46270. name: "Head",
  46271. image: {
  46272. source: "./media/characters/marvy/head.svg"
  46273. }
  46274. },
  46275. },
  46276. [
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(8, "feet"),
  46280. default: true
  46281. },
  46282. ]
  46283. ))
  46284. characterMakers.push(() => makeCharacter(
  46285. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46286. {
  46287. front: {
  46288. height: math.unit(8, "feet"),
  46289. weight: math.unit(250, "lb"),
  46290. name: "Front",
  46291. image: {
  46292. source: "./media/characters/leah/front.svg",
  46293. extra: 1257/1149,
  46294. bottom: 109/1366
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Normal",
  46301. height: math.unit(8, "feet"),
  46302. default: true
  46303. },
  46304. {
  46305. name: "Minimacro",
  46306. height: math.unit(40, "feet")
  46307. },
  46308. {
  46309. name: "Macro",
  46310. height: math.unit(124, "feet")
  46311. },
  46312. {
  46313. name: "Megamacro",
  46314. height: math.unit(850, "feet")
  46315. },
  46316. ]
  46317. ))
  46318. characterMakers.push(() => makeCharacter(
  46319. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46320. {
  46321. side: {
  46322. height: math.unit(13 + 6/12, "feet"),
  46323. weight: math.unit(3200, "lb"),
  46324. name: "Side",
  46325. image: {
  46326. source: "./media/characters/alvir/side.svg",
  46327. extra: 896/589,
  46328. bottom: 26/922
  46329. }
  46330. },
  46331. },
  46332. [
  46333. {
  46334. name: "Normal",
  46335. height: math.unit(13 + 6/12, "feet"),
  46336. default: true
  46337. },
  46338. ]
  46339. ))
  46340. characterMakers.push(() => makeCharacter(
  46341. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46342. {
  46343. front: {
  46344. height: math.unit(5 + 4/12, "feet"),
  46345. weight: math.unit(236, "lb"),
  46346. name: "Front",
  46347. image: {
  46348. source: "./media/characters/zaina-khalil/front.svg",
  46349. extra: 1533/1485,
  46350. bottom: 94/1627
  46351. }
  46352. },
  46353. side: {
  46354. height: math.unit(5 + 4/12, "feet"),
  46355. weight: math.unit(236, "lb"),
  46356. name: "Side",
  46357. image: {
  46358. source: "./media/characters/zaina-khalil/side.svg",
  46359. extra: 1537/1498,
  46360. bottom: 66/1603
  46361. }
  46362. },
  46363. back: {
  46364. height: math.unit(5 + 4/12, "feet"),
  46365. weight: math.unit(236, "lb"),
  46366. name: "Back",
  46367. image: {
  46368. source: "./media/characters/zaina-khalil/back.svg",
  46369. extra: 1546/1494,
  46370. bottom: 89/1635
  46371. }
  46372. },
  46373. },
  46374. [
  46375. {
  46376. name: "Normal",
  46377. height: math.unit(5 + 4/12, "feet"),
  46378. default: true
  46379. },
  46380. ]
  46381. ))
  46382. characterMakers.push(() => makeCharacter(
  46383. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46384. {
  46385. side: {
  46386. height: math.unit(12, "feet"),
  46387. weight: math.unit(4000, "lb"),
  46388. name: "Side",
  46389. image: {
  46390. source: "./media/characters/terry/side.svg",
  46391. extra: 1518/1439,
  46392. bottom: 149/1667
  46393. }
  46394. },
  46395. },
  46396. [
  46397. {
  46398. name: "Normal",
  46399. height: math.unit(12, "feet"),
  46400. default: true
  46401. },
  46402. ]
  46403. ))
  46404. characterMakers.push(() => makeCharacter(
  46405. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46406. {
  46407. front: {
  46408. height: math.unit(12, "feet"),
  46409. weight: math.unit(1500, "lb"),
  46410. name: "Front",
  46411. image: {
  46412. source: "./media/characters/kahea/front.svg",
  46413. extra: 1722/1617,
  46414. bottom: 179/1901
  46415. }
  46416. },
  46417. },
  46418. [
  46419. {
  46420. name: "Normal",
  46421. height: math.unit(12, "feet"),
  46422. default: true
  46423. },
  46424. ]
  46425. ))
  46426. characterMakers.push(() => makeCharacter(
  46427. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46428. {
  46429. demonFront: {
  46430. height: math.unit(36, "feet"),
  46431. name: "Front",
  46432. image: {
  46433. source: "./media/characters/alex-xuria/demon-front.svg",
  46434. extra: 1705/1673,
  46435. bottom: 198/1903
  46436. },
  46437. form: "demon",
  46438. default: true
  46439. },
  46440. demonBack: {
  46441. height: math.unit(36, "feet"),
  46442. name: "Back",
  46443. image: {
  46444. source: "./media/characters/alex-xuria/demon-back.svg",
  46445. extra: 1725/1693,
  46446. bottom: 70/1795
  46447. },
  46448. form: "demon"
  46449. },
  46450. demonHead: {
  46451. height: math.unit(2.14, "meters"),
  46452. name: "Head",
  46453. image: {
  46454. source: "./media/characters/alex-xuria/demon-head.svg"
  46455. },
  46456. form: "demon"
  46457. },
  46458. demonHand: {
  46459. height: math.unit(1.61, "meters"),
  46460. name: "Hand",
  46461. image: {
  46462. source: "./media/characters/alex-xuria/demon-hand.svg"
  46463. },
  46464. form: "demon"
  46465. },
  46466. demonPaw: {
  46467. height: math.unit(1.35, "meters"),
  46468. name: "Paw",
  46469. image: {
  46470. source: "./media/characters/alex-xuria/demon-paw.svg"
  46471. },
  46472. form: "demon"
  46473. },
  46474. demonFoot: {
  46475. height: math.unit(2.2, "meters"),
  46476. name: "Foot",
  46477. image: {
  46478. source: "./media/characters/alex-xuria/demon-foot.svg"
  46479. },
  46480. form: "demon"
  46481. },
  46482. demonCock: {
  46483. height: math.unit(1.74, "meters"),
  46484. name: "Cock",
  46485. image: {
  46486. source: "./media/characters/alex-xuria/demon-cock.svg"
  46487. },
  46488. form: "demon"
  46489. },
  46490. demonTailClosed: {
  46491. height: math.unit(1.47, "meters"),
  46492. name: "Tail (Closed)",
  46493. image: {
  46494. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46495. },
  46496. form: "demon"
  46497. },
  46498. demonTailOpen: {
  46499. height: math.unit(2.85, "meters"),
  46500. name: "Tail (Open)",
  46501. image: {
  46502. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46503. },
  46504. form: "demon"
  46505. },
  46506. incubusFront: {
  46507. height: math.unit(12, "feet"),
  46508. name: "Front",
  46509. image: {
  46510. source: "./media/characters/alex-xuria/incubus-front.svg",
  46511. extra: 1754/1677,
  46512. bottom: 125/1879
  46513. },
  46514. form: "incubus",
  46515. default: true
  46516. },
  46517. incubusBack: {
  46518. height: math.unit(12, "feet"),
  46519. name: "Back",
  46520. image: {
  46521. source: "./media/characters/alex-xuria/incubus-back.svg",
  46522. extra: 1702/1647,
  46523. bottom: 30/1732
  46524. },
  46525. form: "incubus"
  46526. },
  46527. incubusHead: {
  46528. height: math.unit(3.45, "feet"),
  46529. name: "Head",
  46530. image: {
  46531. source: "./media/characters/alex-xuria/incubus-head.svg"
  46532. },
  46533. form: "incubus"
  46534. },
  46535. rabbitFront: {
  46536. height: math.unit(6, "feet"),
  46537. name: "Front",
  46538. image: {
  46539. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46540. extra: 1369/1349,
  46541. bottom: 45/1414
  46542. },
  46543. form: "rabbit",
  46544. default: true
  46545. },
  46546. rabbitSide: {
  46547. height: math.unit(6, "feet"),
  46548. name: "Side",
  46549. image: {
  46550. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46551. extra: 1370/1356,
  46552. bottom: 37/1407
  46553. },
  46554. form: "rabbit"
  46555. },
  46556. rabbitBack: {
  46557. height: math.unit(6, "feet"),
  46558. name: "Back",
  46559. image: {
  46560. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46561. extra: 1375/1358,
  46562. bottom: 43/1418
  46563. },
  46564. form: "rabbit"
  46565. },
  46566. },
  46567. [
  46568. {
  46569. name: "Normal",
  46570. height: math.unit(6, "feet"),
  46571. default: true,
  46572. form: "rabbit"
  46573. },
  46574. {
  46575. name: "Incubus",
  46576. height: math.unit(12, "feet"),
  46577. default: true,
  46578. form: "incubus"
  46579. },
  46580. {
  46581. name: "Demon",
  46582. height: math.unit(36, "feet"),
  46583. default: true,
  46584. form: "demon"
  46585. }
  46586. ],
  46587. {
  46588. "demon": {
  46589. name: "Demon",
  46590. default: true
  46591. },
  46592. "incubus": {
  46593. name: "Incubus",
  46594. },
  46595. "rabbit": {
  46596. name: "Rabbit"
  46597. }
  46598. }
  46599. ))
  46600. characterMakers.push(() => makeCharacter(
  46601. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46602. {
  46603. front: {
  46604. height: math.unit(7 + 5/12, "feet"),
  46605. weight: math.unit(510, "lb"),
  46606. name: "Front",
  46607. image: {
  46608. source: "./media/characters/syrup/front.svg",
  46609. extra: 932/916,
  46610. bottom: 26/958
  46611. }
  46612. },
  46613. },
  46614. [
  46615. {
  46616. name: "Normal",
  46617. height: math.unit(7 + 5/12, "feet"),
  46618. default: true
  46619. },
  46620. {
  46621. name: "Big",
  46622. height: math.unit(50, "feet")
  46623. },
  46624. {
  46625. name: "Macro",
  46626. height: math.unit(300, "feet")
  46627. },
  46628. {
  46629. name: "Megamacro",
  46630. height: math.unit(1, "mile")
  46631. },
  46632. ]
  46633. ))
  46634. characterMakers.push(() => makeCharacter(
  46635. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46636. {
  46637. front: {
  46638. height: math.unit(6 + 9/12, "feet"),
  46639. name: "Front",
  46640. image: {
  46641. source: "./media/characters/zeimne/front.svg",
  46642. extra: 1969/1806,
  46643. bottom: 53/2022
  46644. }
  46645. },
  46646. },
  46647. [
  46648. {
  46649. name: "Normal",
  46650. height: math.unit(6 + 9/12, "feet"),
  46651. default: true
  46652. },
  46653. {
  46654. name: "Giant",
  46655. height: math.unit(550, "feet")
  46656. },
  46657. {
  46658. name: "Mega",
  46659. height: math.unit(3, "miles")
  46660. },
  46661. {
  46662. name: "Giga",
  46663. height: math.unit(250, "miles")
  46664. },
  46665. {
  46666. name: "Tera",
  46667. height: math.unit(1, "AU")
  46668. },
  46669. ]
  46670. ))
  46671. characterMakers.push(() => makeCharacter(
  46672. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46673. {
  46674. front: {
  46675. height: math.unit(5 + 2/12, "feet"),
  46676. name: "Front",
  46677. image: {
  46678. source: "./media/characters/grar/front.svg",
  46679. extra: 1331/1119,
  46680. bottom: 60/1391
  46681. }
  46682. },
  46683. back: {
  46684. height: math.unit(5 + 2/12, "feet"),
  46685. name: "Back",
  46686. image: {
  46687. source: "./media/characters/grar/back.svg",
  46688. extra: 1385/1169,
  46689. bottom: 23/1408
  46690. }
  46691. },
  46692. },
  46693. [
  46694. {
  46695. name: "Normal",
  46696. height: math.unit(5 + 2/12, "feet"),
  46697. default: true
  46698. },
  46699. ]
  46700. ))
  46701. characterMakers.push(() => makeCharacter(
  46702. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46703. {
  46704. front: {
  46705. height: math.unit(13 + 7/12, "feet"),
  46706. weight: math.unit(2200, "lb"),
  46707. name: "Front",
  46708. image: {
  46709. source: "./media/characters/endraya/front.svg",
  46710. extra: 1289/1215,
  46711. bottom: 50/1339
  46712. }
  46713. },
  46714. nude: {
  46715. height: math.unit(13 + 7/12, "feet"),
  46716. weight: math.unit(2200, "lb"),
  46717. name: "Nude",
  46718. image: {
  46719. source: "./media/characters/endraya/nude.svg",
  46720. extra: 1247/1171,
  46721. bottom: 40/1287
  46722. }
  46723. },
  46724. head: {
  46725. height: math.unit(2.6, "feet"),
  46726. name: "Head",
  46727. image: {
  46728. source: "./media/characters/endraya/head.svg"
  46729. }
  46730. },
  46731. slit: {
  46732. height: math.unit(3.4, "feet"),
  46733. name: "Slit",
  46734. image: {
  46735. source: "./media/characters/endraya/slit.svg"
  46736. }
  46737. },
  46738. },
  46739. [
  46740. {
  46741. name: "Normal",
  46742. height: math.unit(13 + 7/12, "feet"),
  46743. default: true
  46744. },
  46745. {
  46746. name: "Macro",
  46747. height: math.unit(200, "feet")
  46748. },
  46749. ]
  46750. ))
  46751. characterMakers.push(() => makeCharacter(
  46752. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46753. {
  46754. front: {
  46755. height: math.unit(1.81, "meters"),
  46756. weight: math.unit(69, "kg"),
  46757. name: "Front",
  46758. image: {
  46759. source: "./media/characters/rodryana/front.svg",
  46760. extra: 2002/1921,
  46761. bottom: 53/2055
  46762. }
  46763. },
  46764. back: {
  46765. height: math.unit(1.81, "meters"),
  46766. weight: math.unit(69, "kg"),
  46767. name: "Back",
  46768. image: {
  46769. source: "./media/characters/rodryana/back.svg",
  46770. extra: 1993/1926,
  46771. bottom: 48/2041
  46772. }
  46773. },
  46774. maw: {
  46775. height: math.unit(0.19769417475, "meters"),
  46776. name: "Maw",
  46777. image: {
  46778. source: "./media/characters/rodryana/maw.svg"
  46779. }
  46780. },
  46781. slit: {
  46782. height: math.unit(0.31631067961, "meters"),
  46783. name: "Slit",
  46784. image: {
  46785. source: "./media/characters/rodryana/slit.svg"
  46786. }
  46787. },
  46788. },
  46789. [
  46790. {
  46791. name: "Normal",
  46792. height: math.unit(1.81, "meters")
  46793. },
  46794. {
  46795. name: "Mini Macro",
  46796. height: math.unit(181, "meters")
  46797. },
  46798. {
  46799. name: "Macro",
  46800. height: math.unit(452, "meters"),
  46801. default: true
  46802. },
  46803. {
  46804. name: "Mega Macro",
  46805. height: math.unit(1.375, "km")
  46806. },
  46807. {
  46808. name: "Giga Macro",
  46809. height: math.unit(13.575, "km")
  46810. },
  46811. ]
  46812. ))
  46813. characterMakers.push(() => makeCharacter(
  46814. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46815. {
  46816. front: {
  46817. height: math.unit(6, "feet"),
  46818. weight: math.unit(1000, "lb"),
  46819. name: "Front",
  46820. image: {
  46821. source: "./media/characters/asaya/front.svg",
  46822. extra: 1460/1200,
  46823. bottom: 71/1531
  46824. }
  46825. },
  46826. },
  46827. [
  46828. {
  46829. name: "Normal",
  46830. height: math.unit(8, "km"),
  46831. default: true
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46837. {
  46838. front: {
  46839. height: math.unit(3.5, "meters"),
  46840. name: "Front",
  46841. image: {
  46842. source: "./media/characters/sarzu-and-israz/front.svg",
  46843. extra: 1570/1558,
  46844. bottom: 150/1720
  46845. },
  46846. },
  46847. back: {
  46848. height: math.unit(3.5, "meters"),
  46849. name: "Back",
  46850. image: {
  46851. source: "./media/characters/sarzu-and-israz/back.svg",
  46852. extra: 1523/1509,
  46853. bottom: 132/1655
  46854. },
  46855. },
  46856. frontFemale: {
  46857. height: math.unit(3.5, "meters"),
  46858. name: "Front (Female)",
  46859. image: {
  46860. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46861. extra: 1570/1558,
  46862. bottom: 150/1720
  46863. },
  46864. },
  46865. frontHerm: {
  46866. height: math.unit(3.5, "meters"),
  46867. name: "Front (Herm)",
  46868. image: {
  46869. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46870. extra: 1570/1558,
  46871. bottom: 150/1720
  46872. },
  46873. },
  46874. },
  46875. [
  46876. {
  46877. name: "Normal",
  46878. height: math.unit(3.5, "meters"),
  46879. default: true,
  46880. },
  46881. {
  46882. name: "Macro",
  46883. height: math.unit(65.5, "meters"),
  46884. },
  46885. ],
  46886. ))
  46887. characterMakers.push(() => makeCharacter(
  46888. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46889. {
  46890. front: {
  46891. height: math.unit(6, "feet"),
  46892. weight: math.unit(250, "lb"),
  46893. name: "Front",
  46894. image: {
  46895. source: "./media/characters/zenimma/front.svg",
  46896. extra: 1346/1320,
  46897. bottom: 58/1404
  46898. }
  46899. },
  46900. back: {
  46901. height: math.unit(6, "feet"),
  46902. weight: math.unit(250, "lb"),
  46903. name: "Back",
  46904. image: {
  46905. source: "./media/characters/zenimma/back.svg",
  46906. extra: 1324/1308,
  46907. bottom: 44/1368
  46908. }
  46909. },
  46910. dick: {
  46911. height: math.unit(1.44, "feet"),
  46912. name: "Dick",
  46913. image: {
  46914. source: "./media/characters/zenimma/dick.svg"
  46915. }
  46916. },
  46917. },
  46918. [
  46919. {
  46920. name: "Canon Height",
  46921. height: math.unit(66, "miles"),
  46922. default: true
  46923. },
  46924. ]
  46925. ))
  46926. characterMakers.push(() => makeCharacter(
  46927. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46928. {
  46929. nude: {
  46930. height: math.unit(6, "feet"),
  46931. weight: math.unit(150, "lb"),
  46932. name: "Nude",
  46933. image: {
  46934. source: "./media/characters/shavon/nude.svg",
  46935. extra: 1242/1096,
  46936. bottom: 98/1340
  46937. }
  46938. },
  46939. dressed: {
  46940. height: math.unit(6, "feet"),
  46941. weight: math.unit(150, "lb"),
  46942. name: "Dressed",
  46943. image: {
  46944. source: "./media/characters/shavon/dressed.svg",
  46945. extra: 1242/1096,
  46946. bottom: 98/1340
  46947. }
  46948. },
  46949. },
  46950. [
  46951. {
  46952. name: "Macro",
  46953. height: math.unit(255, "feet"),
  46954. default: true
  46955. },
  46956. ]
  46957. ))
  46958. characterMakers.push(() => makeCharacter(
  46959. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46960. {
  46961. front: {
  46962. height: math.unit(6, "feet"),
  46963. name: "Front",
  46964. image: {
  46965. source: "./media/characters/steph/front.svg",
  46966. extra: 1430/1330,
  46967. bottom: 54/1484
  46968. }
  46969. },
  46970. },
  46971. [
  46972. {
  46973. name: "Normal",
  46974. height: math.unit(6, "feet"),
  46975. default: true
  46976. },
  46977. ]
  46978. ))
  46979. characterMakers.push(() => makeCharacter(
  46980. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46981. {
  46982. front: {
  46983. height: math.unit(9, "feet"),
  46984. weight: math.unit(400, "lb"),
  46985. name: "Front",
  46986. image: {
  46987. source: "./media/characters/kil'aman/front.svg",
  46988. extra: 1210/1159,
  46989. bottom: 109/1319
  46990. }
  46991. },
  46992. head: {
  46993. height: math.unit(2.14, "feet"),
  46994. name: "Head",
  46995. image: {
  46996. source: "./media/characters/kil'aman/head.svg"
  46997. }
  46998. },
  46999. maw: {
  47000. height: math.unit(1.21, "feet"),
  47001. name: "Maw",
  47002. image: {
  47003. source: "./media/characters/kil'aman/maw.svg"
  47004. }
  47005. },
  47006. foot: {
  47007. height: math.unit(1.7, "feet"),
  47008. name: "Foot",
  47009. image: {
  47010. source: "./media/characters/kil'aman/foot.svg"
  47011. }
  47012. },
  47013. dick: {
  47014. height: math.unit(2.1, "feet"),
  47015. name: "Dick",
  47016. image: {
  47017. source: "./media/characters/kil'aman/dick.svg"
  47018. }
  47019. },
  47020. },
  47021. [
  47022. {
  47023. name: "Normal",
  47024. height: math.unit(9, "feet")
  47025. },
  47026. {
  47027. name: "Canon Height",
  47028. height: math.unit(10, "miles"),
  47029. default: true
  47030. },
  47031. {
  47032. name: "Maximum",
  47033. height: math.unit(6e9, "miles")
  47034. },
  47035. ]
  47036. ))
  47037. characterMakers.push(() => makeCharacter(
  47038. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47039. {
  47040. front: {
  47041. height: math.unit(90, "feet"),
  47042. weight: math.unit(675000, "lb"),
  47043. name: "Front",
  47044. image: {
  47045. source: "./media/characters/qadan/front.svg",
  47046. extra: 1012/1004,
  47047. bottom: 78/1090
  47048. }
  47049. },
  47050. back: {
  47051. height: math.unit(90, "feet"),
  47052. weight: math.unit(675000, "lb"),
  47053. name: "Back",
  47054. image: {
  47055. source: "./media/characters/qadan/back.svg",
  47056. extra: 1042/1031,
  47057. bottom: 55/1097
  47058. }
  47059. },
  47060. armored: {
  47061. height: math.unit(90, "feet"),
  47062. weight: math.unit(675000, "lb"),
  47063. name: "Armored",
  47064. image: {
  47065. source: "./media/characters/qadan/armored.svg",
  47066. extra: 1047/1037,
  47067. bottom: 48/1095
  47068. }
  47069. },
  47070. },
  47071. [
  47072. {
  47073. name: "Normal",
  47074. height: math.unit(90, "feet"),
  47075. default: true
  47076. },
  47077. ]
  47078. ))
  47079. characterMakers.push(() => makeCharacter(
  47080. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47081. {
  47082. front: {
  47083. height: math.unit(6, "feet"),
  47084. weight: math.unit(225, "lb"),
  47085. name: "Front",
  47086. image: {
  47087. source: "./media/characters/brooke/front.svg",
  47088. extra: 1050/1010,
  47089. bottom: 66/1116
  47090. }
  47091. },
  47092. back: {
  47093. height: math.unit(6, "feet"),
  47094. weight: math.unit(225, "lb"),
  47095. name: "Back",
  47096. image: {
  47097. source: "./media/characters/brooke/back.svg",
  47098. extra: 1053/1013,
  47099. bottom: 41/1094
  47100. }
  47101. },
  47102. dressed: {
  47103. height: math.unit(6, "feet"),
  47104. weight: math.unit(225, "lb"),
  47105. name: "Dressed",
  47106. image: {
  47107. source: "./media/characters/brooke/dressed.svg",
  47108. extra: 1050/1010,
  47109. bottom: 66/1116
  47110. }
  47111. },
  47112. },
  47113. [
  47114. {
  47115. name: "Canon Height",
  47116. height: math.unit(500, "miles"),
  47117. default: true
  47118. },
  47119. ]
  47120. ))
  47121. characterMakers.push(() => makeCharacter(
  47122. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47123. {
  47124. front: {
  47125. height: math.unit(6 + 2/12, "feet"),
  47126. weight: math.unit(210, "lb"),
  47127. name: "Front",
  47128. image: {
  47129. source: "./media/characters/wubs/front.svg",
  47130. extra: 1345/1325,
  47131. bottom: 70/1415
  47132. }
  47133. },
  47134. back: {
  47135. height: math.unit(6 + 2/12, "feet"),
  47136. weight: math.unit(210, "lb"),
  47137. name: "Back",
  47138. image: {
  47139. source: "./media/characters/wubs/back.svg",
  47140. extra: 1296/1275,
  47141. bottom: 58/1354
  47142. }
  47143. },
  47144. },
  47145. [
  47146. {
  47147. name: "Normal",
  47148. height: math.unit(6 + 2/12, "feet"),
  47149. default: true
  47150. },
  47151. {
  47152. name: "Macro",
  47153. height: math.unit(1000, "feet")
  47154. },
  47155. {
  47156. name: "Megamacro",
  47157. height: math.unit(1, "mile")
  47158. },
  47159. ]
  47160. ))
  47161. characterMakers.push(() => makeCharacter(
  47162. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47163. {
  47164. front: {
  47165. height: math.unit(4, "feet"),
  47166. weight: math.unit(120, "lb"),
  47167. name: "Front",
  47168. image: {
  47169. source: "./media/characters/blue/front.svg",
  47170. extra: 1636/1525,
  47171. bottom: 43/1679
  47172. }
  47173. },
  47174. back: {
  47175. height: math.unit(4, "feet"),
  47176. weight: math.unit(120, "lb"),
  47177. name: "Back",
  47178. image: {
  47179. source: "./media/characters/blue/back.svg",
  47180. extra: 1660/1560,
  47181. bottom: 57/1717
  47182. }
  47183. },
  47184. paws: {
  47185. height: math.unit(0.826, "feet"),
  47186. name: "Paws",
  47187. image: {
  47188. source: "./media/characters/blue/paws.svg"
  47189. }
  47190. },
  47191. },
  47192. [
  47193. {
  47194. name: "Micro",
  47195. height: math.unit(3, "inches")
  47196. },
  47197. {
  47198. name: "Normal",
  47199. height: math.unit(4, "feet"),
  47200. default: true
  47201. },
  47202. {
  47203. name: "Femenine Form",
  47204. height: math.unit(14, "feet")
  47205. },
  47206. {
  47207. name: "Werebat Form",
  47208. height: math.unit(18, "feet")
  47209. },
  47210. ]
  47211. ))
  47212. characterMakers.push(() => makeCharacter(
  47213. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47214. {
  47215. female: {
  47216. height: math.unit(7 + 4/12, "feet"),
  47217. weight: math.unit(243, "lb"),
  47218. name: "Female",
  47219. image: {
  47220. source: "./media/characters/kaya/female.svg",
  47221. extra: 975/898,
  47222. bottom: 34/1009
  47223. }
  47224. },
  47225. herm: {
  47226. height: math.unit(7 + 4/12, "feet"),
  47227. weight: math.unit(243, "lb"),
  47228. name: "Herm",
  47229. image: {
  47230. source: "./media/characters/kaya/herm.svg",
  47231. extra: 975/898,
  47232. bottom: 34/1009
  47233. }
  47234. },
  47235. },
  47236. [
  47237. {
  47238. name: "Normal",
  47239. height: math.unit(7 + 4/12, "feet"),
  47240. default: true
  47241. },
  47242. ]
  47243. ))
  47244. characterMakers.push(() => makeCharacter(
  47245. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47246. {
  47247. female: {
  47248. height: math.unit(9 + 4/12, "feet"),
  47249. weight: math.unit(398, "lb"),
  47250. name: "Female",
  47251. image: {
  47252. source: "./media/characters/kassandra/female.svg",
  47253. extra: 908/839,
  47254. bottom: 61/969
  47255. }
  47256. },
  47257. intersex: {
  47258. height: math.unit(9 + 4/12, "feet"),
  47259. weight: math.unit(398, "lb"),
  47260. name: "Intersex",
  47261. image: {
  47262. source: "./media/characters/kassandra/intersex.svg",
  47263. extra: 908/839,
  47264. bottom: 61/969
  47265. }
  47266. },
  47267. },
  47268. [
  47269. {
  47270. name: "Normal",
  47271. height: math.unit(9 + 4/12, "feet"),
  47272. default: true
  47273. },
  47274. ]
  47275. ))
  47276. characterMakers.push(() => makeCharacter(
  47277. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47278. {
  47279. front: {
  47280. height: math.unit(3, "meters"),
  47281. name: "Front",
  47282. image: {
  47283. source: "./media/characters/amy/front.svg",
  47284. extra: 1380/1343,
  47285. bottom: 70/1450
  47286. }
  47287. },
  47288. back: {
  47289. height: math.unit(3, "meters"),
  47290. name: "Back",
  47291. image: {
  47292. source: "./media/characters/amy/back.svg",
  47293. extra: 1380/1347,
  47294. bottom: 66/1446
  47295. }
  47296. },
  47297. },
  47298. [
  47299. {
  47300. name: "Normal",
  47301. height: math.unit(3, "meters"),
  47302. default: true
  47303. },
  47304. ]
  47305. ))
  47306. characterMakers.push(() => makeCharacter(
  47307. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47308. {
  47309. side: {
  47310. height: math.unit(47, "cm"),
  47311. weight: math.unit(10.8, "kg"),
  47312. name: "Side",
  47313. image: {
  47314. source: "./media/characters/alphaschakal/side.svg",
  47315. extra: 1058/568,
  47316. bottom: 62/1120
  47317. }
  47318. },
  47319. back: {
  47320. height: math.unit(78, "cm"),
  47321. weight: math.unit(10.8, "kg"),
  47322. name: "Back",
  47323. image: {
  47324. source: "./media/characters/alphaschakal/back.svg",
  47325. extra: 1102/942,
  47326. bottom: 185/1287
  47327. }
  47328. },
  47329. head: {
  47330. height: math.unit(28, "cm"),
  47331. name: "Head",
  47332. image: {
  47333. source: "./media/characters/alphaschakal/head.svg",
  47334. extra: 696/508,
  47335. bottom: 0/696
  47336. }
  47337. },
  47338. paw: {
  47339. height: math.unit(16, "cm"),
  47340. name: "Paw",
  47341. image: {
  47342. source: "./media/characters/alphaschakal/paw.svg"
  47343. }
  47344. },
  47345. },
  47346. [
  47347. {
  47348. name: "Normal",
  47349. height: math.unit(47, "cm"),
  47350. default: true
  47351. },
  47352. {
  47353. name: "Macro",
  47354. height: math.unit(340, "cm")
  47355. },
  47356. ]
  47357. ))
  47358. characterMakers.push(() => makeCharacter(
  47359. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47360. {
  47361. front: {
  47362. height: math.unit(36, "earths"),
  47363. name: "Front",
  47364. image: {
  47365. source: "./media/characters/ecobyss/front.svg",
  47366. extra: 1282/1215,
  47367. bottom: 11/1293
  47368. }
  47369. },
  47370. back: {
  47371. height: math.unit(36, "earths"),
  47372. name: "Back",
  47373. image: {
  47374. source: "./media/characters/ecobyss/back.svg",
  47375. extra: 1291/1222,
  47376. bottom: 8/1299
  47377. }
  47378. },
  47379. },
  47380. [
  47381. {
  47382. name: "Normal",
  47383. height: math.unit(36, "earths"),
  47384. default: true
  47385. },
  47386. ]
  47387. ))
  47388. characterMakers.push(() => makeCharacter(
  47389. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47390. {
  47391. front: {
  47392. height: math.unit(12, "feet"),
  47393. name: "Front",
  47394. image: {
  47395. source: "./media/characters/vasuk/front.svg",
  47396. extra: 1326/1207,
  47397. bottom: 64/1390
  47398. }
  47399. },
  47400. },
  47401. [
  47402. {
  47403. name: "Normal",
  47404. height: math.unit(12, "feet"),
  47405. default: true
  47406. },
  47407. ]
  47408. ))
  47409. characterMakers.push(() => makeCharacter(
  47410. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47411. {
  47412. side: {
  47413. height: math.unit(100, "feet"),
  47414. name: "Side",
  47415. image: {
  47416. source: "./media/characters/linneaus/side.svg",
  47417. extra: 987/807,
  47418. bottom: 47/1034
  47419. }
  47420. },
  47421. },
  47422. [
  47423. {
  47424. name: "Macro",
  47425. height: math.unit(100, "feet"),
  47426. default: true
  47427. },
  47428. ]
  47429. ))
  47430. characterMakers.push(() => makeCharacter(
  47431. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47432. {
  47433. front: {
  47434. height: math.unit(8, "feet"),
  47435. weight: math.unit(1200, "lb"),
  47436. name: "Front",
  47437. image: {
  47438. source: "./media/characters/nyterious-daligdig/front.svg",
  47439. extra: 1284/1094,
  47440. bottom: 84/1368
  47441. }
  47442. },
  47443. back: {
  47444. height: math.unit(8, "feet"),
  47445. weight: math.unit(1200, "lb"),
  47446. name: "Back",
  47447. image: {
  47448. source: "./media/characters/nyterious-daligdig/back.svg",
  47449. extra: 1301/1121,
  47450. bottom: 129/1430
  47451. }
  47452. },
  47453. mouth: {
  47454. height: math.unit(1.464, "feet"),
  47455. name: "Mouth",
  47456. image: {
  47457. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47458. }
  47459. },
  47460. },
  47461. [
  47462. {
  47463. name: "Small",
  47464. height: math.unit(8, "feet"),
  47465. default: true
  47466. },
  47467. {
  47468. name: "Normal",
  47469. height: math.unit(15, "feet")
  47470. },
  47471. {
  47472. name: "Macro",
  47473. height: math.unit(90, "feet")
  47474. },
  47475. ]
  47476. ))
  47477. characterMakers.push(() => makeCharacter(
  47478. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47479. {
  47480. front: {
  47481. height: math.unit(7 + 4/12, "feet"),
  47482. weight: math.unit(252, "lb"),
  47483. name: "Front",
  47484. image: {
  47485. source: "./media/characters/bandel/front.svg",
  47486. extra: 1946/1775,
  47487. bottom: 26/1972
  47488. }
  47489. },
  47490. back: {
  47491. height: math.unit(7 + 4/12, "feet"),
  47492. weight: math.unit(252, "lb"),
  47493. name: "Back",
  47494. image: {
  47495. source: "./media/characters/bandel/back.svg",
  47496. extra: 1940/1770,
  47497. bottom: 25/1965
  47498. }
  47499. },
  47500. maw: {
  47501. height: math.unit(2.15, "feet"),
  47502. name: "Maw",
  47503. image: {
  47504. source: "./media/characters/bandel/maw.svg"
  47505. }
  47506. },
  47507. stomach: {
  47508. height: math.unit(1.95, "feet"),
  47509. name: "Stomach",
  47510. image: {
  47511. source: "./media/characters/bandel/stomach.svg"
  47512. }
  47513. },
  47514. },
  47515. [
  47516. {
  47517. name: "Normal",
  47518. height: math.unit(7 + 4/12, "feet"),
  47519. default: true
  47520. },
  47521. ]
  47522. ))
  47523. characterMakers.push(() => makeCharacter(
  47524. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47525. {
  47526. front: {
  47527. height: math.unit(10 + 5/12, "feet"),
  47528. weight: math.unit(773.5, "kg"),
  47529. name: "Front",
  47530. image: {
  47531. source: "./media/characters/zed/front.svg",
  47532. extra: 987/941,
  47533. bottom: 52/1039
  47534. }
  47535. },
  47536. },
  47537. [
  47538. {
  47539. name: "Short",
  47540. height: math.unit(5 + 4/12, "feet")
  47541. },
  47542. {
  47543. name: "Average",
  47544. height: math.unit(10 + 5/12, "feet"),
  47545. default: true
  47546. },
  47547. {
  47548. name: "Mini-Macro",
  47549. height: math.unit(24 + 9/12, "feet")
  47550. },
  47551. {
  47552. name: "Macro",
  47553. height: math.unit(249, "feet")
  47554. },
  47555. {
  47556. name: "Mega-Macro",
  47557. height: math.unit(12490, "feet")
  47558. },
  47559. {
  47560. name: "Giga-Macro",
  47561. height: math.unit(24.9, "miles")
  47562. },
  47563. {
  47564. name: "Tera-Macro",
  47565. height: math.unit(24900, "miles")
  47566. },
  47567. {
  47568. name: "Cosmic Scale",
  47569. height: math.unit(38.9, "lightyears")
  47570. },
  47571. {
  47572. name: "Universal Scale",
  47573. height: math.unit(138e12, "lightyears")
  47574. },
  47575. ]
  47576. ))
  47577. characterMakers.push(() => makeCharacter(
  47578. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47579. {
  47580. front: {
  47581. height: math.unit(1561, "inches"),
  47582. name: "Front",
  47583. image: {
  47584. source: "./media/characters/ivan/front.svg",
  47585. extra: 1126/1071,
  47586. bottom: 26/1152
  47587. }
  47588. },
  47589. back: {
  47590. height: math.unit(1561, "inches"),
  47591. name: "Back",
  47592. image: {
  47593. source: "./media/characters/ivan/back.svg",
  47594. extra: 1134/1079,
  47595. bottom: 30/1164
  47596. }
  47597. },
  47598. },
  47599. [
  47600. {
  47601. name: "Normal",
  47602. height: math.unit(1561, "inches"),
  47603. default: true
  47604. },
  47605. ]
  47606. ))
  47607. characterMakers.push(() => makeCharacter(
  47608. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47609. {
  47610. front: {
  47611. height: math.unit(5 + 7/12, "feet"),
  47612. weight: math.unit(150, "lb"),
  47613. name: "Front",
  47614. image: {
  47615. source: "./media/characters/robin-arctic-hare/front.svg",
  47616. extra: 1148/974,
  47617. bottom: 20/1168
  47618. }
  47619. },
  47620. },
  47621. [
  47622. {
  47623. name: "Normal",
  47624. height: math.unit(5 + 7/12, "feet"),
  47625. default: true
  47626. },
  47627. ]
  47628. ))
  47629. characterMakers.push(() => makeCharacter(
  47630. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47631. {
  47632. side: {
  47633. height: math.unit(5, "feet"),
  47634. name: "Side",
  47635. image: {
  47636. source: "./media/characters/birch/side.svg",
  47637. extra: 985/796,
  47638. bottom: 111/1096
  47639. }
  47640. },
  47641. },
  47642. [
  47643. {
  47644. name: "Normal",
  47645. height: math.unit(5, "feet"),
  47646. default: true
  47647. },
  47648. ]
  47649. ))
  47650. characterMakers.push(() => makeCharacter(
  47651. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47652. {
  47653. front: {
  47654. height: math.unit(4, "feet"),
  47655. name: "Front",
  47656. image: {
  47657. source: "./media/characters/rasp/front.svg",
  47658. extra: 561/478,
  47659. bottom: 74/635
  47660. }
  47661. },
  47662. },
  47663. [
  47664. {
  47665. name: "Normal",
  47666. height: math.unit(4, "feet"),
  47667. default: true
  47668. },
  47669. ]
  47670. ))
  47671. characterMakers.push(() => makeCharacter(
  47672. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47673. {
  47674. front: {
  47675. height: math.unit(4 + 6/12, "feet"),
  47676. name: "Front",
  47677. image: {
  47678. source: "./media/characters/agatha/front.svg",
  47679. extra: 947/933,
  47680. bottom: 42/989
  47681. }
  47682. },
  47683. back: {
  47684. height: math.unit(4 + 6/12, "feet"),
  47685. name: "Back",
  47686. image: {
  47687. source: "./media/characters/agatha/back.svg",
  47688. extra: 935/922,
  47689. bottom: 48/983
  47690. }
  47691. },
  47692. },
  47693. [
  47694. {
  47695. name: "Normal",
  47696. height: math.unit(4 + 6 /12, "feet"),
  47697. default: true
  47698. },
  47699. {
  47700. name: "Max Size",
  47701. height: math.unit(500, "feet")
  47702. },
  47703. ]
  47704. ))
  47705. characterMakers.push(() => makeCharacter(
  47706. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47707. {
  47708. side: {
  47709. height: math.unit(30, "feet"),
  47710. name: "Side",
  47711. image: {
  47712. source: "./media/characters/roggy/side.svg",
  47713. extra: 909/643,
  47714. bottom: 63/972
  47715. }
  47716. },
  47717. lounging: {
  47718. height: math.unit(20, "feet"),
  47719. name: "Lounging",
  47720. image: {
  47721. source: "./media/characters/roggy/lounging.svg",
  47722. extra: 643/479,
  47723. bottom: 145/788
  47724. }
  47725. },
  47726. handpaw: {
  47727. height: math.unit(13.1, "feet"),
  47728. name: "Handpaw",
  47729. image: {
  47730. source: "./media/characters/roggy/handpaw.svg"
  47731. }
  47732. },
  47733. footpaw: {
  47734. height: math.unit(15.8, "feet"),
  47735. name: "Footpaw",
  47736. image: {
  47737. source: "./media/characters/roggy/footpaw.svg"
  47738. }
  47739. },
  47740. },
  47741. [
  47742. {
  47743. name: "Menacing",
  47744. height: math.unit(30, "feet"),
  47745. default: true
  47746. },
  47747. ]
  47748. ))
  47749. characterMakers.push(() => makeCharacter(
  47750. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47751. {
  47752. front: {
  47753. height: math.unit(5 + 7/12, "feet"),
  47754. weight: math.unit(135, "lb"),
  47755. name: "Front",
  47756. image: {
  47757. source: "./media/characters/naomi/front.svg",
  47758. extra: 1209/1154,
  47759. bottom: 129/1338
  47760. }
  47761. },
  47762. back: {
  47763. height: math.unit(5 + 7/12, "feet"),
  47764. weight: math.unit(135, "lb"),
  47765. name: "Back",
  47766. image: {
  47767. source: "./media/characters/naomi/back.svg",
  47768. extra: 1252/1190,
  47769. bottom: 23/1275
  47770. }
  47771. },
  47772. },
  47773. [
  47774. {
  47775. name: "Normal",
  47776. height: math.unit(5 + 7 /12, "feet"),
  47777. default: true
  47778. },
  47779. ]
  47780. ))
  47781. characterMakers.push(() => makeCharacter(
  47782. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47783. {
  47784. side: {
  47785. height: math.unit(35, "meters"),
  47786. name: "Side",
  47787. image: {
  47788. source: "./media/characters/kimpi/side.svg",
  47789. extra: 419/382,
  47790. bottom: 63/482
  47791. }
  47792. },
  47793. hand: {
  47794. height: math.unit(8.96, "meters"),
  47795. name: "Hand",
  47796. image: {
  47797. source: "./media/characters/kimpi/hand.svg"
  47798. }
  47799. },
  47800. },
  47801. [
  47802. {
  47803. name: "Normal",
  47804. height: math.unit(35, "meters"),
  47805. default: true
  47806. },
  47807. ]
  47808. ))
  47809. characterMakers.push(() => makeCharacter(
  47810. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47811. {
  47812. front: {
  47813. height: math.unit(4 + 4/12, "feet"),
  47814. name: "Front",
  47815. image: {
  47816. source: "./media/characters/pepper-purrloin/front.svg",
  47817. extra: 1141/1024,
  47818. bottom: 21/1162
  47819. }
  47820. },
  47821. },
  47822. [
  47823. {
  47824. name: "Normal",
  47825. height: math.unit(4 + 4/12, "feet"),
  47826. default: true
  47827. },
  47828. ]
  47829. ))
  47830. characterMakers.push(() => makeCharacter(
  47831. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47832. {
  47833. front: {
  47834. height: math.unit(6 + 2/12, "feet"),
  47835. name: "Front",
  47836. image: {
  47837. source: "./media/characters/raphael/front.svg",
  47838. extra: 1101/962,
  47839. bottom: 59/1160
  47840. }
  47841. },
  47842. },
  47843. [
  47844. {
  47845. name: "Normal",
  47846. height: math.unit(6 + 2/12, "feet"),
  47847. default: true
  47848. },
  47849. ]
  47850. ))
  47851. characterMakers.push(() => makeCharacter(
  47852. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47853. {
  47854. front: {
  47855. height: math.unit(6, "feet"),
  47856. weight: math.unit(150, "lb"),
  47857. name: "Front",
  47858. image: {
  47859. source: "./media/characters/victor-williams/front.svg",
  47860. extra: 1894/1825,
  47861. bottom: 67/1961
  47862. }
  47863. },
  47864. },
  47865. [
  47866. {
  47867. name: "Normal",
  47868. height: math.unit(6, "feet"),
  47869. default: true
  47870. },
  47871. ]
  47872. ))
  47873. characterMakers.push(() => makeCharacter(
  47874. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47875. {
  47876. front: {
  47877. height: math.unit(5 + 8/12, "feet"),
  47878. weight: math.unit(150, "lb"),
  47879. name: "Front",
  47880. image: {
  47881. source: "./media/characters/rachel/front.svg",
  47882. extra: 1902/1787,
  47883. bottom: 46/1948
  47884. }
  47885. },
  47886. },
  47887. [
  47888. {
  47889. name: "Base Height",
  47890. height: math.unit(5 + 8/12, "feet"),
  47891. default: true
  47892. },
  47893. {
  47894. name: "Macro",
  47895. height: math.unit(200, "feet")
  47896. },
  47897. {
  47898. name: "Mega Macro",
  47899. height: math.unit(1, "mile")
  47900. },
  47901. {
  47902. name: "Giga Macro",
  47903. height: math.unit(1500, "miles")
  47904. },
  47905. {
  47906. name: "Tera Macro",
  47907. height: math.unit(8000, "miles")
  47908. },
  47909. {
  47910. name: "Tera Macro+",
  47911. height: math.unit(2e5, "miles")
  47912. },
  47913. ]
  47914. ))
  47915. characterMakers.push(() => makeCharacter(
  47916. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47917. {
  47918. front: {
  47919. height: math.unit(6.5, "feet"),
  47920. name: "Front",
  47921. image: {
  47922. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47923. extra: 860/819,
  47924. bottom: 307/1167
  47925. }
  47926. },
  47927. back: {
  47928. height: math.unit(6.5, "feet"),
  47929. name: "Back",
  47930. image: {
  47931. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47932. extra: 880/837,
  47933. bottom: 395/1275
  47934. }
  47935. },
  47936. sleeping: {
  47937. height: math.unit(2.79, "feet"),
  47938. name: "Sleeping",
  47939. image: {
  47940. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47941. extra: 465/383,
  47942. bottom: 263/728
  47943. }
  47944. },
  47945. maw: {
  47946. height: math.unit(2.52, "feet"),
  47947. name: "Maw",
  47948. image: {
  47949. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47950. }
  47951. },
  47952. },
  47953. [
  47954. {
  47955. name: "Normal",
  47956. height: math.unit(6.5, "feet"),
  47957. default: true
  47958. },
  47959. ]
  47960. ))
  47961. characterMakers.push(() => makeCharacter(
  47962. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47963. {
  47964. front: {
  47965. height: math.unit(5, "feet"),
  47966. name: "Front",
  47967. image: {
  47968. source: "./media/characters/nova-nerium/front.svg",
  47969. extra: 1548/1392,
  47970. bottom: 374/1922
  47971. }
  47972. },
  47973. back: {
  47974. height: math.unit(5, "feet"),
  47975. name: "Back",
  47976. image: {
  47977. source: "./media/characters/nova-nerium/back.svg",
  47978. extra: 1658/1468,
  47979. bottom: 257/1915
  47980. }
  47981. },
  47982. },
  47983. [
  47984. {
  47985. name: "Normal",
  47986. height: math.unit(5, "feet"),
  47987. default: true
  47988. },
  47989. ]
  47990. ))
  47991. characterMakers.push(() => makeCharacter(
  47992. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47993. {
  47994. front: {
  47995. height: math.unit(5 + 4/12, "feet"),
  47996. name: "Front",
  47997. image: {
  47998. source: "./media/characters/ashe-pyriph/front.svg",
  47999. extra: 1935/1747,
  48000. bottom: 60/1995
  48001. }
  48002. },
  48003. },
  48004. [
  48005. {
  48006. name: "Normal",
  48007. height: math.unit(5 + 4/12, "feet"),
  48008. default: true
  48009. },
  48010. ]
  48011. ))
  48012. characterMakers.push(() => makeCharacter(
  48013. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48014. {
  48015. front: {
  48016. height: math.unit(8.7, "feet"),
  48017. name: "Front",
  48018. image: {
  48019. source: "./media/characters/flicker-wisp/front.svg",
  48020. extra: 1835/1613,
  48021. bottom: 449/2284
  48022. }
  48023. },
  48024. side: {
  48025. height: math.unit(8.7, "feet"),
  48026. name: "Side",
  48027. image: {
  48028. source: "./media/characters/flicker-wisp/side.svg",
  48029. extra: 1841/1642,
  48030. bottom: 336/2177
  48031. },
  48032. default: true
  48033. },
  48034. maw: {
  48035. height: math.unit(3.35, "feet"),
  48036. name: "Maw",
  48037. image: {
  48038. source: "./media/characters/flicker-wisp/maw.svg",
  48039. extra: 2338/1506,
  48040. bottom: 0/2338
  48041. }
  48042. },
  48043. ovipositor: {
  48044. height: math.unit(4.95, "feet"),
  48045. name: "Ovipositor",
  48046. image: {
  48047. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48048. }
  48049. },
  48050. egg: {
  48051. height: math.unit(0.385, "feet"),
  48052. weight: math.unit(2, "lb"),
  48053. name: "Egg",
  48054. image: {
  48055. source: "./media/characters/flicker-wisp/egg.svg"
  48056. }
  48057. },
  48058. },
  48059. [
  48060. {
  48061. name: "Normal",
  48062. height: math.unit(8.7, "feet"),
  48063. default: true
  48064. },
  48065. ]
  48066. ))
  48067. characterMakers.push(() => makeCharacter(
  48068. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48069. {
  48070. side: {
  48071. height: math.unit(11, "feet"),
  48072. name: "Side",
  48073. image: {
  48074. source: "./media/characters/faefnul/side.svg",
  48075. extra: 1100/1007,
  48076. bottom: 0/1100
  48077. }
  48078. },
  48079. },
  48080. [
  48081. {
  48082. name: "Normal",
  48083. height: math.unit(11, "feet"),
  48084. default: true
  48085. },
  48086. ]
  48087. ))
  48088. characterMakers.push(() => makeCharacter(
  48089. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48090. {
  48091. front: {
  48092. height: math.unit(6 + 2/12, "feet"),
  48093. name: "Front",
  48094. image: {
  48095. source: "./media/characters/shady/front.svg",
  48096. extra: 502/461,
  48097. bottom: 9/511
  48098. }
  48099. },
  48100. kneeling: {
  48101. height: math.unit(4.6, "feet"),
  48102. name: "Kneeling",
  48103. image: {
  48104. source: "./media/characters/shady/kneeling.svg",
  48105. extra: 1328/1219,
  48106. bottom: 117/1445
  48107. }
  48108. },
  48109. maw: {
  48110. height: math.unit(2, "feet"),
  48111. name: "Maw",
  48112. image: {
  48113. source: "./media/characters/shady/maw.svg"
  48114. }
  48115. },
  48116. },
  48117. [
  48118. {
  48119. name: "Nano",
  48120. height: math.unit(1, "mm")
  48121. },
  48122. {
  48123. name: "Micro",
  48124. height: math.unit(12, "mm")
  48125. },
  48126. {
  48127. name: "Tiny",
  48128. height: math.unit(3, "inches")
  48129. },
  48130. {
  48131. name: "Normal",
  48132. height: math.unit(6 + 2/12, "feet"),
  48133. default: true
  48134. },
  48135. {
  48136. name: "Big",
  48137. height: math.unit(15, "feet")
  48138. },
  48139. {
  48140. name: "Macro",
  48141. height: math.unit(150, "feet")
  48142. },
  48143. {
  48144. name: "Titanic",
  48145. height: math.unit(500, "feet")
  48146. },
  48147. ]
  48148. ))
  48149. characterMakers.push(() => makeCharacter(
  48150. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48151. {
  48152. front: {
  48153. height: math.unit(12, "feet"),
  48154. name: "Front",
  48155. image: {
  48156. source: "./media/characters/fenrir/front.svg",
  48157. extra: 968/875,
  48158. bottom: 22/990
  48159. }
  48160. },
  48161. },
  48162. [
  48163. {
  48164. name: "Big",
  48165. height: math.unit(12, "feet"),
  48166. default: true
  48167. },
  48168. ]
  48169. ))
  48170. characterMakers.push(() => makeCharacter(
  48171. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48172. {
  48173. front: {
  48174. height: math.unit(5 + 4/12, "feet"),
  48175. name: "Front",
  48176. image: {
  48177. source: "./media/characters/makar/front.svg",
  48178. extra: 1181/1112,
  48179. bottom: 78/1259
  48180. }
  48181. },
  48182. },
  48183. [
  48184. {
  48185. name: "Normal",
  48186. height: math.unit(5 + 4/12, "feet"),
  48187. default: true
  48188. },
  48189. ]
  48190. ))
  48191. characterMakers.push(() => makeCharacter(
  48192. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48193. {
  48194. front: {
  48195. height: math.unit(5 + 7/12, "feet"),
  48196. name: "Front",
  48197. image: {
  48198. source: "./media/characters/callow/front.svg",
  48199. extra: 1482/1304,
  48200. bottom: 23/1505
  48201. }
  48202. },
  48203. back: {
  48204. height: math.unit(5 + 7/12, "feet"),
  48205. name: "Back",
  48206. image: {
  48207. source: "./media/characters/callow/back.svg",
  48208. extra: 1484/1296,
  48209. bottom: 25/1509
  48210. }
  48211. },
  48212. },
  48213. [
  48214. {
  48215. name: "Micro",
  48216. height: math.unit(3, "inches"),
  48217. default: true
  48218. },
  48219. {
  48220. name: "Normal",
  48221. height: math.unit(5 + 7/12, "feet")
  48222. },
  48223. ]
  48224. ))
  48225. characterMakers.push(() => makeCharacter(
  48226. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48227. {
  48228. front: {
  48229. height: math.unit(6 + 2/12, "feet"),
  48230. name: "Front",
  48231. image: {
  48232. source: "./media/characters/natel/front.svg",
  48233. extra: 1833/1692,
  48234. bottom: 166/1999
  48235. }
  48236. },
  48237. },
  48238. [
  48239. {
  48240. name: "Normal",
  48241. height: math.unit(6 + 2/12, "feet"),
  48242. default: true
  48243. },
  48244. ]
  48245. ))
  48246. characterMakers.push(() => makeCharacter(
  48247. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48248. {
  48249. front: {
  48250. height: math.unit(1.75, "meters"),
  48251. name: "Front",
  48252. image: {
  48253. source: "./media/characters/misu/front.svg",
  48254. extra: 1690/1558,
  48255. bottom: 234/1924
  48256. }
  48257. },
  48258. back: {
  48259. height: math.unit(1.75, "meters"),
  48260. name: "Back",
  48261. image: {
  48262. source: "./media/characters/misu/back.svg",
  48263. extra: 1762/1618,
  48264. bottom: 146/1908
  48265. }
  48266. },
  48267. frontNude: {
  48268. height: math.unit(1.75, "meters"),
  48269. name: "Front (Nude)",
  48270. image: {
  48271. source: "./media/characters/misu/front-nude.svg",
  48272. extra: 1690/1558,
  48273. bottom: 234/1924
  48274. }
  48275. },
  48276. backNude: {
  48277. height: math.unit(1.75, "meters"),
  48278. name: "Back (Nude)",
  48279. image: {
  48280. source: "./media/characters/misu/back-nude.svg",
  48281. extra: 1762/1618,
  48282. bottom: 146/1908
  48283. }
  48284. },
  48285. frontErect: {
  48286. height: math.unit(1.75, "meters"),
  48287. name: "Front (Erect)",
  48288. image: {
  48289. source: "./media/characters/misu/front-erect.svg",
  48290. extra: 1690/1558,
  48291. bottom: 234/1924
  48292. }
  48293. },
  48294. maw: {
  48295. height: math.unit(0.47, "meters"),
  48296. name: "Maw",
  48297. image: {
  48298. source: "./media/characters/misu/maw.svg"
  48299. }
  48300. },
  48301. head: {
  48302. height: math.unit(0.35, "meters"),
  48303. name: "Head",
  48304. image: {
  48305. source: "./media/characters/misu/head.svg"
  48306. }
  48307. },
  48308. rear: {
  48309. height: math.unit(0.47, "meters"),
  48310. name: "Rear",
  48311. image: {
  48312. source: "./media/characters/misu/rear.svg"
  48313. }
  48314. },
  48315. },
  48316. [
  48317. {
  48318. name: "Normal",
  48319. height: math.unit(1.75, "meters")
  48320. },
  48321. {
  48322. name: "Not good for the people",
  48323. height: math.unit(42, "meters")
  48324. },
  48325. {
  48326. name: "Not good for the neighborhood",
  48327. height: math.unit(135, "meters")
  48328. },
  48329. {
  48330. name: "Bit bigger problem",
  48331. height: math.unit(380, "meters"),
  48332. default: true
  48333. },
  48334. {
  48335. name: "Not good for the city",
  48336. height: math.unit(1.5, "km")
  48337. },
  48338. {
  48339. name: "Not good for the county",
  48340. height: math.unit(5.5, "km")
  48341. },
  48342. {
  48343. name: "Not good for the state",
  48344. height: math.unit(25, "km")
  48345. },
  48346. {
  48347. name: "Not good for the country",
  48348. height: math.unit(125, "km")
  48349. },
  48350. {
  48351. name: "Not good for the continent",
  48352. height: math.unit(2100, "km")
  48353. },
  48354. {
  48355. name: "Not good for the planet",
  48356. height: math.unit(35000, "km")
  48357. },
  48358. {
  48359. name: "Just no",
  48360. height: math.unit(8.5e18, "km")
  48361. },
  48362. ]
  48363. ))
  48364. characterMakers.push(() => makeCharacter(
  48365. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48366. {
  48367. front: {
  48368. height: math.unit(6.5, "feet"),
  48369. name: "Front",
  48370. image: {
  48371. source: "./media/characters/poppy/front.svg",
  48372. extra: 1878/1812,
  48373. bottom: 43/1921
  48374. }
  48375. },
  48376. feet: {
  48377. height: math.unit(1.06, "feet"),
  48378. name: "Feet",
  48379. image: {
  48380. source: "./media/characters/poppy/feet.svg",
  48381. extra: 1083/1083,
  48382. bottom: 87/1170
  48383. }
  48384. },
  48385. },
  48386. [
  48387. {
  48388. name: "Human",
  48389. height: math.unit(6.5, "feet")
  48390. },
  48391. {
  48392. name: "Default",
  48393. height: math.unit(300, "feet"),
  48394. default: true
  48395. },
  48396. {
  48397. name: "Huge",
  48398. height: math.unit(850, "feet")
  48399. },
  48400. {
  48401. name: "Mega",
  48402. height: math.unit(8000, "feet")
  48403. },
  48404. {
  48405. name: "Giga",
  48406. height: math.unit(300, "miles")
  48407. },
  48408. ]
  48409. ))
  48410. characterMakers.push(() => makeCharacter(
  48411. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48412. {
  48413. bipedal: {
  48414. height: math.unit(7, "feet"),
  48415. name: "Bipedal",
  48416. image: {
  48417. source: "./media/characters/zener/bipedal.svg",
  48418. extra: 874/805,
  48419. bottom: 109/983
  48420. }
  48421. },
  48422. quadrupedal: {
  48423. height: math.unit(4.64, "feet"),
  48424. name: "Quadrupedal",
  48425. image: {
  48426. source: "./media/characters/zener/quadrupedal.svg",
  48427. extra: 638/507,
  48428. bottom: 190/828
  48429. }
  48430. },
  48431. cock: {
  48432. height: math.unit(18, "inches"),
  48433. name: "Cock",
  48434. image: {
  48435. source: "./media/characters/zener/cock.svg"
  48436. }
  48437. },
  48438. },
  48439. [
  48440. {
  48441. name: "Normal",
  48442. height: math.unit(7, "feet"),
  48443. default: true
  48444. },
  48445. ]
  48446. ))
  48447. characterMakers.push(() => makeCharacter(
  48448. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48449. {
  48450. nude: {
  48451. height: math.unit(5 + 6/12, "feet"),
  48452. name: "Nude",
  48453. image: {
  48454. source: "./media/characters/charlie-dog/nude.svg",
  48455. extra: 768/734,
  48456. bottom: 26/794
  48457. }
  48458. },
  48459. dressed: {
  48460. height: math.unit(5 + 6/12, "feet"),
  48461. name: "Dressed",
  48462. image: {
  48463. source: "./media/characters/charlie-dog/dressed.svg",
  48464. extra: 768/734,
  48465. bottom: 26/794
  48466. }
  48467. },
  48468. },
  48469. [
  48470. {
  48471. name: "Normal",
  48472. height: math.unit(5 + 6/12, "feet"),
  48473. default: true
  48474. },
  48475. ]
  48476. ))
  48477. characterMakers.push(() => makeCharacter(
  48478. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48479. {
  48480. front: {
  48481. height: math.unit(6 + 4/12, "feet"),
  48482. name: "Front",
  48483. image: {
  48484. source: "./media/characters/ir'istrasz/front.svg",
  48485. extra: 1014/977,
  48486. bottom: 65/1079
  48487. }
  48488. },
  48489. back: {
  48490. height: math.unit(6 + 4/12, "feet"),
  48491. name: "Back",
  48492. image: {
  48493. source: "./media/characters/ir'istrasz/back.svg",
  48494. extra: 1024/992,
  48495. bottom: 34/1058
  48496. }
  48497. },
  48498. },
  48499. [
  48500. {
  48501. name: "Normal",
  48502. height: math.unit(6 + 4/12, "feet"),
  48503. default: true
  48504. },
  48505. ]
  48506. ))
  48507. characterMakers.push(() => makeCharacter(
  48508. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48509. {
  48510. front: {
  48511. height: math.unit(5 + 8/12, "feet"),
  48512. name: "Front",
  48513. image: {
  48514. source: "./media/characters/dee-ditto/front.svg",
  48515. extra: 1874/1785,
  48516. bottom: 68/1942
  48517. }
  48518. },
  48519. back: {
  48520. height: math.unit(5 + 8/12, "feet"),
  48521. name: "Back",
  48522. image: {
  48523. source: "./media/characters/dee-ditto/back.svg",
  48524. extra: 1870/1783,
  48525. bottom: 77/1947
  48526. }
  48527. },
  48528. },
  48529. [
  48530. {
  48531. name: "Normal",
  48532. height: math.unit(5 + 8/12, "feet"),
  48533. default: true
  48534. },
  48535. ]
  48536. ))
  48537. characterMakers.push(() => makeCharacter(
  48538. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48539. {
  48540. front: {
  48541. height: math.unit(7 + 6/12, "feet"),
  48542. name: "Front",
  48543. image: {
  48544. source: "./media/characters/fey/front.svg",
  48545. extra: 995/979,
  48546. bottom: 30/1025
  48547. }
  48548. },
  48549. back: {
  48550. height: math.unit(7 + 6/12, "feet"),
  48551. name: "Back",
  48552. image: {
  48553. source: "./media/characters/fey/back.svg",
  48554. extra: 1079/1008,
  48555. bottom: 5/1084
  48556. }
  48557. },
  48558. dressed: {
  48559. height: math.unit(7 + 6/12, "feet"),
  48560. name: "Dressed",
  48561. image: {
  48562. source: "./media/characters/fey/dressed.svg",
  48563. extra: 995/979,
  48564. bottom: 30/1025
  48565. }
  48566. },
  48567. },
  48568. [
  48569. {
  48570. name: "Normal",
  48571. height: math.unit(7 + 6/12, "feet"),
  48572. default: true
  48573. },
  48574. ]
  48575. ))
  48576. characterMakers.push(() => makeCharacter(
  48577. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48578. {
  48579. standing: {
  48580. height: math.unit(17, "feet"),
  48581. name: "Standing",
  48582. image: {
  48583. source: "./media/characters/aster/standing.svg",
  48584. extra: 1798/1598,
  48585. bottom: 117/1915
  48586. }
  48587. },
  48588. },
  48589. [
  48590. {
  48591. name: "Normal",
  48592. height: math.unit(17, "feet"),
  48593. default: true
  48594. },
  48595. {
  48596. name: "Homewrecker",
  48597. height: math.unit(95, "feet")
  48598. },
  48599. {
  48600. name: "Planet Devourer",
  48601. height: math.unit(1008000, "miles")
  48602. },
  48603. ]
  48604. ))
  48605. characterMakers.push(() => makeCharacter(
  48606. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48607. {
  48608. front: {
  48609. height: math.unit(6 + 5/12, "feet"),
  48610. weight: math.unit(265, "lb"),
  48611. name: "Front",
  48612. image: {
  48613. source: "./media/characters/devon-childs/front.svg",
  48614. extra: 1795/1721,
  48615. bottom: 41/1836
  48616. }
  48617. },
  48618. side: {
  48619. height: math.unit(6 + 5/12, "feet"),
  48620. weight: math.unit(265, "lb"),
  48621. name: "Side",
  48622. image: {
  48623. source: "./media/characters/devon-childs/side.svg",
  48624. extra: 1812/1738,
  48625. bottom: 30/1842
  48626. }
  48627. },
  48628. back: {
  48629. height: math.unit(6 + 5/12, "feet"),
  48630. weight: math.unit(265, "lb"),
  48631. name: "Back",
  48632. image: {
  48633. source: "./media/characters/devon-childs/back.svg",
  48634. extra: 1808/1735,
  48635. bottom: 23/1831
  48636. }
  48637. },
  48638. hand: {
  48639. height: math.unit(1.464, "feet"),
  48640. name: "Hand",
  48641. image: {
  48642. source: "./media/characters/devon-childs/hand.svg"
  48643. }
  48644. },
  48645. foot: {
  48646. height: math.unit(1.6, "feet"),
  48647. name: "Foot",
  48648. image: {
  48649. source: "./media/characters/devon-childs/foot.svg"
  48650. }
  48651. },
  48652. },
  48653. [
  48654. {
  48655. name: "Micro",
  48656. height: math.unit(7, "cm")
  48657. },
  48658. {
  48659. name: "Normal",
  48660. height: math.unit(6 + 5/12, "feet"),
  48661. default: true
  48662. },
  48663. {
  48664. name: "Macro",
  48665. height: math.unit(154, "feet")
  48666. },
  48667. ]
  48668. ))
  48669. characterMakers.push(() => makeCharacter(
  48670. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48671. {
  48672. front: {
  48673. height: math.unit(6, "feet"),
  48674. weight: math.unit(180, "lb"),
  48675. name: "Front",
  48676. image: {
  48677. source: "./media/characters/lydemox-vir/front.svg",
  48678. extra: 1632/1435,
  48679. bottom: 58/1690
  48680. }
  48681. },
  48682. frontSFW: {
  48683. height: math.unit(6, "feet"),
  48684. weight: math.unit(180, "lb"),
  48685. name: "Front (SFW)",
  48686. image: {
  48687. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48688. extra: 1632/1435,
  48689. bottom: 58/1690
  48690. }
  48691. },
  48692. back: {
  48693. height: math.unit(6, "feet"),
  48694. weight: math.unit(180, "lb"),
  48695. name: "Back",
  48696. image: {
  48697. source: "./media/characters/lydemox-vir/back.svg",
  48698. extra: 1593/1408,
  48699. bottom: 31/1624
  48700. }
  48701. },
  48702. paw: {
  48703. height: math.unit(1.85, "feet"),
  48704. name: "Paw",
  48705. image: {
  48706. source: "./media/characters/lydemox-vir/paw.svg"
  48707. }
  48708. },
  48709. dick: {
  48710. height: math.unit(1.8, "feet"),
  48711. name: "Dick",
  48712. image: {
  48713. source: "./media/characters/lydemox-vir/dick.svg"
  48714. }
  48715. },
  48716. },
  48717. [
  48718. {
  48719. name: "Macro",
  48720. height: math.unit(100, "feet"),
  48721. default: true
  48722. },
  48723. {
  48724. name: "Teramacro",
  48725. height: math.unit(1, "earth")
  48726. },
  48727. {
  48728. name: "Planetary",
  48729. height: math.unit(20, "earths")
  48730. },
  48731. ]
  48732. ))
  48733. characterMakers.push(() => makeCharacter(
  48734. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48735. {
  48736. front: {
  48737. height: math.unit(15 + 8/12, "feet"),
  48738. weight: math.unit(1237, "kg"),
  48739. name: "Front",
  48740. image: {
  48741. source: "./media/characters/mia/front.svg",
  48742. extra: 1573/1446,
  48743. bottom: 58/1631
  48744. }
  48745. },
  48746. },
  48747. [
  48748. {
  48749. name: "Small",
  48750. height: math.unit(9 + 5/12, "feet")
  48751. },
  48752. {
  48753. name: "Normal",
  48754. height: math.unit(15 + 8/12, "feet"),
  48755. default: true
  48756. },
  48757. ]
  48758. ))
  48759. characterMakers.push(() => makeCharacter(
  48760. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48761. {
  48762. front: {
  48763. height: math.unit(10 + 6/12, "feet"),
  48764. weight: math.unit(1.3, "tons"),
  48765. name: "Front",
  48766. image: {
  48767. source: "./media/characters/mr-graves/front.svg",
  48768. extra: 1779/1695,
  48769. bottom: 198/1977
  48770. }
  48771. },
  48772. },
  48773. [
  48774. {
  48775. name: "Normal",
  48776. height: math.unit(10 + 6 /12, "feet"),
  48777. default: true
  48778. },
  48779. ]
  48780. ))
  48781. characterMakers.push(() => makeCharacter(
  48782. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48783. {
  48784. dressedFront: {
  48785. height: math.unit(5 + 8/12, "feet"),
  48786. weight: math.unit(125, "lb"),
  48787. name: "Dressed (Front)",
  48788. image: {
  48789. source: "./media/characters/jess/dressed-front.svg",
  48790. extra: 1176/1152,
  48791. bottom: 42/1218
  48792. }
  48793. },
  48794. dressedSide: {
  48795. height: math.unit(5 + 8/12, "feet"),
  48796. weight: math.unit(125, "lb"),
  48797. name: "Dressed (Side)",
  48798. image: {
  48799. source: "./media/characters/jess/dressed-side.svg",
  48800. extra: 1204/1190,
  48801. bottom: 6/1210
  48802. }
  48803. },
  48804. nudeFront: {
  48805. height: math.unit(5 + 8/12, "feet"),
  48806. weight: math.unit(125, "lb"),
  48807. name: "Nude (Front)",
  48808. image: {
  48809. source: "./media/characters/jess/nude-front.svg",
  48810. extra: 1176/1152,
  48811. bottom: 42/1218
  48812. }
  48813. },
  48814. nudeSide: {
  48815. height: math.unit(5 + 8/12, "feet"),
  48816. weight: math.unit(125, "lb"),
  48817. name: "Nude (Side)",
  48818. image: {
  48819. source: "./media/characters/jess/nude-side.svg",
  48820. extra: 1204/1190,
  48821. bottom: 6/1210
  48822. }
  48823. },
  48824. organsFront: {
  48825. height: math.unit(2.83799342105, "feet"),
  48826. name: "Organs (Front)",
  48827. image: {
  48828. source: "./media/characters/jess/organs-front.svg"
  48829. }
  48830. },
  48831. organsSide: {
  48832. height: math.unit(2.64225290474, "feet"),
  48833. name: "Organs (Side)",
  48834. image: {
  48835. source: "./media/characters/jess/organs-side.svg"
  48836. }
  48837. },
  48838. digestiveTractFront: {
  48839. height: math.unit(2.8106580871, "feet"),
  48840. name: "Digestive Tract (Front)",
  48841. image: {
  48842. source: "./media/characters/jess/digestive-tract-front.svg"
  48843. }
  48844. },
  48845. digestiveTractSide: {
  48846. height: math.unit(2.54365045014, "feet"),
  48847. name: "Digestive Tract (Side)",
  48848. image: {
  48849. source: "./media/characters/jess/digestive-tract-side.svg"
  48850. }
  48851. },
  48852. respiratorySystemFront: {
  48853. height: math.unit(1.11196233456, "feet"),
  48854. name: "Respiratory System (Front)",
  48855. image: {
  48856. source: "./media/characters/jess/respiratory-system-front.svg"
  48857. }
  48858. },
  48859. respiratorySystemSide: {
  48860. height: math.unit(0.89327966297, "feet"),
  48861. name: "Respiratory System (Side)",
  48862. image: {
  48863. source: "./media/characters/jess/respiratory-system-side.svg"
  48864. }
  48865. },
  48866. urinaryTractFront: {
  48867. height: math.unit(1.16126356186, "feet"),
  48868. name: "Urinary Tract (Front)",
  48869. image: {
  48870. source: "./media/characters/jess/urinary-tract-front.svg"
  48871. }
  48872. },
  48873. urinaryTractSide: {
  48874. height: math.unit(1.20910039627, "feet"),
  48875. name: "Urinary Tract (Side)",
  48876. image: {
  48877. source: "./media/characters/jess/urinary-tract-side.svg"
  48878. }
  48879. },
  48880. reproductiveOrgansFront: {
  48881. height: math.unit(0.48422591566, "feet"),
  48882. name: "Reproductive Organs (Front)",
  48883. image: {
  48884. source: "./media/characters/jess/reproductive-organs-front.svg"
  48885. }
  48886. },
  48887. reproductiveOrgansSide: {
  48888. height: math.unit(0.61553314481, "feet"),
  48889. name: "Reproductive Organs (Side)",
  48890. image: {
  48891. source: "./media/characters/jess/reproductive-organs-side.svg"
  48892. }
  48893. },
  48894. breastsFront: {
  48895. height: math.unit(0.47690395121, "feet"),
  48896. name: "Breasts (Front)",
  48897. image: {
  48898. source: "./media/characters/jess/breasts-front.svg"
  48899. }
  48900. },
  48901. breastsSide: {
  48902. height: math.unit(0.30556998307, "feet"),
  48903. name: "Breasts (Side)",
  48904. image: {
  48905. source: "./media/characters/jess/breasts-side.svg"
  48906. }
  48907. },
  48908. heartFront: {
  48909. height: math.unit(0.53011022622, "feet"),
  48910. name: "Heart (Front)",
  48911. image: {
  48912. source: "./media/characters/jess/heart-front.svg"
  48913. }
  48914. },
  48915. heartSide: {
  48916. height: math.unit(0.51790695213, "feet"),
  48917. name: "Heart (Side)",
  48918. image: {
  48919. source: "./media/characters/jess/heart-side.svg"
  48920. }
  48921. },
  48922. earsAndNoseFront: {
  48923. height: math.unit(0.29385483995, "feet"),
  48924. name: "Ears and Nose (Front)",
  48925. image: {
  48926. source: "./media/characters/jess/ears-and-nose-front.svg"
  48927. }
  48928. },
  48929. earsAndNoseSide: {
  48930. height: math.unit(0.18109658741, "feet"),
  48931. name: "Ears and Nose (Side)",
  48932. image: {
  48933. source: "./media/characters/jess/ears-and-nose-side.svg"
  48934. }
  48935. },
  48936. },
  48937. [
  48938. {
  48939. name: "Normal",
  48940. height: math.unit(5 + 8/12, "feet"),
  48941. default: true
  48942. },
  48943. ]
  48944. ))
  48945. characterMakers.push(() => makeCharacter(
  48946. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48947. {
  48948. front: {
  48949. height: math.unit(6, "feet"),
  48950. weight: math.unit(6.64467e-7, "grams"),
  48951. name: "Front",
  48952. image: {
  48953. source: "./media/characters/wimpering/front.svg",
  48954. extra: 597/587,
  48955. bottom: 34/631
  48956. }
  48957. },
  48958. },
  48959. [
  48960. {
  48961. name: "Micro",
  48962. height: math.unit(0.4, "mm"),
  48963. default: true
  48964. },
  48965. ]
  48966. ))
  48967. characterMakers.push(() => makeCharacter(
  48968. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48969. {
  48970. front: {
  48971. height: math.unit(5 + 2/12, "feet"),
  48972. weight: math.unit(110, "lb"),
  48973. name: "Front",
  48974. image: {
  48975. source: "./media/characters/keltre/front.svg",
  48976. extra: 1099/1057,
  48977. bottom: 22/1121
  48978. }
  48979. },
  48980. back: {
  48981. height: math.unit(5 + 2/12, "feet"),
  48982. weight: math.unit(110, "lb"),
  48983. name: "Back",
  48984. image: {
  48985. source: "./media/characters/keltre/back.svg",
  48986. extra: 1095/1053,
  48987. bottom: 17/1112
  48988. }
  48989. },
  48990. dressed: {
  48991. height: math.unit(5 + 2/12, "feet"),
  48992. weight: math.unit(110, "lb"),
  48993. name: "Dressed",
  48994. image: {
  48995. source: "./media/characters/keltre/dressed.svg",
  48996. extra: 1099/1057,
  48997. bottom: 22/1121
  48998. }
  48999. },
  49000. winter: {
  49001. height: math.unit(5 + 2/12, "feet"),
  49002. weight: math.unit(110, "lb"),
  49003. name: "Winter",
  49004. image: {
  49005. source: "./media/characters/keltre/winter.svg",
  49006. extra: 1099/1057,
  49007. bottom: 22/1121
  49008. }
  49009. },
  49010. head: {
  49011. height: math.unit(1.61 * 0.86, "feet"),
  49012. name: "Head",
  49013. image: {
  49014. source: "./media/characters/keltre/head.svg",
  49015. extra: 534/421,
  49016. bottom: 0/534
  49017. }
  49018. },
  49019. hand: {
  49020. height: math.unit(1.3 * 0.86, "feet"),
  49021. name: "Hand",
  49022. image: {
  49023. source: "./media/characters/keltre/hand.svg"
  49024. }
  49025. },
  49026. foot: {
  49027. height: math.unit(1.8 * 0.86, "feet"),
  49028. name: "Foot",
  49029. image: {
  49030. source: "./media/characters/keltre/foot.svg"
  49031. }
  49032. },
  49033. },
  49034. [
  49035. {
  49036. name: "Fine",
  49037. height: math.unit(1, "inch")
  49038. },
  49039. {
  49040. name: "Dimnutive",
  49041. height: math.unit(4, "inches")
  49042. },
  49043. {
  49044. name: "Tiny",
  49045. height: math.unit(1, "foot")
  49046. },
  49047. {
  49048. name: "Small",
  49049. height: math.unit(3, "feet")
  49050. },
  49051. {
  49052. name: "Normal",
  49053. height: math.unit(5 + 2/12, "feet"),
  49054. default: true
  49055. },
  49056. ]
  49057. ))
  49058. characterMakers.push(() => makeCharacter(
  49059. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49060. {
  49061. front: {
  49062. height: math.unit(6 + 2/12, "feet"),
  49063. name: "Front",
  49064. image: {
  49065. source: "./media/characters/nox/front.svg",
  49066. extra: 1917/1830,
  49067. bottom: 74/1991
  49068. }
  49069. },
  49070. back: {
  49071. height: math.unit(6 + 2/12, "feet"),
  49072. name: "Back",
  49073. image: {
  49074. source: "./media/characters/nox/back.svg",
  49075. extra: 1896/1815,
  49076. bottom: 21/1917
  49077. }
  49078. },
  49079. head: {
  49080. height: math.unit(1.1, "feet"),
  49081. name: "Head",
  49082. image: {
  49083. source: "./media/characters/nox/head.svg",
  49084. extra: 874/704,
  49085. bottom: 0/874
  49086. }
  49087. },
  49088. tattoo: {
  49089. height: math.unit(0.729, "feet"),
  49090. name: "Tattoo",
  49091. image: {
  49092. source: "./media/characters/nox/tattoo.svg"
  49093. }
  49094. },
  49095. },
  49096. [
  49097. {
  49098. name: "Normal",
  49099. height: math.unit(6 + 2/12, "feet")
  49100. },
  49101. {
  49102. name: "Gigamacro",
  49103. height: math.unit(2, "earths"),
  49104. default: true
  49105. },
  49106. {
  49107. name: "Cosmic",
  49108. height: math.unit(867, "yottameters")
  49109. },
  49110. ]
  49111. ))
  49112. characterMakers.push(() => makeCharacter(
  49113. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49114. {
  49115. front: {
  49116. height: math.unit(6, "feet"),
  49117. weight: math.unit(150, "lb"),
  49118. name: "Front",
  49119. image: {
  49120. source: "./media/characters/caspian/front.svg",
  49121. extra: 1443/1359,
  49122. bottom: 0/1443
  49123. }
  49124. },
  49125. back: {
  49126. height: math.unit(6, "feet"),
  49127. weight: math.unit(150, "lb"),
  49128. name: "Back",
  49129. image: {
  49130. source: "./media/characters/caspian/back.svg",
  49131. extra: 1379/1309,
  49132. bottom: 0/1379
  49133. }
  49134. },
  49135. head: {
  49136. height: math.unit(0.9, "feet"),
  49137. name: "Head",
  49138. image: {
  49139. source: "./media/characters/caspian/head.svg",
  49140. extra: 692/492,
  49141. bottom: 0/692
  49142. }
  49143. },
  49144. headAlt: {
  49145. height: math.unit(0.95, "feet"),
  49146. name: "Head (Alt)",
  49147. image: {
  49148. source: "./media/characters/caspian/head-alt.svg",
  49149. extra: 668/508,
  49150. bottom: 0/668
  49151. }
  49152. },
  49153. hand: {
  49154. height: math.unit(0.8, "feet"),
  49155. name: "Hand",
  49156. image: {
  49157. source: "./media/characters/caspian/hand.svg"
  49158. }
  49159. },
  49160. paw: {
  49161. height: math.unit(0.95, "feet"),
  49162. name: "Paw",
  49163. image: {
  49164. source: "./media/characters/caspian/paw.svg"
  49165. }
  49166. },
  49167. },
  49168. [
  49169. {
  49170. name: "Normal",
  49171. height: math.unit(162, "feet"),
  49172. default: true
  49173. },
  49174. ]
  49175. ))
  49176. characterMakers.push(() => makeCharacter(
  49177. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49178. {
  49179. front: {
  49180. height: math.unit(6, "feet"),
  49181. name: "Front",
  49182. image: {
  49183. source: "./media/characters/myra-aisling/front.svg",
  49184. extra: 1268/1166,
  49185. bottom: 73/1341
  49186. }
  49187. },
  49188. back: {
  49189. height: math.unit(6, "feet"),
  49190. name: "Back",
  49191. image: {
  49192. source: "./media/characters/myra-aisling/back.svg",
  49193. extra: 1249/1149,
  49194. bottom: 79/1328
  49195. }
  49196. },
  49197. dressed: {
  49198. height: math.unit(6, "feet"),
  49199. name: "Dressed",
  49200. image: {
  49201. source: "./media/characters/myra-aisling/dressed.svg",
  49202. extra: 1290/1189,
  49203. bottom: 47/1337
  49204. }
  49205. },
  49206. hand: {
  49207. height: math.unit(1.1, "feet"),
  49208. name: "Hand",
  49209. image: {
  49210. source: "./media/characters/myra-aisling/hand.svg"
  49211. }
  49212. },
  49213. paw: {
  49214. height: math.unit(1.23, "feet"),
  49215. name: "Paw",
  49216. image: {
  49217. source: "./media/characters/myra-aisling/paw.svg"
  49218. }
  49219. },
  49220. },
  49221. [
  49222. {
  49223. name: "Normal",
  49224. height: math.unit(160, "feet"),
  49225. default: true
  49226. },
  49227. ]
  49228. ))
  49229. characterMakers.push(() => makeCharacter(
  49230. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49231. {
  49232. front: {
  49233. height: math.unit(6, "feet"),
  49234. name: "Front",
  49235. image: {
  49236. source: "./media/characters/tenley-sidero/front.svg",
  49237. extra: 1365/1276,
  49238. bottom: 47/1412
  49239. }
  49240. },
  49241. back: {
  49242. height: math.unit(6, "feet"),
  49243. name: "Back",
  49244. image: {
  49245. source: "./media/characters/tenley-sidero/back.svg",
  49246. extra: 1383/1283,
  49247. bottom: 35/1418
  49248. }
  49249. },
  49250. dressed: {
  49251. height: math.unit(6, "feet"),
  49252. name: "Dressed",
  49253. image: {
  49254. source: "./media/characters/tenley-sidero/dressed.svg",
  49255. extra: 1364/1275,
  49256. bottom: 42/1406
  49257. }
  49258. },
  49259. head: {
  49260. height: math.unit(1.47, "feet"),
  49261. name: "Head",
  49262. image: {
  49263. source: "./media/characters/tenley-sidero/head.svg",
  49264. extra: 610/490,
  49265. bottom: 0/610
  49266. }
  49267. },
  49268. },
  49269. [
  49270. {
  49271. name: "Normal",
  49272. height: math.unit(154, "feet"),
  49273. default: true
  49274. },
  49275. ]
  49276. ))
  49277. characterMakers.push(() => makeCharacter(
  49278. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49279. {
  49280. front: {
  49281. height: math.unit(5, "inches"),
  49282. name: "Front",
  49283. image: {
  49284. source: "./media/characters/mallory/front.svg",
  49285. extra: 1919/1678,
  49286. bottom: 29/1948
  49287. }
  49288. },
  49289. hand: {
  49290. height: math.unit(0.73, "inches"),
  49291. name: "Hand",
  49292. image: {
  49293. source: "./media/characters/mallory/hand.svg"
  49294. }
  49295. },
  49296. paw: {
  49297. height: math.unit(0.68, "inches"),
  49298. name: "Paw",
  49299. image: {
  49300. source: "./media/characters/mallory/paw.svg"
  49301. }
  49302. },
  49303. },
  49304. [
  49305. {
  49306. name: "Small",
  49307. height: math.unit(5, "inches"),
  49308. default: true
  49309. },
  49310. ]
  49311. ))
  49312. characterMakers.push(() => makeCharacter(
  49313. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49314. {
  49315. naked: {
  49316. height: math.unit(6, "feet"),
  49317. name: "Naked",
  49318. image: {
  49319. source: "./media/characters/mab/naked.svg",
  49320. extra: 1855/1757,
  49321. bottom: 208/2063
  49322. }
  49323. },
  49324. outside: {
  49325. height: math.unit(6, "feet"),
  49326. name: "Outside",
  49327. image: {
  49328. source: "./media/characters/mab/outside.svg",
  49329. extra: 1855/1757,
  49330. bottom: 208/2063
  49331. }
  49332. },
  49333. party: {
  49334. height: math.unit(6, "feet"),
  49335. name: "Party",
  49336. image: {
  49337. source: "./media/characters/mab/party.svg",
  49338. extra: 1855/1757,
  49339. bottom: 208/2063
  49340. }
  49341. },
  49342. },
  49343. [
  49344. {
  49345. name: "Normal",
  49346. height: math.unit(165, "feet"),
  49347. default: true
  49348. },
  49349. ]
  49350. ))
  49351. characterMakers.push(() => makeCharacter(
  49352. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49353. {
  49354. front: {
  49355. height: math.unit(12, "feet"),
  49356. weight: math.unit(4000, "lb"),
  49357. name: "Front",
  49358. image: {
  49359. source: "./media/characters/winter/front.svg",
  49360. extra: 1286/943,
  49361. bottom: 112/1398
  49362. }
  49363. },
  49364. frontNsfw: {
  49365. height: math.unit(12, "feet"),
  49366. weight: math.unit(4000, "lb"),
  49367. name: "Front (NSFW)",
  49368. image: {
  49369. source: "./media/characters/winter/front-nsfw.svg",
  49370. extra: 1286/943,
  49371. bottom: 112/1398
  49372. }
  49373. },
  49374. dick: {
  49375. height: math.unit(3.79, "feet"),
  49376. name: "Dick",
  49377. image: {
  49378. source: "./media/characters/winter/dick.svg"
  49379. }
  49380. },
  49381. },
  49382. [
  49383. {
  49384. name: "Big",
  49385. height: math.unit(12, "feet"),
  49386. default: true
  49387. },
  49388. ]
  49389. ))
  49390. characterMakers.push(() => makeCharacter(
  49391. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49392. {
  49393. front: {
  49394. height: math.unit(4.1, "inches"),
  49395. name: "Front",
  49396. image: {
  49397. source: "./media/characters/alto/front.svg",
  49398. extra: 736/627,
  49399. bottom: 90/826
  49400. }
  49401. },
  49402. },
  49403. [
  49404. {
  49405. name: "Normal",
  49406. height: math.unit(4.1, "inches"),
  49407. default: true
  49408. },
  49409. ]
  49410. ))
  49411. characterMakers.push(() => makeCharacter(
  49412. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49413. {
  49414. sitting: {
  49415. height: math.unit(3, "feet"),
  49416. name: "Sitting",
  49417. image: {
  49418. source: "./media/characters/ratstrid-v/sitting.svg",
  49419. extra: 355/310,
  49420. bottom: 136/491
  49421. }
  49422. },
  49423. },
  49424. [
  49425. {
  49426. name: "Normal",
  49427. height: math.unit(3, "feet"),
  49428. default: true
  49429. },
  49430. ]
  49431. ))
  49432. characterMakers.push(() => makeCharacter(
  49433. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49434. {
  49435. back: {
  49436. height: math.unit(6, "feet"),
  49437. weight: math.unit(350, "lb"),
  49438. name: "Back",
  49439. image: {
  49440. source: "./media/characters/siz/back.svg",
  49441. extra: 1449/1274,
  49442. bottom: 13/1462
  49443. }
  49444. },
  49445. },
  49446. [
  49447. {
  49448. name: "Over-Overcompressed",
  49449. height: math.unit(8, "feet")
  49450. },
  49451. {
  49452. name: "Overcompressed",
  49453. height: math.unit(32, "feet")
  49454. },
  49455. {
  49456. name: "Compressed",
  49457. height: math.unit(128, "feet"),
  49458. default: true
  49459. },
  49460. {
  49461. name: "Half-Compressed",
  49462. height: math.unit(512, "feet")
  49463. },
  49464. {
  49465. name: "Quarter-Compressed",
  49466. height: math.unit(2048, "feet")
  49467. },
  49468. {
  49469. name: "Uncompressed?",
  49470. height: math.unit(8192, "feet")
  49471. },
  49472. ]
  49473. ))
  49474. characterMakers.push(() => makeCharacter(
  49475. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49476. {
  49477. front: {
  49478. height: math.unit(5 + 9/12, "feet"),
  49479. weight: math.unit(150, "lb"),
  49480. name: "Front",
  49481. image: {
  49482. source: "./media/characters/ven/front.svg",
  49483. extra: 1372/1320,
  49484. bottom: 73/1445
  49485. }
  49486. },
  49487. side: {
  49488. height: math.unit(5 + 9/12, "feet"),
  49489. weight: math.unit(1150, "lb"),
  49490. name: "Side",
  49491. image: {
  49492. source: "./media/characters/ven/side.svg",
  49493. extra: 1119/1070,
  49494. bottom: 42/1161
  49495. },
  49496. default: true
  49497. },
  49498. },
  49499. [
  49500. {
  49501. name: "Normal",
  49502. height: math.unit(5 + 9/12, "feet"),
  49503. default: true
  49504. },
  49505. ]
  49506. ))
  49507. characterMakers.push(() => makeCharacter(
  49508. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49509. {
  49510. front: {
  49511. height: math.unit(12, "feet"),
  49512. weight: math.unit(1000, "kg"),
  49513. name: "Front",
  49514. image: {
  49515. source: "./media/characters/maple/front.svg",
  49516. extra: 1193/1081,
  49517. bottom: 22/1215
  49518. }
  49519. },
  49520. },
  49521. [
  49522. {
  49523. name: "Compressed",
  49524. height: math.unit(7, "feet")
  49525. },
  49526. {
  49527. name: "Normal",
  49528. height: math.unit(12, "feet"),
  49529. default: true
  49530. },
  49531. ]
  49532. ))
  49533. characterMakers.push(() => makeCharacter(
  49534. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49535. {
  49536. front: {
  49537. height: math.unit(9, "feet"),
  49538. weight: math.unit(1500, "lb"),
  49539. name: "Front",
  49540. image: {
  49541. source: "./media/characters/nora/front.svg",
  49542. extra: 1348/1286,
  49543. bottom: 218/1566
  49544. }
  49545. },
  49546. erect: {
  49547. height: math.unit(9, "feet"),
  49548. weight: math.unit(11500, "lb"),
  49549. name: "Erect",
  49550. image: {
  49551. source: "./media/characters/nora/erect.svg",
  49552. extra: 1488/1433,
  49553. bottom: 133/1621
  49554. }
  49555. },
  49556. },
  49557. [
  49558. {
  49559. name: "Normal",
  49560. height: math.unit(9, "feet"),
  49561. default: true
  49562. },
  49563. ]
  49564. ))
  49565. characterMakers.push(() => makeCharacter(
  49566. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49567. {
  49568. front: {
  49569. height: math.unit(25, "feet"),
  49570. weight: math.unit(27500, "lb"),
  49571. name: "Front",
  49572. image: {
  49573. source: "./media/characters/north-caudin/front.svg",
  49574. extra: 1184/1082,
  49575. bottom: 23/1207
  49576. }
  49577. },
  49578. },
  49579. [
  49580. {
  49581. name: "Compressed",
  49582. height: math.unit(10, "feet")
  49583. },
  49584. {
  49585. name: "Normal",
  49586. height: math.unit(25, "feet"),
  49587. default: true
  49588. },
  49589. ]
  49590. ))
  49591. characterMakers.push(() => makeCharacter(
  49592. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49593. {
  49594. front: {
  49595. height: math.unit(9, "feet"),
  49596. weight: math.unit(1250, "lb"),
  49597. name: "Front",
  49598. image: {
  49599. source: "./media/characters/merrian/front.svg",
  49600. extra: 2393/2304,
  49601. bottom: 40/2433
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Normal",
  49608. height: math.unit(9, "feet"),
  49609. default: true
  49610. },
  49611. ]
  49612. ))
  49613. characterMakers.push(() => makeCharacter(
  49614. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49615. {
  49616. front: {
  49617. height: math.unit(9, "feet"),
  49618. weight: math.unit(1000, "lb"),
  49619. name: "Front",
  49620. image: {
  49621. source: "./media/characters/hazel/front.svg",
  49622. extra: 2351/2298,
  49623. bottom: 38/2389
  49624. }
  49625. },
  49626. },
  49627. [
  49628. {
  49629. name: "Normal",
  49630. height: math.unit(9, "feet"),
  49631. default: true
  49632. },
  49633. ]
  49634. ))
  49635. characterMakers.push(() => makeCharacter(
  49636. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49637. {
  49638. front: {
  49639. height: math.unit(13, "feet"),
  49640. weight: math.unit(3200, "lb"),
  49641. name: "Front",
  49642. image: {
  49643. source: "./media/characters/emma/front.svg",
  49644. extra: 2263/2029,
  49645. bottom: 68/2331
  49646. }
  49647. },
  49648. },
  49649. [
  49650. {
  49651. name: "Normal",
  49652. height: math.unit(13, "feet"),
  49653. default: true
  49654. },
  49655. ]
  49656. ))
  49657. characterMakers.push(() => makeCharacter(
  49658. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49659. {
  49660. front: {
  49661. height: math.unit(11 + 9/12, "feet"),
  49662. weight: math.unit(2500, "lb"),
  49663. name: "Front",
  49664. image: {
  49665. source: "./media/characters/ilumina/front.svg",
  49666. extra: 2248/2209,
  49667. bottom: 164/2412
  49668. }
  49669. },
  49670. },
  49671. [
  49672. {
  49673. name: "Normal",
  49674. height: math.unit(11 + 9/12, "feet"),
  49675. default: true
  49676. },
  49677. ]
  49678. ))
  49679. characterMakers.push(() => makeCharacter(
  49680. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49681. {
  49682. front: {
  49683. height: math.unit(8 + 10/12, "feet"),
  49684. weight: math.unit(1350, "lb"),
  49685. name: "Front",
  49686. image: {
  49687. source: "./media/characters/moonshine/front.svg",
  49688. extra: 2395/2288,
  49689. bottom: 40/2435
  49690. }
  49691. },
  49692. },
  49693. [
  49694. {
  49695. name: "Normal",
  49696. height: math.unit(8 + 10/12, "feet"),
  49697. default: true
  49698. },
  49699. ]
  49700. ))
  49701. characterMakers.push(() => makeCharacter(
  49702. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49703. {
  49704. front: {
  49705. height: math.unit(14, "feet"),
  49706. weight: math.unit(3400, "lb"),
  49707. name: "Front",
  49708. image: {
  49709. source: "./media/characters/aletia/front.svg",
  49710. extra: 1185/1052,
  49711. bottom: 21/1206
  49712. }
  49713. },
  49714. },
  49715. [
  49716. {
  49717. name: "Compressed",
  49718. height: math.unit(8, "feet")
  49719. },
  49720. {
  49721. name: "Normal",
  49722. height: math.unit(14, "feet"),
  49723. default: true
  49724. },
  49725. ]
  49726. ))
  49727. characterMakers.push(() => makeCharacter(
  49728. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49729. {
  49730. front: {
  49731. height: math.unit(17, "feet"),
  49732. weight: math.unit(6500, "lb"),
  49733. name: "Front",
  49734. image: {
  49735. source: "./media/characters/deidra/front.svg",
  49736. extra: 1201/1081,
  49737. bottom: 16/1217
  49738. }
  49739. },
  49740. },
  49741. [
  49742. {
  49743. name: "Compressed",
  49744. height: math.unit(9 + 6/12, "feet")
  49745. },
  49746. {
  49747. name: "Normal",
  49748. height: math.unit(17, "feet"),
  49749. default: true
  49750. },
  49751. ]
  49752. ))
  49753. characterMakers.push(() => makeCharacter(
  49754. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49755. {
  49756. front: {
  49757. height: math.unit(7 + 4/12, "feet"),
  49758. weight: math.unit(280, "lb"),
  49759. name: "Front",
  49760. image: {
  49761. source: "./media/characters/freki-yrmori/front.svg",
  49762. extra: 1286/1182,
  49763. bottom: 29/1315
  49764. }
  49765. },
  49766. maw: {
  49767. height: math.unit(0.9, "feet"),
  49768. name: "Maw",
  49769. image: {
  49770. source: "./media/characters/freki-yrmori/maw.svg"
  49771. }
  49772. },
  49773. },
  49774. [
  49775. {
  49776. name: "Normal",
  49777. height: math.unit(7 + 4/12, "feet"),
  49778. default: true
  49779. },
  49780. {
  49781. name: "Macro",
  49782. height: math.unit(38.5, "meters")
  49783. },
  49784. ]
  49785. ))
  49786. characterMakers.push(() => makeCharacter(
  49787. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49788. {
  49789. side: {
  49790. height: math.unit(47.2, "meters"),
  49791. weight: math.unit(10000, "tons"),
  49792. name: "Side",
  49793. image: {
  49794. source: "./media/characters/aetherios/side.svg",
  49795. extra: 2363/642,
  49796. bottom: 221/2584
  49797. }
  49798. },
  49799. top: {
  49800. height: math.unit(240, "meters"),
  49801. weight: math.unit(10000, "tons"),
  49802. name: "Top",
  49803. image: {
  49804. source: "./media/characters/aetherios/top.svg"
  49805. }
  49806. },
  49807. bottom: {
  49808. height: math.unit(240, "meters"),
  49809. weight: math.unit(10000, "tons"),
  49810. name: "Bottom",
  49811. image: {
  49812. source: "./media/characters/aetherios/bottom.svg"
  49813. }
  49814. },
  49815. head: {
  49816. height: math.unit(38.6, "meters"),
  49817. name: "Head",
  49818. image: {
  49819. source: "./media/characters/aetherios/head.svg",
  49820. extra: 1335/1112,
  49821. bottom: 0/1335
  49822. }
  49823. },
  49824. front: {
  49825. height: math.unit(29, "meters"),
  49826. name: "Front",
  49827. image: {
  49828. source: "./media/characters/aetherios/front.svg",
  49829. extra: 1266/953,
  49830. bottom: 158/1424
  49831. }
  49832. },
  49833. maw: {
  49834. height: math.unit(16.37, "meters"),
  49835. name: "Maw",
  49836. image: {
  49837. source: "./media/characters/aetherios/maw.svg",
  49838. extra: 748/637,
  49839. bottom: 0/748
  49840. },
  49841. extraAttributes: {
  49842. preyCapacity: {
  49843. name: "Capacity",
  49844. power: 3,
  49845. type: "volume",
  49846. base: math.unit(1000, "people")
  49847. },
  49848. tongueSize: {
  49849. name: "Tongue Size",
  49850. power: 2,
  49851. type: "area",
  49852. base: math.unit(21, "m^2")
  49853. }
  49854. }
  49855. },
  49856. forepaw: {
  49857. height: math.unit(18, "meters"),
  49858. name: "Forepaw",
  49859. image: {
  49860. source: "./media/characters/aetherios/forepaw.svg"
  49861. }
  49862. },
  49863. hindpaw: {
  49864. height: math.unit(23, "meters"),
  49865. name: "Hindpaw",
  49866. image: {
  49867. source: "./media/characters/aetherios/hindpaw.svg"
  49868. }
  49869. },
  49870. genitals: {
  49871. height: math.unit(42, "meters"),
  49872. name: "Genitals",
  49873. image: {
  49874. source: "./media/characters/aetherios/genitals.svg"
  49875. }
  49876. },
  49877. },
  49878. [
  49879. {
  49880. name: "Normal",
  49881. height: math.unit(47.2, "meters"),
  49882. default: true
  49883. },
  49884. {
  49885. name: "Macro",
  49886. height: math.unit(160, "meters")
  49887. },
  49888. {
  49889. name: "Mega",
  49890. height: math.unit(1.87, "km")
  49891. },
  49892. {
  49893. name: "Giga",
  49894. height: math.unit(40000, "km")
  49895. },
  49896. {
  49897. name: "Stellar",
  49898. height: math.unit(158000000, "km")
  49899. },
  49900. {
  49901. name: "Cosmic",
  49902. height: math.unit(9.46e12, "km")
  49903. },
  49904. ]
  49905. ))
  49906. characterMakers.push(() => makeCharacter(
  49907. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49908. {
  49909. front: {
  49910. height: math.unit(5 + 4/12, "feet"),
  49911. weight: math.unit(80, "lb"),
  49912. name: "Front",
  49913. image: {
  49914. source: "./media/characters/mizu-gieeg/front.svg",
  49915. extra: 850/709,
  49916. bottom: 52/902
  49917. }
  49918. },
  49919. back: {
  49920. height: math.unit(5 + 4/12, "feet"),
  49921. weight: math.unit(80, "lb"),
  49922. name: "Back",
  49923. image: {
  49924. source: "./media/characters/mizu-gieeg/back.svg",
  49925. extra: 882/745,
  49926. bottom: 25/907
  49927. }
  49928. },
  49929. },
  49930. [
  49931. {
  49932. name: "Normal",
  49933. height: math.unit(5 + 4/12, "feet"),
  49934. default: true
  49935. },
  49936. ]
  49937. ))
  49938. characterMakers.push(() => makeCharacter(
  49939. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49940. {
  49941. front: {
  49942. height: math.unit(6, "feet"),
  49943. name: "Front",
  49944. image: {
  49945. source: "./media/characters/roselle-st-papier/front.svg",
  49946. extra: 1430/1280,
  49947. bottom: 37/1467
  49948. }
  49949. },
  49950. back: {
  49951. height: math.unit(6, "feet"),
  49952. name: "Back",
  49953. image: {
  49954. source: "./media/characters/roselle-st-papier/back.svg",
  49955. extra: 1491/1296,
  49956. bottom: 23/1514
  49957. }
  49958. },
  49959. ear: {
  49960. height: math.unit(1.26, "feet"),
  49961. name: "Ear",
  49962. image: {
  49963. source: "./media/characters/roselle-st-papier/ear.svg"
  49964. }
  49965. },
  49966. },
  49967. [
  49968. {
  49969. name: "Normal",
  49970. height: math.unit(150, "feet"),
  49971. default: true
  49972. },
  49973. ]
  49974. ))
  49975. characterMakers.push(() => makeCharacter(
  49976. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49977. {
  49978. front: {
  49979. height: math.unit(1, "inches"),
  49980. name: "Front",
  49981. image: {
  49982. source: "./media/characters/valargent/front.svg",
  49983. extra: 1825/1694,
  49984. bottom: 62/1887
  49985. }
  49986. },
  49987. back: {
  49988. height: math.unit(1, "inches"),
  49989. name: "Back",
  49990. image: {
  49991. source: "./media/characters/valargent/back.svg",
  49992. extra: 1775/1682,
  49993. bottom: 88/1863
  49994. }
  49995. },
  49996. },
  49997. [
  49998. {
  49999. name: "Micro",
  50000. height: math.unit(1, "inch"),
  50001. default: true
  50002. },
  50003. ]
  50004. ))
  50005. characterMakers.push(() => makeCharacter(
  50006. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50007. {
  50008. front: {
  50009. height: math.unit(3.4, "meters"),
  50010. name: "Front",
  50011. image: {
  50012. source: "./media/characters/zarina/front.svg",
  50013. extra: 1733/1425,
  50014. bottom: 93/1826
  50015. }
  50016. },
  50017. squatting: {
  50018. height: math.unit(2.14, "meters"),
  50019. name: "Squatting",
  50020. image: {
  50021. source: "./media/characters/zarina/squatting.svg",
  50022. extra: 1073/788,
  50023. bottom: 63/1136
  50024. }
  50025. },
  50026. back: {
  50027. height: math.unit(2.14, "meters"),
  50028. name: "Back",
  50029. image: {
  50030. source: "./media/characters/zarina/back.svg",
  50031. extra: 1128/885,
  50032. bottom: 0/1128
  50033. }
  50034. },
  50035. },
  50036. [
  50037. {
  50038. name: "Normal",
  50039. height: math.unit(3.4, "meters"),
  50040. default: true
  50041. },
  50042. {
  50043. name: "Big",
  50044. height: math.unit(5, "meters")
  50045. },
  50046. {
  50047. name: "Macro",
  50048. height: math.unit(110, "meters")
  50049. },
  50050. ]
  50051. ))
  50052. characterMakers.push(() => makeCharacter(
  50053. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50054. {
  50055. front: {
  50056. height: math.unit(7, "feet"),
  50057. name: "Front",
  50058. image: {
  50059. source: "./media/characters/ventus-astro-fox/front.svg",
  50060. extra: 1792/1623,
  50061. bottom: 28/1820
  50062. }
  50063. },
  50064. back: {
  50065. height: math.unit(7, "feet"),
  50066. name: "Back",
  50067. image: {
  50068. source: "./media/characters/ventus-astro-fox/back.svg",
  50069. extra: 1789/1620,
  50070. bottom: 31/1820
  50071. }
  50072. },
  50073. outfit: {
  50074. height: math.unit(7, "feet"),
  50075. name: "Outfit",
  50076. image: {
  50077. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50078. extra: 1054/925,
  50079. bottom: 15/1069
  50080. }
  50081. },
  50082. head: {
  50083. height: math.unit(1.12, "feet"),
  50084. name: "Head",
  50085. image: {
  50086. source: "./media/characters/ventus-astro-fox/head.svg",
  50087. extra: 866/504,
  50088. bottom: 0/866
  50089. }
  50090. },
  50091. hand: {
  50092. height: math.unit(1, "feet"),
  50093. name: "Hand",
  50094. image: {
  50095. source: "./media/characters/ventus-astro-fox/hand.svg"
  50096. }
  50097. },
  50098. paw: {
  50099. height: math.unit(1.5, "feet"),
  50100. name: "Paw",
  50101. image: {
  50102. source: "./media/characters/ventus-astro-fox/paw.svg"
  50103. }
  50104. },
  50105. },
  50106. [
  50107. {
  50108. name: "Normal",
  50109. height: math.unit(7, "feet"),
  50110. default: true
  50111. },
  50112. {
  50113. name: "Macro",
  50114. height: math.unit(200, "feet")
  50115. },
  50116. {
  50117. name: "Cosmic",
  50118. height: math.unit(3, "universes")
  50119. },
  50120. ]
  50121. ))
  50122. characterMakers.push(() => makeCharacter(
  50123. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50124. {
  50125. front: {
  50126. height: math.unit(3, "meters"),
  50127. weight: math.unit(7000, "lb"),
  50128. name: "Front",
  50129. image: {
  50130. source: "./media/characters/core-t/front.svg",
  50131. extra: 5729/4941,
  50132. bottom: 1129/6858
  50133. }
  50134. },
  50135. },
  50136. [
  50137. {
  50138. name: "Big",
  50139. height: math.unit(3, "meters"),
  50140. default: true
  50141. },
  50142. ]
  50143. ))
  50144. characterMakers.push(() => makeCharacter(
  50145. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50146. {
  50147. normal: {
  50148. height: math.unit(6 + 6/12, "feet"),
  50149. weight: math.unit(275, "lb"),
  50150. name: "Front",
  50151. image: {
  50152. source: "./media/characters/cadbunny/normal.svg",
  50153. extra: 1129/947,
  50154. bottom: 93/1222
  50155. },
  50156. default: true,
  50157. form: "normal"
  50158. },
  50159. gigantamax: {
  50160. height: math.unit(26, "feet"),
  50161. weight: math.unit(16000, "lb"),
  50162. name: "Front",
  50163. image: {
  50164. source: "./media/characters/cadbunny/gigantamax.svg",
  50165. extra: 1133/944,
  50166. bottom: 90/1223
  50167. },
  50168. default: true,
  50169. form: "gigantamax"
  50170. },
  50171. },
  50172. [
  50173. {
  50174. name: "Normal",
  50175. height: math.unit(6 + 6/12, "feet"),
  50176. default: true,
  50177. form: "normal"
  50178. },
  50179. {
  50180. name: "Small",
  50181. height: math.unit(26, "feet"),
  50182. default: true,
  50183. form: "gigantamax"
  50184. },
  50185. {
  50186. name: "Large",
  50187. height: math.unit(78, "feet"),
  50188. form: "gigantamax"
  50189. },
  50190. ],
  50191. {
  50192. "normal": {
  50193. name: "Normal",
  50194. default: true
  50195. },
  50196. "gigantamax": {
  50197. name: "Gigantamax"
  50198. }
  50199. }
  50200. ))
  50201. characterMakers.push(() => makeCharacter(
  50202. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50203. {
  50204. anthroFront: {
  50205. height: math.unit(8, "feet"),
  50206. weight: math.unit(300, "lb"),
  50207. name: "Front",
  50208. image: {
  50209. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50210. extra: 1272/1176,
  50211. bottom: 53/1325
  50212. },
  50213. form: "anthro",
  50214. default: true
  50215. },
  50216. feralSide: {
  50217. height: math.unit(4, "feet"),
  50218. weight: math.unit(250, "lb"),
  50219. name: "Side",
  50220. image: {
  50221. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50222. extra: 731/621,
  50223. bottom: 0/731
  50224. },
  50225. form: "feral",
  50226. default: true
  50227. },
  50228. },
  50229. [
  50230. {
  50231. name: "Regular",
  50232. height: math.unit(8, "feet"),
  50233. form: "anthro"
  50234. },
  50235. {
  50236. name: "Macro",
  50237. height: math.unit(250, "feet"),
  50238. form: "anthro",
  50239. default: true
  50240. },
  50241. {
  50242. name: "Regular",
  50243. height: math.unit(4, "feet"),
  50244. form: "feral"
  50245. },
  50246. {
  50247. name: "Macro",
  50248. height: math.unit(125, "feet"),
  50249. form: "feral",
  50250. default: true
  50251. },
  50252. ],
  50253. {
  50254. "anthro": {
  50255. name: "Anthro",
  50256. default: true
  50257. },
  50258. "feral": {
  50259. name: "Feral",
  50260. },
  50261. }
  50262. ))
  50263. characterMakers.push(() => makeCharacter(
  50264. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50265. {
  50266. front: {
  50267. height: math.unit(11 + 10/12, "feet"),
  50268. weight: math.unit(1587, "kg"),
  50269. name: "Front",
  50270. image: {
  50271. source: "./media/characters/maple-javira-dragon/front.svg",
  50272. extra: 1136/744,
  50273. bottom: 73/1209
  50274. }
  50275. },
  50276. side: {
  50277. height: math.unit(11 + 10/12, "feet"),
  50278. weight: math.unit(1587, "kg"),
  50279. name: "Side",
  50280. image: {
  50281. source: "./media/characters/maple-javira-dragon/side.svg",
  50282. extra: 712/505,
  50283. bottom: 17/729
  50284. }
  50285. },
  50286. head: {
  50287. height: math.unit(8.05, "feet"),
  50288. name: "Head",
  50289. image: {
  50290. source: "./media/characters/maple-javira-dragon/head.svg",
  50291. extra: 1420/1344,
  50292. bottom: 0/1420
  50293. }
  50294. },
  50295. },
  50296. [
  50297. {
  50298. name: "Normal",
  50299. height: math.unit(11 + 10/12, "feet"),
  50300. default: true
  50301. },
  50302. ]
  50303. ))
  50304. characterMakers.push(() => makeCharacter(
  50305. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50306. {
  50307. front: {
  50308. height: math.unit(117, "cm"),
  50309. weight: math.unit(50, "kg"),
  50310. name: "Front",
  50311. image: {
  50312. source: "./media/characters/sonia-wyverntail/front.svg",
  50313. extra: 708/592,
  50314. bottom: 25/733
  50315. }
  50316. },
  50317. },
  50318. [
  50319. {
  50320. name: "Normal",
  50321. height: math.unit(117, "cm"),
  50322. default: true
  50323. },
  50324. ]
  50325. ))
  50326. characterMakers.push(() => makeCharacter(
  50327. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50328. {
  50329. front: {
  50330. height: math.unit(6 + 5/12, "feet"),
  50331. name: "Front",
  50332. image: {
  50333. source: "./media/characters/micah/front.svg",
  50334. extra: 1758/1546,
  50335. bottom: 214/1972
  50336. }
  50337. },
  50338. },
  50339. [
  50340. {
  50341. name: "Normal",
  50342. height: math.unit(6 + 5/12, "feet"),
  50343. default: true
  50344. },
  50345. ]
  50346. ))
  50347. characterMakers.push(() => makeCharacter(
  50348. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50349. {
  50350. front: {
  50351. height: math.unit(5 + 10/12, "feet"),
  50352. weight: math.unit(220, "lb"),
  50353. name: "Front",
  50354. image: {
  50355. source: "./media/characters/zarya/front.svg",
  50356. extra: 593/572,
  50357. bottom: 50/643
  50358. }
  50359. },
  50360. back: {
  50361. height: math.unit(5 + 10/12, "feet"),
  50362. weight: math.unit(220, "lb"),
  50363. name: "Back",
  50364. image: {
  50365. source: "./media/characters/zarya/back.svg",
  50366. extra: 603/582,
  50367. bottom: 38/641
  50368. }
  50369. },
  50370. },
  50371. [
  50372. {
  50373. name: "Normal",
  50374. height: math.unit(5 + 10/12, "feet"),
  50375. default: true
  50376. },
  50377. ]
  50378. ))
  50379. characterMakers.push(() => makeCharacter(
  50380. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50381. {
  50382. front: {
  50383. height: math.unit(7.5, "feet"),
  50384. name: "Front",
  50385. image: {
  50386. source: "./media/characters/sven-hatisson/front.svg",
  50387. extra: 917/857,
  50388. bottom: 42/959
  50389. }
  50390. },
  50391. back: {
  50392. height: math.unit(7.5, "feet"),
  50393. name: "Back",
  50394. image: {
  50395. source: "./media/characters/sven-hatisson/back.svg",
  50396. extra: 903/856,
  50397. bottom: 15/918
  50398. }
  50399. },
  50400. },
  50401. [
  50402. {
  50403. name: "Base Height",
  50404. height: math.unit(7.5, "feet")
  50405. },
  50406. {
  50407. name: "Usual Height",
  50408. height: math.unit(13.5, "feet"),
  50409. default: true
  50410. },
  50411. {
  50412. name: "Smaller Macro",
  50413. height: math.unit(85, "feet")
  50414. },
  50415. {
  50416. name: "Moderate Macro",
  50417. height: math.unit(320, "feet")
  50418. },
  50419. {
  50420. name: "Large Macro",
  50421. height: math.unit(1000, "feet")
  50422. },
  50423. {
  50424. name: "Largest Size",
  50425. height: math.unit(2, "miles")
  50426. },
  50427. ]
  50428. ))
  50429. characterMakers.push(() => makeCharacter(
  50430. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50431. {
  50432. side: {
  50433. height: math.unit(1.8, "meters"),
  50434. weight: math.unit(275, "kg"),
  50435. name: "Side",
  50436. image: {
  50437. source: "./media/characters/terra/side.svg",
  50438. extra: 1273/1147,
  50439. bottom: 0/1273
  50440. }
  50441. },
  50442. },
  50443. [
  50444. {
  50445. name: "Normal",
  50446. height: math.unit(16.2, "meters"),
  50447. default: true
  50448. },
  50449. ]
  50450. ))
  50451. characterMakers.push(() => makeCharacter(
  50452. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50453. {
  50454. borzoiFront: {
  50455. height: math.unit(6 + 9/12, "feet"),
  50456. name: "Front",
  50457. image: {
  50458. source: "./media/characters/rae/borzoi-front.svg",
  50459. extra: 1161/1098,
  50460. bottom: 31/1192
  50461. },
  50462. form: "borzoi",
  50463. default: true
  50464. },
  50465. werewolfFront: {
  50466. height: math.unit(8 + 7/12, "feet"),
  50467. name: "Front",
  50468. image: {
  50469. source: "./media/characters/rae/werewolf-front.svg",
  50470. extra: 1411/1334,
  50471. bottom: 127/1538
  50472. },
  50473. form: "werewolf",
  50474. default: true
  50475. },
  50476. },
  50477. [
  50478. {
  50479. name: "Normal",
  50480. height: math.unit(6 + 9/12, "feet"),
  50481. default: true,
  50482. form: "borzoi"
  50483. },
  50484. {
  50485. name: "Normal",
  50486. height: math.unit(8 + 7/12, "feet"),
  50487. default: true,
  50488. form: "werewolf"
  50489. },
  50490. ],
  50491. {
  50492. "borzoi": {
  50493. name: "Borzoi",
  50494. default: true
  50495. },
  50496. "werewolf": {
  50497. name: "Werewolf",
  50498. },
  50499. }
  50500. ))
  50501. characterMakers.push(() => makeCharacter(
  50502. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50503. {
  50504. front: {
  50505. height: math.unit(8 + 7/12, "feet"),
  50506. weight: math.unit(482, "lb"),
  50507. name: "Front",
  50508. image: {
  50509. source: "./media/characters/kit/front.svg",
  50510. extra: 1247/1103,
  50511. bottom: 41/1288
  50512. }
  50513. },
  50514. back: {
  50515. height: math.unit(8 + 7/12, "feet"),
  50516. weight: math.unit(482, "lb"),
  50517. name: "Back",
  50518. image: {
  50519. source: "./media/characters/kit/back.svg",
  50520. extra: 1252/1123,
  50521. bottom: 21/1273
  50522. }
  50523. },
  50524. paw: {
  50525. height: math.unit(1.46, "feet"),
  50526. name: "Paw",
  50527. image: {
  50528. source: "./media/characters/kit/paw.svg"
  50529. }
  50530. },
  50531. },
  50532. [
  50533. {
  50534. name: "Normal",
  50535. height: math.unit(2.61, "meters"),
  50536. default: true
  50537. },
  50538. {
  50539. name: "\"Tall\"",
  50540. height: math.unit(8.21, "meters")
  50541. },
  50542. {
  50543. name: "Tall",
  50544. height: math.unit(19.6, "meters")
  50545. },
  50546. {
  50547. name: "Very Tall",
  50548. height: math.unit(57.91, "meters")
  50549. },
  50550. {
  50551. name: "Semi-Macro",
  50552. height: math.unit(138.64, "meters")
  50553. },
  50554. {
  50555. name: "Macro",
  50556. height: math.unit(831.99, "meters")
  50557. },
  50558. {
  50559. name: "EX-Macro",
  50560. height: math.unit(96451121, "meters")
  50561. },
  50562. {
  50563. name: "S1-Omnipotent",
  50564. height: math.unit(4.42074e+9, "meters")
  50565. },
  50566. {
  50567. name: "S2-Omnipotent",
  50568. height: math.unit(9.42074e+17, "meters")
  50569. },
  50570. {
  50571. name: "Omnipotent",
  50572. height: math.unit(4.23112e+24, "meters")
  50573. },
  50574. {
  50575. name: "Hypergod",
  50576. height: math.unit(5.05176e+27, "meters")
  50577. },
  50578. {
  50579. name: "Hypergod-EX",
  50580. height: math.unit(9.45532e+49, "meters")
  50581. },
  50582. {
  50583. name: "Hypergod-SP",
  50584. height: math.unit(9.45532e+195, "meters")
  50585. },
  50586. ]
  50587. ))
  50588. characterMakers.push(() => makeCharacter(
  50589. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50590. {
  50591. side: {
  50592. height: math.unit(0.6, "meters"),
  50593. weight: math.unit(24, "kg"),
  50594. name: "Side",
  50595. image: {
  50596. source: "./media/characters/celeste/side.svg",
  50597. extra: 810/517,
  50598. bottom: 53/863
  50599. }
  50600. },
  50601. },
  50602. [
  50603. {
  50604. name: "Velociraptor",
  50605. height: math.unit(0.6, "meters"),
  50606. default: true
  50607. },
  50608. {
  50609. name: "Utahraptor",
  50610. height: math.unit(1.8, "meters")
  50611. },
  50612. {
  50613. name: "Gallimimus",
  50614. height: math.unit(4.0, "meters")
  50615. },
  50616. {
  50617. name: "Large",
  50618. height: math.unit(20, "meters")
  50619. },
  50620. {
  50621. name: "Planetary",
  50622. height: math.unit(50, "megameters")
  50623. },
  50624. {
  50625. name: "Stellar",
  50626. height: math.unit(1.5, "gigameters")
  50627. },
  50628. {
  50629. name: "Galactic",
  50630. height: math.unit(100, "exameters")
  50631. },
  50632. ]
  50633. ))
  50634. characterMakers.push(() => makeCharacter(
  50635. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50636. {
  50637. front: {
  50638. height: math.unit(6, "feet"),
  50639. weight: math.unit(210, "lb"),
  50640. name: "Front",
  50641. image: {
  50642. source: "./media/characters/glacia/front.svg",
  50643. extra: 958/901,
  50644. bottom: 45/1003
  50645. }
  50646. },
  50647. },
  50648. [
  50649. {
  50650. name: "Macro",
  50651. height: math.unit(1000, "meters"),
  50652. default: true
  50653. },
  50654. ]
  50655. ))
  50656. characterMakers.push(() => makeCharacter(
  50657. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50658. {
  50659. front: {
  50660. height: math.unit(4, "meters"),
  50661. name: "Front",
  50662. image: {
  50663. source: "./media/characters/giri/front.svg",
  50664. extra: 966/894,
  50665. bottom: 21/987
  50666. }
  50667. },
  50668. },
  50669. [
  50670. {
  50671. name: "Normal",
  50672. height: math.unit(4, "meters"),
  50673. default: true
  50674. },
  50675. ]
  50676. ))
  50677. characterMakers.push(() => makeCharacter(
  50678. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50679. {
  50680. back: {
  50681. height: math.unit(4, "feet"),
  50682. weight: math.unit(37, "lb"),
  50683. name: "Back",
  50684. image: {
  50685. source: "./media/characters/tin/back.svg",
  50686. extra: 845/780,
  50687. bottom: 28/873
  50688. }
  50689. },
  50690. },
  50691. [
  50692. {
  50693. name: "Normal",
  50694. height: math.unit(4, "feet"),
  50695. default: true
  50696. },
  50697. ]
  50698. ))
  50699. characterMakers.push(() => makeCharacter(
  50700. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50701. {
  50702. front: {
  50703. height: math.unit(25, "feet"),
  50704. name: "Front",
  50705. image: {
  50706. source: "./media/characters/cadenza-vivace/front.svg",
  50707. extra: 1842/1578,
  50708. bottom: 30/1872
  50709. }
  50710. },
  50711. },
  50712. [
  50713. {
  50714. name: "Macro",
  50715. height: math.unit(25, "feet"),
  50716. default: true
  50717. },
  50718. ]
  50719. ))
  50720. characterMakers.push(() => makeCharacter(
  50721. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50722. {
  50723. front: {
  50724. height: math.unit(10, "feet"),
  50725. weight: math.unit(625, "kg"),
  50726. name: "Front",
  50727. image: {
  50728. source: "./media/characters/zain/front.svg",
  50729. extra: 1682/1498,
  50730. bottom: 223/1905
  50731. }
  50732. },
  50733. back: {
  50734. height: math.unit(10, "feet"),
  50735. weight: math.unit(625, "kg"),
  50736. name: "Back",
  50737. image: {
  50738. source: "./media/characters/zain/back.svg",
  50739. extra: 1814/1657,
  50740. bottom: 152/1966
  50741. }
  50742. },
  50743. head: {
  50744. height: math.unit(10, "feet"),
  50745. weight: math.unit(625, "kg"),
  50746. name: "Head",
  50747. image: {
  50748. source: "./media/characters/zain/head.svg",
  50749. extra: 1059/762,
  50750. bottom: 0/1059
  50751. }
  50752. },
  50753. },
  50754. [
  50755. {
  50756. name: "Normal",
  50757. height: math.unit(10, "feet"),
  50758. default: true
  50759. },
  50760. ]
  50761. ))
  50762. characterMakers.push(() => makeCharacter(
  50763. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50764. {
  50765. front: {
  50766. height: math.unit(6 + 5/12, "feet"),
  50767. weight: math.unit(750, "lb"),
  50768. name: "Front",
  50769. image: {
  50770. source: "./media/characters/ruchex/front.svg",
  50771. extra: 877/820,
  50772. bottom: 17/894
  50773. },
  50774. extraAttributes: {
  50775. "width": {
  50776. name: "Width",
  50777. power: 1,
  50778. type: "length",
  50779. base: math.unit(4.757, "feet")
  50780. },
  50781. }
  50782. },
  50783. },
  50784. [
  50785. {
  50786. name: "Normal",
  50787. height: math.unit(6 + 5/12, "feet"),
  50788. default: true
  50789. },
  50790. ]
  50791. ))
  50792. characterMakers.push(() => makeCharacter(
  50793. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50794. {
  50795. dressedFront: {
  50796. height: math.unit(191, "cm"),
  50797. weight: math.unit(80, "kg"),
  50798. name: "Front",
  50799. image: {
  50800. source: "./media/characters/buster/dressed-front.svg",
  50801. extra: 1022/973,
  50802. bottom: 69/1091
  50803. }
  50804. },
  50805. dressedBack: {
  50806. height: math.unit(191, "cm"),
  50807. weight: math.unit(80, "kg"),
  50808. name: "Back",
  50809. image: {
  50810. source: "./media/characters/buster/dressed-back.svg",
  50811. extra: 1018/970,
  50812. bottom: 55/1073
  50813. }
  50814. },
  50815. nudeFront: {
  50816. height: math.unit(191, "cm"),
  50817. weight: math.unit(80, "kg"),
  50818. name: "Front (Nude)",
  50819. image: {
  50820. source: "./media/characters/buster/nude-front.svg",
  50821. extra: 1022/973,
  50822. bottom: 69/1091
  50823. }
  50824. },
  50825. nudeBack: {
  50826. height: math.unit(191, "cm"),
  50827. weight: math.unit(80, "kg"),
  50828. name: "Back (Nude)",
  50829. image: {
  50830. source: "./media/characters/buster/nude-back.svg",
  50831. extra: 1018/970,
  50832. bottom: 55/1073
  50833. }
  50834. },
  50835. dick: {
  50836. height: math.unit(2.59, "feet"),
  50837. name: "Dick",
  50838. image: {
  50839. source: "./media/characters/buster/dick.svg"
  50840. }
  50841. },
  50842. ass: {
  50843. height: math.unit(1.2, "feet"),
  50844. name: "Ass",
  50845. image: {
  50846. source: "./media/characters/buster/ass.svg"
  50847. }
  50848. },
  50849. },
  50850. [
  50851. {
  50852. name: "Normal",
  50853. height: math.unit(191, "cm"),
  50854. default: true
  50855. },
  50856. ]
  50857. ))
  50858. characterMakers.push(() => makeCharacter(
  50859. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50860. {
  50861. side: {
  50862. height: math.unit(8.1, "feet"),
  50863. weight: math.unit(3500, "lb"),
  50864. name: "Side",
  50865. image: {
  50866. source: "./media/characters/sonya/side.svg",
  50867. extra: 1730/1317,
  50868. bottom: 86/1816
  50869. }
  50870. },
  50871. },
  50872. [
  50873. {
  50874. name: "Normal",
  50875. height: math.unit(8.1, "feet"),
  50876. default: true
  50877. },
  50878. ]
  50879. ))
  50880. characterMakers.push(() => makeCharacter(
  50881. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  50882. {
  50883. front: {
  50884. height: math.unit(6, "feet"),
  50885. weight: math.unit(150, "lb"),
  50886. name: "Front",
  50887. image: {
  50888. source: "./media/characters/cadence-andrysiak/front.svg",
  50889. extra: 1164/1121,
  50890. bottom: 60/1224
  50891. }
  50892. },
  50893. back: {
  50894. height: math.unit(6, "feet"),
  50895. weight: math.unit(150, "lb"),
  50896. name: "Back",
  50897. image: {
  50898. source: "./media/characters/cadence-andrysiak/back.svg",
  50899. extra: 1200/1165,
  50900. bottom: 9/1209
  50901. }
  50902. },
  50903. dressed: {
  50904. height: math.unit(6, "feet"),
  50905. weight: math.unit(150, "lb"),
  50906. name: "Dressed",
  50907. image: {
  50908. source: "./media/characters/cadence-andrysiak/dressed.svg",
  50909. extra: 1164/1121,
  50910. bottom: 60/1224
  50911. }
  50912. },
  50913. },
  50914. [
  50915. {
  50916. name: "Micro",
  50917. height: math.unit(1, "mm")
  50918. },
  50919. {
  50920. name: "Normal",
  50921. height: math.unit(6, "feet"),
  50922. default: true
  50923. },
  50924. ]
  50925. ))
  50926. characterMakers.push(() => makeCharacter(
  50927. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  50928. {
  50929. front: {
  50930. height: math.unit(60, "inches"),
  50931. weight: math.unit(16, "lb"),
  50932. preyCapacity: math.unit(80, "liters"),
  50933. name: "Front",
  50934. image: {
  50935. source: "./media/characters/penny-lynx/front.svg",
  50936. extra: 1959/1769,
  50937. bottom: 49/2008
  50938. }
  50939. },
  50940. },
  50941. [
  50942. {
  50943. name: "Nokia",
  50944. height: math.unit(2, "inches")
  50945. },
  50946. {
  50947. name: "Desktop",
  50948. height: math.unit(24, "inches")
  50949. },
  50950. {
  50951. name: "TV",
  50952. height: math.unit(60, "inches")
  50953. },
  50954. {
  50955. name: "Jumbotron",
  50956. height: math.unit(12, "feet")
  50957. },
  50958. {
  50959. name: "Billboard",
  50960. height: math.unit(48, "feet"),
  50961. default: true
  50962. },
  50963. {
  50964. name: "IMAX",
  50965. height: math.unit(96, "feet")
  50966. },
  50967. {
  50968. name: "SINGULARITY",
  50969. height: math.unit(864938, "miles")
  50970. },
  50971. ]
  50972. ))
  50973. characterMakers.push(() => makeCharacter(
  50974. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  50975. {
  50976. front: {
  50977. height: math.unit(5 + 4/12, "feet"),
  50978. weight: math.unit(230, "lb"),
  50979. name: "Front",
  50980. image: {
  50981. source: "./media/characters/sukebe/front.svg",
  50982. extra: 2130/2038,
  50983. bottom: 90/2220
  50984. }
  50985. },
  50986. back: {
  50987. height: math.unit(3.48, "feet"),
  50988. weight: math.unit(230, "lb"),
  50989. name: "Back",
  50990. image: {
  50991. source: "./media/characters/sukebe/back.svg",
  50992. extra: 1670/1604,
  50993. bottom: 0/1670
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Normal",
  51000. height: math.unit(5 + 4/12, "feet"),
  51001. default: true
  51002. },
  51003. ]
  51004. ))
  51005. characterMakers.push(() => makeCharacter(
  51006. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51007. {
  51008. front: {
  51009. height: math.unit(6, "feet"),
  51010. name: "Front",
  51011. image: {
  51012. source: "./media/characters/nylla/front.svg",
  51013. extra: 1868/1699,
  51014. bottom: 97/1965
  51015. }
  51016. },
  51017. back: {
  51018. height: math.unit(6, "feet"),
  51019. name: "Back",
  51020. image: {
  51021. source: "./media/characters/nylla/back.svg",
  51022. extra: 1889/1712,
  51023. bottom: 93/1982
  51024. }
  51025. },
  51026. frontNsfw: {
  51027. height: math.unit(6, "feet"),
  51028. name: "Front (NSFW)",
  51029. image: {
  51030. source: "./media/characters/nylla/front-nsfw.svg",
  51031. extra: 1868/1699,
  51032. bottom: 97/1965
  51033. },
  51034. extraAttributes: {
  51035. "dickLength": {
  51036. name: "Dick Length",
  51037. power: 1,
  51038. type: "length",
  51039. base: math.unit(1.4, "feet")
  51040. },
  51041. "cumVolume": {
  51042. name: "Cum Volume",
  51043. power: 3,
  51044. type: "volume",
  51045. base: math.unit(100, "mL")
  51046. },
  51047. }
  51048. },
  51049. backNsfw: {
  51050. height: math.unit(6, "feet"),
  51051. name: "Back (NSFW)",
  51052. image: {
  51053. source: "./media/characters/nylla/back-nsfw.svg",
  51054. extra: 1889/1712,
  51055. bottom: 93/1982
  51056. }
  51057. },
  51058. maw: {
  51059. height: math.unit(2.10, "feet"),
  51060. name: "Maw",
  51061. image: {
  51062. source: "./media/characters/nylla/maw.svg"
  51063. }
  51064. },
  51065. paws: {
  51066. height: math.unit(2.06, "feet"),
  51067. name: "Paws",
  51068. image: {
  51069. source: "./media/characters/nylla/paws.svg"
  51070. }
  51071. },
  51072. muzzle: {
  51073. height: math.unit(0.61, "feet"),
  51074. name: "Muzzle",
  51075. image: {
  51076. source: "./media/characters/nylla/muzzle.svg"
  51077. }
  51078. },
  51079. sheath: {
  51080. height: math.unit(1.305, "feet"),
  51081. name: "Sheath",
  51082. image: {
  51083. source: "./media/characters/nylla/sheath.svg"
  51084. }
  51085. },
  51086. },
  51087. [
  51088. {
  51089. name: "Micro",
  51090. height: math.unit(7.5, "inches")
  51091. },
  51092. {
  51093. name: "Normal",
  51094. height: math.unit(7, "feet"),
  51095. default: true
  51096. },
  51097. {
  51098. name: "Macro",
  51099. height: math.unit(60, "feet")
  51100. },
  51101. {
  51102. name: "Mega",
  51103. height: math.unit(200, "feet")
  51104. },
  51105. ]
  51106. ))
  51107. characterMakers.push(() => makeCharacter(
  51108. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51109. {
  51110. front: {
  51111. height: math.unit(10, "feet"),
  51112. weight: math.unit(2300, "lb"),
  51113. name: "Front",
  51114. image: {
  51115. source: "./media/characters/hunt3r/front.svg",
  51116. extra: 1909/1742,
  51117. bottom: 46/1955
  51118. }
  51119. },
  51120. },
  51121. [
  51122. {
  51123. name: "Normal",
  51124. height: math.unit(10, "feet"),
  51125. default: true
  51126. },
  51127. ]
  51128. ))
  51129. characterMakers.push(() => makeCharacter(
  51130. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51131. {
  51132. dressed: {
  51133. height: math.unit(11, "feet"),
  51134. weight: math.unit(18500, "lb"),
  51135. preyCapacity: math.unit(9, "people"),
  51136. name: "Dressed",
  51137. image: {
  51138. source: "./media/characters/cylphis/dressed.svg",
  51139. extra: 1028/1003,
  51140. bottom: 75/1103
  51141. },
  51142. },
  51143. undressed: {
  51144. height: math.unit(11, "feet"),
  51145. weight: math.unit(18500, "lb"),
  51146. preyCapacity: math.unit(9, "people"),
  51147. name: "Undressed",
  51148. image: {
  51149. source: "./media/characters/cylphis/undressed.svg",
  51150. extra: 1028/1003,
  51151. bottom: 75/1103
  51152. }
  51153. },
  51154. full: {
  51155. height: math.unit(11, "feet"),
  51156. weight: math.unit(18500 + 150*9, "lb"),
  51157. preyCapacity: math.unit(9, "people"),
  51158. name: "Full",
  51159. image: {
  51160. source: "./media/characters/cylphis/full.svg",
  51161. extra: 1028/1003,
  51162. bottom: 75/1103
  51163. }
  51164. },
  51165. },
  51166. [
  51167. {
  51168. name: "Small",
  51169. height: math.unit(8, "feet")
  51170. },
  51171. {
  51172. name: "Normal",
  51173. height: math.unit(11, "feet"),
  51174. default: true
  51175. },
  51176. ]
  51177. ))
  51178. characterMakers.push(() => makeCharacter(
  51179. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51180. {
  51181. front: {
  51182. height: math.unit(2 + 7/12, "feet"),
  51183. name: "Front",
  51184. image: {
  51185. source: "./media/characters/orishan/front.svg",
  51186. extra: 1058/1023,
  51187. bottom: 23/1081
  51188. }
  51189. },
  51190. back: {
  51191. height: math.unit(2 + 7/12, "feet"),
  51192. name: "Back",
  51193. image: {
  51194. source: "./media/characters/orishan/back.svg",
  51195. extra: 1058/1023,
  51196. bottom: 23/1081
  51197. }
  51198. },
  51199. },
  51200. [
  51201. {
  51202. name: "Micro",
  51203. height: math.unit(2, "cm")
  51204. },
  51205. {
  51206. name: "Normal",
  51207. height: math.unit(2 + 7/12, "feet"),
  51208. default: true
  51209. },
  51210. ]
  51211. ))
  51212. characterMakers.push(() => makeCharacter(
  51213. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51214. {
  51215. front: {
  51216. height: math.unit(3, "meters"),
  51217. weight: math.unit(508, "kg"),
  51218. name: "Front",
  51219. image: {
  51220. source: "./media/characters/seranis/front.svg",
  51221. extra: 1478/1454,
  51222. bottom: 41/1519
  51223. }
  51224. },
  51225. },
  51226. [
  51227. {
  51228. name: "Normal",
  51229. height: math.unit(3, "meters"),
  51230. default: true
  51231. },
  51232. {
  51233. name: "Macro",
  51234. height: math.unit(108, "meters")
  51235. },
  51236. {
  51237. name: "Megamacro",
  51238. height: math.unit(1250, "meters")
  51239. },
  51240. ]
  51241. ))
  51242. //characters
  51243. function makeCharacters() {
  51244. const results = [];
  51245. characterMakers.forEach(character => {
  51246. results.push(character());
  51247. });
  51248. return results;
  51249. }