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

52072 строки
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. }
  2007. //species
  2008. function getSpeciesInfo(speciesList) {
  2009. let result = new Set();
  2010. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2011. result.add(entry)
  2012. });
  2013. return Array.from(result);
  2014. };
  2015. function getSpeciesInfoHelper(species) {
  2016. if (!speciesData[species]) {
  2017. console.warn(species + " doesn't exist");
  2018. return [];
  2019. }
  2020. if (speciesData[species].parents) {
  2021. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2022. } else {
  2023. return [species];
  2024. }
  2025. }
  2026. characterMakers.push(() => makeCharacter(
  2027. {
  2028. name: "Fen",
  2029. species: ["crux"],
  2030. description: {
  2031. title: "Bio",
  2032. text: "Very furry. Sheds on everything."
  2033. },
  2034. tags: [
  2035. "anthro",
  2036. "goo"
  2037. ]
  2038. },
  2039. {
  2040. front: {
  2041. height: math.unit(12, "feet"),
  2042. weight: math.unit(2400, "lb"),
  2043. name: "Front",
  2044. image: {
  2045. source: "./media/characters/fen/front.svg",
  2046. extra: 1804/1562,
  2047. bottom: 205/2009
  2048. },
  2049. extraAttributes: {
  2050. pawSize: {
  2051. name: "Paw Size",
  2052. power: 2,
  2053. type: "area",
  2054. base: math.unit(0.35, "m^2")
  2055. }
  2056. }
  2057. },
  2058. diving: {
  2059. height: math.unit(4.9, "meters"),
  2060. weight: math.unit(2400, "lb"),
  2061. name: "Diving",
  2062. image: {
  2063. source: "./media/characters/fen/diving.svg"
  2064. }
  2065. },
  2066. goo: {
  2067. height: math.unit(12, "feet"),
  2068. weight: math.unit(3600, "lb"),
  2069. volume: math.unit(1000, "liters"),
  2070. preyCapacity: math.unit(6, "people"),
  2071. name: "Goo",
  2072. image: {
  2073. source: "./media/characters/fen/goo.svg",
  2074. extra: 1307/1071,
  2075. bottom: 134/1441
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(5.03, "feet"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/fen/maw.svg"
  2083. }
  2084. },
  2085. gooCeiling: {
  2086. height: math.unit(6.6, "feet"),
  2087. weight: math.unit(3000, "lb"),
  2088. volume: math.unit(1000, "liters"),
  2089. preyCapacity: math.unit(6, "people"),
  2090. name: "Goo (Ceiling)",
  2091. image: {
  2092. source: "./media/characters/fen/goo-ceiling.svg"
  2093. }
  2094. },
  2095. back: {
  2096. height: math.unit(12, "feet"),
  2097. weight: math.unit(2400, "lb"),
  2098. name: "Back",
  2099. image: {
  2100. source: "./media/characters/fen/back.svg",
  2101. },
  2102. info: {
  2103. description: {
  2104. mode: "append",
  2105. text: "\n\nHe is not currently looking at you."
  2106. }
  2107. }
  2108. },
  2109. full: {
  2110. height: math.unit(1.85, "meter"),
  2111. weight: math.unit(3200, "lb"),
  2112. name: "Full",
  2113. image: {
  2114. source: "./media/characters/fen/full.svg",
  2115. extra: 1133/859,
  2116. bottom: 145/1278
  2117. },
  2118. info: {
  2119. description: {
  2120. mode: "append",
  2121. text: "\n\nMunch."
  2122. }
  2123. }
  2124. },
  2125. gooLounging: {
  2126. height: math.unit(4.53, "feet"),
  2127. weight: math.unit(3000, "lb"),
  2128. preyCapacity: math.unit(6, "people"),
  2129. name: "Goo (Lounging)",
  2130. image: {
  2131. source: "./media/characters/fen/goo-lounging.svg",
  2132. bottom: 116 / 613
  2133. }
  2134. },
  2135. lounging: {
  2136. height: math.unit(10.52, "feet"),
  2137. weight: math.unit(2400, "lb"),
  2138. name: "Lounging",
  2139. image: {
  2140. source: "./media/characters/fen/lounging.svg"
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Small",
  2147. height: math.unit(2.2428, "meter")
  2148. },
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(12, "feet"),
  2152. default: true,
  2153. },
  2154. {
  2155. name: "Big",
  2156. height: math.unit(20, "feet")
  2157. },
  2158. {
  2159. name: "Minimacro",
  2160. height: math.unit(40, "feet"),
  2161. info: {
  2162. description: {
  2163. mode: "append",
  2164. text: "\n\nTOO DAMN BIG"
  2165. }
  2166. }
  2167. },
  2168. {
  2169. name: "Macro",
  2170. height: math.unit(100, "feet"),
  2171. info: {
  2172. description: {
  2173. mode: "append",
  2174. text: "\n\nTOO DAMN BIG"
  2175. }
  2176. }
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(2, "miles")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(10, "earths")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(183, "cm"),
  2193. weight: math.unit(80, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/sofia-fluttertail/front.svg",
  2197. bottom: 0.01,
  2198. extra: 2154 / 2081
  2199. }
  2200. },
  2201. frontAlt: {
  2202. height: math.unit(183, "cm"),
  2203. weight: math.unit(80, "kg"),
  2204. name: "Front (alt)",
  2205. image: {
  2206. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(183, "cm"),
  2211. weight: math.unit(80, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/sofia-fluttertail/back.svg"
  2215. }
  2216. },
  2217. kneeling: {
  2218. height: math.unit(125, "cm"),
  2219. weight: math.unit(80, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2223. extra: 1033 / 977,
  2224. bottom: 23.7 / 1057
  2225. }
  2226. },
  2227. maw: {
  2228. height: math.unit(183 / 5, "cm"),
  2229. name: "Maw",
  2230. image: {
  2231. source: "./media/characters/sofia-fluttertail/maw.svg"
  2232. }
  2233. },
  2234. mawcloseup: {
  2235. height: math.unit(183 / 5 * 0.41, "cm"),
  2236. name: "Maw (Closeup)",
  2237. image: {
  2238. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2239. }
  2240. },
  2241. paws: {
  2242. height: math.unit(1.17, "feet"),
  2243. name: "Paws",
  2244. image: {
  2245. source: "./media/characters/sofia-fluttertail/paws.svg",
  2246. extra: 851 / 851,
  2247. bottom: 17 / 868
  2248. }
  2249. },
  2250. },
  2251. [
  2252. {
  2253. name: "Normal",
  2254. height: math.unit(1.83, "meter")
  2255. },
  2256. {
  2257. name: "Size Thief",
  2258. height: math.unit(18, "feet")
  2259. },
  2260. {
  2261. name: "50 Foot Collie",
  2262. height: math.unit(50, "feet")
  2263. },
  2264. {
  2265. name: "Macro",
  2266. height: math.unit(96, "feet"),
  2267. default: true
  2268. },
  2269. {
  2270. name: "Megamerger",
  2271. height: math.unit(650, "feet")
  2272. },
  2273. ]
  2274. ))
  2275. characterMakers.push(() => makeCharacter(
  2276. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2277. {
  2278. front: {
  2279. height: math.unit(7, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Front",
  2282. image: {
  2283. source: "./media/characters/march/front.svg",
  2284. extra: 1992/1851,
  2285. bottom: 39/2031
  2286. }
  2287. },
  2288. foot: {
  2289. height: math.unit(0.9, "feet"),
  2290. name: "Foot",
  2291. image: {
  2292. source: "./media/characters/march/foot.svg"
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Normal",
  2299. height: math.unit(7.9, "feet")
  2300. },
  2301. {
  2302. name: "Macro",
  2303. height: math.unit(220, "meters")
  2304. },
  2305. {
  2306. name: "Megamacro",
  2307. height: math.unit(2.98, "km"),
  2308. default: true
  2309. },
  2310. {
  2311. name: "Gigamacro",
  2312. height: math.unit(15963, "km")
  2313. },
  2314. {
  2315. name: "Teramacro",
  2316. height: math.unit(2980000000, "km")
  2317. },
  2318. {
  2319. name: "Examacro",
  2320. height: math.unit(250, "parsecs")
  2321. },
  2322. ]
  2323. ))
  2324. characterMakers.push(() => makeCharacter(
  2325. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2326. {
  2327. front: {
  2328. height: math.unit(6, "feet"),
  2329. weight: math.unit(60, "kg"),
  2330. name: "Front",
  2331. image: {
  2332. source: "./media/characters/noir/front.svg",
  2333. extra: 1,
  2334. bottom: 0.032
  2335. }
  2336. },
  2337. },
  2338. [
  2339. {
  2340. name: "Normal",
  2341. height: math.unit(6.6, "feet")
  2342. },
  2343. {
  2344. name: "Macro",
  2345. height: math.unit(500, "feet")
  2346. },
  2347. {
  2348. name: "Megamacro",
  2349. height: math.unit(2.5, "km"),
  2350. default: true
  2351. },
  2352. {
  2353. name: "Gigamacro",
  2354. height: math.unit(22500, "km")
  2355. },
  2356. {
  2357. name: "Teramacro",
  2358. height: math.unit(2500000000, "km")
  2359. },
  2360. {
  2361. name: "Examacro",
  2362. height: math.unit(200, "parsecs")
  2363. },
  2364. ]
  2365. ))
  2366. characterMakers.push(() => makeCharacter(
  2367. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2368. {
  2369. front: {
  2370. height: math.unit(7, "feet"),
  2371. weight: math.unit(100, "kg"),
  2372. name: "Front",
  2373. image: {
  2374. source: "./media/characters/okuri/front.svg",
  2375. extra: 739/665,
  2376. bottom: 39/778
  2377. }
  2378. },
  2379. back: {
  2380. height: math.unit(7, "feet"),
  2381. weight: math.unit(100, "kg"),
  2382. name: "Back",
  2383. image: {
  2384. source: "./media/characters/okuri/back.svg",
  2385. extra: 734/653,
  2386. bottom: 13/747
  2387. }
  2388. },
  2389. sitting: {
  2390. height: math.unit(2.95, "feet"),
  2391. weight: math.unit(100, "kg"),
  2392. name: "Sitting",
  2393. image: {
  2394. source: "./media/characters/okuri/sitting.svg",
  2395. extra: 370/318,
  2396. bottom: 99/469
  2397. }
  2398. },
  2399. },
  2400. [
  2401. {
  2402. name: "Smallest",
  2403. height: math.unit(5 + 2/12, "feet")
  2404. },
  2405. {
  2406. name: "Smaller",
  2407. height: math.unit(300, "feet")
  2408. },
  2409. {
  2410. name: "Small",
  2411. height: math.unit(1000, "feet")
  2412. },
  2413. {
  2414. name: "Macro",
  2415. height: math.unit(1, "mile")
  2416. },
  2417. {
  2418. name: "Mega Macro (Small)",
  2419. height: math.unit(20, "km")
  2420. },
  2421. {
  2422. name: "Mega Macro (Large)",
  2423. height: math.unit(600, "km")
  2424. },
  2425. {
  2426. name: "Giga Macro",
  2427. height: math.unit(10000, "km")
  2428. },
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(577560, "km"),
  2432. default: true
  2433. },
  2434. {
  2435. name: "Large",
  2436. height: math.unit(4, "galaxies")
  2437. },
  2438. {
  2439. name: "Largest",
  2440. height: math.unit(15, "multiverses")
  2441. },
  2442. ]
  2443. ))
  2444. characterMakers.push(() => makeCharacter(
  2445. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2446. {
  2447. front: {
  2448. height: math.unit(7, "feet"),
  2449. weight: math.unit(100, "kg"),
  2450. name: "Front",
  2451. image: {
  2452. source: "./media/characters/manny/front.svg",
  2453. extra: 1,
  2454. bottom: 0.06
  2455. }
  2456. },
  2457. back: {
  2458. height: math.unit(7, "feet"),
  2459. weight: math.unit(100, "kg"),
  2460. name: "Back",
  2461. image: {
  2462. source: "./media/characters/manny/back.svg",
  2463. extra: 1,
  2464. bottom: 0.014
  2465. }
  2466. },
  2467. },
  2468. [
  2469. {
  2470. name: "Normal",
  2471. height: math.unit(7, "feet"),
  2472. },
  2473. {
  2474. name: "Macro",
  2475. height: math.unit(78, "feet"),
  2476. default: true
  2477. },
  2478. {
  2479. name: "Macro+",
  2480. height: math.unit(300, "meters")
  2481. },
  2482. {
  2483. name: "Macro++",
  2484. height: math.unit(2400, "meters")
  2485. },
  2486. {
  2487. name: "Megamacro",
  2488. height: math.unit(5167, "meters")
  2489. },
  2490. {
  2491. name: "Gigamacro",
  2492. height: math.unit(41769, "miles")
  2493. },
  2494. ]
  2495. ))
  2496. characterMakers.push(() => makeCharacter(
  2497. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2498. {
  2499. front: {
  2500. height: math.unit(7, "feet"),
  2501. weight: math.unit(100, "kg"),
  2502. name: "Front",
  2503. image: {
  2504. source: "./media/characters/adake/front-1.svg"
  2505. }
  2506. },
  2507. frontAlt: {
  2508. height: math.unit(7, "feet"),
  2509. weight: math.unit(100, "kg"),
  2510. name: "Front (Alt)",
  2511. image: {
  2512. source: "./media/characters/adake/front-2.svg",
  2513. extra: 1,
  2514. bottom: 0.01
  2515. }
  2516. },
  2517. back: {
  2518. height: math.unit(7, "feet"),
  2519. weight: math.unit(100, "kg"),
  2520. name: "Back",
  2521. image: {
  2522. source: "./media/characters/adake/back.svg",
  2523. }
  2524. },
  2525. kneel: {
  2526. height: math.unit(5.385, "feet"),
  2527. weight: math.unit(100, "kg"),
  2528. name: "Kneeling",
  2529. image: {
  2530. source: "./media/characters/adake/kneel.svg",
  2531. bottom: 0.052
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(7, "feet"),
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(78, "feet"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Macro+",
  2547. height: math.unit(300, "meters")
  2548. },
  2549. {
  2550. name: "Macro++",
  2551. height: math.unit(2400, "meters")
  2552. },
  2553. {
  2554. name: "Megamacro",
  2555. height: math.unit(5167, "meters")
  2556. },
  2557. {
  2558. name: "Gigamacro",
  2559. height: math.unit(41769, "miles")
  2560. },
  2561. ]
  2562. ))
  2563. characterMakers.push(() => makeCharacter(
  2564. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2565. {
  2566. front: {
  2567. height: math.unit(1.65, "meters"),
  2568. weight: math.unit(50, "kg"),
  2569. name: "Front",
  2570. image: {
  2571. source: "./media/characters/elijah/front.svg",
  2572. extra: 858 / 830,
  2573. bottom: 95.5 / 953.8559
  2574. }
  2575. },
  2576. back: {
  2577. height: math.unit(1.65, "meters"),
  2578. weight: math.unit(50, "kg"),
  2579. name: "Back",
  2580. image: {
  2581. source: "./media/characters/elijah/back.svg",
  2582. extra: 895 / 850,
  2583. bottom: 5.3 / 897.956
  2584. }
  2585. },
  2586. frontNsfw: {
  2587. height: math.unit(1.65, "meters"),
  2588. weight: math.unit(50, "kg"),
  2589. name: "Front (NSFW)",
  2590. image: {
  2591. source: "./media/characters/elijah/front-nsfw.svg",
  2592. extra: 858 / 830,
  2593. bottom: 95.5 / 953.8559
  2594. }
  2595. },
  2596. backNsfw: {
  2597. height: math.unit(1.65, "meters"),
  2598. weight: math.unit(50, "kg"),
  2599. name: "Back (NSFW)",
  2600. image: {
  2601. source: "./media/characters/elijah/back-nsfw.svg",
  2602. extra: 895 / 850,
  2603. bottom: 5.3 / 897.956
  2604. }
  2605. },
  2606. dick: {
  2607. height: math.unit(1, "feet"),
  2608. name: "Dick",
  2609. image: {
  2610. source: "./media/characters/elijah/dick.svg"
  2611. }
  2612. },
  2613. beakOpen: {
  2614. height: math.unit(1.25, "feet"),
  2615. name: "Beak (Open)",
  2616. image: {
  2617. source: "./media/characters/elijah/beak-open.svg"
  2618. }
  2619. },
  2620. beakShut: {
  2621. height: math.unit(1.25, "feet"),
  2622. name: "Beak (Shut)",
  2623. image: {
  2624. source: "./media/characters/elijah/beak-shut.svg"
  2625. }
  2626. },
  2627. footFlexing: {
  2628. height: math.unit(1.61, "feet"),
  2629. name: "Foot (Flexing)",
  2630. image: {
  2631. source: "./media/characters/elijah/foot-flexing.svg"
  2632. }
  2633. },
  2634. footStepping: {
  2635. height: math.unit(1.44, "feet"),
  2636. name: "Foot (Stepping)",
  2637. image: {
  2638. source: "./media/characters/elijah/foot-stepping.svg"
  2639. }
  2640. },
  2641. plantigradeLeg: {
  2642. height: math.unit(2.34, "feet"),
  2643. name: "Plantigrade Leg",
  2644. image: {
  2645. source: "./media/characters/elijah/plantigrade-leg.svg"
  2646. }
  2647. },
  2648. plantigradeFootLeft: {
  2649. height: math.unit(0.9, "feet"),
  2650. name: "Plantigrade Foot (Left)",
  2651. image: {
  2652. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2653. }
  2654. },
  2655. plantigradeFootRight: {
  2656. height: math.unit(0.9, "feet"),
  2657. name: "Plantigrade Foot (Right)",
  2658. image: {
  2659. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2660. }
  2661. },
  2662. },
  2663. [
  2664. {
  2665. name: "Normal",
  2666. height: math.unit(1.65, "meters")
  2667. },
  2668. {
  2669. name: "Macro",
  2670. height: math.unit(55, "meters"),
  2671. default: true
  2672. },
  2673. {
  2674. name: "Macro+",
  2675. height: math.unit(105, "meters")
  2676. },
  2677. ]
  2678. ))
  2679. characterMakers.push(() => makeCharacter(
  2680. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2681. {
  2682. front: {
  2683. height: math.unit(7 + 2/12, "feet"),
  2684. weight: math.unit(320, "kg"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/rai/front.svg",
  2688. extra: 1802/1696,
  2689. bottom: 68/1870
  2690. }
  2691. },
  2692. frontDressed: {
  2693. height: math.unit(7 + 2/12, "feet"),
  2694. weight: math.unit(320, "kg"),
  2695. name: "Front (Dressed)",
  2696. image: {
  2697. source: "./media/characters/rai/front-dressed.svg",
  2698. extra: 1802/1696,
  2699. bottom: 68/1870
  2700. }
  2701. },
  2702. side: {
  2703. height: math.unit(7 + 2/12, "feet"),
  2704. weight: math.unit(320, "kg"),
  2705. name: "Side",
  2706. image: {
  2707. source: "./media/characters/rai/side.svg",
  2708. extra: 1789/1710,
  2709. bottom: 115/1904
  2710. }
  2711. },
  2712. back: {
  2713. height: math.unit(7 + 2/12, "feet"),
  2714. weight: math.unit(320, "kg"),
  2715. name: "Back",
  2716. image: {
  2717. source: "./media/characters/rai/back.svg",
  2718. extra: 1770/1707,
  2719. bottom: 28/1798
  2720. }
  2721. },
  2722. feral: {
  2723. height: math.unit(9.5, "feet"),
  2724. weight: math.unit(640, "kg"),
  2725. name: "Feral",
  2726. image: {
  2727. source: "./media/characters/rai/feral.svg",
  2728. extra: 945/553,
  2729. bottom: 176/1121
  2730. }
  2731. },
  2732. dragon: {
  2733. height: math.unit(23, "feet"),
  2734. weight: math.unit(50000, "lb"),
  2735. name: "Dragon",
  2736. image: {
  2737. source: "./media/characters/rai/dragon.svg",
  2738. extra: 2498 / 2030,
  2739. bottom: 85.2 / 2584
  2740. }
  2741. },
  2742. maw: {
  2743. height: math.unit(1.69, "feet"),
  2744. name: "Maw",
  2745. image: {
  2746. source: "./media/characters/rai/maw.svg"
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(7 + 2/12, "feet")
  2754. },
  2755. {
  2756. name: "Big",
  2757. height: math.unit(11, "feet")
  2758. },
  2759. {
  2760. name: "Macro",
  2761. height: math.unit(302, "feet"),
  2762. default: true
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2768. {
  2769. frontDressed: {
  2770. height: math.unit(216, "feet"),
  2771. weight: math.unit(7000000, "lb"),
  2772. name: "Front (Dressed)",
  2773. image: {
  2774. source: "./media/characters/jazzy/front-dressed.svg",
  2775. extra: 2738 / 2651,
  2776. bottom: 41.8 / 2786
  2777. }
  2778. },
  2779. backDressed: {
  2780. height: math.unit(216, "feet"),
  2781. weight: math.unit(7000000, "lb"),
  2782. name: "Back (Dressed)",
  2783. image: {
  2784. source: "./media/characters/jazzy/back-dressed.svg",
  2785. extra: 2775 / 2673,
  2786. bottom: 36.8 / 2817
  2787. }
  2788. },
  2789. front: {
  2790. height: math.unit(216, "feet"),
  2791. weight: math.unit(7000000, "lb"),
  2792. name: "Front",
  2793. image: {
  2794. source: "./media/characters/jazzy/front.svg",
  2795. extra: 2738 / 2651,
  2796. bottom: 41.8 / 2786
  2797. }
  2798. },
  2799. back: {
  2800. height: math.unit(216, "feet"),
  2801. weight: math.unit(7000000, "lb"),
  2802. name: "Back",
  2803. image: {
  2804. source: "./media/characters/jazzy/back.svg",
  2805. extra: 2775 / 2673,
  2806. bottom: 36.8 / 2817
  2807. }
  2808. },
  2809. maw: {
  2810. height: math.unit(20, "feet"),
  2811. name: "Maw",
  2812. image: {
  2813. source: "./media/characters/jazzy/maw.svg"
  2814. }
  2815. },
  2816. paws: {
  2817. height: math.unit(27.5, "feet"),
  2818. name: "Paws",
  2819. image: {
  2820. source: "./media/characters/jazzy/paws.svg"
  2821. }
  2822. },
  2823. eye: {
  2824. height: math.unit(4.4, "feet"),
  2825. name: "Eye",
  2826. image: {
  2827. source: "./media/characters/jazzy/eye.svg"
  2828. }
  2829. },
  2830. droneOffense: {
  2831. height: math.unit(9.5, "inches"),
  2832. name: "Drone (Offense)",
  2833. image: {
  2834. source: "./media/characters/jazzy/drone-offense.svg"
  2835. }
  2836. },
  2837. droneRecon: {
  2838. height: math.unit(9.5, "inches"),
  2839. name: "Drone (Recon)",
  2840. image: {
  2841. source: "./media/characters/jazzy/drone-recon.svg"
  2842. }
  2843. },
  2844. droneDefense: {
  2845. height: math.unit(9.5, "inches"),
  2846. name: "Drone (Defense)",
  2847. image: {
  2848. source: "./media/characters/jazzy/drone-defense.svg"
  2849. }
  2850. },
  2851. },
  2852. [
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(216, "feet"),
  2856. default: true
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(9 + 6/12, "feet"),
  2865. weight: math.unit(700, "lb"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/flamm/front.svg",
  2869. extra: 1751/1632,
  2870. bottom: 46/1797
  2871. }
  2872. },
  2873. buff: {
  2874. height: math.unit(9 + 6/12, "feet"),
  2875. weight: math.unit(950, "lb"),
  2876. name: "Buff",
  2877. image: {
  2878. source: "./media/characters/flamm/buff.svg",
  2879. extra: 3018/2874,
  2880. bottom: 221/3239
  2881. }
  2882. },
  2883. },
  2884. [
  2885. {
  2886. name: "Normal",
  2887. height: math.unit(9.5, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(200, "feet"),
  2892. default: true
  2893. },
  2894. ]
  2895. ))
  2896. characterMakers.push(() => makeCharacter(
  2897. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2898. {
  2899. front: {
  2900. height: math.unit(5 + 3/12, "feet"),
  2901. weight: math.unit(60, "kg"),
  2902. name: "Front",
  2903. image: {
  2904. source: "./media/characters/zephiro/front.svg",
  2905. extra: 2309 / 2162,
  2906. bottom: 0.069
  2907. }
  2908. },
  2909. side: {
  2910. height: math.unit(5 + 3/12, "feet"),
  2911. weight: math.unit(60, "kg"),
  2912. name: "Side",
  2913. image: {
  2914. source: "./media/characters/zephiro/side.svg",
  2915. extra: 2403 / 2279,
  2916. bottom: 0.015
  2917. }
  2918. },
  2919. back: {
  2920. height: math.unit(5 + 3/12, "feet"),
  2921. weight: math.unit(60, "kg"),
  2922. name: "Back",
  2923. image: {
  2924. source: "./media/characters/zephiro/back.svg",
  2925. extra: 2373 / 2244,
  2926. bottom: 0.013
  2927. }
  2928. },
  2929. hand: {
  2930. height: math.unit(0.68, "feet"),
  2931. name: "Hand",
  2932. image: {
  2933. source: "./media/characters/zephiro/hand.svg"
  2934. }
  2935. },
  2936. paw: {
  2937. height: math.unit(1, "feet"),
  2938. name: "Paw",
  2939. image: {
  2940. source: "./media/characters/zephiro/paw.svg"
  2941. }
  2942. },
  2943. beans: {
  2944. height: math.unit(0.93, "feet"),
  2945. name: "Beans",
  2946. image: {
  2947. source: "./media/characters/zephiro/beans.svg"
  2948. }
  2949. },
  2950. },
  2951. [
  2952. {
  2953. name: "Micro",
  2954. height: math.unit(3, "inches")
  2955. },
  2956. {
  2957. name: "Normal",
  2958. height: math.unit(5 + 3 / 12, "feet"),
  2959. default: true
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(118, "feet")
  2964. },
  2965. ]
  2966. ))
  2967. characterMakers.push(() => makeCharacter(
  2968. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2969. {
  2970. front: {
  2971. height: math.unit(5, "feet"),
  2972. weight: math.unit(90, "kg"),
  2973. name: "Front",
  2974. image: {
  2975. source: "./media/characters/fory/front.svg",
  2976. extra: 2862 / 2674,
  2977. bottom: 180 / 3043.8
  2978. }
  2979. },
  2980. back: {
  2981. height: math.unit(5, "feet"),
  2982. weight: math.unit(90, "kg"),
  2983. name: "Back",
  2984. image: {
  2985. source: "./media/characters/fory/back.svg",
  2986. extra: 2962 / 2791,
  2987. bottom: 106 / 3071.8
  2988. }
  2989. },
  2990. foot: {
  2991. height: math.unit(2.14, "feet"),
  2992. name: "Foot",
  2993. image: {
  2994. source: "./media/characters/fory/foot.svg"
  2995. }
  2996. },
  2997. },
  2998. [
  2999. {
  3000. name: "Normal",
  3001. height: math.unit(5, "feet")
  3002. },
  3003. {
  3004. name: "Macro",
  3005. height: math.unit(50, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Megamacro",
  3010. height: math.unit(10, "miles")
  3011. },
  3012. {
  3013. name: "Gigamacro",
  3014. height: math.unit(5, "earths")
  3015. },
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3020. {
  3021. front: {
  3022. height: math.unit(7, "feet"),
  3023. weight: math.unit(90, "kg"),
  3024. name: "Front",
  3025. image: {
  3026. source: "./media/characters/kurrikage/front.svg",
  3027. extra: 1845/1733,
  3028. bottom: 119/1964
  3029. }
  3030. },
  3031. back: {
  3032. height: math.unit(7, "feet"),
  3033. weight: math.unit(90, "kg"),
  3034. name: "Back",
  3035. image: {
  3036. source: "./media/characters/kurrikage/back.svg",
  3037. extra: 1790/1677,
  3038. bottom: 61/1851
  3039. }
  3040. },
  3041. dressed: {
  3042. height: math.unit(7, "feet"),
  3043. weight: math.unit(90, "kg"),
  3044. name: "Dressed",
  3045. image: {
  3046. source: "./media/characters/kurrikage/dressed.svg",
  3047. extra: 1845/1733,
  3048. bottom: 119/1964
  3049. }
  3050. },
  3051. foot: {
  3052. height: math.unit(1.5, "feet"),
  3053. name: "Foot",
  3054. image: {
  3055. source: "./media/characters/kurrikage/foot.svg"
  3056. }
  3057. },
  3058. staff: {
  3059. height: math.unit(6.7, "feet"),
  3060. name: "Staff",
  3061. image: {
  3062. source: "./media/characters/kurrikage/staff.svg"
  3063. }
  3064. },
  3065. peek: {
  3066. height: math.unit(1.05, "feet"),
  3067. name: "Peeking",
  3068. image: {
  3069. source: "./media/characters/kurrikage/peek.svg",
  3070. bottom: 0.08
  3071. }
  3072. },
  3073. },
  3074. [
  3075. {
  3076. name: "Normal",
  3077. height: math.unit(12, "feet"),
  3078. default: true
  3079. },
  3080. {
  3081. name: "Big",
  3082. height: math.unit(20, "feet")
  3083. },
  3084. {
  3085. name: "Macro",
  3086. height: math.unit(500, "feet")
  3087. },
  3088. {
  3089. name: "Megamacro",
  3090. height: math.unit(20, "miles")
  3091. },
  3092. ]
  3093. ))
  3094. characterMakers.push(() => makeCharacter(
  3095. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3096. {
  3097. front: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/shingo/front.svg",
  3103. extra: 1900/1825,
  3104. bottom: 82/1982
  3105. }
  3106. },
  3107. side: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(75, "kg"),
  3110. name: "Side",
  3111. image: {
  3112. source: "./media/characters/shingo/side.svg",
  3113. extra: 1930/1865,
  3114. bottom: 16/1946
  3115. }
  3116. },
  3117. back: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Back",
  3121. image: {
  3122. source: "./media/characters/shingo/back.svg",
  3123. extra: 1922/1852,
  3124. bottom: 16/1938
  3125. }
  3126. },
  3127. frontDressed: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(150, "lb"),
  3130. name: "Front-dressed",
  3131. image: {
  3132. source: "./media/characters/shingo/front-dressed.svg",
  3133. extra: 1900/1825,
  3134. bottom: 82/1982
  3135. }
  3136. },
  3137. paw: {
  3138. height: math.unit(1.29, "feet"),
  3139. name: "Paw",
  3140. image: {
  3141. source: "./media/characters/shingo/paw.svg"
  3142. }
  3143. },
  3144. hand: {
  3145. height: math.unit(1.07, "feet"),
  3146. name: "Hand",
  3147. image: {
  3148. source: "./media/characters/shingo/hand.svg"
  3149. }
  3150. },
  3151. frontAlt: {
  3152. height: math.unit(6, "feet"),
  3153. weight: math.unit(75, "kg"),
  3154. name: "Front (Alt)",
  3155. image: {
  3156. source: "./media/characters/shingo/front-alt.svg",
  3157. extra: 3511 / 3338,
  3158. bottom: 0.005
  3159. }
  3160. },
  3161. frontAlt2: {
  3162. height: math.unit(6, "feet"),
  3163. weight: math.unit(75, "kg"),
  3164. name: "Front (Alt 2)",
  3165. image: {
  3166. source: "./media/characters/shingo/front-alt-2.svg",
  3167. extra: 706/681,
  3168. bottom: 11/717
  3169. }
  3170. },
  3171. pawAlt: {
  3172. height: math.unit(1, "feet"),
  3173. name: "Paw (Alt)",
  3174. image: {
  3175. source: "./media/characters/shingo/paw-alt.svg"
  3176. }
  3177. },
  3178. },
  3179. [
  3180. {
  3181. name: "Micro",
  3182. height: math.unit(4, "inches")
  3183. },
  3184. {
  3185. name: "Normal",
  3186. height: math.unit(6, "feet"),
  3187. default: true
  3188. },
  3189. {
  3190. name: "Macro",
  3191. height: math.unit(108, "feet")
  3192. },
  3193. {
  3194. name: "Macro+",
  3195. height: math.unit(1500, "feet")
  3196. },
  3197. ]
  3198. ))
  3199. characterMakers.push(() => makeCharacter(
  3200. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3201. {
  3202. side: {
  3203. height: math.unit(6, "feet"),
  3204. weight: math.unit(75, "kg"),
  3205. name: "Side",
  3206. image: {
  3207. source: "./media/characters/aigey/side.svg"
  3208. }
  3209. },
  3210. },
  3211. [
  3212. {
  3213. name: "Macro",
  3214. height: math.unit(200, "feet"),
  3215. default: true
  3216. },
  3217. {
  3218. name: "Megamacro",
  3219. height: math.unit(100, "miles")
  3220. },
  3221. ]
  3222. )
  3223. )
  3224. characterMakers.push(() => makeCharacter(
  3225. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3226. {
  3227. front: {
  3228. height: math.unit(5 + 5 / 12, "feet"),
  3229. weight: math.unit(75, "kg"),
  3230. name: "Front",
  3231. image: {
  3232. source: "./media/characters/natasha/front.svg",
  3233. extra: 859 / 824,
  3234. bottom: 23 / 879.6
  3235. }
  3236. },
  3237. frontNsfw: {
  3238. height: math.unit(5 + 5 / 12, "feet"),
  3239. weight: math.unit(75, "kg"),
  3240. name: "Front (NSFW)",
  3241. image: {
  3242. source: "./media/characters/natasha/front-nsfw.svg",
  3243. extra: 859 / 824,
  3244. bottom: 23 / 879.6
  3245. }
  3246. },
  3247. frontErect: {
  3248. height: math.unit(5 + 5 / 12, "feet"),
  3249. weight: math.unit(75, "kg"),
  3250. name: "Front (Erect)",
  3251. image: {
  3252. source: "./media/characters/natasha/front-erect.svg",
  3253. extra: 859 / 824,
  3254. bottom: 23 / 879.6
  3255. }
  3256. },
  3257. back: {
  3258. height: math.unit(5 + 5 / 12, "feet"),
  3259. weight: math.unit(75, "kg"),
  3260. name: "Back",
  3261. image: {
  3262. source: "./media/characters/natasha/back.svg",
  3263. extra: 887.9 / 852.6,
  3264. bottom: 9.7 / 896.4
  3265. }
  3266. },
  3267. backAlt: {
  3268. height: math.unit(5 + 5 / 12, "feet"),
  3269. weight: math.unit(75, "kg"),
  3270. name: "Back (Alt)",
  3271. image: {
  3272. source: "./media/characters/natasha/back-alt.svg",
  3273. extra: 1236.7 / 1192,
  3274. bottom: 22.3 / 1258.2
  3275. }
  3276. },
  3277. dick: {
  3278. height: math.unit(1.772, "feet"),
  3279. name: "Dick",
  3280. image: {
  3281. source: "./media/characters/natasha/dick.svg"
  3282. }
  3283. },
  3284. paw: {
  3285. height: math.unit(0.250, "meters"),
  3286. name: "Paw",
  3287. image: {
  3288. source: "./media/characters/natasha/paw.svg"
  3289. },
  3290. extraAttributes: {
  3291. "toeSize": {
  3292. name: "Toe Size",
  3293. power: 2,
  3294. type: "area",
  3295. base: math.unit(0.0024, "m^2")
  3296. },
  3297. "padSize": {
  3298. name: "Pad Size",
  3299. power: 2,
  3300. type: "area",
  3301. base: math.unit(0.00889, "m^2")
  3302. },
  3303. "pawSize": {
  3304. name: "Paw Size",
  3305. power: 2,
  3306. type: "area",
  3307. base: math.unit(0.023667, "m^2")
  3308. },
  3309. }
  3310. },
  3311. },
  3312. [
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(5 + 5 / 12, "feet")
  3316. },
  3317. {
  3318. name: "Large",
  3319. height: math.unit(12, "feet")
  3320. },
  3321. {
  3322. name: "Macro",
  3323. height: math.unit(100, "feet"),
  3324. default: true
  3325. },
  3326. {
  3327. name: "Macro+",
  3328. height: math.unit(260, "feet")
  3329. },
  3330. {
  3331. name: "Macro++",
  3332. height: math.unit(1, "mile")
  3333. },
  3334. ]
  3335. ))
  3336. characterMakers.push(() => makeCharacter(
  3337. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3338. {
  3339. front: {
  3340. height: math.unit(6, "feet"),
  3341. weight: math.unit(75, "kg"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/malik/front.svg"
  3345. }
  3346. },
  3347. side: {
  3348. height: math.unit(6, "feet"),
  3349. weight: math.unit(75, "kg"),
  3350. name: "Side",
  3351. image: {
  3352. source: "./media/characters/malik/side.svg",
  3353. extra: 1.1539
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(75, "kg"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/malik/back.svg"
  3362. }
  3363. },
  3364. },
  3365. [
  3366. {
  3367. name: "Macro",
  3368. height: math.unit(156, "feet"),
  3369. default: true
  3370. },
  3371. {
  3372. name: "Macro+",
  3373. height: math.unit(1188, "feet")
  3374. },
  3375. ]
  3376. ))
  3377. characterMakers.push(() => makeCharacter(
  3378. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3379. {
  3380. front: {
  3381. height: math.unit(6, "feet"),
  3382. weight: math.unit(75, "kg"),
  3383. name: "Front",
  3384. image: {
  3385. source: "./media/characters/sefer/front.svg",
  3386. extra: 848 / 659,
  3387. bottom: 28.3 / 876.442
  3388. }
  3389. },
  3390. back: {
  3391. height: math.unit(6, "feet"),
  3392. weight: math.unit(75, "kg"),
  3393. name: "Back",
  3394. image: {
  3395. source: "./media/characters/sefer/back.svg",
  3396. extra: 864 / 695,
  3397. bottom: 10 / 871
  3398. }
  3399. },
  3400. frontDressed: {
  3401. height: math.unit(6, "feet"),
  3402. weight: math.unit(75, "kg"),
  3403. name: "Front (Dressed)",
  3404. image: {
  3405. source: "./media/characters/sefer/front-dressed.svg",
  3406. extra: 839 / 653,
  3407. bottom: 37.6 / 878
  3408. }
  3409. },
  3410. },
  3411. [
  3412. {
  3413. name: "Normal",
  3414. height: math.unit(6, "feet"),
  3415. default: true
  3416. },
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3421. {
  3422. body: {
  3423. height: math.unit(2.2428, "meter"),
  3424. weight: math.unit(124.738, "kg"),
  3425. name: "Body",
  3426. image: {
  3427. extra: 1225 / 1050,
  3428. source: "./media/characters/north/front.svg"
  3429. }
  3430. }
  3431. },
  3432. [
  3433. {
  3434. name: "Micro",
  3435. height: math.unit(4, "inches")
  3436. },
  3437. {
  3438. name: "Macro",
  3439. height: math.unit(63, "meters")
  3440. },
  3441. {
  3442. name: "Megamacro",
  3443. height: math.unit(101, "miles"),
  3444. default: true
  3445. }
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3450. {
  3451. angled: {
  3452. height: math.unit(4, "meter"),
  3453. weight: math.unit(150, "kg"),
  3454. name: "Angled",
  3455. image: {
  3456. source: "./media/characters/talan/angled-sfw.svg",
  3457. bottom: 29 / 3734
  3458. }
  3459. },
  3460. angledNsfw: {
  3461. height: math.unit(4, "meter"),
  3462. weight: math.unit(150, "kg"),
  3463. name: "Angled (NSFW)",
  3464. image: {
  3465. source: "./media/characters/talan/angled-nsfw.svg",
  3466. bottom: 29 / 3734
  3467. }
  3468. },
  3469. frontNsfw: {
  3470. height: math.unit(4, "meter"),
  3471. weight: math.unit(150, "kg"),
  3472. name: "Front (NSFW)",
  3473. image: {
  3474. source: "./media/characters/talan/front-nsfw.svg",
  3475. bottom: 29 / 3734
  3476. }
  3477. },
  3478. sideNsfw: {
  3479. height: math.unit(4, "meter"),
  3480. weight: math.unit(150, "kg"),
  3481. name: "Side (NSFW)",
  3482. image: {
  3483. source: "./media/characters/talan/side-nsfw.svg",
  3484. bottom: 29 / 3734
  3485. }
  3486. },
  3487. back: {
  3488. height: math.unit(4, "meter"),
  3489. weight: math.unit(150, "kg"),
  3490. name: "Back",
  3491. image: {
  3492. source: "./media/characters/talan/back.svg"
  3493. }
  3494. },
  3495. dickBottom: {
  3496. height: math.unit(0.621, "meter"),
  3497. name: "Dick (Bottom)",
  3498. image: {
  3499. source: "./media/characters/talan/dick-bottom.svg"
  3500. }
  3501. },
  3502. dickTop: {
  3503. height: math.unit(0.621, "meter"),
  3504. name: "Dick (Top)",
  3505. image: {
  3506. source: "./media/characters/talan/dick-top.svg"
  3507. }
  3508. },
  3509. dickSide: {
  3510. height: math.unit(0.305, "meter"),
  3511. name: "Dick (Side)",
  3512. image: {
  3513. source: "./media/characters/talan/dick-side.svg"
  3514. }
  3515. },
  3516. dickFront: {
  3517. height: math.unit(0.305, "meter"),
  3518. name: "Dick (Front)",
  3519. image: {
  3520. source: "./media/characters/talan/dick-front.svg"
  3521. }
  3522. },
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(4, "meters")
  3528. },
  3529. {
  3530. name: "Macro",
  3531. height: math.unit(100, "meters")
  3532. },
  3533. {
  3534. name: "Megamacro",
  3535. height: math.unit(2, "miles"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Gigamacro",
  3540. height: math.unit(5000, "miles")
  3541. },
  3542. {
  3543. name: "Teramacro",
  3544. height: math.unit(100, "parsecs")
  3545. }
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3550. {
  3551. front: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(90, "kg"),
  3554. name: "Front",
  3555. image: {
  3556. source: "./media/characters/gael'rathus/front.svg"
  3557. }
  3558. },
  3559. frontAlt: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(90, "kg"),
  3562. name: "Front (alt)",
  3563. image: {
  3564. source: "./media/characters/gael'rathus/front-alt.svg"
  3565. }
  3566. },
  3567. frontAlt2: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(90, "kg"),
  3570. name: "Front (alt 2)",
  3571. image: {
  3572. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3573. }
  3574. }
  3575. },
  3576. [
  3577. {
  3578. name: "Normal",
  3579. height: math.unit(9, "feet"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Large",
  3584. height: math.unit(25, "feet")
  3585. },
  3586. {
  3587. name: "Macro",
  3588. height: math.unit(0.25, "miles")
  3589. },
  3590. {
  3591. name: "Megamacro",
  3592. height: math.unit(10, "miles")
  3593. }
  3594. ]
  3595. ))
  3596. characterMakers.push(() => makeCharacter(
  3597. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3598. {
  3599. side: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(140, "kg"),
  3602. name: "Side",
  3603. image: {
  3604. source: "./media/characters/sosha/side.svg",
  3605. extra: 1170/1006,
  3606. bottom: 94/1264
  3607. }
  3608. },
  3609. maw: {
  3610. height: math.unit(2.87, "feet"),
  3611. name: "Maw",
  3612. image: {
  3613. source: "./media/characters/sosha/maw.svg",
  3614. extra: 966/865,
  3615. bottom: 0/966
  3616. }
  3617. },
  3618. cooch: {
  3619. height: math.unit(5.6, "feet"),
  3620. name: "Cooch",
  3621. image: {
  3622. source: "./media/characters/sosha/cooch.svg"
  3623. }
  3624. },
  3625. },
  3626. [
  3627. {
  3628. name: "Normal",
  3629. height: math.unit(12, "feet"),
  3630. default: true
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3636. {
  3637. side: {
  3638. height: math.unit(5 + 5 / 12, "feet"),
  3639. weight: math.unit(170, "kg"),
  3640. name: "Side",
  3641. image: {
  3642. source: "./media/characters/runnola/side.svg",
  3643. extra: 741 / 448,
  3644. bottom: 0.05
  3645. }
  3646. },
  3647. },
  3648. [
  3649. {
  3650. name: "Small",
  3651. height: math.unit(3, "feet")
  3652. },
  3653. {
  3654. name: "Normal",
  3655. height: math.unit(5 + 5 / 12, "feet"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Big",
  3660. height: math.unit(10, "feet")
  3661. },
  3662. ]
  3663. ))
  3664. characterMakers.push(() => makeCharacter(
  3665. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3666. {
  3667. front: {
  3668. height: math.unit(2, "meter"),
  3669. weight: math.unit(50, "kg"),
  3670. name: "Front",
  3671. image: {
  3672. source: "./media/characters/kurribird/front.svg",
  3673. bottom: 0.015
  3674. }
  3675. },
  3676. frontAlt: {
  3677. height: math.unit(1.5, "meter"),
  3678. weight: math.unit(50, "kg"),
  3679. name: "Front (Alt)",
  3680. image: {
  3681. source: "./media/characters/kurribird/front-alt.svg",
  3682. extra: 1.45
  3683. }
  3684. },
  3685. },
  3686. [
  3687. {
  3688. name: "Normal",
  3689. height: math.unit(7, "feet")
  3690. },
  3691. {
  3692. name: "Big",
  3693. height: math.unit(12, "feet"),
  3694. default: true
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(1500, "feet")
  3699. },
  3700. {
  3701. name: "Megamacro",
  3702. height: math.unit(2, "miles")
  3703. }
  3704. ]
  3705. ))
  3706. characterMakers.push(() => makeCharacter(
  3707. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3708. {
  3709. front: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(80, "kg"),
  3712. name: "Front",
  3713. image: {
  3714. source: "./media/characters/elbial/front.svg",
  3715. extra: 1643 / 1556,
  3716. bottom: 60.2 / 1696
  3717. }
  3718. },
  3719. side: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(80, "kg"),
  3722. name: "Side",
  3723. image: {
  3724. source: "./media/characters/elbial/side.svg",
  3725. extra: 1601/1528,
  3726. bottom: 97/1698
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(80, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/elbial/back.svg",
  3735. extra: 1653/1569,
  3736. bottom: 20/1673
  3737. }
  3738. },
  3739. frontDressed: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(80, "kg"),
  3742. name: "Front (Dressed)",
  3743. image: {
  3744. source: "./media/characters/elbial/front-dressed.svg",
  3745. extra: 1638/1569,
  3746. bottom: 70/1708
  3747. }
  3748. },
  3749. genitals: {
  3750. height: math.unit(2 / 3.367, "meter"),
  3751. name: "Genitals",
  3752. image: {
  3753. source: "./media/characters/elbial/genitals.svg"
  3754. }
  3755. },
  3756. },
  3757. [
  3758. {
  3759. name: "Large",
  3760. height: math.unit(100, "feet")
  3761. },
  3762. {
  3763. name: "Macro",
  3764. height: math.unit(500, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Megamacro",
  3769. height: math.unit(10, "miles")
  3770. },
  3771. {
  3772. name: "Gigamacro",
  3773. height: math.unit(25000, "miles")
  3774. },
  3775. {
  3776. name: "Full-Size",
  3777. height: math.unit(8000000, "gigaparsecs")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(60, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/noah/front.svg"
  3790. }
  3791. },
  3792. talons: {
  3793. height: math.unit(0.315, "meter"),
  3794. name: "Talons",
  3795. image: {
  3796. source: "./media/characters/noah/talons.svg"
  3797. }
  3798. }
  3799. },
  3800. [
  3801. {
  3802. name: "Large",
  3803. height: math.unit(50, "feet")
  3804. },
  3805. {
  3806. name: "Macro",
  3807. height: math.unit(750, "feet"),
  3808. default: true
  3809. },
  3810. {
  3811. name: "Megamacro",
  3812. height: math.unit(50, "miles")
  3813. },
  3814. {
  3815. name: "Gigamacro",
  3816. height: math.unit(100000, "miles")
  3817. },
  3818. {
  3819. name: "Full-Size",
  3820. height: math.unit(3000000000, "miles")
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3826. {
  3827. front: {
  3828. height: math.unit(2, "meter"),
  3829. weight: math.unit(80, "kg"),
  3830. name: "Front",
  3831. image: {
  3832. source: "./media/characters/natalya/front.svg"
  3833. }
  3834. },
  3835. back: {
  3836. height: math.unit(2, "meter"),
  3837. weight: math.unit(80, "kg"),
  3838. name: "Back",
  3839. image: {
  3840. source: "./media/characters/natalya/back.svg"
  3841. }
  3842. }
  3843. },
  3844. [
  3845. {
  3846. name: "Normal",
  3847. height: math.unit(150, "feet"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Megamacro",
  3852. height: math.unit(5, "miles")
  3853. },
  3854. {
  3855. name: "Full-Size",
  3856. height: math.unit(600, "kiloparsecs")
  3857. }
  3858. ]
  3859. ))
  3860. characterMakers.push(() => makeCharacter(
  3861. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3862. {
  3863. front: {
  3864. height: math.unit(2, "meter"),
  3865. weight: math.unit(50, "kg"),
  3866. name: "Front",
  3867. image: {
  3868. source: "./media/characters/erestrebah/front.svg",
  3869. extra: 1262/1162,
  3870. bottom: 96/1358
  3871. }
  3872. },
  3873. back: {
  3874. height: math.unit(2, "meter"),
  3875. weight: math.unit(50, "kg"),
  3876. name: "Back",
  3877. image: {
  3878. source: "./media/characters/erestrebah/back.svg",
  3879. extra: 1257/1139,
  3880. bottom: 13/1270
  3881. }
  3882. },
  3883. wing: {
  3884. height: math.unit(2, "meter"),
  3885. weight: math.unit(50, "kg"),
  3886. name: "Wing",
  3887. image: {
  3888. source: "./media/characters/erestrebah/wing.svg",
  3889. extra: 1262/1162,
  3890. bottom: 96/1358
  3891. }
  3892. },
  3893. mouth: {
  3894. height: math.unit(0.39, "feet"),
  3895. name: "Mouth",
  3896. image: {
  3897. source: "./media/characters/erestrebah/mouth.svg"
  3898. }
  3899. }
  3900. },
  3901. [
  3902. {
  3903. name: "Normal",
  3904. height: math.unit(10, "feet")
  3905. },
  3906. {
  3907. name: "Large",
  3908. height: math.unit(50, "feet"),
  3909. default: true
  3910. },
  3911. {
  3912. name: "Macro",
  3913. height: math.unit(300, "feet")
  3914. },
  3915. {
  3916. name: "Macro+",
  3917. height: math.unit(750, "feet")
  3918. },
  3919. {
  3920. name: "Megamacro",
  3921. height: math.unit(3, "miles")
  3922. }
  3923. ]
  3924. ))
  3925. characterMakers.push(() => makeCharacter(
  3926. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3927. {
  3928. front: {
  3929. height: math.unit(2, "meter"),
  3930. weight: math.unit(80, "kg"),
  3931. name: "Front",
  3932. image: {
  3933. source: "./media/characters/jennifer/front.svg",
  3934. bottom: 0.11,
  3935. extra: 1.16
  3936. }
  3937. },
  3938. frontAlt: {
  3939. height: math.unit(2, "meter"),
  3940. weight: math.unit(80, "kg"),
  3941. name: "Front (Alt)",
  3942. image: {
  3943. source: "./media/characters/jennifer/front-alt.svg"
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Canon Height",
  3950. height: math.unit(120, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Macro+",
  3955. height: math.unit(300, "feet")
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(20000, "feet")
  3960. }
  3961. ]
  3962. ))
  3963. characterMakers.push(() => makeCharacter(
  3964. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3965. {
  3966. front: {
  3967. height: math.unit(2, "meter"),
  3968. weight: math.unit(50, "kg"),
  3969. name: "Front",
  3970. image: {
  3971. source: "./media/characters/kalista/front.svg",
  3972. extra: 1314/1145,
  3973. bottom: 101/1415
  3974. }
  3975. },
  3976. back: {
  3977. height: math.unit(2, "meter"),
  3978. weight: math.unit(50, "kg"),
  3979. name: "Back",
  3980. image: {
  3981. source: "./media/characters/kalista/back.svg",
  3982. extra: 1366 / 1156,
  3983. bottom: 33.9 / 1362.78
  3984. }
  3985. }
  3986. },
  3987. [
  3988. {
  3989. name: "Uncomfortably Small",
  3990. height: math.unit(10, "feet")
  3991. },
  3992. {
  3993. name: "Small",
  3994. height: math.unit(30, "feet")
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(100, "feet"),
  3999. default: true
  4000. },
  4001. {
  4002. name: "Macro+",
  4003. height: math.unit(2000, "feet")
  4004. },
  4005. {
  4006. name: "True Form",
  4007. height: math.unit(8924, "miles")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(120, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ggv/front.svg"
  4020. }
  4021. },
  4022. side: {
  4023. height: math.unit(2, "meter"),
  4024. weight: math.unit(120, "kg"),
  4025. name: "Side",
  4026. image: {
  4027. source: "./media/characters/ggv/side.svg"
  4028. }
  4029. }
  4030. },
  4031. [
  4032. {
  4033. name: "Extremely Puny",
  4034. height: math.unit(9 + 5 / 12, "feet")
  4035. },
  4036. {
  4037. name: "Horribly Small",
  4038. height: math.unit(47.7, "miles"),
  4039. default: true
  4040. },
  4041. {
  4042. name: "Reasonably Sized",
  4043. height: math.unit(25000, "parsecs")
  4044. },
  4045. {
  4046. name: "Slightly Uncompressed",
  4047. height: math.unit(7.77e31, "parsecs")
  4048. },
  4049. {
  4050. name: "Omniversal",
  4051. height: math.unit(1e300, "meters")
  4052. },
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(2, "meter"),
  4060. weight: math.unit(75, "lb"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/napalm/front.svg"
  4064. }
  4065. },
  4066. back: {
  4067. height: math.unit(2, "meter"),
  4068. weight: math.unit(75, "lb"),
  4069. name: "Back",
  4070. image: {
  4071. source: "./media/characters/napalm/back.svg"
  4072. }
  4073. }
  4074. },
  4075. [
  4076. {
  4077. name: "Standard",
  4078. height: math.unit(55, "feet"),
  4079. default: true
  4080. }
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4085. {
  4086. front: {
  4087. height: math.unit(7 + 5 / 6, "feet"),
  4088. weight: math.unit(325, "lb"),
  4089. name: "Front",
  4090. image: {
  4091. source: "./media/characters/asana/front.svg",
  4092. extra: 1133 / 1060,
  4093. bottom: 15.2 / 1148.6
  4094. }
  4095. },
  4096. back: {
  4097. height: math.unit(7 + 5 / 6, "feet"),
  4098. weight: math.unit(325, "lb"),
  4099. name: "Back",
  4100. image: {
  4101. source: "./media/characters/asana/back.svg",
  4102. extra: 1114 / 1043,
  4103. bottom: 5 / 1120
  4104. }
  4105. },
  4106. dressedDark: {
  4107. height: math.unit(7 + 5 / 6, "feet"),
  4108. weight: math.unit(325, "lb"),
  4109. name: "Dressed (Dark)",
  4110. image: {
  4111. source: "./media/characters/asana/dressed-dark.svg",
  4112. extra: 1133 / 1060,
  4113. bottom: 15.2 / 1148.6
  4114. }
  4115. },
  4116. dressedLight: {
  4117. height: math.unit(7 + 5 / 6, "feet"),
  4118. weight: math.unit(325, "lb"),
  4119. name: "Dressed (Light)",
  4120. image: {
  4121. source: "./media/characters/asana/dressed-light.svg",
  4122. extra: 1133 / 1060,
  4123. bottom: 15.2 / 1148.6
  4124. }
  4125. },
  4126. },
  4127. [
  4128. {
  4129. name: "Standard",
  4130. height: math.unit(7 + 5 / 6, "feet"),
  4131. default: true
  4132. },
  4133. {
  4134. name: "Large",
  4135. height: math.unit(10, "meters")
  4136. },
  4137. {
  4138. name: "Macro",
  4139. height: math.unit(2500, "meters")
  4140. },
  4141. {
  4142. name: "Megamacro",
  4143. height: math.unit(5e6, "meters")
  4144. },
  4145. {
  4146. name: "Examacro",
  4147. height: math.unit(5e12, "lightyears")
  4148. },
  4149. {
  4150. name: "Max Size",
  4151. height: math.unit(1e31, "lightyears")
  4152. }
  4153. ]
  4154. ))
  4155. characterMakers.push(() => makeCharacter(
  4156. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4157. {
  4158. front: {
  4159. height: math.unit(2, "meter"),
  4160. weight: math.unit(60, "kg"),
  4161. name: "Front",
  4162. image: {
  4163. source: "./media/characters/ebony/front.svg",
  4164. bottom: 0.03,
  4165. extra: 1045 / 810 + 0.03
  4166. }
  4167. },
  4168. side: {
  4169. height: math.unit(2, "meter"),
  4170. weight: math.unit(60, "kg"),
  4171. name: "Side",
  4172. image: {
  4173. source: "./media/characters/ebony/side.svg",
  4174. bottom: 0.03,
  4175. extra: 1045 / 810 + 0.03
  4176. }
  4177. },
  4178. back: {
  4179. height: math.unit(2, "meter"),
  4180. weight: math.unit(60, "kg"),
  4181. name: "Back",
  4182. image: {
  4183. source: "./media/characters/ebony/back.svg",
  4184. bottom: 0.01,
  4185. extra: 1045 / 810 + 0.01
  4186. }
  4187. },
  4188. },
  4189. [
  4190. // TODO check why I did this lol
  4191. {
  4192. name: "Standard",
  4193. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(200, "feet")
  4199. },
  4200. {
  4201. name: "Gigamacro",
  4202. height: math.unit(13000, "km")
  4203. }
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4208. {
  4209. front: {
  4210. height: math.unit(6, "feet"),
  4211. weight: math.unit(175, "lb"),
  4212. name: "Front",
  4213. image: {
  4214. source: "./media/characters/mountain/front.svg",
  4215. extra: 972 / 955,
  4216. bottom: 64 / 1036.6
  4217. }
  4218. },
  4219. back: {
  4220. height: math.unit(6, "feet"),
  4221. weight: math.unit(175, "lb"),
  4222. name: "Back",
  4223. image: {
  4224. source: "./media/characters/mountain/back.svg",
  4225. extra: 970 / 950,
  4226. bottom: 28.25 / 999
  4227. }
  4228. },
  4229. },
  4230. [
  4231. {
  4232. name: "Large",
  4233. height: math.unit(20, "meters")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(300, "meters")
  4238. },
  4239. {
  4240. name: "Gigamacro",
  4241. height: math.unit(10000, "km"),
  4242. default: true
  4243. },
  4244. {
  4245. name: "Examacro",
  4246. height: math.unit(10e9, "lightyears")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(8, "feet"),
  4255. weight: math.unit(500, "lb"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/rick/front.svg"
  4259. }
  4260. }
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(8, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(5, "km")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(8, "feet"),
  4279. weight: math.unit(120, "lb"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/ona/front.svg"
  4283. }
  4284. },
  4285. frontAlt: {
  4286. height: math.unit(8, "feet"),
  4287. weight: math.unit(120, "lb"),
  4288. name: "Front (Alt)",
  4289. image: {
  4290. source: "./media/characters/ona/front-alt.svg"
  4291. }
  4292. },
  4293. back: {
  4294. height: math.unit(8, "feet"),
  4295. weight: math.unit(120, "lb"),
  4296. name: "Back",
  4297. image: {
  4298. source: "./media/characters/ona/back.svg"
  4299. }
  4300. },
  4301. foot: {
  4302. height: math.unit(1.1, "feet"),
  4303. name: "Foot",
  4304. image: {
  4305. source: "./media/characters/ona/foot.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Megamacro",
  4312. height: math.unit(70, "km"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "Gigamacro",
  4317. height: math.unit(681818, "miles")
  4318. },
  4319. {
  4320. name: "Examacro",
  4321. height: math.unit(3800000, "lightyears")
  4322. },
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(12, "feet"),
  4330. weight: math.unit(3000, "lb"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/mech/front.svg",
  4334. extra: 2900 / 2770,
  4335. bottom: 110 / 3010
  4336. }
  4337. },
  4338. back: {
  4339. height: math.unit(12, "feet"),
  4340. weight: math.unit(3000, "lb"),
  4341. name: "Back",
  4342. image: {
  4343. source: "./media/characters/mech/back.svg",
  4344. extra: 3011 / 2890,
  4345. bottom: 94 / 3105
  4346. }
  4347. },
  4348. maw: {
  4349. height: math.unit(3.07, "feet"),
  4350. name: "Maw",
  4351. image: {
  4352. source: "./media/characters/mech/maw.svg"
  4353. }
  4354. },
  4355. head: {
  4356. height: math.unit(2.82, "feet"),
  4357. name: "Head",
  4358. image: {
  4359. source: "./media/characters/mech/head.svg"
  4360. }
  4361. },
  4362. dick: {
  4363. height: math.unit(1.43, "feet"),
  4364. name: "Dick",
  4365. image: {
  4366. source: "./media/characters/mech/dick.svg"
  4367. }
  4368. },
  4369. },
  4370. [
  4371. {
  4372. name: "Normal",
  4373. height: math.unit(12, "feet")
  4374. },
  4375. {
  4376. name: "Macro",
  4377. height: math.unit(300, "feet"),
  4378. default: true
  4379. },
  4380. {
  4381. name: "Macro+",
  4382. height: math.unit(1500, "feet")
  4383. },
  4384. ]
  4385. ))
  4386. characterMakers.push(() => makeCharacter(
  4387. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4388. {
  4389. front: {
  4390. height: math.unit(1.3, "meter"),
  4391. weight: math.unit(30, "kg"),
  4392. name: "Front",
  4393. image: {
  4394. source: "./media/characters/gregory/front.svg",
  4395. }
  4396. }
  4397. },
  4398. [
  4399. {
  4400. name: "Normal",
  4401. height: math.unit(1.3, "meter"),
  4402. default: true
  4403. },
  4404. {
  4405. name: "Macro",
  4406. height: math.unit(20, "meter")
  4407. }
  4408. ]
  4409. ))
  4410. characterMakers.push(() => makeCharacter(
  4411. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4412. {
  4413. front: {
  4414. height: math.unit(2.8, "meter"),
  4415. weight: math.unit(200, "kg"),
  4416. name: "Front",
  4417. image: {
  4418. source: "./media/characters/elory/front.svg",
  4419. }
  4420. }
  4421. },
  4422. [
  4423. {
  4424. name: "Normal",
  4425. height: math.unit(2.8, "meter"),
  4426. default: true
  4427. },
  4428. {
  4429. name: "Macro",
  4430. height: math.unit(38, "meter")
  4431. }
  4432. ]
  4433. ))
  4434. characterMakers.push(() => makeCharacter(
  4435. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4436. {
  4437. front: {
  4438. height: math.unit(470, "feet"),
  4439. weight: math.unit(924, "tons"),
  4440. name: "Front",
  4441. image: {
  4442. source: "./media/characters/angelpatamon/front.svg",
  4443. }
  4444. }
  4445. },
  4446. [
  4447. {
  4448. name: "Normal",
  4449. height: math.unit(470, "feet"),
  4450. default: true
  4451. },
  4452. {
  4453. name: "Deity Size I",
  4454. height: math.unit(28651.2, "km")
  4455. },
  4456. {
  4457. name: "Deity Size II",
  4458. height: math.unit(171907.2, "km")
  4459. }
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4464. {
  4465. side: {
  4466. height: math.unit(7.2, "meter"),
  4467. weight: math.unit(8.2, "tons"),
  4468. name: "Side",
  4469. image: {
  4470. source: "./media/characters/cryae/side.svg",
  4471. extra: 3500 / 1500
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Normal",
  4478. height: math.unit(7.2, "meter"),
  4479. default: true
  4480. }
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4485. {
  4486. front: {
  4487. height: math.unit(6, "feet"),
  4488. weight: math.unit(175, "lb"),
  4489. name: "Front",
  4490. image: {
  4491. source: "./media/characters/xera/front.svg",
  4492. extra: 2377 / 1972,
  4493. bottom: 75.5 / 2452
  4494. }
  4495. },
  4496. side: {
  4497. height: math.unit(6, "feet"),
  4498. weight: math.unit(175, "lb"),
  4499. name: "Side",
  4500. image: {
  4501. source: "./media/characters/xera/side.svg",
  4502. extra: 2345 / 2019,
  4503. bottom: 39.7 / 2384
  4504. }
  4505. },
  4506. back: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(175, "lb"),
  4509. name: "Back",
  4510. image: {
  4511. source: "./media/characters/xera/back.svg",
  4512. extra: 2095 / 1984,
  4513. bottom: 67 / 2166
  4514. }
  4515. },
  4516. },
  4517. [
  4518. {
  4519. name: "Small",
  4520. height: math.unit(10, "feet")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(500, "meters"),
  4525. default: true
  4526. },
  4527. {
  4528. name: "Macro+",
  4529. height: math.unit(10, "km")
  4530. },
  4531. {
  4532. name: "Gigamacro",
  4533. height: math.unit(25000, "km")
  4534. },
  4535. {
  4536. name: "Teramacro",
  4537. height: math.unit(3e6, "km")
  4538. }
  4539. ]
  4540. ))
  4541. characterMakers.push(() => makeCharacter(
  4542. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4543. {
  4544. front: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(175, "lb"),
  4547. name: "Front",
  4548. image: {
  4549. source: "./media/characters/nebula/front.svg",
  4550. extra: 2566 / 2362,
  4551. bottom: 81 / 2644
  4552. }
  4553. }
  4554. },
  4555. [
  4556. {
  4557. name: "Small",
  4558. height: math.unit(4.5, "meters")
  4559. },
  4560. {
  4561. name: "Macro",
  4562. height: math.unit(1500, "meters"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Megamacro",
  4567. height: math.unit(150, "km")
  4568. },
  4569. {
  4570. name: "Gigamacro",
  4571. height: math.unit(27000, "km")
  4572. }
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4577. {
  4578. front: {
  4579. height: math.unit(6, "feet"),
  4580. weight: math.unit(225, "lb"),
  4581. name: "Front",
  4582. image: {
  4583. source: "./media/characters/abysgar/front.svg",
  4584. extra: 1739/1614,
  4585. bottom: 71/1810
  4586. }
  4587. },
  4588. frontNsfw: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(225, "lb"),
  4591. name: "Front (NSFW)",
  4592. image: {
  4593. source: "./media/characters/abysgar/front-nsfw.svg",
  4594. extra: 1739/1614,
  4595. bottom: 71/1810
  4596. }
  4597. },
  4598. back: {
  4599. height: math.unit(4.6, "feet"),
  4600. weight: math.unit(225, "lb"),
  4601. name: "Back",
  4602. image: {
  4603. source: "./media/characters/abysgar/back.svg",
  4604. extra: 1384/1327,
  4605. bottom: 0/1384
  4606. }
  4607. },
  4608. head: {
  4609. height: math.unit(1.25, "feet"),
  4610. name: "Head",
  4611. image: {
  4612. source: "./media/characters/abysgar/head.svg",
  4613. extra: 669/569,
  4614. bottom: 0/669
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Small",
  4621. height: math.unit(4.5, "meters")
  4622. },
  4623. {
  4624. name: "Macro",
  4625. height: math.unit(1250, "meters"),
  4626. default: true
  4627. },
  4628. {
  4629. name: "Megamacro",
  4630. height: math.unit(125, "km")
  4631. },
  4632. {
  4633. name: "Gigamacro",
  4634. height: math.unit(26000, "km")
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4640. {
  4641. front: {
  4642. height: math.unit(6, "feet"),
  4643. weight: math.unit(180, "lb"),
  4644. name: "Front",
  4645. image: {
  4646. source: "./media/characters/yakuz/front.svg"
  4647. }
  4648. }
  4649. },
  4650. [
  4651. {
  4652. name: "Small",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "Macro",
  4657. height: math.unit(1500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "Megamacro",
  4662. height: math.unit(200, "km")
  4663. },
  4664. {
  4665. name: "Gigamacro",
  4666. height: math.unit(100000, "km")
  4667. }
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4672. {
  4673. front: {
  4674. height: math.unit(6, "feet"),
  4675. weight: math.unit(175, "lb"),
  4676. name: "Front",
  4677. image: {
  4678. source: "./media/characters/mirova/front.svg",
  4679. extra: 3334 / 3071,
  4680. bottom: 42 / 3375.6
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Small",
  4687. height: math.unit(5, "meters")
  4688. },
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(900, "meters"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Megamacro",
  4696. height: math.unit(135, "km")
  4697. },
  4698. {
  4699. name: "Gigamacro",
  4700. height: math.unit(20000, "km")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4706. {
  4707. side: {
  4708. height: math.unit(28.35, "feet"),
  4709. weight: math.unit(99.75, "tons"),
  4710. name: "Side",
  4711. image: {
  4712. source: "./media/characters/asana-mech/side.svg",
  4713. extra: 923 / 699,
  4714. bottom: 50 / 975
  4715. }
  4716. },
  4717. chaingun: {
  4718. height: math.unit(7, "feet"),
  4719. weight: math.unit(2400, "lb"),
  4720. name: "Chaingun",
  4721. image: {
  4722. source: "./media/characters/asana-mech/chaingun.svg"
  4723. }
  4724. },
  4725. laser: {
  4726. height: math.unit(7.12, "feet"),
  4727. weight: math.unit(2000, "lb"),
  4728. name: "Laser",
  4729. image: {
  4730. source: "./media/characters/asana-mech/laser.svg"
  4731. }
  4732. },
  4733. },
  4734. [
  4735. {
  4736. name: "Normal",
  4737. height: math.unit(28.35, "feet"),
  4738. default: true
  4739. },
  4740. {
  4741. name: "Macro",
  4742. height: math.unit(2500, "feet")
  4743. },
  4744. {
  4745. name: "Megamacro",
  4746. height: math.unit(25, "miles")
  4747. },
  4748. {
  4749. name: "Examacro",
  4750. height: math.unit(6e8, "lightyears")
  4751. },
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4756. {
  4757. front: {
  4758. height: math.unit(5, "meters"),
  4759. weight: math.unit(1000, "kg"),
  4760. name: "Front",
  4761. image: {
  4762. source: "./media/characters/asche/front.svg",
  4763. extra: 1258 / 1190,
  4764. bottom: 47 / 1305
  4765. }
  4766. },
  4767. frontUnderwear: {
  4768. height: math.unit(5, "meters"),
  4769. weight: math.unit(1000, "kg"),
  4770. name: "Front (Underwear)",
  4771. image: {
  4772. source: "./media/characters/asche/front-underwear.svg",
  4773. extra: 1258 / 1190,
  4774. bottom: 47 / 1305
  4775. }
  4776. },
  4777. frontDressed: {
  4778. height: math.unit(5, "meters"),
  4779. weight: math.unit(1000, "kg"),
  4780. name: "Front (Dressed)",
  4781. image: {
  4782. source: "./media/characters/asche/front-dressed.svg",
  4783. extra: 1258 / 1190,
  4784. bottom: 47 / 1305
  4785. }
  4786. },
  4787. frontArmor: {
  4788. height: math.unit(5, "meters"),
  4789. weight: math.unit(1000, "kg"),
  4790. name: "Front (Armored)",
  4791. image: {
  4792. source: "./media/characters/asche/front-armored.svg",
  4793. extra: 1374 / 1308,
  4794. bottom: 23 / 1397
  4795. }
  4796. },
  4797. mp724: {
  4798. height: math.unit(0.96, "meters"),
  4799. weight: math.unit(38, "kg"),
  4800. name: "H&K MP724",
  4801. image: {
  4802. source: "./media/characters/asche/h&k-mp724.svg"
  4803. }
  4804. },
  4805. side: {
  4806. height: math.unit(5, "meters"),
  4807. weight: math.unit(1000, "kg"),
  4808. name: "Side",
  4809. image: {
  4810. source: "./media/characters/asche/side.svg",
  4811. extra: 1717 / 1609,
  4812. bottom: 0.005
  4813. }
  4814. },
  4815. back: {
  4816. height: math.unit(5, "meters"),
  4817. weight: math.unit(1000, "kg"),
  4818. name: "Back",
  4819. image: {
  4820. source: "./media/characters/asche/back.svg",
  4821. extra: 1570 / 1501
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "DEFCON 5",
  4828. height: math.unit(5, "meters")
  4829. },
  4830. {
  4831. name: "DEFCON 4",
  4832. height: math.unit(500, "meters"),
  4833. default: true
  4834. },
  4835. {
  4836. name: "DEFCON 3",
  4837. height: math.unit(5, "km")
  4838. },
  4839. {
  4840. name: "DEFCON 2",
  4841. height: math.unit(500, "km")
  4842. },
  4843. {
  4844. name: "DEFCON 1",
  4845. height: math.unit(500000, "km")
  4846. },
  4847. {
  4848. name: "DEFCON 0",
  4849. height: math.unit(3, "gigaparsecs")
  4850. },
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4855. {
  4856. front: {
  4857. height: math.unit(2, "meters"),
  4858. weight: math.unit(76, "kg"),
  4859. name: "Front",
  4860. image: {
  4861. source: "./media/characters/gale/front.svg"
  4862. }
  4863. },
  4864. frontAlt1: {
  4865. height: math.unit(2, "meters"),
  4866. weight: math.unit(76, "kg"),
  4867. name: "Front (Alt 1)",
  4868. image: {
  4869. source: "./media/characters/gale/front-alt-1.svg"
  4870. }
  4871. },
  4872. frontAlt2: {
  4873. height: math.unit(2, "meters"),
  4874. weight: math.unit(76, "kg"),
  4875. name: "Front (Alt 2)",
  4876. image: {
  4877. source: "./media/characters/gale/front-alt-2.svg"
  4878. }
  4879. },
  4880. },
  4881. [
  4882. {
  4883. name: "Normal",
  4884. height: math.unit(7, "feet")
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(150, "feet"),
  4889. default: true
  4890. },
  4891. {
  4892. name: "Macro+",
  4893. height: math.unit(300, "feet")
  4894. },
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4899. {
  4900. front: {
  4901. height: math.unit(5 + 10/12, "feet"),
  4902. weight: math.unit(67, "kg"),
  4903. name: "Front",
  4904. image: {
  4905. source: "./media/characters/draylen/front.svg",
  4906. extra: 832/777,
  4907. bottom: 85/917
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(5 + 10/12, "feet")
  4915. },
  4916. {
  4917. name: "Macro",
  4918. height: math.unit(150, "feet"),
  4919. default: true
  4920. }
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4925. {
  4926. front: {
  4927. height: math.unit(7 + 9 / 12, "feet"),
  4928. weight: math.unit(379, "lbs"),
  4929. name: "Front",
  4930. image: {
  4931. source: "./media/characters/chez/front.svg"
  4932. }
  4933. },
  4934. side: {
  4935. height: math.unit(7 + 9 / 12, "feet"),
  4936. weight: math.unit(379, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/chez/side.svg"
  4940. }
  4941. }
  4942. },
  4943. [
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(7 + 9 / 12, "feet"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "God King",
  4951. height: math.unit(9750000, "meters")
  4952. }
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4957. {
  4958. front: {
  4959. height: math.unit(6, "feet"),
  4960. weight: math.unit(275, "lbs"),
  4961. name: "Front",
  4962. image: {
  4963. source: "./media/characters/kaylum/front.svg",
  4964. bottom: 0.01,
  4965. extra: 1166 / 1031
  4966. }
  4967. },
  4968. frontWingless: {
  4969. height: math.unit(6, "feet"),
  4970. weight: math.unit(275, "lbs"),
  4971. name: "Front (Wingless)",
  4972. image: {
  4973. source: "./media/characters/kaylum/front-wingless.svg",
  4974. bottom: 0.01,
  4975. extra: 1117 / 1031
  4976. }
  4977. }
  4978. },
  4979. [
  4980. {
  4981. name: "Normal",
  4982. height: math.unit(3.05, "meters")
  4983. },
  4984. {
  4985. name: "Master",
  4986. height: math.unit(5.5, "meters")
  4987. },
  4988. {
  4989. name: "Rampage",
  4990. height: math.unit(19, "meters")
  4991. },
  4992. {
  4993. name: "Macro Lite",
  4994. height: math.unit(37, "meters")
  4995. },
  4996. {
  4997. name: "Hyper Predator",
  4998. height: math.unit(61, "meters")
  4999. },
  5000. {
  5001. name: "Macro",
  5002. height: math.unit(138, "meters"),
  5003. default: true
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(5 + 5 / 12, "feet"),
  5012. weight: math.unit(120, "lbs"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/geta/front.svg",
  5016. extra: 1003/933,
  5017. bottom: 21/1024
  5018. }
  5019. },
  5020. paw: {
  5021. height: math.unit(0.35, "feet"),
  5022. name: "Paw",
  5023. image: {
  5024. source: "./media/characters/geta/paw.svg"
  5025. }
  5026. },
  5027. },
  5028. [
  5029. {
  5030. name: "Micro",
  5031. height: math.unit(3, "inches"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(5 + 5 / 12, "feet")
  5037. }
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(6, "feet"),
  5045. weight: math.unit(300, "lbs"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/tyrnn/front.svg"
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Main Height",
  5055. height: math.unit(355, "feet"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Fave. Height",
  5060. height: math.unit(2400, "feet")
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(300, "lbs"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/appledectomy/front.svg"
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(2500, "feet")
  5080. },
  5081. {
  5082. name: "Megamacro",
  5083. height: math.unit(50, "miles"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Gigamacro",
  5088. height: math.unit(5000, "miles")
  5089. },
  5090. {
  5091. name: "Teramacro",
  5092. height: math.unit(250000, "miles")
  5093. },
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5098. {
  5099. front: {
  5100. height: math.unit(6, "feet"),
  5101. weight: math.unit(200, "lbs"),
  5102. name: "Front",
  5103. image: {
  5104. source: "./media/characters/vulpes/front.svg",
  5105. extra: 573 / 543,
  5106. bottom: 0.033
  5107. }
  5108. },
  5109. side: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(200, "lbs"),
  5112. name: "Side",
  5113. image: {
  5114. source: "./media/characters/vulpes/side.svg",
  5115. extra: 577 / 549,
  5116. bottom: 11 / 588
  5117. }
  5118. },
  5119. back: {
  5120. height: math.unit(6, "feet"),
  5121. weight: math.unit(200, "lbs"),
  5122. name: "Back",
  5123. image: {
  5124. source: "./media/characters/vulpes/back.svg",
  5125. extra: 573 / 549,
  5126. bottom: 20 / 593
  5127. }
  5128. },
  5129. feet: {
  5130. height: math.unit(1.276, "feet"),
  5131. name: "Feet",
  5132. image: {
  5133. source: "./media/characters/vulpes/feet.svg"
  5134. }
  5135. },
  5136. maw: {
  5137. height: math.unit(1.18, "feet"),
  5138. name: "Maw",
  5139. image: {
  5140. source: "./media/characters/vulpes/maw.svg"
  5141. }
  5142. },
  5143. },
  5144. [
  5145. {
  5146. name: "Micro",
  5147. height: math.unit(2, "inches")
  5148. },
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(6.3, "feet")
  5152. },
  5153. {
  5154. name: "Macro",
  5155. height: math.unit(850, "feet")
  5156. },
  5157. {
  5158. name: "Megamacro",
  5159. height: math.unit(7500, "feet"),
  5160. default: true
  5161. },
  5162. {
  5163. name: "Gigamacro",
  5164. height: math.unit(570000, "miles")
  5165. }
  5166. ]
  5167. ))
  5168. characterMakers.push(() => makeCharacter(
  5169. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5170. {
  5171. front: {
  5172. height: math.unit(6, "feet"),
  5173. weight: math.unit(210, "lbs"),
  5174. name: "Front",
  5175. image: {
  5176. source: "./media/characters/rain-fallen/front.svg"
  5177. }
  5178. },
  5179. side: {
  5180. height: math.unit(6, "feet"),
  5181. weight: math.unit(210, "lbs"),
  5182. name: "Side",
  5183. image: {
  5184. source: "./media/characters/rain-fallen/side.svg"
  5185. }
  5186. },
  5187. back: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(210, "lbs"),
  5190. name: "Back",
  5191. image: {
  5192. source: "./media/characters/rain-fallen/back.svg"
  5193. }
  5194. },
  5195. feral: {
  5196. height: math.unit(9, "feet"),
  5197. weight: math.unit(700, "lbs"),
  5198. name: "Feral",
  5199. image: {
  5200. source: "./media/characters/rain-fallen/feral.svg"
  5201. }
  5202. },
  5203. },
  5204. [
  5205. {
  5206. name: "Meddling with Mortals",
  5207. height: math.unit(8 + 8/12, "feet")
  5208. },
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(5, "meter")
  5212. },
  5213. {
  5214. name: "Macro",
  5215. height: math.unit(150, "meter"),
  5216. default: true
  5217. },
  5218. {
  5219. name: "Megamacro",
  5220. height: math.unit(278e6, "meter")
  5221. },
  5222. {
  5223. name: "Gigamacro",
  5224. height: math.unit(2e9, "meter")
  5225. },
  5226. {
  5227. name: "Teramacro",
  5228. height: math.unit(8e12, "meter")
  5229. },
  5230. {
  5231. name: "Devourer",
  5232. height: math.unit(14, "zettameters")
  5233. },
  5234. {
  5235. name: "Scarlet King",
  5236. height: math.unit(18, "yottameters")
  5237. },
  5238. {
  5239. name: "Void",
  5240. height: math.unit(1e88, "yottameters")
  5241. }
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5246. {
  5247. standing: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(180, "lbs"),
  5250. name: "Standing",
  5251. image: {
  5252. source: "./media/characters/zaakira/standing.svg",
  5253. extra: 1599/1504,
  5254. bottom: 39/1638
  5255. }
  5256. },
  5257. laying: {
  5258. height: math.unit(3.3, "feet"),
  5259. weight: math.unit(180, "lbs"),
  5260. name: "Laying",
  5261. image: {
  5262. source: "./media/characters/zaakira/laying.svg"
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(12, "feet")
  5270. },
  5271. {
  5272. name: "Macro",
  5273. height: math.unit(279, "feet"),
  5274. default: true
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5280. {
  5281. femSfw: {
  5282. height: math.unit(8, "feet"),
  5283. weight: math.unit(350, "lb"),
  5284. name: "Fem",
  5285. image: {
  5286. source: "./media/characters/sigvald/fem-sfw.svg",
  5287. extra: 182 / 164,
  5288. bottom: 8.7 / 190.5
  5289. }
  5290. },
  5291. femNsfw: {
  5292. height: math.unit(8, "feet"),
  5293. weight: math.unit(350, "lb"),
  5294. name: "Fem (NSFW)",
  5295. image: {
  5296. source: "./media/characters/sigvald/fem-nsfw.svg",
  5297. extra: 182 / 164,
  5298. bottom: 8.7 / 190.5
  5299. }
  5300. },
  5301. maleNsfw: {
  5302. height: math.unit(8, "feet"),
  5303. weight: math.unit(350, "lb"),
  5304. name: "Male (NSFW)",
  5305. image: {
  5306. source: "./media/characters/sigvald/male-nsfw.svg",
  5307. extra: 182 / 164,
  5308. bottom: 8.7 / 190.5
  5309. }
  5310. },
  5311. hermNsfw: {
  5312. height: math.unit(8, "feet"),
  5313. weight: math.unit(350, "lb"),
  5314. name: "Herm (NSFW)",
  5315. image: {
  5316. source: "./media/characters/sigvald/herm-nsfw.svg",
  5317. extra: 182 / 164,
  5318. bottom: 8.7 / 190.5
  5319. }
  5320. },
  5321. dick: {
  5322. height: math.unit(2.36, "feet"),
  5323. name: "Dick",
  5324. image: {
  5325. source: "./media/characters/sigvald/dick.svg"
  5326. }
  5327. },
  5328. eye: {
  5329. height: math.unit(0.31, "feet"),
  5330. name: "Eye",
  5331. image: {
  5332. source: "./media/characters/sigvald/eye.svg"
  5333. }
  5334. },
  5335. mouth: {
  5336. height: math.unit(0.92, "feet"),
  5337. name: "Mouth",
  5338. image: {
  5339. source: "./media/characters/sigvald/mouth.svg"
  5340. }
  5341. },
  5342. paws: {
  5343. height: math.unit(2.2, "feet"),
  5344. name: "Paws",
  5345. image: {
  5346. source: "./media/characters/sigvald/paws.svg"
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(8, "feet")
  5354. },
  5355. {
  5356. name: "Large",
  5357. height: math.unit(12, "feet")
  5358. },
  5359. {
  5360. name: "Larger",
  5361. height: math.unit(20, "feet")
  5362. },
  5363. {
  5364. name: "Macro",
  5365. height: math.unit(150, "feet")
  5366. },
  5367. {
  5368. name: "Macro+",
  5369. height: math.unit(200, "feet"),
  5370. default: true
  5371. },
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5376. {
  5377. side: {
  5378. height: math.unit(12, "feet"),
  5379. weight: math.unit(2000, "kg"),
  5380. name: "Side",
  5381. image: {
  5382. source: "./media/characters/scott/side.svg",
  5383. extra: 754 / 724,
  5384. bottom: 0.069
  5385. }
  5386. },
  5387. upright: {
  5388. height: math.unit(12, "feet"),
  5389. weight: math.unit(2000, "kg"),
  5390. name: "Upright",
  5391. image: {
  5392. source: "./media/characters/scott/upright.svg",
  5393. extra: 3881 / 3722,
  5394. bottom: 0.05
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(12, "feet"),
  5402. default: true
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5408. {
  5409. side: {
  5410. height: math.unit(8, "meters"),
  5411. weight: math.unit(84755, "lbs"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/tobias/side.svg",
  5415. extra: 1474 / 1096,
  5416. bottom: 38.9 / 1513.1235
  5417. }
  5418. },
  5419. },
  5420. [
  5421. {
  5422. name: "Normal",
  5423. height: math.unit(8, "meters"),
  5424. default: true
  5425. },
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5430. {
  5431. front: {
  5432. height: math.unit(5.5, "feet"),
  5433. weight: math.unit(400, "lbs"),
  5434. name: "Front",
  5435. image: {
  5436. source: "./media/characters/kieran/front.svg",
  5437. extra: 2694 / 2364,
  5438. bottom: 217 / 2908
  5439. }
  5440. },
  5441. side: {
  5442. height: math.unit(5.5, "feet"),
  5443. weight: math.unit(400, "lbs"),
  5444. name: "Side",
  5445. image: {
  5446. source: "./media/characters/kieran/side.svg",
  5447. extra: 875 / 777,
  5448. bottom: 84.6 / 959
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(5.5, "feet"),
  5456. default: true
  5457. },
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5462. {
  5463. side: {
  5464. height: math.unit(2, "meters"),
  5465. weight: math.unit(70, "kg"),
  5466. name: "Side",
  5467. image: {
  5468. source: "./media/characters/sanya/side.svg",
  5469. bottom: 0.02,
  5470. extra: 1.02
  5471. }
  5472. },
  5473. },
  5474. [
  5475. {
  5476. name: "Small",
  5477. height: math.unit(2, "meters")
  5478. },
  5479. {
  5480. name: "Normal",
  5481. height: math.unit(3, "meters")
  5482. },
  5483. {
  5484. name: "Macro",
  5485. height: math.unit(16, "meters"),
  5486. default: true
  5487. },
  5488. ]
  5489. ))
  5490. characterMakers.push(() => makeCharacter(
  5491. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5492. {
  5493. front: {
  5494. height: math.unit(2, "meters"),
  5495. weight: math.unit(120, "kg"),
  5496. name: "Front",
  5497. image: {
  5498. source: "./media/characters/miranda/front.svg",
  5499. extra: 195 / 185,
  5500. bottom: 10.9 / 206.5
  5501. }
  5502. },
  5503. back: {
  5504. height: math.unit(2, "meters"),
  5505. weight: math.unit(120, "kg"),
  5506. name: "Back",
  5507. image: {
  5508. source: "./media/characters/miranda/back.svg",
  5509. extra: 201 / 193,
  5510. bottom: 2.3 / 203.7
  5511. }
  5512. },
  5513. },
  5514. [
  5515. {
  5516. name: "Normal",
  5517. height: math.unit(10, "feet"),
  5518. default: true
  5519. }
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "James", species: ["deer"], tags: ["anthro"] },
  5524. {
  5525. side: {
  5526. height: math.unit(2, "meters"),
  5527. weight: math.unit(100, "kg"),
  5528. name: "Front",
  5529. image: {
  5530. source: "./media/characters/james/front.svg",
  5531. extra: 10 / 8.5
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(8.5, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5545. {
  5546. side: {
  5547. height: math.unit(9.5, "feet"),
  5548. weight: math.unit(2500, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/heather/side.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(9.5, "feet"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5565. {
  5566. side: {
  5567. height: math.unit(6.5, "feet"),
  5568. weight: math.unit(400, "lbs"),
  5569. name: "Side",
  5570. image: {
  5571. source: "./media/characters/lukas/side.svg",
  5572. extra: 7.25 / 6.5
  5573. }
  5574. },
  5575. },
  5576. [
  5577. {
  5578. name: "Normal",
  5579. height: math.unit(6.5, "feet"),
  5580. default: true
  5581. }
  5582. ]
  5583. ))
  5584. characterMakers.push(() => makeCharacter(
  5585. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5586. {
  5587. side: {
  5588. height: math.unit(5, "feet"),
  5589. weight: math.unit(3000, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/louise/side.svg"
  5593. }
  5594. },
  5595. },
  5596. [
  5597. {
  5598. name: "Normal",
  5599. height: math.unit(5, "feet"),
  5600. default: true
  5601. }
  5602. ]
  5603. ))
  5604. characterMakers.push(() => makeCharacter(
  5605. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5606. {
  5607. side: {
  5608. height: math.unit(6, "feet"),
  5609. weight: math.unit(150, "lbs"),
  5610. name: "Side",
  5611. image: {
  5612. source: "./media/characters/ramona/side.svg",
  5613. extra: 871/854,
  5614. bottom: 41/912
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(5.3, "meters"),
  5622. default: true
  5623. },
  5624. {
  5625. name: "Macro",
  5626. height: math.unit(20, "stories")
  5627. },
  5628. {
  5629. name: "Macro+",
  5630. height: math.unit(50, "stories")
  5631. },
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5636. {
  5637. standing: {
  5638. height: math.unit(5.75, "feet"),
  5639. weight: math.unit(160, "lbs"),
  5640. name: "Standing",
  5641. image: {
  5642. source: "./media/characters/deerpuff/standing.svg",
  5643. extra: 682 / 624
  5644. }
  5645. },
  5646. sitting: {
  5647. height: math.unit(5.75 / 1.79, "feet"),
  5648. weight: math.unit(160, "lbs"),
  5649. name: "Sitting",
  5650. image: {
  5651. source: "./media/characters/deerpuff/sitting.svg",
  5652. bottom: 44 / 400,
  5653. extra: 1
  5654. }
  5655. },
  5656. taurLaying: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(400, "lbs"),
  5659. name: "Taur (Laying)",
  5660. image: {
  5661. source: "./media/characters/deerpuff/taur-laying.svg"
  5662. }
  5663. },
  5664. },
  5665. [
  5666. {
  5667. name: "Puffball",
  5668. height: math.unit(6, "inches")
  5669. },
  5670. {
  5671. name: "Normalpuff",
  5672. height: math.unit(5.75, "feet")
  5673. },
  5674. {
  5675. name: "Macropuff",
  5676. height: math.unit(1500, "feet"),
  5677. default: true
  5678. },
  5679. {
  5680. name: "Megapuff",
  5681. height: math.unit(500, "miles")
  5682. },
  5683. {
  5684. name: "Gigapuff",
  5685. height: math.unit(250000, "miles")
  5686. },
  5687. {
  5688. name: "Omegapuff",
  5689. height: math.unit(1000, "lightyears")
  5690. },
  5691. ]
  5692. ))
  5693. characterMakers.push(() => makeCharacter(
  5694. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5695. {
  5696. stomping: {
  5697. height: math.unit(6, "feet"),
  5698. weight: math.unit(170, "lbs"),
  5699. name: "Stomping",
  5700. image: {
  5701. source: "./media/characters/vivian/stomping.svg"
  5702. }
  5703. },
  5704. sitting: {
  5705. height: math.unit(6 / 1.75, "feet"),
  5706. weight: math.unit(170, "lbs"),
  5707. name: "Sitting",
  5708. image: {
  5709. source: "./media/characters/vivian/sitting.svg",
  5710. bottom: 1 / 6.4,
  5711. extra: 1,
  5712. }
  5713. },
  5714. },
  5715. [
  5716. {
  5717. name: "Normal",
  5718. height: math.unit(7, "feet"),
  5719. default: true
  5720. },
  5721. {
  5722. name: "Macro",
  5723. height: math.unit(10, "stories")
  5724. },
  5725. {
  5726. name: "Macro+",
  5727. height: math.unit(30, "stories")
  5728. },
  5729. {
  5730. name: "Megamacro",
  5731. height: math.unit(10, "miles")
  5732. },
  5733. {
  5734. name: "Megamacro+",
  5735. height: math.unit(2750000, "meters")
  5736. },
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(6, "feet"),
  5744. weight: math.unit(160, "lbs"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/prince/front.svg",
  5748. extra: 3400 / 3000
  5749. }
  5750. },
  5751. jumping: {
  5752. height: math.unit(6, "feet"),
  5753. weight: math.unit(160, "lbs"),
  5754. name: "Jumping",
  5755. image: {
  5756. source: "./media/characters/prince/jump.svg",
  5757. extra: 2555 / 2134
  5758. }
  5759. },
  5760. },
  5761. [
  5762. {
  5763. name: "Normal",
  5764. height: math.unit(7.75, "feet"),
  5765. default: true
  5766. },
  5767. {
  5768. name: "Not cute",
  5769. height: math.unit(17, "feet")
  5770. },
  5771. {
  5772. name: "I said NOT",
  5773. height: math.unit(91, "feet")
  5774. },
  5775. {
  5776. name: "Please stop",
  5777. height: math.unit(560, "feet")
  5778. },
  5779. {
  5780. name: "What have you done",
  5781. height: math.unit(2200, "feet")
  5782. },
  5783. {
  5784. name: "Deer God",
  5785. height: math.unit(3.6, "miles")
  5786. },
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5791. {
  5792. standing: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(300, "lbs"),
  5795. name: "Standing",
  5796. image: {
  5797. source: "./media/characters/psymon/standing.svg",
  5798. extra: 1888 / 1810,
  5799. bottom: 0.05
  5800. }
  5801. },
  5802. slithering: {
  5803. height: math.unit(6, "feet"),
  5804. weight: math.unit(300, "lbs"),
  5805. name: "Slithering",
  5806. image: {
  5807. source: "./media/characters/psymon/slithering.svg",
  5808. extra: 1330 / 1224
  5809. }
  5810. },
  5811. slitheringAlt: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(300, "lbs"),
  5814. name: "Slithering (Alt)",
  5815. image: {
  5816. source: "./media/characters/psymon/slithering-alt.svg",
  5817. extra: 1330 / 1224
  5818. }
  5819. },
  5820. },
  5821. [
  5822. {
  5823. name: "Normal",
  5824. height: math.unit(11.25, "feet"),
  5825. default: true
  5826. },
  5827. {
  5828. name: "Large",
  5829. height: math.unit(27, "feet")
  5830. },
  5831. {
  5832. name: "Giant",
  5833. height: math.unit(87, "feet")
  5834. },
  5835. {
  5836. name: "Macro",
  5837. height: math.unit(365, "feet")
  5838. },
  5839. {
  5840. name: "Megamacro",
  5841. height: math.unit(3, "miles")
  5842. },
  5843. {
  5844. name: "World Serpent",
  5845. height: math.unit(8000, "miles")
  5846. },
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(180, "lbs"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/daimos/front.svg",
  5858. extra: 4160 / 3897,
  5859. bottom: 0.021
  5860. }
  5861. }
  5862. },
  5863. [
  5864. {
  5865. name: "Normal",
  5866. height: math.unit(8, "feet"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Big Dog",
  5871. height: math.unit(22, "feet")
  5872. },
  5873. {
  5874. name: "Macro",
  5875. height: math.unit(127, "feet")
  5876. },
  5877. {
  5878. name: "Megamacro",
  5879. height: math.unit(3600, "feet")
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5885. {
  5886. side: {
  5887. height: math.unit(6, "feet"),
  5888. weight: math.unit(180, "lbs"),
  5889. name: "Side",
  5890. image: {
  5891. source: "./media/characters/blake/side.svg",
  5892. extra: 1212 / 1120,
  5893. bottom: 0.05
  5894. }
  5895. },
  5896. crouched: {
  5897. height: math.unit(6 * 0.57, "feet"),
  5898. weight: math.unit(180, "lbs"),
  5899. name: "Crouched",
  5900. image: {
  5901. source: "./media/characters/blake/crouched.svg",
  5902. extra: 840 / 587,
  5903. bottom: 0.04
  5904. }
  5905. },
  5906. bent: {
  5907. height: math.unit(6 * 0.75, "feet"),
  5908. weight: math.unit(180, "lbs"),
  5909. name: "Bent",
  5910. image: {
  5911. source: "./media/characters/blake/bent.svg",
  5912. extra: 592 / 544,
  5913. bottom: 0.035
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Normal",
  5920. height: math.unit(8 + 1 / 6, "feet"),
  5921. default: true
  5922. },
  5923. {
  5924. name: "Big Backside",
  5925. height: math.unit(37, "feet")
  5926. },
  5927. {
  5928. name: "Subway Shredder",
  5929. height: math.unit(72, "feet")
  5930. },
  5931. {
  5932. name: "City Carver",
  5933. height: math.unit(1675, "feet")
  5934. },
  5935. {
  5936. name: "Tectonic Tweaker",
  5937. height: math.unit(2300, "miles")
  5938. },
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5943. {
  5944. front: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(180, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/guisetto/front.svg",
  5950. extra: 856 / 817,
  5951. bottom: 0.06
  5952. }
  5953. },
  5954. airborne: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(180, "lbs"),
  5957. name: "Airborne",
  5958. image: {
  5959. source: "./media/characters/guisetto/airborne.svg",
  5960. extra: 584 / 525
  5961. }
  5962. },
  5963. },
  5964. [
  5965. {
  5966. name: "Normal",
  5967. height: math.unit(10 + 11 / 12, "feet"),
  5968. default: true
  5969. },
  5970. {
  5971. name: "Large",
  5972. height: math.unit(35, "feet")
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(475, "feet")
  5977. },
  5978. ]
  5979. ))
  5980. characterMakers.push(() => makeCharacter(
  5981. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5982. {
  5983. front: {
  5984. height: math.unit(6, "feet"),
  5985. weight: math.unit(180, "lbs"),
  5986. name: "Front",
  5987. image: {
  5988. source: "./media/characters/luxor/front.svg",
  5989. extra: 2940 / 2152
  5990. }
  5991. },
  5992. back: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(180, "lbs"),
  5995. name: "Back",
  5996. image: {
  5997. source: "./media/characters/luxor/back.svg",
  5998. extra: 1083 / 960
  5999. }
  6000. },
  6001. },
  6002. [
  6003. {
  6004. name: "Normal",
  6005. height: math.unit(5 + 5 / 6, "feet"),
  6006. default: true
  6007. },
  6008. {
  6009. name: "Lamp",
  6010. height: math.unit(50, "feet")
  6011. },
  6012. {
  6013. name: "Lämp",
  6014. height: math.unit(300, "feet")
  6015. },
  6016. {
  6017. name: "The sun is a lamp",
  6018. height: math.unit(250000, "miles")
  6019. },
  6020. ]
  6021. ))
  6022. characterMakers.push(() => makeCharacter(
  6023. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6024. {
  6025. front: {
  6026. height: math.unit(6, "feet"),
  6027. weight: math.unit(50, "lbs"),
  6028. name: "Front",
  6029. image: {
  6030. source: "./media/characters/huoyan/front.svg"
  6031. }
  6032. },
  6033. side: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(180, "lbs"),
  6036. name: "Side",
  6037. image: {
  6038. source: "./media/characters/huoyan/side.svg"
  6039. }
  6040. },
  6041. },
  6042. [
  6043. {
  6044. name: "Chef",
  6045. height: math.unit(9, "feet")
  6046. },
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(65, "feet"),
  6050. default: true
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(780, "feet")
  6055. },
  6056. {
  6057. name: "Flaming Mountain",
  6058. height: math.unit(4.8, "miles")
  6059. },
  6060. {
  6061. name: "Celestial",
  6062. height: math.unit(765000, "miles")
  6063. },
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(5 + 3 / 4, "feet"),
  6071. weight: math.unit(120, "lbs"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/tails/front.svg"
  6075. }
  6076. }
  6077. },
  6078. [
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(5 + 3 / 4, "feet"),
  6082. default: true
  6083. }
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(4, "feet"),
  6091. weight: math.unit(50, "lbs"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/rainy/front.svg"
  6095. }
  6096. }
  6097. },
  6098. [
  6099. {
  6100. name: "Macro",
  6101. height: math.unit(800, "feet"),
  6102. default: true
  6103. }
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(150, "lbs"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/rainier/front.svg"
  6115. }
  6116. }
  6117. },
  6118. [
  6119. {
  6120. name: "Micro",
  6121. height: math.unit(2, "mm"),
  6122. default: true
  6123. }
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6128. {
  6129. front: {
  6130. height: math.unit(8 + 4/12, "feet"),
  6131. weight: math.unit(450, "kilograms"),
  6132. volume: math.unit(5, "cups"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/andy-renard/front.svg",
  6136. extra: 1839/1726,
  6137. bottom: 134/1973
  6138. }
  6139. },
  6140. back: {
  6141. height: math.unit(8 + 4/12, "feet"),
  6142. weight: math.unit(450, "kilograms"),
  6143. volume: math.unit(5, "cups"),
  6144. name: "Back",
  6145. image: {
  6146. source: "./media/characters/andy-renard/back.svg",
  6147. extra: 1838/1710,
  6148. bottom: 105/1943
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Tall",
  6155. height: math.unit(8 + 4/12, "feet")
  6156. },
  6157. {
  6158. name: "Mini Macro",
  6159. height: math.unit(15, "feet"),
  6160. default: true
  6161. },
  6162. {
  6163. name: "Macro",
  6164. height: math.unit(100, "feet")
  6165. },
  6166. {
  6167. name: "Mega Macro",
  6168. height: math.unit(1000, "feet")
  6169. },
  6170. {
  6171. name: "Giga Macro",
  6172. height: math.unit(10, "miles")
  6173. },
  6174. {
  6175. name: "God Macro",
  6176. height: math.unit(1, "multiverse")
  6177. },
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(210, "lbs"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/cimmaron/front-sfw.svg",
  6189. extra: 701 / 676,
  6190. bottom: 0.046
  6191. }
  6192. },
  6193. back: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(210, "lbs"),
  6196. name: "Back",
  6197. image: {
  6198. source: "./media/characters/cimmaron/back-sfw.svg",
  6199. extra: 701 / 676,
  6200. bottom: 0.046
  6201. }
  6202. },
  6203. frontNsfw: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(210, "lbs"),
  6206. name: "Front (NSFW)",
  6207. image: {
  6208. source: "./media/characters/cimmaron/front-nsfw.svg",
  6209. extra: 701 / 676,
  6210. bottom: 0.046
  6211. }
  6212. },
  6213. backNsfw: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(210, "lbs"),
  6216. name: "Back (NSFW)",
  6217. image: {
  6218. source: "./media/characters/cimmaron/back-nsfw.svg",
  6219. extra: 701 / 676,
  6220. bottom: 0.046
  6221. }
  6222. },
  6223. dick: {
  6224. height: math.unit(1.714, "feet"),
  6225. name: "Dick",
  6226. image: {
  6227. source: "./media/characters/cimmaron/dick.svg"
  6228. }
  6229. },
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(6, "feet"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Macro Mayor",
  6239. height: math.unit(350, "meters")
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(6, "feet"),
  6248. weight: math.unit(200, "lbs"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/akari/front.svg",
  6252. extra: 962 / 901,
  6253. bottom: 0.04
  6254. }
  6255. }
  6256. },
  6257. [
  6258. {
  6259. name: "Micro",
  6260. height: math.unit(5, "inches"),
  6261. default: true
  6262. },
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(7, "feet")
  6266. },
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6271. {
  6272. front: {
  6273. height: math.unit(6, "feet"),
  6274. weight: math.unit(140, "lbs"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/cynosura/front.svg",
  6278. extra: 896 / 847
  6279. }
  6280. },
  6281. back: {
  6282. height: math.unit(6, "feet"),
  6283. weight: math.unit(140, "lbs"),
  6284. name: "Back",
  6285. image: {
  6286. source: "./media/characters/cynosura/back.svg",
  6287. extra: 1365 / 1250
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Micro",
  6294. height: math.unit(4, "inches")
  6295. },
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(5.75, "feet"),
  6299. default: true
  6300. },
  6301. {
  6302. name: "Tall",
  6303. height: math.unit(10, "feet")
  6304. },
  6305. {
  6306. name: "Big",
  6307. height: math.unit(20, "feet")
  6308. },
  6309. {
  6310. name: "Macro",
  6311. height: math.unit(50, "feet")
  6312. },
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6317. {
  6318. front: {
  6319. height: math.unit(13 + 2/12, "feet"),
  6320. weight: math.unit(800, "kg"),
  6321. name: "Front",
  6322. image: {
  6323. source: "./media/characters/gin/front.svg",
  6324. extra: 1312/1191,
  6325. bottom: 45/1357
  6326. }
  6327. },
  6328. mouth: {
  6329. height: math.unit(2.39 * 1.8, "feet"),
  6330. name: "Mouth",
  6331. image: {
  6332. source: "./media/characters/gin/mouth.svg"
  6333. }
  6334. },
  6335. hand: {
  6336. height: math.unit(1.57 * 2.19, "feet"),
  6337. name: "Hand",
  6338. image: {
  6339. source: "./media/characters/gin/hand.svg"
  6340. }
  6341. },
  6342. foot: {
  6343. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6344. name: "Foot",
  6345. image: {
  6346. source: "./media/characters/gin/foot.svg"
  6347. }
  6348. },
  6349. sole: {
  6350. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6351. name: "Sole",
  6352. image: {
  6353. source: "./media/characters/gin/sole.svg"
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Very Small",
  6360. height: math.unit(13 + 2 / 12, "feet")
  6361. },
  6362. {
  6363. name: "Micro",
  6364. height: math.unit(600, "miles")
  6365. },
  6366. {
  6367. name: "Regular",
  6368. height: math.unit(20, "earths"),
  6369. default: true
  6370. },
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(2.2, "solarradii")
  6374. },
  6375. {
  6376. name: "Teramacro",
  6377. height: math.unit(1.2, "galaxies")
  6378. },
  6379. {
  6380. name: "Omegamacro",
  6381. height: math.unit(200, "universes")
  6382. },
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6387. {
  6388. front: {
  6389. height: math.unit(6 + 1 / 6, "feet"),
  6390. weight: math.unit(178, "lbs"),
  6391. name: "Front",
  6392. image: {
  6393. source: "./media/characters/guy/front.svg"
  6394. }
  6395. }
  6396. },
  6397. [
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(6 + 1 / 6, "feet"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "Large",
  6405. height: math.unit(25 + 7 / 12, "feet")
  6406. },
  6407. {
  6408. name: "Macro",
  6409. height: math.unit(60 + 9 / 12, "feet")
  6410. },
  6411. {
  6412. name: "Macro+",
  6413. height: math.unit(246, "feet")
  6414. },
  6415. {
  6416. name: "Macro++",
  6417. height: math.unit(878, "feet")
  6418. }
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(9, "feet"),
  6426. weight: math.unit(800, "lbs"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/tiberius/front.svg",
  6430. extra: 2295 / 2071
  6431. }
  6432. },
  6433. back: {
  6434. height: math.unit(9, "feet"),
  6435. weight: math.unit(800, "lbs"),
  6436. name: "Back",
  6437. image: {
  6438. source: "./media/characters/tiberius/back.svg",
  6439. extra: 2373 / 2160
  6440. }
  6441. },
  6442. },
  6443. [
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(9, "feet"),
  6447. default: true
  6448. }
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6453. {
  6454. front: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(600, "lbs"),
  6457. name: "Front",
  6458. image: {
  6459. source: "./media/characters/surgo/front.svg",
  6460. extra: 3591 / 2227
  6461. }
  6462. },
  6463. back: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(600, "lbs"),
  6466. name: "Back",
  6467. image: {
  6468. source: "./media/characters/surgo/back.svg",
  6469. extra: 3557 / 2228
  6470. }
  6471. },
  6472. laying: {
  6473. height: math.unit(6 * 0.85, "feet"),
  6474. weight: math.unit(600, "lbs"),
  6475. name: "Laying",
  6476. image: {
  6477. source: "./media/characters/surgo/laying.svg"
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(6, "feet"),
  6485. default: true
  6486. }
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6491. {
  6492. side: {
  6493. height: math.unit(6, "feet"),
  6494. weight: math.unit(150, "lbs"),
  6495. name: "Side",
  6496. image: {
  6497. source: "./media/characters/cibus/side.svg",
  6498. extra: 800 / 400
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(6, "feet"),
  6506. default: true
  6507. }
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(240, "lbs"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/nibbles/front.svg"
  6519. }
  6520. },
  6521. side: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(240, "lbs"),
  6524. name: "Side",
  6525. image: {
  6526. source: "./media/characters/nibbles/side.svg"
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(9, "feet"),
  6534. default: true
  6535. }
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6540. {
  6541. side: {
  6542. height: math.unit(5 + 1 / 6, "feet"),
  6543. weight: math.unit(130, "lbs"),
  6544. name: "Side",
  6545. image: {
  6546. source: "./media/characters/rikky/side.svg",
  6547. extra: 851 / 801
  6548. }
  6549. },
  6550. },
  6551. [
  6552. {
  6553. name: "Normal",
  6554. height: math.unit(5 + 1 / 6, "feet")
  6555. },
  6556. {
  6557. name: "Macro",
  6558. height: math.unit(152, "feet"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Megamacro",
  6563. height: math.unit(7, "miles")
  6564. }
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6569. {
  6570. side: {
  6571. height: math.unit(370, "cm"),
  6572. weight: math.unit(350, "lbs"),
  6573. name: "Side",
  6574. image: {
  6575. source: "./media/characters/malfressa/side.svg"
  6576. }
  6577. },
  6578. walking: {
  6579. height: math.unit(370, "cm"),
  6580. weight: math.unit(350, "lbs"),
  6581. name: "Walking",
  6582. image: {
  6583. source: "./media/characters/malfressa/walking.svg"
  6584. }
  6585. },
  6586. feral: {
  6587. height: math.unit(2500, "cm"),
  6588. weight: math.unit(100000, "lbs"),
  6589. name: "Feral",
  6590. image: {
  6591. source: "./media/characters/malfressa/feral.svg",
  6592. extra: 2108 / 837,
  6593. bottom: 0.02
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(370, "cm")
  6601. },
  6602. {
  6603. name: "Macro",
  6604. height: math.unit(300, "meters"),
  6605. default: true
  6606. }
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(6, "feet"),
  6614. weight: math.unit(60, "kg"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/jaro/front.svg",
  6618. extra: 845/817,
  6619. bottom: 45/890
  6620. }
  6621. },
  6622. back: {
  6623. height: math.unit(6, "feet"),
  6624. weight: math.unit(60, "kg"),
  6625. name: "Back",
  6626. image: {
  6627. source: "./media/characters/jaro/back.svg",
  6628. extra: 847/817,
  6629. bottom: 34/881
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Micro",
  6636. height: math.unit(7, "inches")
  6637. },
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(5.5, "feet"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Minimacro",
  6645. height: math.unit(20, "feet")
  6646. },
  6647. {
  6648. name: "Macro",
  6649. height: math.unit(200, "meters")
  6650. }
  6651. ]
  6652. ))
  6653. characterMakers.push(() => makeCharacter(
  6654. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6655. {
  6656. front: {
  6657. height: math.unit(6, "feet"),
  6658. weight: math.unit(195, "lb"),
  6659. name: "Front",
  6660. image: {
  6661. source: "./media/characters/rogue/front.svg"
  6662. }
  6663. },
  6664. },
  6665. [
  6666. {
  6667. name: "Macro",
  6668. height: math.unit(90, "feet"),
  6669. default: true
  6670. },
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6675. {
  6676. standing: {
  6677. height: math.unit(5 + 8 / 12, "feet"),
  6678. weight: math.unit(140, "lb"),
  6679. name: "Standing",
  6680. image: {
  6681. source: "./media/characters/piper/standing.svg",
  6682. extra: 1440/1284,
  6683. bottom: 66/1506
  6684. }
  6685. },
  6686. running: {
  6687. height: math.unit(5 + 8 / 12, "feet"),
  6688. weight: math.unit(140, "lb"),
  6689. name: "Running",
  6690. image: {
  6691. source: "./media/characters/piper/running.svg",
  6692. extra: 3948/3655,
  6693. bottom: 0/3948
  6694. }
  6695. },
  6696. sole: {
  6697. height: math.unit(0.81, "feet"),
  6698. weight: math.unit(2, "kg"),
  6699. name: "Sole",
  6700. image: {
  6701. source: "./media/characters/piper/sole.svg"
  6702. }
  6703. },
  6704. nipple: {
  6705. height: math.unit(0.25, "feet"),
  6706. weight: math.unit(1.5, "lb"),
  6707. name: "Nipple",
  6708. image: {
  6709. source: "./media/characters/piper/nipple.svg"
  6710. }
  6711. },
  6712. head: {
  6713. height: math.unit(1.1, "feet"),
  6714. name: "Head",
  6715. image: {
  6716. source: "./media/characters/piper/head.svg"
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Micro",
  6723. height: math.unit(2, "inches")
  6724. },
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(5 + 8 / 12, "feet")
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(250, "feet"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Megamacro",
  6736. height: math.unit(7, "miles")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6742. {
  6743. front: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(220, "lb"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/gemini/front.svg"
  6749. }
  6750. },
  6751. back: {
  6752. height: math.unit(6, "feet"),
  6753. weight: math.unit(220, "lb"),
  6754. name: "Back",
  6755. image: {
  6756. source: "./media/characters/gemini/back.svg"
  6757. }
  6758. },
  6759. kneeling: {
  6760. height: math.unit(6 / 1.5, "feet"),
  6761. weight: math.unit(220, "lb"),
  6762. name: "Kneeling",
  6763. image: {
  6764. source: "./media/characters/gemini/kneeling.svg",
  6765. bottom: 0.02
  6766. }
  6767. },
  6768. },
  6769. [
  6770. {
  6771. name: "Macro",
  6772. height: math.unit(300, "meters"),
  6773. default: true
  6774. },
  6775. {
  6776. name: "Megamacro",
  6777. height: math.unit(6900, "meters")
  6778. },
  6779. ]
  6780. ))
  6781. characterMakers.push(() => makeCharacter(
  6782. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6783. {
  6784. anthro: {
  6785. height: math.unit(2.35, "meters"),
  6786. weight: math.unit(73, "kg"),
  6787. name: "Anthro",
  6788. image: {
  6789. source: "./media/characters/alicia/anthro.svg",
  6790. extra: 2571 / 2385,
  6791. bottom: 75 / 2648
  6792. }
  6793. },
  6794. paw: {
  6795. height: math.unit(1.32, "feet"),
  6796. name: "Paw",
  6797. image: {
  6798. source: "./media/characters/alicia/paw.svg"
  6799. }
  6800. },
  6801. feral: {
  6802. height: math.unit(1.69, "meters"),
  6803. weight: math.unit(73, "kg"),
  6804. name: "Feral",
  6805. image: {
  6806. source: "./media/characters/alicia/feral.svg",
  6807. extra: 2123 / 1715,
  6808. bottom: 222 / 2349
  6809. }
  6810. },
  6811. },
  6812. [
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(2.35, "meters")
  6816. },
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(60, "meters"),
  6820. default: true
  6821. },
  6822. {
  6823. name: "Megamacro",
  6824. height: math.unit(10000, "kilometers")
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(7, "feet"),
  6833. weight: math.unit(250, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/archy/front.svg"
  6837. }
  6838. }
  6839. },
  6840. [
  6841. {
  6842. name: "Micro",
  6843. height: math.unit(1, "inch")
  6844. },
  6845. {
  6846. name: "Shorty",
  6847. height: math.unit(5, "feet")
  6848. },
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(7, "feet")
  6852. },
  6853. {
  6854. name: "Macro",
  6855. height: math.unit(600, "meters"),
  6856. default: true
  6857. },
  6858. {
  6859. name: "Megamacro",
  6860. height: math.unit(1, "mile")
  6861. },
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(1.65, "meters"),
  6869. weight: math.unit(74, "kg"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/berri/front.svg",
  6873. extra: 857 / 837,
  6874. bottom: 18 / 877
  6875. }
  6876. },
  6877. bum: {
  6878. height: math.unit(1.46, "feet"),
  6879. name: "Bum",
  6880. image: {
  6881. source: "./media/characters/berri/bum.svg"
  6882. }
  6883. },
  6884. mouth: {
  6885. height: math.unit(0.44, "feet"),
  6886. name: "Mouth",
  6887. image: {
  6888. source: "./media/characters/berri/mouth.svg"
  6889. }
  6890. },
  6891. paw: {
  6892. height: math.unit(0.826, "feet"),
  6893. name: "Paw",
  6894. image: {
  6895. source: "./media/characters/berri/paw.svg"
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(1.65, "meters")
  6903. },
  6904. {
  6905. name: "Macro",
  6906. height: math.unit(60, "m"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Megamacro",
  6911. height: math.unit(9.213, "km")
  6912. },
  6913. {
  6914. name: "Planet Eater",
  6915. height: math.unit(489, "megameters")
  6916. },
  6917. {
  6918. name: "Teramacro",
  6919. height: math.unit(2471635000000, "meters")
  6920. },
  6921. {
  6922. name: "Examacro",
  6923. height: math.unit(8.0624e+26, "meters")
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(1.72, "meters"),
  6932. weight: math.unit(68, "kg"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/lexi/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Very Smol",
  6942. height: math.unit(10, "mm")
  6943. },
  6944. {
  6945. name: "Micro",
  6946. height: math.unit(6.8, "cm"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Normal",
  6951. height: math.unit(1.72, "m")
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(1.69, "meters"),
  6960. weight: math.unit(68, "kg"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/martin/front.svg",
  6964. extra: 596 / 581
  6965. }
  6966. }
  6967. },
  6968. [
  6969. {
  6970. name: "Micro",
  6971. height: math.unit(6.85, "cm"),
  6972. default: true
  6973. },
  6974. {
  6975. name: "Normal",
  6976. height: math.unit(1.69, "m")
  6977. }
  6978. ]
  6979. ))
  6980. characterMakers.push(() => makeCharacter(
  6981. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6982. {
  6983. front: {
  6984. height: math.unit(1.69, "meters"),
  6985. weight: math.unit(68, "kg"),
  6986. name: "Front",
  6987. image: {
  6988. source: "./media/characters/juno/front.svg"
  6989. }
  6990. }
  6991. },
  6992. [
  6993. {
  6994. name: "Micro",
  6995. height: math.unit(7, "cm")
  6996. },
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(1.89, "m")
  7000. },
  7001. {
  7002. name: "Macro",
  7003. height: math.unit(353, "meters"),
  7004. default: true
  7005. }
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7010. {
  7011. front: {
  7012. height: math.unit(1.93, "meters"),
  7013. weight: math.unit(83, "kg"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/samantha/front.svg"
  7017. }
  7018. },
  7019. frontClothed: {
  7020. height: math.unit(1.93, "meters"),
  7021. weight: math.unit(83, "kg"),
  7022. name: "Front (Clothed)",
  7023. image: {
  7024. source: "./media/characters/samantha/front-clothed.svg"
  7025. }
  7026. },
  7027. back: {
  7028. height: math.unit(1.93, "meters"),
  7029. weight: math.unit(83, "kg"),
  7030. name: "Back",
  7031. image: {
  7032. source: "./media/characters/samantha/back.svg"
  7033. }
  7034. },
  7035. },
  7036. [
  7037. {
  7038. name: "Normal",
  7039. height: math.unit(1.93, "m")
  7040. },
  7041. {
  7042. name: "Macro",
  7043. height: math.unit(74, "meters"),
  7044. default: true
  7045. },
  7046. {
  7047. name: "Macro+",
  7048. height: math.unit(223, "meters"),
  7049. },
  7050. {
  7051. name: "Megamacro",
  7052. height: math.unit(8381, "meters"),
  7053. },
  7054. {
  7055. name: "Megamacro+",
  7056. height: math.unit(12000, "kilometers")
  7057. },
  7058. ]
  7059. ))
  7060. characterMakers.push(() => makeCharacter(
  7061. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7062. {
  7063. front: {
  7064. height: math.unit(1.92, "meters"),
  7065. weight: math.unit(80, "kg"),
  7066. name: "Front",
  7067. image: {
  7068. source: "./media/characters/dr-clay/front.svg"
  7069. }
  7070. },
  7071. frontClothed: {
  7072. height: math.unit(1.92, "meters"),
  7073. weight: math.unit(80, "kg"),
  7074. name: "Front (Clothed)",
  7075. image: {
  7076. source: "./media/characters/dr-clay/front-clothed.svg"
  7077. }
  7078. }
  7079. },
  7080. [
  7081. {
  7082. name: "Normal",
  7083. height: math.unit(1.92, "m")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(214, "meters"),
  7088. default: true
  7089. },
  7090. {
  7091. name: "Macro+",
  7092. height: math.unit(12.237, "meters"),
  7093. },
  7094. {
  7095. name: "Megamacro",
  7096. height: math.unit(557, "megameters"),
  7097. },
  7098. {
  7099. name: "Unimaginable",
  7100. height: math.unit(120e9, "lightyears")
  7101. },
  7102. ]
  7103. ))
  7104. characterMakers.push(() => makeCharacter(
  7105. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7106. {
  7107. front: {
  7108. height: math.unit(2, "meters"),
  7109. weight: math.unit(80, "kg"),
  7110. name: "Front",
  7111. image: {
  7112. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7113. }
  7114. }
  7115. },
  7116. [
  7117. {
  7118. name: "Teramacro",
  7119. height: math.unit(500000, "lightyears"),
  7120. default: true
  7121. },
  7122. ]
  7123. ))
  7124. characterMakers.push(() => makeCharacter(
  7125. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7126. {
  7127. crux: {
  7128. height: math.unit(2, "meters"),
  7129. weight: math.unit(150, "kg"),
  7130. name: "Crux",
  7131. image: {
  7132. source: "./media/characters/vemus/crux.svg",
  7133. extra: 1074/936,
  7134. bottom: 23/1097
  7135. }
  7136. },
  7137. skunkTanuki: {
  7138. height: math.unit(2, "meters"),
  7139. weight: math.unit(150, "kg"),
  7140. name: "Skunk-Tanuki",
  7141. image: {
  7142. source: "./media/characters/vemus/skunk-tanuki.svg",
  7143. extra: 926/893,
  7144. bottom: 20/946
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(3.75, "meters"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Big",
  7156. height: math.unit(8, "meters")
  7157. },
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(100, "meters")
  7161. },
  7162. {
  7163. name: "Macro+",
  7164. height: math.unit(1500, "meters")
  7165. },
  7166. {
  7167. name: "Stellar",
  7168. height: math.unit(14e8, "meters")
  7169. },
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7174. {
  7175. front: {
  7176. height: math.unit(2, "meters"),
  7177. weight: math.unit(70, "kg"),
  7178. name: "Front",
  7179. image: {
  7180. source: "./media/characters/beherit/front.svg",
  7181. extra: 1234/1109,
  7182. bottom: 55/1289
  7183. }
  7184. }
  7185. },
  7186. [
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(6, "feet")
  7190. },
  7191. {
  7192. name: "Lorg",
  7193. height: math.unit(25, "feet"),
  7194. default: true
  7195. },
  7196. {
  7197. name: "Lorger",
  7198. height: math.unit(75, "feet")
  7199. },
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(200, "meters")
  7203. },
  7204. ]
  7205. ))
  7206. characterMakers.push(() => makeCharacter(
  7207. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7208. {
  7209. front: {
  7210. height: math.unit(2, "meters"),
  7211. weight: math.unit(150, "kg"),
  7212. name: "Front",
  7213. image: {
  7214. source: "./media/characters/everett/front.svg",
  7215. extra: 1017/866,
  7216. bottom: 86/1103
  7217. }
  7218. },
  7219. paw: {
  7220. height: math.unit(2 / 3.6, "meters"),
  7221. name: "Paw",
  7222. image: {
  7223. source: "./media/characters/everett/paw.svg"
  7224. }
  7225. },
  7226. },
  7227. [
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(15, "feet"),
  7231. default: true
  7232. },
  7233. {
  7234. name: "Lorg",
  7235. height: math.unit(70, "feet"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Lorger",
  7240. height: math.unit(250, "feet")
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(500, "meters")
  7245. },
  7246. ]
  7247. ))
  7248. characterMakers.push(() => makeCharacter(
  7249. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7250. {
  7251. front: {
  7252. height: math.unit(2, "meters"),
  7253. weight: math.unit(86, "kg"),
  7254. name: "Front",
  7255. image: {
  7256. source: "./media/characters/rose/front.svg",
  7257. extra: 1785/1636,
  7258. bottom: 30/1815
  7259. },
  7260. form: "liom",
  7261. default: true
  7262. },
  7263. frontSporty: {
  7264. height: math.unit(2, "meters"),
  7265. weight: math.unit(86, "kg"),
  7266. name: "Front (Sporty)",
  7267. image: {
  7268. source: "./media/characters/rose/front-sporty.svg",
  7269. extra: 350/335,
  7270. bottom: 10/360
  7271. },
  7272. form: "liom"
  7273. },
  7274. frontAlt: {
  7275. height: math.unit(1.6, "meters"),
  7276. weight: math.unit(86, "kg"),
  7277. name: "Front (Alt)",
  7278. image: {
  7279. source: "./media/characters/rose/front-alt.svg",
  7280. extra: 299/283,
  7281. bottom: 3/302
  7282. },
  7283. form: "liom"
  7284. },
  7285. plush: {
  7286. height: math.unit(2, "meters"),
  7287. weight: math.unit(86/3, "kg"),
  7288. name: "Plush",
  7289. image: {
  7290. source: "./media/characters/rose/plush.svg",
  7291. extra: 361/337,
  7292. bottom: 11/372
  7293. },
  7294. form: "plush",
  7295. default: true
  7296. },
  7297. faeStanding: {
  7298. height: math.unit(10, "cm"),
  7299. weight: math.unit(10, "grams"),
  7300. name: "Standing",
  7301. image: {
  7302. source: "./media/characters/rose/fae-standing.svg",
  7303. extra: 1189/1060,
  7304. bottom: 27/1216
  7305. },
  7306. form: "fae",
  7307. default: true
  7308. },
  7309. faeSitting: {
  7310. height: math.unit(5, "cm"),
  7311. weight: math.unit(10, "grams"),
  7312. name: "Sitting",
  7313. image: {
  7314. source: "./media/characters/rose/fae-sitting.svg",
  7315. extra: 737/577,
  7316. bottom: 356/1093
  7317. },
  7318. form: "fae"
  7319. },
  7320. faePaw: {
  7321. height: math.unit(1.35, "cm"),
  7322. name: "Paw",
  7323. image: {
  7324. source: "./media/characters/rose/fae-paw.svg"
  7325. },
  7326. form: "fae"
  7327. },
  7328. },
  7329. [
  7330. {
  7331. name: "True Micro",
  7332. height: math.unit(9, "cm"),
  7333. form: "liom"
  7334. },
  7335. {
  7336. name: "Micro",
  7337. height: math.unit(16, "cm"),
  7338. form: "liom"
  7339. },
  7340. {
  7341. name: "Normal",
  7342. height: math.unit(1.85, "meters"),
  7343. default: true,
  7344. form: "liom"
  7345. },
  7346. {
  7347. name: "Mini-Macro",
  7348. height: math.unit(5, "meters"),
  7349. form: "liom"
  7350. },
  7351. {
  7352. name: "Macro",
  7353. height: math.unit(15, "meters"),
  7354. form: "liom"
  7355. },
  7356. {
  7357. name: "True Macro",
  7358. height: math.unit(40, "meters"),
  7359. form: "liom"
  7360. },
  7361. {
  7362. name: "City Scale",
  7363. height: math.unit(1, "km"),
  7364. form: "liom"
  7365. },
  7366. {
  7367. name: "Plushie",
  7368. height: math.unit(9, "cm"),
  7369. form: "plush",
  7370. default: true
  7371. },
  7372. {
  7373. name: "Fae",
  7374. height: math.unit(10, "cm"),
  7375. form: "fae",
  7376. default: true
  7377. },
  7378. ],
  7379. {
  7380. "liom": {
  7381. name: "Liom"
  7382. },
  7383. "plush": {
  7384. name: "Plush"
  7385. },
  7386. "fae": {
  7387. name: "Fae Fox",
  7388. default: true
  7389. }
  7390. }
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7394. {
  7395. front: {
  7396. height: math.unit(2, "meters"),
  7397. weight: math.unit(350, "lbs"),
  7398. name: "Front",
  7399. image: {
  7400. source: "./media/characters/regal/front.svg"
  7401. }
  7402. },
  7403. back: {
  7404. height: math.unit(2, "meters"),
  7405. weight: math.unit(350, "lbs"),
  7406. name: "Back",
  7407. image: {
  7408. source: "./media/characters/regal/back.svg"
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(350, "feet"),
  7416. default: true
  7417. }
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7422. {
  7423. front: {
  7424. height: math.unit(4 + 11 / 12, "feet"),
  7425. weight: math.unit(100, "lbs"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/opal/front.svg"
  7429. }
  7430. },
  7431. frontAlt: {
  7432. height: math.unit(4 + 11 / 12, "feet"),
  7433. weight: math.unit(100, "lbs"),
  7434. name: "Front (Alt)",
  7435. image: {
  7436. source: "./media/characters/opal/front-alt.svg"
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Small",
  7443. height: math.unit(4 + 11 / 12, "feet")
  7444. },
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(20, "feet"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Macro",
  7452. height: math.unit(120, "feet")
  7453. },
  7454. {
  7455. name: "Megamacro",
  7456. height: math.unit(80, "miles")
  7457. },
  7458. {
  7459. name: "True Size",
  7460. height: math.unit(100000, "lightyears")
  7461. },
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7466. {
  7467. front: {
  7468. height: math.unit(6, "feet"),
  7469. weight: math.unit(200, "lbs"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/vector-wuff/front.svg"
  7473. }
  7474. }
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(2.8, "meters")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(450, "meters"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(15, "kilometers")
  7489. }
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(6, "feet"),
  7497. weight: math.unit(256, "lbs"),
  7498. name: "Front",
  7499. image: {
  7500. source: "./media/characters/dannik/front.svg"
  7501. }
  7502. }
  7503. },
  7504. [
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(69.57, "meters"),
  7508. default: true
  7509. },
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(6, "feet"),
  7517. weight: math.unit(120, "lbs"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/azura-saharah/front.svg"
  7521. }
  7522. },
  7523. back: {
  7524. height: math.unit(6, "feet"),
  7525. weight: math.unit(120, "lbs"),
  7526. name: "Back",
  7527. image: {
  7528. source: "./media/characters/azura-saharah/back.svg"
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Macro",
  7535. height: math.unit(100, "feet"),
  7536. default: true
  7537. },
  7538. ]
  7539. ))
  7540. characterMakers.push(() => makeCharacter(
  7541. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7542. {
  7543. side: {
  7544. height: math.unit(5 + 4 / 12, "feet"),
  7545. weight: math.unit(163, "lbs"),
  7546. name: "Side",
  7547. image: {
  7548. source: "./media/characters/kennedy/side.svg"
  7549. }
  7550. }
  7551. },
  7552. [
  7553. {
  7554. name: "Standard Doggo",
  7555. height: math.unit(5 + 4 / 12, "feet")
  7556. },
  7557. {
  7558. name: "Big Doggo",
  7559. height: math.unit(25 + 3 / 12, "feet"),
  7560. default: true
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(5 + 5/12, "feet"),
  7569. weight: math.unit(100, "lbs"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/odios-de-lunar/front.svg",
  7573. extra: 1468/1323,
  7574. bottom: 22/1490
  7575. }
  7576. }
  7577. },
  7578. [
  7579. {
  7580. name: "Micro",
  7581. height: math.unit(3, "inches")
  7582. },
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(5.5, "feet"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Macro",
  7590. height: math.unit(100, "feet")
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7596. {
  7597. back: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(220, "lbs"),
  7600. name: "Back",
  7601. image: {
  7602. source: "./media/characters/mandake/back.svg"
  7603. }
  7604. }
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(7, "feet"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(78, "feet")
  7615. },
  7616. {
  7617. name: "Macro+",
  7618. height: math.unit(300, "meters")
  7619. },
  7620. {
  7621. name: "Macro++",
  7622. height: math.unit(2400, "feet")
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(5167, "meters")
  7627. },
  7628. {
  7629. name: "Gigamacro",
  7630. height: math.unit(41769, "miles")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(120, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/yozey/front.svg"
  7643. }
  7644. },
  7645. frontAlt: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(120, "lbs"),
  7648. name: "Front (Alt)",
  7649. image: {
  7650. source: "./media/characters/yozey/front-alt.svg"
  7651. }
  7652. },
  7653. side: {
  7654. height: math.unit(6, "feet"),
  7655. weight: math.unit(120, "lbs"),
  7656. name: "Side",
  7657. image: {
  7658. source: "./media/characters/yozey/side.svg"
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Micro",
  7665. height: math.unit(3, "inches"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Normal",
  7670. height: math.unit(6, "feet")
  7671. }
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(103, "lbs"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/valeska-voss/front.svg"
  7683. }
  7684. }
  7685. },
  7686. [
  7687. {
  7688. name: "Mini-Sized Sub",
  7689. height: math.unit(3.1, "inches")
  7690. },
  7691. {
  7692. name: "Mid-Sized Sub",
  7693. height: math.unit(6.2, "inches")
  7694. },
  7695. {
  7696. name: "Full-Sized Sub",
  7697. height: math.unit(9.3, "inches")
  7698. },
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(5 + 2 / 12, "foot"),
  7702. default: true
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(6, "feet"),
  7711. weight: math.unit(160, "lbs"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/gene-zeta/front.svg",
  7715. extra: 3006 / 2826,
  7716. bottom: 182 / 3188
  7717. }
  7718. }
  7719. },
  7720. [
  7721. {
  7722. name: "Micro",
  7723. height: math.unit(6, "inches")
  7724. },
  7725. {
  7726. name: "Normal",
  7727. height: math.unit(5 + 11 / 12, "foot"),
  7728. default: true
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(140, "feet")
  7733. },
  7734. {
  7735. name: "Supercharged",
  7736. height: math.unit(2500, "feet")
  7737. },
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(350, "lbs"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/razinox/front.svg",
  7749. extra: 1686 / 1548,
  7750. bottom: 28.2 / 1868
  7751. }
  7752. },
  7753. back: {
  7754. height: math.unit(6, "feet"),
  7755. weight: math.unit(350, "lbs"),
  7756. name: "Back",
  7757. image: {
  7758. source: "./media/characters/razinox/back.svg",
  7759. extra: 1660 / 1590,
  7760. bottom: 15 / 1665
  7761. }
  7762. },
  7763. },
  7764. [
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(10 + 8 / 12, "foot")
  7768. },
  7769. {
  7770. name: "Minimacro",
  7771. height: math.unit(15, "foot")
  7772. },
  7773. {
  7774. name: "Macro",
  7775. height: math.unit(60, "foot"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Megamacro",
  7780. height: math.unit(5, "miles")
  7781. },
  7782. {
  7783. name: "Gigamacro",
  7784. height: math.unit(6000, "miles")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(150, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/cobalt/front.svg"
  7797. }
  7798. }
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(8 + 1 / 12, "foot")
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(111, "foot"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Supracosmic",
  7812. height: math.unit(1e42, "feet")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(5, "inches"),
  7821. name: "Front",
  7822. image: {
  7823. source: "./media/characters/amanda/front.svg",
  7824. extra: 926/791,
  7825. bottom: 38/964
  7826. }
  7827. },
  7828. back: {
  7829. height: math.unit(5, "inches"),
  7830. name: "Back",
  7831. image: {
  7832. source: "./media/characters/amanda/back.svg",
  7833. extra: 909/805,
  7834. bottom: 43/952
  7835. }
  7836. },
  7837. },
  7838. [
  7839. {
  7840. name: "Micro",
  7841. height: math.unit(5, "inches"),
  7842. default: true
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(2.75, "meters"),
  7851. weight: math.unit(1200, "lb"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/teal/front.svg",
  7855. extra: 2463 / 2320,
  7856. bottom: 166 / 2629
  7857. }
  7858. },
  7859. back: {
  7860. height: math.unit(2.75, "meters"),
  7861. weight: math.unit(1200, "lb"),
  7862. name: "Back",
  7863. image: {
  7864. source: "./media/characters/teal/back.svg",
  7865. extra: 2580 / 2489,
  7866. bottom: 151 / 2731
  7867. }
  7868. },
  7869. sitting: {
  7870. height: math.unit(1.9, "meters"),
  7871. weight: math.unit(1200, "lb"),
  7872. name: "Sitting",
  7873. image: {
  7874. source: "./media/characters/teal/sitting.svg",
  7875. extra: 623 / 590,
  7876. bottom: 121 / 744
  7877. }
  7878. },
  7879. standing: {
  7880. height: math.unit(2.75, "meters"),
  7881. weight: math.unit(1200, "lb"),
  7882. name: "Standing",
  7883. image: {
  7884. source: "./media/characters/teal/standing.svg",
  7885. extra: 923 / 893,
  7886. bottom: 60 / 983
  7887. }
  7888. },
  7889. stretching: {
  7890. height: math.unit(3.65, "meters"),
  7891. weight: math.unit(1200, "lb"),
  7892. name: "Stretching",
  7893. image: {
  7894. source: "./media/characters/teal/stretching.svg",
  7895. extra: 1276 / 1244,
  7896. bottom: 0 / 1276
  7897. }
  7898. },
  7899. legged: {
  7900. height: math.unit(1.3, "meters"),
  7901. weight: math.unit(100, "lb"),
  7902. name: "Legged",
  7903. image: {
  7904. source: "./media/characters/teal/legged.svg",
  7905. extra: 462 / 437,
  7906. bottom: 24 / 486
  7907. }
  7908. },
  7909. naga: {
  7910. height: math.unit(5.4, "meters"),
  7911. weight: math.unit(4000, "lb"),
  7912. name: "Naga",
  7913. image: {
  7914. source: "./media/characters/teal/naga.svg",
  7915. extra: 1902 / 1858,
  7916. bottom: 0 / 1902
  7917. }
  7918. },
  7919. hand: {
  7920. height: math.unit(0.52, "meters"),
  7921. name: "Hand",
  7922. image: {
  7923. source: "./media/characters/teal/hand.svg"
  7924. }
  7925. },
  7926. maw: {
  7927. height: math.unit(0.43, "meters"),
  7928. name: "Maw",
  7929. image: {
  7930. source: "./media/characters/teal/maw.svg"
  7931. }
  7932. },
  7933. slit: {
  7934. height: math.unit(0.25, "meters"),
  7935. name: "Slit",
  7936. image: {
  7937. source: "./media/characters/teal/slit.svg"
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(2.75, "meters"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(300, "feet")
  7950. },
  7951. {
  7952. name: "Macro+",
  7953. height: math.unit(2000, "feet")
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7959. {
  7960. frontCat: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(180, "lbs"),
  7963. name: "Front (Cat)",
  7964. image: {
  7965. source: "./media/characters/ravin-amulet/front-cat.svg"
  7966. }
  7967. },
  7968. frontCatAlt: {
  7969. height: math.unit(6, "feet"),
  7970. weight: math.unit(180, "lbs"),
  7971. name: "Front (Alt, Cat)",
  7972. image: {
  7973. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7974. }
  7975. },
  7976. frontWerewolf: {
  7977. height: math.unit(6 * 1.2, "feet"),
  7978. weight: math.unit(225, "lbs"),
  7979. name: "Front (Werewolf)",
  7980. image: {
  7981. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7982. }
  7983. },
  7984. backWerewolf: {
  7985. height: math.unit(6 * 1.2, "feet"),
  7986. weight: math.unit(225, "lbs"),
  7987. name: "Back (Werewolf)",
  7988. image: {
  7989. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Nano",
  7996. height: math.unit(1, "micrometer")
  7997. },
  7998. {
  7999. name: "Micro",
  8000. height: math.unit(1, "inch")
  8001. },
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(6, "feet"),
  8005. default: true
  8006. },
  8007. {
  8008. name: "Macro",
  8009. height: math.unit(60, "feet")
  8010. }
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(165, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/fluoresce/front.svg"
  8022. }
  8023. }
  8024. },
  8025. [
  8026. {
  8027. name: "Micro",
  8028. height: math.unit(6, "cm")
  8029. },
  8030. {
  8031. name: "Normal",
  8032. height: math.unit(5 + 7 / 12, "feet"),
  8033. default: true
  8034. },
  8035. {
  8036. name: "Macro",
  8037. height: math.unit(56, "feet")
  8038. },
  8039. {
  8040. name: "Megamacro",
  8041. height: math.unit(1.9, "miles")
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8047. {
  8048. front: {
  8049. height: math.unit(9 + 6 / 12, "feet"),
  8050. weight: math.unit(523, "lbs"),
  8051. name: "Side",
  8052. image: {
  8053. source: "./media/characters/aurora/side.svg"
  8054. }
  8055. }
  8056. },
  8057. [
  8058. {
  8059. name: "Normal",
  8060. height: math.unit(9 + 6 / 12, "feet")
  8061. },
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(96, "feet"),
  8065. default: true
  8066. },
  8067. {
  8068. name: "Macro+",
  8069. height: math.unit(243, "feet")
  8070. },
  8071. ]
  8072. ))
  8073. characterMakers.push(() => makeCharacter(
  8074. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8075. {
  8076. front: {
  8077. height: math.unit(194, "cm"),
  8078. weight: math.unit(90, "kg"),
  8079. name: "Front",
  8080. image: {
  8081. source: "./media/characters/ranek/front.svg",
  8082. extra: 1862/1791,
  8083. bottom: 80/1942
  8084. }
  8085. },
  8086. back: {
  8087. height: math.unit(194, "cm"),
  8088. weight: math.unit(90, "kg"),
  8089. name: "Back",
  8090. image: {
  8091. source: "./media/characters/ranek/back.svg",
  8092. extra: 1853/1787,
  8093. bottom: 74/1927
  8094. }
  8095. },
  8096. feral: {
  8097. height: math.unit(30, "cm"),
  8098. weight: math.unit(1.6, "lbs"),
  8099. name: "Feral",
  8100. image: {
  8101. source: "./media/characters/ranek/feral.svg",
  8102. extra: 990/631,
  8103. bottom: 29/1019
  8104. }
  8105. },
  8106. },
  8107. [
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(194, "cm"),
  8111. default: true
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(100, "meters")
  8116. },
  8117. ]
  8118. ))
  8119. characterMakers.push(() => makeCharacter(
  8120. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8121. {
  8122. front: {
  8123. height: math.unit(5 + 6 / 12, "feet"),
  8124. weight: math.unit(153, "lbs"),
  8125. name: "Front",
  8126. image: {
  8127. source: "./media/characters/andrew-cooper/front.svg"
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Nano",
  8134. height: math.unit(1, "mm")
  8135. },
  8136. {
  8137. name: "Micro",
  8138. height: math.unit(2, "inches")
  8139. },
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(5 + 6 / 12, "feet"),
  8143. default: true
  8144. }
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(180, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/akane-sato/front.svg",
  8156. extra: 1219 / 1140
  8157. }
  8158. },
  8159. back: {
  8160. height: math.unit(6, "feet"),
  8161. weight: math.unit(180, "lbs"),
  8162. name: "Back",
  8163. image: {
  8164. source: "./media/characters/akane-sato/back.svg",
  8165. extra: 1219 / 1170
  8166. }
  8167. },
  8168. },
  8169. [
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(2.5, "meters")
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(250, "meters"),
  8177. default: true
  8178. },
  8179. {
  8180. name: "Megamacro",
  8181. height: math.unit(25, "km")
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(6, "feet"),
  8190. weight: math.unit(65, "kg"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/rook/front.svg",
  8194. extra: 960 / 950
  8195. }
  8196. }
  8197. },
  8198. [
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(8.8, "feet")
  8202. },
  8203. {
  8204. name: "Macro",
  8205. height: math.unit(88, "feet"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Megamacro",
  8210. height: math.unit(8, "miles")
  8211. },
  8212. ]
  8213. ))
  8214. characterMakers.push(() => makeCharacter(
  8215. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8216. {
  8217. front: {
  8218. height: math.unit(12 + 2 / 12, "feet"),
  8219. weight: math.unit(808, "lbs"),
  8220. name: "Front",
  8221. image: {
  8222. source: "./media/characters/prodigy/front.svg"
  8223. }
  8224. }
  8225. },
  8226. [
  8227. {
  8228. name: "Normal",
  8229. height: math.unit(12 + 2 / 12, "feet"),
  8230. default: true
  8231. },
  8232. {
  8233. name: "Macro",
  8234. height: math.unit(143, "feet")
  8235. },
  8236. {
  8237. name: "Macro+",
  8238. height: math.unit(400, "feet")
  8239. },
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(6, "feet"),
  8247. weight: math.unit(225, "lbs"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/daniel/front.svg"
  8251. }
  8252. },
  8253. leaning: {
  8254. height: math.unit(6, "feet"),
  8255. weight: math.unit(225, "lbs"),
  8256. name: "Leaning",
  8257. image: {
  8258. source: "./media/characters/daniel/leaning.svg"
  8259. }
  8260. },
  8261. },
  8262. [
  8263. {
  8264. name: "Macro",
  8265. height: math.unit(1000, "feet"),
  8266. default: true
  8267. },
  8268. ]
  8269. ))
  8270. characterMakers.push(() => makeCharacter(
  8271. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8272. {
  8273. front: {
  8274. height: math.unit(6, "feet"),
  8275. weight: math.unit(88, "lbs"),
  8276. name: "Front",
  8277. image: {
  8278. source: "./media/characters/chiros/front.svg",
  8279. extra: 306 / 226
  8280. }
  8281. },
  8282. side: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(88, "lbs"),
  8285. name: "Side",
  8286. image: {
  8287. source: "./media/characters/chiros/side.svg",
  8288. extra: 306 / 226
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(6, "cm"),
  8296. default: true
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8302. {
  8303. front: {
  8304. height: math.unit(6, "feet"),
  8305. weight: math.unit(100, "lbs"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/selka/front.svg",
  8309. extra: 947 / 887
  8310. }
  8311. }
  8312. },
  8313. [
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(5, "cm"),
  8317. default: true
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(8 + 3 / 12, "feet"),
  8326. weight: math.unit(424, "lbs"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/verin/front.svg",
  8330. extra: 1845 / 1550
  8331. }
  8332. },
  8333. frontArmored: {
  8334. height: math.unit(8 + 3 / 12, "feet"),
  8335. weight: math.unit(424, "lbs"),
  8336. name: "Front (Armored)",
  8337. image: {
  8338. source: "./media/characters/verin/front-armor.svg",
  8339. extra: 1845 / 1550,
  8340. bottom: 0.01
  8341. }
  8342. },
  8343. back: {
  8344. height: math.unit(8 + 3 / 12, "feet"),
  8345. weight: math.unit(424, "lbs"),
  8346. name: "Back",
  8347. image: {
  8348. source: "./media/characters/verin/back.svg",
  8349. bottom: 0.1,
  8350. extra: 1
  8351. }
  8352. },
  8353. foot: {
  8354. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8355. name: "Foot",
  8356. image: {
  8357. source: "./media/characters/verin/foot.svg"
  8358. }
  8359. },
  8360. },
  8361. [
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(8 + 3 / 12, "feet")
  8365. },
  8366. {
  8367. name: "Minimacro",
  8368. height: math.unit(21, "feet"),
  8369. default: true
  8370. },
  8371. {
  8372. name: "Macro",
  8373. height: math.unit(626, "feet")
  8374. },
  8375. ]
  8376. ))
  8377. characterMakers.push(() => makeCharacter(
  8378. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8379. {
  8380. front: {
  8381. height: math.unit(2.718, "meters"),
  8382. weight: math.unit(150, "lbs"),
  8383. name: "Front",
  8384. image: {
  8385. source: "./media/characters/sovrim-terraquian/front.svg",
  8386. extra: 1752/1689,
  8387. bottom: 36/1788
  8388. }
  8389. },
  8390. back: {
  8391. height: math.unit(2.718, "meters"),
  8392. weight: math.unit(150, "lbs"),
  8393. name: "Back",
  8394. image: {
  8395. source: "./media/characters/sovrim-terraquian/back.svg",
  8396. extra: 1698/1657,
  8397. bottom: 58/1756
  8398. }
  8399. },
  8400. tongue: {
  8401. height: math.unit(2.865, "feet"),
  8402. name: "Tongue",
  8403. image: {
  8404. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8405. }
  8406. },
  8407. hand: {
  8408. height: math.unit(1.61, "feet"),
  8409. name: "Hand",
  8410. image: {
  8411. source: "./media/characters/sovrim-terraquian/hand.svg"
  8412. }
  8413. },
  8414. foot: {
  8415. height: math.unit(1.05, "feet"),
  8416. name: "Foot",
  8417. image: {
  8418. source: "./media/characters/sovrim-terraquian/foot.svg"
  8419. }
  8420. },
  8421. footAlt: {
  8422. height: math.unit(0.88, "feet"),
  8423. name: "Foot (Alt)",
  8424. image: {
  8425. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8426. }
  8427. },
  8428. },
  8429. [
  8430. {
  8431. name: "Micro",
  8432. height: math.unit(2, "inches")
  8433. },
  8434. {
  8435. name: "Small",
  8436. height: math.unit(1, "meter")
  8437. },
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(Math.E, "meters"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(20, "meters")
  8446. },
  8447. {
  8448. name: "Macro+",
  8449. height: math.unit(400, "meters")
  8450. },
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8455. {
  8456. front: {
  8457. height: math.unit(7, "feet"),
  8458. weight: math.unit(489, "lbs"),
  8459. name: "Front",
  8460. image: {
  8461. source: "./media/characters/reece-silvermane/front.svg",
  8462. bottom: 0.02,
  8463. extra: 1
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(1.5, "miles"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(78, "kg"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/kane/front.svg",
  8484. extra: 978 / 899
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(2.1, "m"),
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(1, "km"),
  8496. default: true
  8497. },
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(6, "feet"),
  8505. weight: math.unit(200, "kg"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/tegon/front.svg",
  8509. bottom: 0.01,
  8510. extra: 1
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Micro",
  8517. height: math.unit(1, "inch")
  8518. },
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(6 + 3 / 12, "feet"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Macro",
  8526. height: math.unit(300, "feet")
  8527. },
  8528. {
  8529. name: "Megamacro",
  8530. height: math.unit(69, "miles")
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8536. {
  8537. side: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(2304, "lbs"),
  8540. name: "Side",
  8541. image: {
  8542. source: "./media/characters/arcturax/side.svg",
  8543. extra: 790 / 376,
  8544. bottom: 0.01
  8545. }
  8546. },
  8547. },
  8548. [
  8549. {
  8550. name: "Micro",
  8551. height: math.unit(2, "inch")
  8552. },
  8553. {
  8554. name: "Normal",
  8555. height: math.unit(6, "feet")
  8556. },
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(39, "feet"),
  8560. default: true
  8561. },
  8562. {
  8563. name: "Megamacro",
  8564. height: math.unit(7, "miles")
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(6, "feet"),
  8573. weight: math.unit(50, "lbs"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/sentri/front.svg",
  8577. extra: 1750 / 1570,
  8578. bottom: 0.025
  8579. }
  8580. },
  8581. frontAlt: {
  8582. height: math.unit(6, "feet"),
  8583. weight: math.unit(50, "lbs"),
  8584. name: "Front (Alt)",
  8585. image: {
  8586. source: "./media/characters/sentri/front-alt.svg",
  8587. extra: 1750 / 1570,
  8588. bottom: 0.025
  8589. }
  8590. },
  8591. },
  8592. [
  8593. {
  8594. name: "Normal",
  8595. height: math.unit(15, "feet"),
  8596. default: true
  8597. },
  8598. {
  8599. name: "Macro",
  8600. height: math.unit(2500, "feet")
  8601. }
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(5 + 8 / 12, "feet"),
  8609. weight: math.unit(130, "lbs"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/corvin/front.svg",
  8613. extra: 1803 / 1629
  8614. }
  8615. },
  8616. frontShirt: {
  8617. height: math.unit(5 + 8 / 12, "feet"),
  8618. weight: math.unit(130, "lbs"),
  8619. name: "Front (Shirt)",
  8620. image: {
  8621. source: "./media/characters/corvin/front-shirt.svg",
  8622. extra: 1803 / 1629
  8623. }
  8624. },
  8625. frontPoncho: {
  8626. height: math.unit(5 + 8 / 12, "feet"),
  8627. weight: math.unit(130, "lbs"),
  8628. name: "Front (Poncho)",
  8629. image: {
  8630. source: "./media/characters/corvin/front-poncho.svg",
  8631. extra: 1803 / 1629
  8632. }
  8633. },
  8634. side: {
  8635. height: math.unit(5 + 8 / 12, "feet"),
  8636. weight: math.unit(130, "lbs"),
  8637. name: "Side",
  8638. image: {
  8639. source: "./media/characters/corvin/side.svg",
  8640. extra: 1012 / 945
  8641. }
  8642. },
  8643. back: {
  8644. height: math.unit(5 + 8 / 12, "feet"),
  8645. weight: math.unit(130, "lbs"),
  8646. name: "Back",
  8647. image: {
  8648. source: "./media/characters/corvin/back.svg",
  8649. extra: 1803 / 1629
  8650. }
  8651. },
  8652. },
  8653. [
  8654. {
  8655. name: "Micro",
  8656. height: math.unit(3, "inches")
  8657. },
  8658. {
  8659. name: "Normal",
  8660. height: math.unit(5 + 8 / 12, "feet")
  8661. },
  8662. {
  8663. name: "Macro",
  8664. height: math.unit(300, "feet"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "Megamacro",
  8669. height: math.unit(500, "miles")
  8670. }
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(6, "feet"),
  8678. weight: math.unit(135, "lbs"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/q/front.svg",
  8682. extra: 854 / 752,
  8683. bottom: 0.005
  8684. }
  8685. },
  8686. back: {
  8687. height: math.unit(6, "feet"),
  8688. weight: math.unit(130, "lbs"),
  8689. name: "Back",
  8690. image: {
  8691. source: "./media/characters/q/back.svg",
  8692. extra: 854 / 752
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(90, "feet"),
  8700. default: true
  8701. },
  8702. {
  8703. name: "Extra Macro",
  8704. height: math.unit(300, "feet"),
  8705. },
  8706. {
  8707. name: "BIG WALF",
  8708. height: math.unit(750, "feet"),
  8709. },
  8710. ]
  8711. ))
  8712. characterMakers.push(() => makeCharacter(
  8713. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8714. {
  8715. front: {
  8716. height: math.unit(6, "feet"),
  8717. weight: math.unit(150, "lbs"),
  8718. name: "Front",
  8719. image: {
  8720. source: "./media/characters/carley/front.svg",
  8721. extra: 3927 / 3540,
  8722. bottom: 29.2 / 735
  8723. }
  8724. }
  8725. },
  8726. [
  8727. {
  8728. name: "Normal",
  8729. height: math.unit(6 + 3 / 12, "feet")
  8730. },
  8731. {
  8732. name: "Macro",
  8733. height: math.unit(185, "feet"),
  8734. default: true
  8735. },
  8736. {
  8737. name: "Megamacro",
  8738. height: math.unit(8, "miles"),
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8744. {
  8745. front: {
  8746. height: math.unit(3, "feet"),
  8747. weight: math.unit(28, "lbs"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/citrine/front.svg"
  8751. }
  8752. }
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(3, "feet"),
  8758. default: true
  8759. }
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8764. {
  8765. front: {
  8766. height: math.unit(14, "feet"),
  8767. weight: math.unit(1450, "kg"),
  8768. preyCapacity: math.unit(15, "people"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/aura-starwind/front.svg",
  8772. extra: 1440/1327,
  8773. bottom: 11/1451
  8774. }
  8775. },
  8776. side: {
  8777. height: math.unit(14, "feet"),
  8778. weight: math.unit(1450, "kg"),
  8779. preyCapacity: math.unit(15, "people"),
  8780. name: "Side",
  8781. image: {
  8782. source: "./media/characters/aura-starwind/side.svg",
  8783. extra: 1654 / 1497
  8784. }
  8785. },
  8786. taur: {
  8787. height: math.unit(18, "feet"),
  8788. weight: math.unit(5500, "kg"),
  8789. preyCapacity: math.unit(50, "people"),
  8790. name: "Taur",
  8791. image: {
  8792. source: "./media/characters/aura-starwind/taur.svg",
  8793. extra: 1760 / 1650
  8794. }
  8795. },
  8796. feral: {
  8797. height: math.unit(46, "feet"),
  8798. weight: math.unit(25000, "kg"),
  8799. preyCapacity: math.unit(120, "people"),
  8800. name: "Feral",
  8801. image: {
  8802. source: "./media/characters/aura-starwind/feral.svg"
  8803. }
  8804. },
  8805. },
  8806. [
  8807. {
  8808. name: "Normal",
  8809. height: math.unit(14, "feet"),
  8810. default: true
  8811. },
  8812. {
  8813. name: "Macro",
  8814. height: math.unit(50, "meters")
  8815. },
  8816. {
  8817. name: "Megamacro",
  8818. height: math.unit(5000, "meters")
  8819. },
  8820. {
  8821. name: "Gigamacro",
  8822. height: math.unit(100000, "kilometers")
  8823. },
  8824. ]
  8825. ))
  8826. characterMakers.push(() => makeCharacter(
  8827. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8828. {
  8829. front: {
  8830. height: math.unit(2 + 7 / 12, "feet"),
  8831. weight: math.unit(32, "lbs"),
  8832. name: "Front",
  8833. image: {
  8834. source: "./media/characters/rivet/front.svg",
  8835. extra: 1716 / 1658,
  8836. bottom: 0.03
  8837. }
  8838. },
  8839. foot: {
  8840. height: math.unit(0.551, "feet"),
  8841. name: "Rivet's Foot",
  8842. image: {
  8843. source: "./media/characters/rivet/foot.svg"
  8844. },
  8845. rename: true
  8846. }
  8847. },
  8848. [
  8849. {
  8850. name: "Micro",
  8851. height: math.unit(1.5, "inches"),
  8852. },
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(2 + 7 / 12, "feet"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(85, "feet")
  8861. },
  8862. {
  8863. name: "Megamacro",
  8864. height: math.unit(2.2, "km")
  8865. }
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(5 + 9 / 12, "feet"),
  8873. weight: math.unit(150, "lbs"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/coffee/front.svg",
  8877. extra: 3666 / 3032,
  8878. bottom: 0.04
  8879. }
  8880. },
  8881. foot: {
  8882. height: math.unit(1.29, "feet"),
  8883. name: "Foot",
  8884. image: {
  8885. source: "./media/characters/coffee/foot.svg"
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Micro",
  8892. height: math.unit(2, "inches"),
  8893. },
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(5 + 9 / 12, "feet"),
  8897. default: true
  8898. },
  8899. {
  8900. name: "Macro",
  8901. height: math.unit(800, "feet")
  8902. },
  8903. {
  8904. name: "Megamacro",
  8905. height: math.unit(25, "miles")
  8906. }
  8907. ]
  8908. ))
  8909. characterMakers.push(() => makeCharacter(
  8910. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8911. {
  8912. front: {
  8913. height: math.unit(6, "feet"),
  8914. weight: math.unit(200, "lbs"),
  8915. name: "Front",
  8916. image: {
  8917. source: "./media/characters/chari-gal/front.svg",
  8918. extra: 1568 / 1385,
  8919. bottom: 0.047
  8920. }
  8921. },
  8922. gigantamax: {
  8923. height: math.unit(6 * 16, "feet"),
  8924. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8925. name: "Gigantamax",
  8926. image: {
  8927. source: "./media/characters/chari-gal/gigantamax.svg",
  8928. extra: 1124 / 888,
  8929. bottom: 0.03
  8930. }
  8931. },
  8932. },
  8933. [
  8934. {
  8935. name: "Normal",
  8936. height: math.unit(5 + 7 / 12, "feet")
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(200, "feet"),
  8941. default: true
  8942. }
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8947. {
  8948. front: {
  8949. height: math.unit(6, "feet"),
  8950. weight: math.unit(150, "lbs"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/nova/front.svg",
  8954. extra: 5000 / 4722,
  8955. bottom: 0.02
  8956. }
  8957. }
  8958. },
  8959. [
  8960. {
  8961. name: "Micro-",
  8962. height: math.unit(0.8, "inches")
  8963. },
  8964. {
  8965. name: "Micro",
  8966. height: math.unit(2, "inches"),
  8967. default: true
  8968. },
  8969. ]
  8970. ))
  8971. characterMakers.push(() => makeCharacter(
  8972. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8973. {
  8974. front: {
  8975. height: math.unit(3 + 1 / 12, "feet"),
  8976. weight: math.unit(21.7, "lbs"),
  8977. name: "Front",
  8978. image: {
  8979. source: "./media/characters/argent/front.svg",
  8980. extra: 1471 / 1331,
  8981. bottom: 100.8 / 1575.5
  8982. }
  8983. }
  8984. },
  8985. [
  8986. {
  8987. name: "Micro",
  8988. height: math.unit(2, "inches")
  8989. },
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(3 + 1 / 12, "feet"),
  8993. default: true
  8994. },
  8995. {
  8996. name: "Macro",
  8997. height: math.unit(120, "feet")
  8998. },
  8999. ]
  9000. ))
  9001. characterMakers.push(() => makeCharacter(
  9002. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9003. {
  9004. lamp: {
  9005. height: math.unit(7 * 1559 / 989, "feet"),
  9006. name: "Magic Lamp",
  9007. image: {
  9008. source: "./media/characters/mira-al-cul/lamp.svg",
  9009. extra: 1617 / 1559
  9010. }
  9011. },
  9012. front: {
  9013. height: math.unit(7, "feet"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/mira-al-cul/front.svg",
  9017. extra: 1044 / 990
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Heavily Restricted",
  9024. height: math.unit(7 * 1559 / 989, "feet")
  9025. },
  9026. {
  9027. name: "Freshly Freed",
  9028. height: math.unit(50 * 1559 / 989, "feet")
  9029. },
  9030. {
  9031. name: "World Encompassing",
  9032. height: math.unit(10000 * 1559 / 989, "miles")
  9033. },
  9034. {
  9035. name: "Galactic",
  9036. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9037. },
  9038. {
  9039. name: "Palmed Universe",
  9040. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9041. default: true
  9042. },
  9043. {
  9044. name: "Multiversal Matriarch",
  9045. height: math.unit(8.87e10, "yottameters")
  9046. },
  9047. {
  9048. name: "Void Mother",
  9049. height: math.unit(3.14e110, "yottaparsecs")
  9050. },
  9051. {
  9052. name: "Toying with Transcendence",
  9053. height: math.unit(1e307, "meters")
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9059. {
  9060. front: {
  9061. height: math.unit(17 + 1 / 12, "feet"),
  9062. weight: math.unit(476.2 * 5, "lbs"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/kuro-shi-uchū/front.svg",
  9066. extra: 2329 / 1835,
  9067. bottom: 0.02
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Micro",
  9074. height: math.unit(2, "inches")
  9075. },
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(12, "meters")
  9079. },
  9080. {
  9081. name: "Planetary",
  9082. height: math.unit(0.00929, "AU"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Universal",
  9087. height: math.unit(20, "gigaparsecs")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(5 + 2 / 12, "feet"),
  9096. weight: math.unit(120, "lbs"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/katherine/front.svg",
  9100. extra: 2075 / 1969
  9101. }
  9102. },
  9103. dress: {
  9104. height: math.unit(5 + 2 / 12, "feet"),
  9105. weight: math.unit(120, "lbs"),
  9106. name: "Dress",
  9107. image: {
  9108. source: "./media/characters/katherine/dress.svg",
  9109. extra: 2258 / 2064
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Micro",
  9116. height: math.unit(1, "inches"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Normal",
  9121. height: math.unit(5 + 2 / 12, "feet")
  9122. },
  9123. {
  9124. name: "Macro",
  9125. height: math.unit(100, "meters")
  9126. },
  9127. {
  9128. name: "Megamacro",
  9129. height: math.unit(80, "miles")
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(7 + 8 / 12, "feet"),
  9138. weight: math.unit(250, "lbs"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/yevis/front.svg",
  9142. extra: 1938 / 1755
  9143. }
  9144. }
  9145. },
  9146. [
  9147. {
  9148. name: "Mortal",
  9149. height: math.unit(7 + 8 / 12, "feet")
  9150. },
  9151. {
  9152. name: "Battle",
  9153. height: math.unit(25 + 11 / 12, "feet")
  9154. },
  9155. {
  9156. name: "Wrath",
  9157. height: math.unit(1654 + 11 / 12, "feet")
  9158. },
  9159. {
  9160. name: "Planet Destroyer",
  9161. height: math.unit(12000, "miles")
  9162. },
  9163. {
  9164. name: "Galaxy Conqueror",
  9165. height: math.unit(1.45, "zettameters"),
  9166. default: true
  9167. },
  9168. {
  9169. name: "Universal War",
  9170. height: math.unit(184, "gigaparsecs")
  9171. },
  9172. {
  9173. name: "Eternity War",
  9174. height: math.unit(1.98e55, "yottaparsecs")
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(5 + 8 / 12, "feet"),
  9183. weight: math.unit(63, "kg"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/xavier/front.svg",
  9187. extra: 944 / 883
  9188. }
  9189. },
  9190. frontStretch: {
  9191. height: math.unit(5 + 8 / 12, "feet"),
  9192. weight: math.unit(63, "kg"),
  9193. name: "Stretching",
  9194. image: {
  9195. source: "./media/characters/xavier/front-stretch.svg",
  9196. extra: 962 / 820
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(5 + 8 / 12, "feet")
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(100, "meters"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "McLargeHuge",
  9212. height: math.unit(10, "miles")
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(5 + 5 / 12, "feet"),
  9221. weight: math.unit(150, "lb"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/joshii/front.svg",
  9225. extra: 765 / 653,
  9226. bottom: 51 / 816
  9227. }
  9228. },
  9229. foot: {
  9230. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9231. name: "Foot",
  9232. image: {
  9233. source: "./media/characters/joshii/foot.svg"
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(2, "inches"),
  9241. default: true
  9242. },
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(5 + 5 / 12, "feet")
  9246. },
  9247. {
  9248. name: "Macro",
  9249. height: math.unit(785, "feet")
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(24.5, "miles")
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(150, "lb"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/goddess-elizabeth/front.svg",
  9266. extra: 1800 / 1525,
  9267. bottom: 0.005
  9268. }
  9269. },
  9270. foot: {
  9271. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9272. name: "Foot",
  9273. image: {
  9274. source: "./media/characters/goddess-elizabeth/foot.svg"
  9275. }
  9276. },
  9277. mouth: {
  9278. height: math.unit(6, "feet"),
  9279. name: "Mouth",
  9280. image: {
  9281. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Micro",
  9288. height: math.unit(12, "feet")
  9289. },
  9290. {
  9291. name: "Normal",
  9292. height: math.unit(80, "miles"),
  9293. default: true
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(15000, "parsecs")
  9298. },
  9299. ]
  9300. ))
  9301. characterMakers.push(() => makeCharacter(
  9302. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9303. {
  9304. front: {
  9305. height: math.unit(5 + 9 / 12, "feet"),
  9306. weight: math.unit(144, "lb"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/kara/front.svg"
  9310. }
  9311. },
  9312. feet: {
  9313. height: math.unit(6 / 6.765, "feet"),
  9314. name: "Kara's Feet",
  9315. rename: true,
  9316. image: {
  9317. source: "./media/characters/kara/feet.svg"
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(5 + 9 / 12, "feet")
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(174, "feet"),
  9329. default: true
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9335. {
  9336. front: {
  9337. height: math.unit(18, "feet"),
  9338. weight: math.unit(4050, "lb"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/tyrone/front.svg",
  9342. extra: 2405 / 2270,
  9343. bottom: 182 / 2587
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(18, "feet"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Macro",
  9355. height: math.unit(300, "feet")
  9356. },
  9357. {
  9358. name: "Megamacro",
  9359. height: math.unit(15, "km")
  9360. },
  9361. {
  9362. name: "Gigamacro",
  9363. height: math.unit(500, "km")
  9364. },
  9365. {
  9366. name: "Teramacro",
  9367. height: math.unit(0.5, "gigameters")
  9368. },
  9369. {
  9370. name: "Omnimacro",
  9371. height: math.unit(1e252, "yottauniverse")
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(7 + 8 / 12, "feet"),
  9380. weight: math.unit(120, "lb"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/danny/front.svg",
  9384. extra: 1490 / 1350
  9385. }
  9386. },
  9387. back: {
  9388. height: math.unit(7 + 8 / 12, "feet"),
  9389. weight: math.unit(120, "lb"),
  9390. name: "Back",
  9391. image: {
  9392. source: "./media/characters/danny/back.svg",
  9393. extra: 1490 / 1350
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(7 + 8 / 12, "feet"),
  9401. default: true
  9402. },
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9407. {
  9408. front: {
  9409. height: math.unit(3.5, "inches"),
  9410. weight: math.unit(19, "grams"),
  9411. name: "Front",
  9412. image: {
  9413. source: "./media/characters/mallow/front.svg",
  9414. extra: 471 / 431
  9415. }
  9416. },
  9417. back: {
  9418. height: math.unit(3.5, "inches"),
  9419. weight: math.unit(19, "grams"),
  9420. name: "Back",
  9421. image: {
  9422. source: "./media/characters/mallow/back.svg",
  9423. extra: 471 / 431
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Normal",
  9430. height: math.unit(3.5, "inches"),
  9431. default: true
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(9, "feet"),
  9440. weight: math.unit(230, "kg"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/starry-aqua/front.svg"
  9444. }
  9445. },
  9446. back: {
  9447. height: math.unit(9, "feet"),
  9448. weight: math.unit(230, "kg"),
  9449. name: "Back",
  9450. image: {
  9451. source: "./media/characters/starry-aqua/back.svg"
  9452. }
  9453. },
  9454. hand: {
  9455. height: math.unit(9 * 0.1168, "feet"),
  9456. name: "Hand",
  9457. image: {
  9458. source: "./media/characters/starry-aqua/hand.svg"
  9459. }
  9460. },
  9461. foot: {
  9462. height: math.unit(9 * 0.18, "feet"),
  9463. name: "Foot",
  9464. image: {
  9465. source: "./media/characters/starry-aqua/foot.svg"
  9466. }
  9467. }
  9468. },
  9469. [
  9470. {
  9471. name: "Micro",
  9472. height: math.unit(3, "inches")
  9473. },
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(9, "feet")
  9477. },
  9478. {
  9479. name: "Macro",
  9480. height: math.unit(300, "feet"),
  9481. default: true
  9482. },
  9483. {
  9484. name: "Megamacro",
  9485. height: math.unit(3200, "feet")
  9486. }
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9491. {
  9492. front: {
  9493. height: math.unit(15, "feet"),
  9494. weight: math.unit(5026, "lb"),
  9495. name: "Front",
  9496. image: {
  9497. source: "./media/characters/luka-towers/front.svg",
  9498. extra: 1269/1133,
  9499. bottom: 51/1320
  9500. }
  9501. },
  9502. },
  9503. [
  9504. {
  9505. name: "Normal",
  9506. height: math.unit(15, "feet"),
  9507. default: true
  9508. },
  9509. {
  9510. name: "Minimacro",
  9511. height: math.unit(25, "feet")
  9512. },
  9513. {
  9514. name: "Macro",
  9515. height: math.unit(320, "feet")
  9516. },
  9517. {
  9518. name: "Megamacro",
  9519. height: math.unit(35000, "feet")
  9520. },
  9521. {
  9522. name: "Gigamacro",
  9523. height: math.unit(4000, "miles")
  9524. },
  9525. {
  9526. name: "Teramacro",
  9527. height: math.unit(15000, "miles")
  9528. },
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9533. {
  9534. front: {
  9535. height: math.unit(6, "feet"),
  9536. weight: math.unit(150, "lb"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/natalie-nightring/front.svg",
  9540. extra: 1,
  9541. bottom: 0.06
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Uh Oh",
  9548. height: math.unit(0.1, "mm")
  9549. },
  9550. {
  9551. name: "Small",
  9552. height: math.unit(3, "inches")
  9553. },
  9554. {
  9555. name: "Human Scale",
  9556. height: math.unit(6, "feet")
  9557. },
  9558. {
  9559. name: "Librarian",
  9560. height: math.unit(50, "feet"),
  9561. default: true
  9562. },
  9563. {
  9564. name: "Immense",
  9565. height: math.unit(200, "miles")
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(180, "lbs"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/danni-rosie/front.svg",
  9578. extra: 1260 / 1128,
  9579. bottom: 0.022
  9580. }
  9581. },
  9582. },
  9583. [
  9584. {
  9585. name: "Micro",
  9586. height: math.unit(2, "inches"),
  9587. default: true
  9588. },
  9589. ]
  9590. ))
  9591. characterMakers.push(() => makeCharacter(
  9592. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9593. {
  9594. front: {
  9595. height: math.unit(5 + 9 / 12, "feet"),
  9596. weight: math.unit(220, "lb"),
  9597. name: "Front",
  9598. image: {
  9599. source: "./media/characters/samantha-kruse/front.svg",
  9600. extra: (985 / 935),
  9601. bottom: 0.03
  9602. }
  9603. },
  9604. frontUndressed: {
  9605. height: math.unit(5 + 9 / 12, "feet"),
  9606. weight: math.unit(220, "lb"),
  9607. name: "Front (Undressed)",
  9608. image: {
  9609. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9610. extra: (973 / 923),
  9611. bottom: 0.025
  9612. }
  9613. },
  9614. fat: {
  9615. height: math.unit(5 + 9 / 12, "feet"),
  9616. weight: math.unit(900, "lb"),
  9617. name: "Front (Fat)",
  9618. image: {
  9619. source: "./media/characters/samantha-kruse/fat.svg",
  9620. extra: 2688 / 2561
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(5 + 9 / 12, "feet"),
  9628. default: true
  9629. }
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9634. {
  9635. back: {
  9636. height: math.unit(5 + 4 / 12, "feet"),
  9637. weight: math.unit(4963, "lb"),
  9638. name: "Back",
  9639. image: {
  9640. source: "./media/characters/amelia-rosie/back.svg",
  9641. extra: 1113 / 963,
  9642. bottom: 0.01
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Level 0",
  9649. height: math.unit(5 + 4 / 12, "feet")
  9650. },
  9651. {
  9652. name: "Level 1",
  9653. height: math.unit(164597, "feet"),
  9654. default: true
  9655. },
  9656. {
  9657. name: "Level 2",
  9658. height: math.unit(956243, "miles")
  9659. },
  9660. {
  9661. name: "Level 3",
  9662. height: math.unit(29421709423, "miles")
  9663. },
  9664. {
  9665. name: "Level 4",
  9666. height: math.unit(154, "lightyears")
  9667. },
  9668. {
  9669. name: "Level 5",
  9670. height: math.unit(4738272, "lightyears")
  9671. },
  9672. {
  9673. name: "Level 6",
  9674. height: math.unit(145787152896, "lightyears")
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(5 + 11 / 12, "feet"),
  9683. weight: math.unit(65, "kg"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/rook-kitara/front.svg",
  9687. extra: 1347 / 1274,
  9688. bottom: 0.005
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Totally Unfair",
  9695. height: math.unit(1.8, "mm")
  9696. },
  9697. {
  9698. name: "Lap Rookie",
  9699. height: math.unit(1.4, "feet")
  9700. },
  9701. {
  9702. name: "Normal",
  9703. height: math.unit(5 + 11 / 12, "feet"),
  9704. default: true
  9705. },
  9706. {
  9707. name: "How Did This Happen",
  9708. height: math.unit(80, "miles")
  9709. }
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(7, "feet"),
  9717. weight: math.unit(300, "lb"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/pisces/front.svg",
  9721. extra: 2255 / 2115,
  9722. bottom: 0.03
  9723. }
  9724. },
  9725. back: {
  9726. height: math.unit(7, "feet"),
  9727. weight: math.unit(300, "lb"),
  9728. name: "Back",
  9729. image: {
  9730. source: "./media/characters/pisces/back.svg",
  9731. extra: 2146 / 2055,
  9732. bottom: 0.04
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(7, "feet"),
  9740. default: true
  9741. },
  9742. {
  9743. name: "Swimming Pool",
  9744. height: math.unit(12.2, "meters")
  9745. },
  9746. {
  9747. name: "Olympic Swimming Pool",
  9748. height: math.unit(56.3, "meters")
  9749. },
  9750. {
  9751. name: "Lake Superior",
  9752. height: math.unit(93900, "meters")
  9753. },
  9754. {
  9755. name: "Mediterranean Sea",
  9756. height: math.unit(644457, "meters")
  9757. },
  9758. {
  9759. name: "World's Oceans",
  9760. height: math.unit(4567491, "meters")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9766. {
  9767. front: {
  9768. height: math.unit(2.3, "meters"),
  9769. weight: math.unit(120, "kg"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/zelas/front.svg"
  9773. }
  9774. },
  9775. side: {
  9776. height: math.unit(2.3, "meters"),
  9777. weight: math.unit(120, "kg"),
  9778. name: "Side",
  9779. image: {
  9780. source: "./media/characters/zelas/side.svg"
  9781. }
  9782. },
  9783. back: {
  9784. height: math.unit(2.3, "meters"),
  9785. weight: math.unit(120, "kg"),
  9786. name: "Back",
  9787. image: {
  9788. source: "./media/characters/zelas/back.svg"
  9789. }
  9790. },
  9791. foot: {
  9792. height: math.unit(1.116, "feet"),
  9793. name: "Foot",
  9794. image: {
  9795. source: "./media/characters/zelas/foot.svg"
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(2.3, "meters")
  9803. },
  9804. {
  9805. name: "Macro",
  9806. height: math.unit(30, "meters"),
  9807. default: true
  9808. },
  9809. ]
  9810. ))
  9811. characterMakers.push(() => makeCharacter(
  9812. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9813. {
  9814. front: {
  9815. height: math.unit(1, "inch"),
  9816. weight: math.unit(0.21, "grams"),
  9817. name: "Front",
  9818. image: {
  9819. source: "./media/characters/talbot/front.svg",
  9820. extra: 594 / 544
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Micro",
  9827. height: math.unit(1, "inch"),
  9828. default: true
  9829. },
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9834. {
  9835. front: {
  9836. height: math.unit(3 + 3 / 12, "feet"),
  9837. weight: math.unit(51.8, "lb"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/fliss/front.svg",
  9841. extra: 840 / 640
  9842. }
  9843. },
  9844. },
  9845. [
  9846. {
  9847. name: "Teeny Tiny",
  9848. height: math.unit(1, "mm")
  9849. },
  9850. {
  9851. name: "Small",
  9852. height: math.unit(1, "inch"),
  9853. default: true
  9854. },
  9855. {
  9856. name: "Standard Sylveon",
  9857. height: math.unit(3 + 3 / 12, "feet")
  9858. },
  9859. {
  9860. name: "Large Nuisance",
  9861. height: math.unit(33, "feet")
  9862. },
  9863. {
  9864. name: "City Filler",
  9865. height: math.unit(3000, "feet")
  9866. },
  9867. {
  9868. name: "New Horizon",
  9869. height: math.unit(6000, "miles")
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(5, "cm"),
  9878. weight: math.unit(1.94, "g"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/fleta/front.svg",
  9882. extra: 835 / 803
  9883. }
  9884. },
  9885. back: {
  9886. height: math.unit(5, "cm"),
  9887. weight: math.unit(1.94, "g"),
  9888. name: "Back",
  9889. image: {
  9890. source: "./media/characters/fleta/back.svg",
  9891. extra: 835 / 803
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Micro",
  9898. height: math.unit(5, "cm"),
  9899. default: true
  9900. },
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(6, "feet"),
  9908. weight: math.unit(225, "lb"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/dominic/front.svg",
  9912. extra: 1770 / 1620,
  9913. bottom: 0.025
  9914. }
  9915. },
  9916. back: {
  9917. height: math.unit(6, "feet"),
  9918. weight: math.unit(225, "lb"),
  9919. name: "Back",
  9920. image: {
  9921. source: "./media/characters/dominic/back.svg",
  9922. extra: 1745 / 1620,
  9923. bottom: 0.065
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Nano",
  9930. height: math.unit(0.1, "mm")
  9931. },
  9932. {
  9933. name: "Micro-",
  9934. height: math.unit(1, "mm")
  9935. },
  9936. {
  9937. name: "Micro",
  9938. height: math.unit(4, "inches")
  9939. },
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(6 + 4 / 12, "feet"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Macro",
  9947. height: math.unit(115, "feet")
  9948. },
  9949. {
  9950. name: "Macro+",
  9951. height: math.unit(955, "feet")
  9952. },
  9953. {
  9954. name: "Megamacro",
  9955. height: math.unit(8990, "feet")
  9956. },
  9957. {
  9958. name: "Gigmacro",
  9959. height: math.unit(9310, "miles")
  9960. },
  9961. {
  9962. name: "Teramacro",
  9963. height: math.unit(1567005010, "miles")
  9964. },
  9965. {
  9966. name: "Examacro",
  9967. height: math.unit(1425, "parsecs")
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9973. {
  9974. front: {
  9975. height: math.unit(400, "feet"),
  9976. weight: math.unit(44444444, "lb"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/major-colonel/front.svg"
  9980. }
  9981. },
  9982. back: {
  9983. height: math.unit(400, "feet"),
  9984. weight: math.unit(44444444, "lb"),
  9985. name: "Back",
  9986. image: {
  9987. source: "./media/characters/major-colonel/back.svg"
  9988. }
  9989. },
  9990. },
  9991. [
  9992. {
  9993. name: "Macro",
  9994. height: math.unit(400, "feet"),
  9995. default: true
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10001. {
  10002. catFront: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(120, "lb"),
  10005. name: "Front (Cat Side)",
  10006. image: {
  10007. source: "./media/characters/axel-lycan/cat-front.svg",
  10008. extra: 430 / 402,
  10009. bottom: 43 / 472.35
  10010. }
  10011. },
  10012. catBack: {
  10013. height: math.unit(6, "feet"),
  10014. weight: math.unit(120, "lb"),
  10015. name: "Back (Cat Side)",
  10016. image: {
  10017. source: "./media/characters/axel-lycan/cat-back.svg",
  10018. extra: 447 / 419,
  10019. bottom: 23.3 / 469
  10020. }
  10021. },
  10022. wolfFront: {
  10023. height: math.unit(6, "feet"),
  10024. weight: math.unit(120, "lb"),
  10025. name: "Front (Wolf Side)",
  10026. image: {
  10027. source: "./media/characters/axel-lycan/wolf-front.svg",
  10028. extra: 485 / 456,
  10029. bottom: 19 / 504
  10030. }
  10031. },
  10032. wolfBack: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(120, "lb"),
  10035. name: "Back (Wolf Side)",
  10036. image: {
  10037. source: "./media/characters/axel-lycan/wolf-back.svg",
  10038. extra: 475 / 438,
  10039. bottom: 39.2 / 514
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Macro",
  10046. height: math.unit(1, "km"),
  10047. default: true
  10048. },
  10049. ]
  10050. ))
  10051. characterMakers.push(() => makeCharacter(
  10052. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10053. {
  10054. front: {
  10055. height: math.unit(5 + 9 / 12, "feet"),
  10056. weight: math.unit(175, "lb"),
  10057. name: "Front",
  10058. image: {
  10059. source: "./media/characters/vanrel-hyena/front.svg",
  10060. extra: 1086 / 1010,
  10061. bottom: 0.04
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Normal",
  10068. height: math.unit(5 + 9 / 12, "feet"),
  10069. default: true
  10070. },
  10071. ]
  10072. ))
  10073. characterMakers.push(() => makeCharacter(
  10074. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10075. {
  10076. front: {
  10077. height: math.unit(6, "feet"),
  10078. weight: math.unit(103, "lb"),
  10079. name: "Front",
  10080. image: {
  10081. source: "./media/characters/abbott-absol/front.svg",
  10082. extra: 2010 / 1842
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Megamicro",
  10089. height: math.unit(0.1, "mm")
  10090. },
  10091. {
  10092. name: "Micro",
  10093. height: math.unit(1, "inch")
  10094. },
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(6, "feet"),
  10098. default: true
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(264, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/hector/front.svg",
  10111. extra: 2280 / 2130,
  10112. bottom: 0.07
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(12.25, "foot"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Macro",
  10124. height: math.unit(160, "feet")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(6, "feet"),
  10133. weight: math.unit(150, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/sal/front.svg",
  10137. extra: 1846 / 1699,
  10138. bottom: 0.04
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Megamacro",
  10145. height: math.unit(10, "miles"),
  10146. default: true
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10152. {
  10153. front: {
  10154. height: math.unit(3, "meters"),
  10155. weight: math.unit(450, "kg"),
  10156. name: "front",
  10157. image: {
  10158. source: "./media/characters/ranger/front.svg",
  10159. extra: 2401 / 2243,
  10160. bottom: 0.05
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(3, "meters"),
  10168. default: true
  10169. },
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10174. {
  10175. front: {
  10176. height: math.unit(14, "feet"),
  10177. weight: math.unit(800, "kg"),
  10178. name: "Front",
  10179. image: {
  10180. source: "./media/characters/theresa/front.svg",
  10181. extra: 3575 / 3346,
  10182. bottom: 0.03
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Normal",
  10189. height: math.unit(14, "feet"),
  10190. default: true
  10191. },
  10192. ]
  10193. ))
  10194. characterMakers.push(() => makeCharacter(
  10195. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10196. {
  10197. front: {
  10198. height: math.unit(6, "feet"),
  10199. weight: math.unit(3, "kg"),
  10200. name: "Front",
  10201. image: {
  10202. source: "./media/characters/ine/front.svg",
  10203. extra: 678 / 539,
  10204. bottom: 0.023
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(2.265, "feet"),
  10212. default: true
  10213. },
  10214. ]
  10215. ))
  10216. characterMakers.push(() => makeCharacter(
  10217. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10218. {
  10219. front: {
  10220. height: math.unit(5, "feet"),
  10221. weight: math.unit(30, "kg"),
  10222. name: "Front",
  10223. image: {
  10224. source: "./media/characters/vial/front.svg",
  10225. extra: 1365 / 1277,
  10226. bottom: 0.04
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(5, "feet"),
  10234. default: true
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10240. {
  10241. side: {
  10242. height: math.unit(3.4, "meters"),
  10243. weight: math.unit(1000, "lb"),
  10244. name: "Side",
  10245. image: {
  10246. source: "./media/characters/rovoska/side.svg",
  10247. extra: 4403 / 1515
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Normal",
  10254. height: math.unit(3.4, "meters"),
  10255. default: true
  10256. },
  10257. ]
  10258. ))
  10259. characterMakers.push(() => makeCharacter(
  10260. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10261. {
  10262. front: {
  10263. height: math.unit(8, "feet"),
  10264. weight: math.unit(315, "lb"),
  10265. name: "Front",
  10266. image: {
  10267. source: "./media/characters/gunner-rotthbauer/front.svg"
  10268. }
  10269. },
  10270. back: {
  10271. height: math.unit(8, "feet"),
  10272. weight: math.unit(315, "lb"),
  10273. name: "Back",
  10274. image: {
  10275. source: "./media/characters/gunner-rotthbauer/back.svg"
  10276. }
  10277. },
  10278. },
  10279. [
  10280. {
  10281. name: "Micro",
  10282. height: math.unit(3.5, "inches")
  10283. },
  10284. {
  10285. name: "Normal",
  10286. height: math.unit(8, "feet"),
  10287. default: true
  10288. },
  10289. {
  10290. name: "Macro",
  10291. height: math.unit(250, "feet")
  10292. },
  10293. {
  10294. name: "Megamacro",
  10295. height: math.unit(1, "AU")
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10301. {
  10302. front: {
  10303. height: math.unit(5 + 5 / 12, "feet"),
  10304. weight: math.unit(140, "lb"),
  10305. name: "Front",
  10306. image: {
  10307. source: "./media/characters/allatia/front.svg",
  10308. extra: 1227 / 1180,
  10309. bottom: 0.027
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Normal",
  10316. height: math.unit(5 + 5 / 12, "feet")
  10317. },
  10318. {
  10319. name: "Macro",
  10320. height: math.unit(250, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Megamacro",
  10325. height: math.unit(8, "miles")
  10326. }
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10331. {
  10332. front: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(120, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/tene/front.svg",
  10338. extra: 814/750,
  10339. bottom: 36/850
  10340. }
  10341. },
  10342. stomping: {
  10343. height: math.unit(2.025, "meters"),
  10344. weight: math.unit(120, "lb"),
  10345. name: "Stomping",
  10346. image: {
  10347. source: "./media/characters/tene/stomping.svg",
  10348. extra: 885/821,
  10349. bottom: 15/900
  10350. }
  10351. },
  10352. sitting: {
  10353. height: math.unit(1, "meter"),
  10354. weight: math.unit(120, "lb"),
  10355. name: "Sitting",
  10356. image: {
  10357. source: "./media/characters/tene/sitting.svg",
  10358. extra: 396/366,
  10359. bottom: 79/475
  10360. }
  10361. },
  10362. smiling: {
  10363. height: math.unit(1.2, "feet"),
  10364. name: "Smiling",
  10365. image: {
  10366. source: "./media/characters/tene/smiling.svg",
  10367. extra: 1364/1071,
  10368. bottom: 0/1364
  10369. }
  10370. },
  10371. smug: {
  10372. height: math.unit(1.3, "feet"),
  10373. name: "Smug",
  10374. image: {
  10375. source: "./media/characters/tene/smug.svg",
  10376. extra: 1323/1082,
  10377. bottom: 0/1323
  10378. }
  10379. },
  10380. feral: {
  10381. height: math.unit(3.9, "feet"),
  10382. weight: math.unit(250, "lb"),
  10383. name: "Feral",
  10384. image: {
  10385. source: "./media/characters/tene/feral.svg",
  10386. extra: 717 / 458,
  10387. bottom: 0.179
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(6, "feet")
  10395. },
  10396. {
  10397. name: "Macro",
  10398. height: math.unit(300, "feet"),
  10399. default: true
  10400. },
  10401. {
  10402. name: "Megamacro",
  10403. height: math.unit(5, "miles")
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10409. {
  10410. side: {
  10411. height: math.unit(6, "feet"),
  10412. name: "Side",
  10413. image: {
  10414. source: "./media/characters/evander/side.svg",
  10415. extra: 877 / 477
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Normal",
  10422. height: math.unit(0.83, "meters"),
  10423. default: true
  10424. },
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10429. {
  10430. front: {
  10431. height: math.unit(12, "feet"),
  10432. weight: math.unit(1000, "lb"),
  10433. name: "Front",
  10434. image: {
  10435. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10436. extra: 1762 / 1611
  10437. }
  10438. },
  10439. back: {
  10440. height: math.unit(12, "feet"),
  10441. weight: math.unit(1000, "lb"),
  10442. name: "Back",
  10443. image: {
  10444. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10445. extra: 1762 / 1611
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Normal",
  10452. height: math.unit(12, "feet"),
  10453. default: true
  10454. },
  10455. {
  10456. name: "Kaiju",
  10457. height: math.unit(150, "feet")
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10463. {
  10464. front: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(150, "lb"),
  10467. name: "Front",
  10468. image: {
  10469. source: "./media/characters/zero-alurus/front.svg"
  10470. }
  10471. },
  10472. back: {
  10473. height: math.unit(6, "feet"),
  10474. weight: math.unit(150, "lb"),
  10475. name: "Back",
  10476. image: {
  10477. source: "./media/characters/zero-alurus/back.svg"
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Normal",
  10484. height: math.unit(5 + 10 / 12, "feet")
  10485. },
  10486. {
  10487. name: "Macro",
  10488. height: math.unit(60, "feet"),
  10489. default: true
  10490. },
  10491. {
  10492. name: "Macro+",
  10493. height: math.unit(450, "feet")
  10494. },
  10495. ]
  10496. ))
  10497. characterMakers.push(() => makeCharacter(
  10498. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10499. {
  10500. front: {
  10501. height: math.unit(6, "feet"),
  10502. weight: math.unit(200, "lb"),
  10503. name: "Front",
  10504. image: {
  10505. source: "./media/characters/mega-shi/front.svg",
  10506. extra: 1279 / 1250,
  10507. bottom: 0.02
  10508. }
  10509. },
  10510. back: {
  10511. height: math.unit(6, "feet"),
  10512. weight: math.unit(200, "lb"),
  10513. name: "Back",
  10514. image: {
  10515. source: "./media/characters/mega-shi/back.svg",
  10516. extra: 1279 / 1250,
  10517. bottom: 0.02
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Micro",
  10524. height: math.unit(16 + 6 / 12, "feet")
  10525. },
  10526. {
  10527. name: "Third Dimension",
  10528. height: math.unit(40, "meters")
  10529. },
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(660, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "Megamacro",
  10537. height: math.unit(10, "miles")
  10538. },
  10539. {
  10540. name: "Planetary Launch",
  10541. height: math.unit(500, "miles")
  10542. },
  10543. {
  10544. name: "Interstellar",
  10545. height: math.unit(1e9, "miles")
  10546. },
  10547. {
  10548. name: "Leaving the Universe",
  10549. height: math.unit(1, "gigaparsec")
  10550. },
  10551. {
  10552. name: "Travelling Universes",
  10553. height: math.unit(30e15, "parsecs")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(5 + 4/12, "feet"),
  10562. weight: math.unit(120, "lb"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/odyssey/front.svg",
  10566. extra: 1747/1571,
  10567. bottom: 47/1794
  10568. }
  10569. },
  10570. side: {
  10571. height: math.unit(5.1, "feet"),
  10572. weight: math.unit(120, "lb"),
  10573. name: "Side",
  10574. image: {
  10575. source: "./media/characters/odyssey/side.svg",
  10576. extra: 1847/1619,
  10577. bottom: 47/1894
  10578. }
  10579. },
  10580. lounging: {
  10581. height: math.unit(1.464, "feet"),
  10582. weight: math.unit(120, "lb"),
  10583. name: "Lounging",
  10584. image: {
  10585. source: "./media/characters/odyssey/lounging.svg",
  10586. extra: 1235/837,
  10587. bottom: 551/1786
  10588. }
  10589. },
  10590. },
  10591. [
  10592. {
  10593. name: "Normal",
  10594. height: math.unit(5 + 4 / 12, "feet")
  10595. },
  10596. {
  10597. name: "Macro",
  10598. height: math.unit(1, "km")
  10599. },
  10600. {
  10601. name: "Megamacro",
  10602. height: math.unit(3000, "km")
  10603. },
  10604. {
  10605. name: "Gigamacro",
  10606. height: math.unit(1, "AU"),
  10607. default: true
  10608. },
  10609. {
  10610. name: "Omniversal",
  10611. height: math.unit(100e14, "lightyears")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10617. {
  10618. front: {
  10619. height: math.unit(6, "feet"),
  10620. weight: math.unit(300, "lb"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/mekuto/front.svg",
  10624. extra: 921 / 832,
  10625. bottom: 0.03
  10626. }
  10627. },
  10628. hand: {
  10629. height: math.unit(6 / 10.24, "feet"),
  10630. name: "Hand",
  10631. image: {
  10632. source: "./media/characters/mekuto/hand.svg"
  10633. }
  10634. },
  10635. foot: {
  10636. height: math.unit(6 / 5.05, "feet"),
  10637. name: "Foot",
  10638. image: {
  10639. source: "./media/characters/mekuto/foot.svg"
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Minimicro",
  10646. height: math.unit(0.2, "inches")
  10647. },
  10648. {
  10649. name: "Micro",
  10650. height: math.unit(1.5, "inches")
  10651. },
  10652. {
  10653. name: "Normal",
  10654. height: math.unit(5 + 11 / 12, "feet"),
  10655. default: true
  10656. },
  10657. {
  10658. name: "Minimacro",
  10659. height: math.unit(17 + 9 / 12, "feet")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(177.5, "feet")
  10664. },
  10665. {
  10666. name: "Megamacro",
  10667. height: math.unit(152, "miles")
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(6.5, "inches"),
  10676. weight: math.unit(13, "oz"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/dafydd-tomos/front.svg",
  10680. extra: 2990 / 2603,
  10681. bottom: 0.03
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Micro",
  10688. height: math.unit(6.5, "inches"),
  10689. default: true
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10695. {
  10696. front: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(150, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/splinter/front.svg",
  10702. extra: 2990 / 2882,
  10703. bottom: 0.04
  10704. }
  10705. },
  10706. back: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(150, "lb"),
  10709. name: "Back",
  10710. image: {
  10711. source: "./media/characters/splinter/back.svg",
  10712. extra: 2990 / 2882,
  10713. bottom: 0.04
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Normal",
  10720. height: math.unit(6, "feet")
  10721. },
  10722. {
  10723. name: "Macro",
  10724. height: math.unit(230, "meters"),
  10725. default: true
  10726. },
  10727. ]
  10728. ))
  10729. characterMakers.push(() => makeCharacter(
  10730. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10731. {
  10732. front: {
  10733. height: math.unit(4 + 10 / 12, "feet"),
  10734. weight: math.unit(480, "lb"),
  10735. name: "Front",
  10736. image: {
  10737. source: "./media/characters/snow-gabumon/front.svg",
  10738. extra: 1140 / 963,
  10739. bottom: 0.058
  10740. }
  10741. },
  10742. back: {
  10743. height: math.unit(4 + 10 / 12, "feet"),
  10744. weight: math.unit(480, "lb"),
  10745. name: "Back",
  10746. image: {
  10747. source: "./media/characters/snow-gabumon/back.svg",
  10748. extra: 1115 / 962,
  10749. bottom: 0.041
  10750. }
  10751. },
  10752. frontUndresed: {
  10753. height: math.unit(4 + 10 / 12, "feet"),
  10754. weight: math.unit(480, "lb"),
  10755. name: "Front (Undressed)",
  10756. image: {
  10757. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10758. extra: 1061 / 960,
  10759. bottom: 0.045
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Micro",
  10766. height: math.unit(1, "inch")
  10767. },
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(4 + 10 / 12, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Macro",
  10775. height: math.unit(200, "feet")
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(120, "miles")
  10780. },
  10781. {
  10782. name: "Gigamacro",
  10783. height: math.unit(9800, "miles")
  10784. },
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10789. {
  10790. front: {
  10791. height: math.unit(1.7, "meters"),
  10792. weight: math.unit(140, "lb"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/moody/front.svg",
  10796. extra: 3226 / 3007,
  10797. bottom: 0.087
  10798. }
  10799. },
  10800. },
  10801. [
  10802. {
  10803. name: "Micro",
  10804. height: math.unit(1, "mm")
  10805. },
  10806. {
  10807. name: "Normal",
  10808. height: math.unit(1.7, "meters"),
  10809. default: true
  10810. },
  10811. {
  10812. name: "Macro",
  10813. height: math.unit(80, "meters")
  10814. },
  10815. {
  10816. name: "Macro+",
  10817. height: math.unit(500, "meters")
  10818. },
  10819. ]
  10820. ))
  10821. characterMakers.push(() => makeCharacter(
  10822. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10823. {
  10824. front: {
  10825. height: math.unit(6, "feet"),
  10826. weight: math.unit(150, "lb"),
  10827. name: "Front",
  10828. image: {
  10829. source: "./media/characters/zyas/front.svg",
  10830. extra: 1180 / 1120,
  10831. bottom: 0.045
  10832. }
  10833. },
  10834. },
  10835. [
  10836. {
  10837. name: "Normal",
  10838. height: math.unit(10, "feet"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(500, "feet")
  10844. },
  10845. {
  10846. name: "Megamacro",
  10847. height: math.unit(5, "miles")
  10848. },
  10849. {
  10850. name: "Teramacro",
  10851. height: math.unit(150000, "miles")
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10857. {
  10858. front: {
  10859. height: math.unit(6, "feet"),
  10860. weight: math.unit(150, "lb"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/cuon/front.svg",
  10864. extra: 1390 / 1320,
  10865. bottom: 0.008
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Micro",
  10872. height: math.unit(3, "inches")
  10873. },
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(18 + 9 / 12, "feet"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "Macro",
  10881. height: math.unit(360, "feet")
  10882. },
  10883. {
  10884. name: "Megamacro",
  10885. height: math.unit(360, "miles")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(2.4, "meters"),
  10894. weight: math.unit(70, "kg"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/nyanuxk/front.svg",
  10898. extra: 1172 / 1084,
  10899. bottom: 0.065
  10900. }
  10901. },
  10902. side: {
  10903. height: math.unit(2.4, "meters"),
  10904. weight: math.unit(70, "kg"),
  10905. name: "Side",
  10906. image: {
  10907. source: "./media/characters/nyanuxk/side.svg",
  10908. extra: 1190 / 1132,
  10909. bottom: 0.007
  10910. }
  10911. },
  10912. back: {
  10913. height: math.unit(2.4, "meters"),
  10914. weight: math.unit(70, "kg"),
  10915. name: "Back",
  10916. image: {
  10917. source: "./media/characters/nyanuxk/back.svg",
  10918. extra: 1200 / 1141,
  10919. bottom: 0.015
  10920. }
  10921. },
  10922. foot: {
  10923. height: math.unit(0.52, "meters"),
  10924. name: "Foot",
  10925. image: {
  10926. source: "./media/characters/nyanuxk/foot.svg"
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(2, "cm")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(2.4, "meters"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Smaller Macro",
  10942. height: math.unit(120, "meters")
  10943. },
  10944. {
  10945. name: "Bigger Macro",
  10946. height: math.unit(1.2, "km")
  10947. },
  10948. {
  10949. name: "Megamacro",
  10950. height: math.unit(15, "kilometers")
  10951. },
  10952. {
  10953. name: "Gigamacro",
  10954. height: math.unit(2000, "km")
  10955. },
  10956. {
  10957. name: "Teramacro",
  10958. height: math.unit(500000, "km")
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10964. {
  10965. side: {
  10966. height: math.unit(6, "feet"),
  10967. name: "Side",
  10968. image: {
  10969. source: "./media/characters/ailbhe/side.svg",
  10970. extra: 757 / 464,
  10971. bottom: 0.041
  10972. }
  10973. },
  10974. },
  10975. [
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(1.07, "meters"),
  10979. default: true
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10985. {
  10986. front: {
  10987. height: math.unit(6, "feet"),
  10988. weight: math.unit(120, "kg"),
  10989. name: "Front",
  10990. image: {
  10991. source: "./media/characters/zevulfius/front.svg",
  10992. extra: 965 / 903
  10993. }
  10994. },
  10995. side: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(120, "kg"),
  10998. name: "Side",
  10999. image: {
  11000. source: "./media/characters/zevulfius/side.svg",
  11001. extra: 939 / 900
  11002. }
  11003. },
  11004. back: {
  11005. height: math.unit(6, "feet"),
  11006. weight: math.unit(120, "kg"),
  11007. name: "Back",
  11008. image: {
  11009. source: "./media/characters/zevulfius/back.svg",
  11010. extra: 918 / 854,
  11011. bottom: 0.005
  11012. }
  11013. },
  11014. foot: {
  11015. height: math.unit(6 / 3.72, "feet"),
  11016. name: "Foot",
  11017. image: {
  11018. source: "./media/characters/zevulfius/foot.svg"
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Macro",
  11025. height: math.unit(750, "meters")
  11026. },
  11027. {
  11028. name: "Megamacro",
  11029. height: math.unit(20, "km"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Gigamacro",
  11034. height: math.unit(2000, "km")
  11035. },
  11036. {
  11037. name: "Teramacro",
  11038. height: math.unit(250000, "km")
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(100, "feet"),
  11047. weight: math.unit(350, "kg"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/rikes/front.svg",
  11051. extra: 1565 / 1483,
  11052. bottom: 0.017
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Macro",
  11059. height: math.unit(100, "feet"),
  11060. default: true
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(8, "feet"),
  11069. weight: math.unit(356, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/adam-silver-mane/front.svg",
  11073. extra: 1036/937,
  11074. bottom: 63/1099
  11075. }
  11076. },
  11077. side: {
  11078. height: math.unit(8, "feet"),
  11079. weight: math.unit(356, "lb"),
  11080. name: "Side",
  11081. image: {
  11082. source: "./media/characters/adam-silver-mane/side.svg",
  11083. extra: 997/901,
  11084. bottom: 59/1056
  11085. }
  11086. },
  11087. frontNsfw: {
  11088. height: math.unit(8, "feet"),
  11089. weight: math.unit(356, "lb"),
  11090. name: "Front (NSFW)",
  11091. image: {
  11092. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11093. extra: 1036/937,
  11094. bottom: 63/1099
  11095. }
  11096. },
  11097. sideNsfw: {
  11098. height: math.unit(8, "feet"),
  11099. weight: math.unit(356, "lb"),
  11100. name: "Side (NSFW)",
  11101. image: {
  11102. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11103. extra: 997/901,
  11104. bottom: 59/1056
  11105. }
  11106. },
  11107. dick: {
  11108. height: math.unit(2.1, "feet"),
  11109. name: "Dick",
  11110. image: {
  11111. source: "./media/characters/adam-silver-mane/dick.svg"
  11112. }
  11113. },
  11114. taur: {
  11115. height: math.unit(16, "feet"),
  11116. weight: math.unit(1500, "kg"),
  11117. name: "Taur",
  11118. image: {
  11119. source: "./media/characters/adam-silver-mane/taur.svg",
  11120. extra: 1713 / 1571,
  11121. bottom: 0.01
  11122. }
  11123. },
  11124. },
  11125. [
  11126. {
  11127. name: "Normal",
  11128. height: math.unit(8, "feet")
  11129. },
  11130. {
  11131. name: "Minimacro",
  11132. height: math.unit(80, "feet")
  11133. },
  11134. {
  11135. name: "MDA",
  11136. height: math.unit(80, "meters")
  11137. },
  11138. {
  11139. name: "Macro",
  11140. height: math.unit(800, "feet"),
  11141. default: true
  11142. },
  11143. {
  11144. name: "Megamacro",
  11145. height: math.unit(8000, "feet")
  11146. },
  11147. {
  11148. name: "Gigamacro",
  11149. height: math.unit(800, "miles")
  11150. },
  11151. {
  11152. name: "Teramacro",
  11153. height: math.unit(80000, "miles")
  11154. },
  11155. {
  11156. name: "Celestial",
  11157. height: math.unit(8e6, "miles")
  11158. },
  11159. {
  11160. name: "Star Dragon",
  11161. height: math.unit(800000, "parsecs")
  11162. },
  11163. {
  11164. name: "Godly",
  11165. height: math.unit(800, "teraparsecs")
  11166. },
  11167. ]
  11168. ))
  11169. characterMakers.push(() => makeCharacter(
  11170. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11171. {
  11172. front: {
  11173. height: math.unit(6, "feet"),
  11174. weight: math.unit(150, "lb"),
  11175. name: "Front",
  11176. image: {
  11177. source: "./media/characters/ky'owin/front.svg",
  11178. extra: 3888 / 3068,
  11179. bottom: 0.015
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(6 + 8 / 12, "feet")
  11187. },
  11188. {
  11189. name: "Large",
  11190. height: math.unit(68, "feet")
  11191. },
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(132, "feet")
  11195. },
  11196. {
  11197. name: "Macro+",
  11198. height: math.unit(340, "feet")
  11199. },
  11200. {
  11201. name: "Macro++",
  11202. height: math.unit(680, "feet"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Megamacro",
  11207. height: math.unit(1, "mile")
  11208. },
  11209. {
  11210. name: "Megamacro+",
  11211. height: math.unit(10, "miles")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(4, "feet"),
  11220. weight: math.unit(50, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/mal/front.svg",
  11224. extra: 785 / 724,
  11225. bottom: 0.07
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Micro",
  11232. height: math.unit(4, "inches")
  11233. },
  11234. {
  11235. name: "Normal",
  11236. height: math.unit(4, "feet"),
  11237. default: true
  11238. },
  11239. {
  11240. name: "Macro",
  11241. height: math.unit(200, "feet")
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11247. {
  11248. front: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Front",
  11252. image: {
  11253. source: "./media/characters/jordan-deware/front.svg",
  11254. extra: 1191 / 1012
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Nano",
  11261. height: math.unit(0.01, "mm")
  11262. },
  11263. {
  11264. name: "Minimicro",
  11265. height: math.unit(1, "mm")
  11266. },
  11267. {
  11268. name: "Micro",
  11269. height: math.unit(0.5, "inches")
  11270. },
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(4, "feet"),
  11274. default: true
  11275. },
  11276. {
  11277. name: "Minimacro",
  11278. height: math.unit(40, "meters")
  11279. },
  11280. {
  11281. name: "Small Macro",
  11282. height: math.unit(400, "meters")
  11283. },
  11284. {
  11285. name: "Macro",
  11286. height: math.unit(4, "miles")
  11287. },
  11288. {
  11289. name: "Megamacro",
  11290. height: math.unit(40, "miles")
  11291. },
  11292. {
  11293. name: "Megamacro+",
  11294. height: math.unit(400, "miles")
  11295. },
  11296. {
  11297. name: "Gigamacro",
  11298. height: math.unit(400000, "miles")
  11299. },
  11300. ]
  11301. ))
  11302. characterMakers.push(() => makeCharacter(
  11303. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11304. {
  11305. side: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(150, "lb"),
  11308. name: "Side",
  11309. image: {
  11310. source: "./media/characters/kimiko/side.svg",
  11311. extra: 600 / 358
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(15, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(220, "feet")
  11324. },
  11325. {
  11326. name: "Macro+",
  11327. height: math.unit(1450, "feet")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(11500, "feet")
  11332. },
  11333. {
  11334. name: "Gigamacro",
  11335. height: math.unit(9500, "miles")
  11336. },
  11337. {
  11338. name: "Teramacro",
  11339. height: math.unit(2208005005, "miles")
  11340. },
  11341. {
  11342. name: "Examacro",
  11343. height: math.unit(2750, "parsecs")
  11344. },
  11345. {
  11346. name: "Zettamacro",
  11347. height: math.unit(101500, "parsecs")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11353. {
  11354. front: {
  11355. height: math.unit(6, "feet"),
  11356. weight: math.unit(70, "kg"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/andrew-sleepy/front.svg"
  11360. }
  11361. },
  11362. side: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(70, "kg"),
  11365. name: "Side",
  11366. image: {
  11367. source: "./media/characters/andrew-sleepy/side.svg"
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Micro",
  11374. height: math.unit(1, "mm"),
  11375. default: true
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11381. {
  11382. front: {
  11383. height: math.unit(6, "feet"),
  11384. weight: math.unit(150, "lb"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/judio/front.svg",
  11388. extra: 1258 / 1110
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(5 + 6 / 12, "feet")
  11396. },
  11397. {
  11398. name: "Macro",
  11399. height: math.unit(1000, "feet"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Megamacro",
  11404. height: math.unit(10, "miles")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11410. {
  11411. frontDressed: {
  11412. height: math.unit(6, "feet"),
  11413. weight: math.unit(68, "kg"),
  11414. name: "Front (Dressed)",
  11415. image: {
  11416. source: "./media/characters/nomaxice/front-dressed.svg",
  11417. extra: 1137/824,
  11418. bottom: 74/1211
  11419. }
  11420. },
  11421. frontShorts: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(68, "kg"),
  11424. name: "Front (Shorts)",
  11425. image: {
  11426. source: "./media/characters/nomaxice/front-shorts.svg",
  11427. extra: 1137/824,
  11428. bottom: 74/1211
  11429. }
  11430. },
  11431. back: {
  11432. height: math.unit(6, "feet"),
  11433. weight: math.unit(68, "kg"),
  11434. name: "Back",
  11435. image: {
  11436. source: "./media/characters/nomaxice/back.svg",
  11437. extra: 822/786,
  11438. bottom: 39/861
  11439. }
  11440. },
  11441. hand: {
  11442. height: math.unit(0.565, "feet"),
  11443. name: "Hand",
  11444. image: {
  11445. source: "./media/characters/nomaxice/hand.svg"
  11446. }
  11447. },
  11448. foot: {
  11449. height: math.unit(1, "feet"),
  11450. name: "Foot",
  11451. image: {
  11452. source: "./media/characters/nomaxice/foot.svg"
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Micro",
  11459. height: math.unit(8, "cm")
  11460. },
  11461. {
  11462. name: "Norm",
  11463. height: math.unit(1.82, "m")
  11464. },
  11465. {
  11466. name: "Norm+",
  11467. height: math.unit(8.8, "feet"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Big",
  11472. height: math.unit(8, "meters")
  11473. },
  11474. {
  11475. name: "Macro",
  11476. height: math.unit(18, "meters")
  11477. },
  11478. {
  11479. name: "Macro+",
  11480. height: math.unit(88, "meters")
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(12, "feet"),
  11489. weight: math.unit(1.5, "tons"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/dydros/front.svg",
  11493. extra: 863 / 800,
  11494. bottom: 0.015
  11495. }
  11496. },
  11497. back: {
  11498. height: math.unit(12, "feet"),
  11499. weight: math.unit(1.5, "tons"),
  11500. name: "Back",
  11501. image: {
  11502. source: "./media/characters/dydros/back.svg",
  11503. extra: 900 / 843,
  11504. bottom: 0.005
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Normal",
  11511. height: math.unit(12, "feet"),
  11512. default: true
  11513. },
  11514. ]
  11515. ))
  11516. characterMakers.push(() => makeCharacter(
  11517. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11518. {
  11519. front: {
  11520. height: math.unit(6, "feet"),
  11521. weight: math.unit(100, "kg"),
  11522. name: "Front",
  11523. image: {
  11524. source: "./media/characters/riggi/front.svg",
  11525. extra: 5787 / 5303
  11526. }
  11527. },
  11528. hyper: {
  11529. height: math.unit(6 * 5 / 3, "feet"),
  11530. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11531. name: "Hyper",
  11532. image: {
  11533. source: "./media/characters/riggi/hyper.svg",
  11534. extra: 3595 / 3485
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Small Macro",
  11541. height: math.unit(50, "feet")
  11542. },
  11543. {
  11544. name: "Default",
  11545. height: math.unit(200, "feet"),
  11546. default: true
  11547. },
  11548. {
  11549. name: "Loom",
  11550. height: math.unit(10000, "feet")
  11551. },
  11552. {
  11553. name: "Cruising Altitude",
  11554. height: math.unit(30000, "feet")
  11555. },
  11556. {
  11557. name: "Megamacro",
  11558. height: math.unit(100, "miles")
  11559. },
  11560. {
  11561. name: "Continent Sized",
  11562. height: math.unit(2800, "miles")
  11563. },
  11564. {
  11565. name: "Earth Sized",
  11566. height: math.unit(8000, "miles")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(250, "lb"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/alexi/front.svg",
  11579. extra: 3483 / 3291,
  11580. bottom: 0.04
  11581. }
  11582. },
  11583. back: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(250, "lb"),
  11586. name: "Back",
  11587. image: {
  11588. source: "./media/characters/alexi/back.svg",
  11589. extra: 3533 / 3356,
  11590. bottom: 0.021
  11591. }
  11592. },
  11593. frontTransforming: {
  11594. height: math.unit(8.58, "feet"),
  11595. weight: math.unit(1300, "lb"),
  11596. name: "Transforming",
  11597. image: {
  11598. source: "./media/characters/alexi/front-transforming.svg",
  11599. extra: 437 / 409,
  11600. bottom: 19 / 458.66
  11601. }
  11602. },
  11603. frontTransformed: {
  11604. height: math.unit(12.5, "feet"),
  11605. weight: math.unit(4000, "lb"),
  11606. name: "Transformed",
  11607. image: {
  11608. source: "./media/characters/alexi/front-transformed.svg",
  11609. extra: 639 / 614,
  11610. bottom: 30.55 / 671
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(14, "feet"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Minimacro",
  11622. height: math.unit(30, "meters")
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(500, "meters")
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(9000, "km")
  11631. },
  11632. {
  11633. name: "Teramacro",
  11634. height: math.unit(384000, "km")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/kayroo/front.svg",
  11647. extra: 1153 / 1038,
  11648. bottom: 0.06
  11649. }
  11650. },
  11651. foot: {
  11652. height: math.unit(6, "feet"),
  11653. weight: math.unit(150, "lb"),
  11654. name: "Foot",
  11655. image: {
  11656. source: "./media/characters/kayroo/foot.svg"
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(8, "feet"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Minimacro",
  11668. height: math.unit(250, "feet")
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(2800, "feet")
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(5200, "feet")
  11677. },
  11678. {
  11679. name: "Gigamacro",
  11680. height: math.unit(27000, "feet")
  11681. },
  11682. {
  11683. name: "Omega",
  11684. height: math.unit(45000, "feet")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(18, "feet"),
  11693. weight: math.unit(5800, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/rhys/front.svg",
  11697. extra: 3386 / 3090,
  11698. bottom: 0.07
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(18, "feet"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Working Size",
  11710. height: math.unit(200, "feet")
  11711. },
  11712. {
  11713. name: "Demolition Size",
  11714. height: math.unit(2000, "feet")
  11715. },
  11716. {
  11717. name: "Maximum Licensed Size",
  11718. height: math.unit(5, "miles")
  11719. },
  11720. {
  11721. name: "Maximum Observed Size",
  11722. height: math.unit(10, "yottameters")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(6, "feet"),
  11731. weight: math.unit(250, "lb"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/toto/front.svg",
  11735. extra: 527 / 479,
  11736. bottom: 0.05
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Micro",
  11743. height: math.unit(3, "feet")
  11744. },
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(10, "feet")
  11748. },
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(150, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(1200, "feet")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "King", species: ["lion"], tags: ["anthro"] },
  11762. {
  11763. back: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Back",
  11767. image: {
  11768. source: "./media/characters/king/back.svg"
  11769. }
  11770. },
  11771. },
  11772. [
  11773. {
  11774. name: "Micro",
  11775. height: math.unit(2, "inches")
  11776. },
  11777. {
  11778. name: "Normal",
  11779. height: math.unit(8, "feet")
  11780. },
  11781. {
  11782. name: "Macro",
  11783. height: math.unit(200, "feet"),
  11784. default: true
  11785. },
  11786. {
  11787. name: "Megamacro",
  11788. height: math.unit(50, "miles")
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11794. {
  11795. front: {
  11796. height: math.unit(11, "feet"),
  11797. weight: math.unit(1400, "lb"),
  11798. name: "Front",
  11799. image: {
  11800. source: "./media/characters/cordite/front.svg",
  11801. extra: 1919/1827,
  11802. bottom: 40/1959
  11803. }
  11804. },
  11805. side: {
  11806. height: math.unit(11, "feet"),
  11807. weight: math.unit(1400, "lb"),
  11808. name: "Side",
  11809. image: {
  11810. source: "./media/characters/cordite/side.svg",
  11811. extra: 1908/1793,
  11812. bottom: 38/1946
  11813. }
  11814. },
  11815. back: {
  11816. height: math.unit(11, "feet"),
  11817. weight: math.unit(1400, "lb"),
  11818. name: "Back",
  11819. image: {
  11820. source: "./media/characters/cordite/back.svg",
  11821. extra: 1938/1837,
  11822. bottom: 10/1948
  11823. }
  11824. },
  11825. feral: {
  11826. height: math.unit(2, "feet"),
  11827. weight: math.unit(90, "lb"),
  11828. name: "Feral",
  11829. image: {
  11830. source: "./media/characters/cordite/feral.svg",
  11831. extra: 1260 / 755,
  11832. bottom: 0.05
  11833. }
  11834. },
  11835. },
  11836. [
  11837. {
  11838. name: "Normal",
  11839. height: math.unit(11, "feet"),
  11840. default: true
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(6, "feet"),
  11849. weight: math.unit(150, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/pianostrong/front.svg",
  11853. extra: 6577 / 6254,
  11854. bottom: 0.02
  11855. }
  11856. },
  11857. side: {
  11858. height: math.unit(6, "feet"),
  11859. weight: math.unit(150, "lb"),
  11860. name: "Side",
  11861. image: {
  11862. source: "./media/characters/pianostrong/side.svg",
  11863. extra: 6106 / 5730
  11864. }
  11865. },
  11866. back: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(150, "lb"),
  11869. name: "Back",
  11870. image: {
  11871. source: "./media/characters/pianostrong/back.svg",
  11872. extra: 6085 / 5733,
  11873. bottom: 0.01
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Macro",
  11880. height: math.unit(100, "feet")
  11881. },
  11882. {
  11883. name: "Macro+",
  11884. height: math.unit(300, "feet"),
  11885. default: true
  11886. },
  11887. {
  11888. name: "Macro++",
  11889. height: math.unit(1000, "feet")
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(6, "feet"),
  11898. weight: math.unit(150, "lb"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/kona/front.svg",
  11902. extra: 2960 / 2629,
  11903. bottom: 0.005
  11904. }
  11905. },
  11906. },
  11907. [
  11908. {
  11909. name: "Normal",
  11910. height: math.unit(11 + 8 / 12, "feet")
  11911. },
  11912. {
  11913. name: "Macro",
  11914. height: math.unit(850, "feet"),
  11915. default: true
  11916. },
  11917. {
  11918. name: "Macro+",
  11919. height: math.unit(1.5, "km"),
  11920. default: true
  11921. },
  11922. {
  11923. name: "Megamacro",
  11924. height: math.unit(80, "miles")
  11925. },
  11926. {
  11927. name: "Gigamacro",
  11928. height: math.unit(3500, "miles")
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11934. {
  11935. side: {
  11936. height: math.unit(1.9, "meters"),
  11937. weight: math.unit(326, "kg"),
  11938. name: "Side",
  11939. image: {
  11940. source: "./media/characters/levi/side.svg",
  11941. extra: 1704 / 1334,
  11942. bottom: 0.02
  11943. }
  11944. },
  11945. },
  11946. [
  11947. {
  11948. name: "Normal",
  11949. height: math.unit(1.9, "meters"),
  11950. default: true
  11951. },
  11952. {
  11953. name: "Macro",
  11954. height: math.unit(20, "meters")
  11955. },
  11956. {
  11957. name: "Macro+",
  11958. height: math.unit(200, "meters")
  11959. },
  11960. {
  11961. name: "Megamacro",
  11962. height: math.unit(2, "km")
  11963. },
  11964. {
  11965. name: "Megamacro+",
  11966. height: math.unit(20, "km")
  11967. },
  11968. {
  11969. name: "Gigamacro",
  11970. height: math.unit(2500, "km")
  11971. },
  11972. {
  11973. name: "Gigamacro+",
  11974. height: math.unit(120000, "km")
  11975. },
  11976. {
  11977. name: "Teramacro",
  11978. height: math.unit(7.77e6, "km")
  11979. },
  11980. ]
  11981. ))
  11982. characterMakers.push(() => makeCharacter(
  11983. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11984. {
  11985. front: {
  11986. height: math.unit(6 + 4/12, "feet"),
  11987. weight: math.unit(190, "lb"),
  11988. name: "Front",
  11989. image: {
  11990. source: "./media/characters/bmc/front.svg",
  11991. extra: 1626/1472,
  11992. bottom: 79/1705
  11993. }
  11994. },
  11995. back: {
  11996. height: math.unit(6 + 4/12, "feet"),
  11997. weight: math.unit(190, "lb"),
  11998. name: "Back",
  11999. image: {
  12000. source: "./media/characters/bmc/back.svg",
  12001. extra: 1640/1479,
  12002. bottom: 45/1685
  12003. }
  12004. },
  12005. frontArmor: {
  12006. height: math.unit(6 + 4/12, "feet"),
  12007. weight: math.unit(190, "lb"),
  12008. name: "Front-armor",
  12009. image: {
  12010. source: "./media/characters/bmc/front-armor.svg",
  12011. extra: 1538/1468,
  12012. bottom: 79/1617
  12013. }
  12014. },
  12015. },
  12016. [
  12017. {
  12018. name: "Human-sized",
  12019. height: math.unit(6 + 4 / 12, "feet")
  12020. },
  12021. {
  12022. name: "Interactive Size",
  12023. height: math.unit(25, "feet")
  12024. },
  12025. {
  12026. name: "Small",
  12027. height: math.unit(250, "feet")
  12028. },
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(1250, "feet"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Good Day",
  12036. height: math.unit(88, "miles")
  12037. },
  12038. {
  12039. name: "Largest Measured Size",
  12040. height: math.unit(105.960, "galaxies")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(20, "feet"),
  12049. weight: math.unit(2016, "kg"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/sven-the-kaiju/front.svg",
  12053. extra: 1277/1250,
  12054. bottom: 35/1312
  12055. }
  12056. },
  12057. mouth: {
  12058. height: math.unit(1.85, "feet"),
  12059. name: "Mouth",
  12060. image: {
  12061. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Fairy",
  12068. height: math.unit(6, "inches")
  12069. },
  12070. {
  12071. name: "Normal",
  12072. height: math.unit(20, "feet"),
  12073. default: true
  12074. },
  12075. {
  12076. name: "Rampage",
  12077. height: math.unit(200, "feet")
  12078. },
  12079. {
  12080. name: "Archfey Forest Guardian",
  12081. height: math.unit(1, "mile")
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(4, "meters"),
  12090. weight: math.unit(2, "tons"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/marik/front.svg",
  12094. extra: 1057 / 1003,
  12095. bottom: 0.08
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(4, "meters"),
  12103. default: true
  12104. },
  12105. {
  12106. name: "Macro",
  12107. height: math.unit(20, "meters")
  12108. },
  12109. {
  12110. name: "Megamacro",
  12111. height: math.unit(50, "km")
  12112. },
  12113. {
  12114. name: "Gigamacro",
  12115. height: math.unit(100, "km")
  12116. },
  12117. {
  12118. name: "Alpha Macro",
  12119. height: math.unit(7.88e7, "yottameters")
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(110, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/mel/front.svg",
  12132. extra: 736 / 617,
  12133. bottom: 0.017
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Pico",
  12140. height: math.unit(3, "pm")
  12141. },
  12142. {
  12143. name: "Nano",
  12144. height: math.unit(3, "nm")
  12145. },
  12146. {
  12147. name: "Micro",
  12148. height: math.unit(0.3, "mm"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Micro+",
  12153. height: math.unit(3, "mm")
  12154. },
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(5 + 10.5 / 12, "feet")
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12163. {
  12164. kaiju: {
  12165. height: math.unit(1.75, "meters"),
  12166. weight: math.unit(55, "kg"),
  12167. name: "Kaiju",
  12168. image: {
  12169. source: "./media/characters/lykonous/kaiju.svg",
  12170. extra: 1055 / 946,
  12171. bottom: 0.135
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(2.5, "meters"),
  12179. default: true
  12180. },
  12181. {
  12182. name: "Kaiju Dragon",
  12183. height: math.unit(60, "meters")
  12184. },
  12185. {
  12186. name: "Mega Kaiju",
  12187. height: math.unit(120, "km")
  12188. },
  12189. {
  12190. name: "Giga Kaiju",
  12191. height: math.unit(200, "megameters")
  12192. },
  12193. {
  12194. name: "Terra Kaiju",
  12195. height: math.unit(400, "gigameters")
  12196. },
  12197. {
  12198. name: "Kaiju Dragon God",
  12199. height: math.unit(13000, "exaparsecs")
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(6, "feet"),
  12208. weight: math.unit(150, "lb"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/blü/front.svg",
  12212. extra: 1883 / 1564,
  12213. bottom: 0.031
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Normal",
  12220. height: math.unit(13, "feet"),
  12221. default: true
  12222. },
  12223. {
  12224. name: "Big Boi",
  12225. height: math.unit(150, "meters")
  12226. },
  12227. {
  12228. name: "Mini Stomper",
  12229. height: math.unit(300, "meters")
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(1000, "meters")
  12234. },
  12235. {
  12236. name: "Megamacro",
  12237. height: math.unit(11000, "meters")
  12238. },
  12239. {
  12240. name: "Gigamacro",
  12241. height: math.unit(11000, "km")
  12242. },
  12243. {
  12244. name: "Teramacro",
  12245. height: math.unit(420000, "km")
  12246. },
  12247. {
  12248. name: "Examacro",
  12249. height: math.unit(120, "parsecs")
  12250. },
  12251. {
  12252. name: "God Tho",
  12253. height: math.unit(98000000000, "parsecs")
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12259. {
  12260. taurFront: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(200, "lb"),
  12263. name: "Taur (Front)",
  12264. image: {
  12265. source: "./media/characters/scales/taur-front.svg",
  12266. extra: 1,
  12267. bottom: 0.05
  12268. }
  12269. },
  12270. taurBack: {
  12271. height: math.unit(6, "feet"),
  12272. weight: math.unit(200, "lb"),
  12273. name: "Taur (Back)",
  12274. image: {
  12275. source: "./media/characters/scales/taur-back.svg",
  12276. extra: 1,
  12277. bottom: 0.08
  12278. }
  12279. },
  12280. anthro: {
  12281. height: math.unit(6 * 7 / 12, "feet"),
  12282. weight: math.unit(100, "lb"),
  12283. name: "Anthro",
  12284. image: {
  12285. source: "./media/characters/scales/anthro.svg",
  12286. extra: 1,
  12287. bottom: 0.06
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(12, "feet"),
  12295. default: true
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(6, "feet"),
  12304. weight: math.unit(150, "lb"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/koragos/front.svg",
  12308. extra: 841 / 794,
  12309. bottom: 0.035
  12310. }
  12311. },
  12312. back: {
  12313. height: math.unit(6, "feet"),
  12314. weight: math.unit(150, "lb"),
  12315. name: "Back",
  12316. image: {
  12317. source: "./media/characters/koragos/back.svg",
  12318. extra: 841 / 810,
  12319. bottom: 0.022
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(6 + 11 / 12, "feet"),
  12327. default: true
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(490, "feet")
  12332. },
  12333. {
  12334. name: "Megamacro",
  12335. height: math.unit(10, "miles")
  12336. },
  12337. {
  12338. name: "Gigamacro",
  12339. height: math.unit(50, "miles")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12345. {
  12346. front: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(250, "lb"),
  12349. name: "Front",
  12350. image: {
  12351. source: "./media/characters/xylrem/front.svg",
  12352. extra: 3323 / 3050,
  12353. bottom: 0.065
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Micro",
  12360. height: math.unit(4, "feet")
  12361. },
  12362. {
  12363. name: "Normal",
  12364. height: math.unit(16, "feet"),
  12365. default: true
  12366. },
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(2720, "feet")
  12370. },
  12371. {
  12372. name: "Megamacro",
  12373. height: math.unit(25000, "miles")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(8, "feet"),
  12382. weight: math.unit(250, "kg"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/ikideru/front.svg",
  12386. extra: 930 / 870,
  12387. bottom: 0.087
  12388. }
  12389. },
  12390. back: {
  12391. height: math.unit(8, "feet"),
  12392. weight: math.unit(250, "kg"),
  12393. name: "Back",
  12394. image: {
  12395. source: "./media/characters/ikideru/back.svg",
  12396. extra: 919 / 852,
  12397. bottom: 0.055
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Rare",
  12404. height: math.unit(8, "feet"),
  12405. default: true
  12406. },
  12407. {
  12408. name: "Playful Loom",
  12409. height: math.unit(80, "feet")
  12410. },
  12411. {
  12412. name: "City Leaner",
  12413. height: math.unit(230, "feet")
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(2500, "feet")
  12418. },
  12419. {
  12420. name: "Gigamacro",
  12421. height: math.unit(26400, "feet")
  12422. },
  12423. {
  12424. name: "Tectonic Shifter",
  12425. height: math.unit(1.7, "megameters")
  12426. },
  12427. {
  12428. name: "Planet Carer",
  12429. height: math.unit(21, "megameters")
  12430. },
  12431. {
  12432. name: "God",
  12433. height: math.unit(11157.22, "parsecs")
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12439. {
  12440. front: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(120, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/neo/front.svg"
  12446. }
  12447. },
  12448. },
  12449. [
  12450. {
  12451. name: "Micro",
  12452. height: math.unit(2, "inches"),
  12453. default: true
  12454. },
  12455. {
  12456. name: "Human Size",
  12457. height: math.unit(5 + 8 / 12, "feet")
  12458. },
  12459. ]
  12460. ))
  12461. characterMakers.push(() => makeCharacter(
  12462. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12463. {
  12464. front: {
  12465. height: math.unit(13 + 10 / 12, "feet"),
  12466. weight: math.unit(5320, "lb"),
  12467. name: "Front",
  12468. image: {
  12469. source: "./media/characters/chauncey-chantz/front.svg",
  12470. extra: 1587 / 1435,
  12471. bottom: 0.02
  12472. }
  12473. },
  12474. },
  12475. [
  12476. {
  12477. name: "Normal",
  12478. height: math.unit(13 + 10 / 12, "feet"),
  12479. default: true
  12480. },
  12481. {
  12482. name: "Macro",
  12483. height: math.unit(45, "feet")
  12484. },
  12485. {
  12486. name: "Megamacro",
  12487. height: math.unit(250, "miles")
  12488. },
  12489. {
  12490. name: "Planetary",
  12491. height: math.unit(10000, "miles")
  12492. },
  12493. {
  12494. name: "Galactic",
  12495. height: math.unit(40000, "parsecs")
  12496. },
  12497. {
  12498. name: "Universal",
  12499. height: math.unit(1, "yottameter")
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12505. {
  12506. front: {
  12507. height: math.unit(6, "feet"),
  12508. weight: math.unit(150, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/epifox/front.svg",
  12512. extra: 1,
  12513. bottom: 0.075
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Micro",
  12520. height: math.unit(6, "inches")
  12521. },
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(12, "feet"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Macro",
  12529. height: math.unit(3810, "feet")
  12530. },
  12531. {
  12532. name: "Megamacro",
  12533. height: math.unit(500, "miles")
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(1.8796, "m"),
  12542. weight: math.unit(230, "lb"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/colin-t/front.svg",
  12546. extra: 1272 / 1193,
  12547. bottom: 0.07
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Micro",
  12554. height: math.unit(0.571, "meters")
  12555. },
  12556. {
  12557. name: "Normal",
  12558. height: math.unit(1.8796, "meters"),
  12559. default: true
  12560. },
  12561. {
  12562. name: "Tall",
  12563. height: math.unit(4, "meters")
  12564. },
  12565. {
  12566. name: "Macro",
  12567. height: math.unit(67.241, "meters")
  12568. },
  12569. {
  12570. name: "Megamacro",
  12571. height: math.unit(371.856, "meters")
  12572. },
  12573. {
  12574. name: "Planetary",
  12575. height: math.unit(12631.5689, "km")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(1.85, "meters"),
  12584. weight: math.unit(80, "kg"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/matvei/front.svg",
  12588. extra: 614 / 594,
  12589. bottom: 0.01
  12590. }
  12591. },
  12592. },
  12593. [
  12594. {
  12595. name: "Normal",
  12596. height: math.unit(1.85, "meters"),
  12597. default: true
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12603. {
  12604. front: {
  12605. height: math.unit(5 + 9 / 12, "feet"),
  12606. weight: math.unit(70, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/quincy/front.svg",
  12610. extra: 3041 / 2751
  12611. }
  12612. },
  12613. back: {
  12614. height: math.unit(5 + 9 / 12, "feet"),
  12615. weight: math.unit(70, "lb"),
  12616. name: "Back",
  12617. image: {
  12618. source: "./media/characters/quincy/back.svg",
  12619. extra: 3041 / 2751
  12620. }
  12621. },
  12622. flying: {
  12623. height: math.unit(5 + 4 / 12, "feet"),
  12624. weight: math.unit(70, "lb"),
  12625. name: "Flying",
  12626. image: {
  12627. source: "./media/characters/quincy/flying.svg",
  12628. extra: 1044 / 930
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Micro",
  12635. height: math.unit(3, "cm")
  12636. },
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(5 + 9 / 12, "feet")
  12640. },
  12641. {
  12642. name: "Macro",
  12643. height: math.unit(200, "meters"),
  12644. default: true
  12645. },
  12646. {
  12647. name: "Megamacro",
  12648. height: math.unit(1000, "meters")
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(3 + 11/12, "feet"),
  12657. weight: math.unit(50, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/vanrel/front.svg",
  12661. extra: 1104/949,
  12662. bottom: 52/1156
  12663. }
  12664. },
  12665. back: {
  12666. height: math.unit(3 + 11/12, "feet"),
  12667. weight: math.unit(50, "lb"),
  12668. name: "Back",
  12669. image: {
  12670. source: "./media/characters/vanrel/back.svg",
  12671. extra: 1119/976,
  12672. bottom: 37/1156
  12673. }
  12674. },
  12675. tome: {
  12676. height: math.unit(1.35, "feet"),
  12677. weight: math.unit(10, "lb"),
  12678. name: "Vanrel's Tome",
  12679. rename: true,
  12680. image: {
  12681. source: "./media/characters/vanrel/tome.svg"
  12682. }
  12683. },
  12684. beans: {
  12685. height: math.unit(0.89, "feet"),
  12686. name: "Beans",
  12687. image: {
  12688. source: "./media/characters/vanrel/beans.svg"
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Normal",
  12695. height: math.unit(3 + 11/12, "feet"),
  12696. default: true
  12697. },
  12698. ]
  12699. ))
  12700. characterMakers.push(() => makeCharacter(
  12701. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12702. {
  12703. front: {
  12704. height: math.unit(7 + 5 / 12, "feet"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/kuiper-vanrel/front.svg",
  12708. extra: 1219/1169,
  12709. bottom: 69/1288
  12710. }
  12711. },
  12712. back: {
  12713. height: math.unit(7 + 5 / 12, "feet"),
  12714. name: "Back",
  12715. image: {
  12716. source: "./media/characters/kuiper-vanrel/back.svg",
  12717. extra: 1236/1193,
  12718. bottom: 27/1263
  12719. }
  12720. },
  12721. foot: {
  12722. height: math.unit(0.55, "meters"),
  12723. name: "Foot",
  12724. image: {
  12725. source: "./media/characters/kuiper-vanrel/foot.svg",
  12726. }
  12727. },
  12728. battle: {
  12729. height: math.unit(6.824, "feet"),
  12730. name: "Battle",
  12731. image: {
  12732. source: "./media/characters/kuiper-vanrel/battle.svg",
  12733. extra: 1466 / 1327,
  12734. bottom: 29 / 1492.5
  12735. }
  12736. },
  12737. meerkui: {
  12738. height: math.unit(18, "inches"),
  12739. name: "Meerkui",
  12740. image: {
  12741. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12742. extra: 1354/1289,
  12743. bottom: 69/1423
  12744. }
  12745. },
  12746. },
  12747. [
  12748. {
  12749. name: "Normal",
  12750. height: math.unit(7 + 5 / 12, "feet"),
  12751. default: true
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(8 + 5 / 12, "feet"),
  12760. name: "Front",
  12761. image: {
  12762. source: "./media/characters/keset-vanrel/front.svg",
  12763. extra: 1231/1148,
  12764. bottom: 82/1313
  12765. }
  12766. },
  12767. back: {
  12768. height: math.unit(8 + 5 / 12, "feet"),
  12769. name: "Back",
  12770. image: {
  12771. source: "./media/characters/keset-vanrel/back.svg",
  12772. extra: 1240/1174,
  12773. bottom: 33/1273
  12774. }
  12775. },
  12776. hand: {
  12777. height: math.unit(0.6, "meters"),
  12778. name: "Hand",
  12779. image: {
  12780. source: "./media/characters/keset-vanrel/hand.svg"
  12781. }
  12782. },
  12783. foot: {
  12784. height: math.unit(0.94978, "meters"),
  12785. name: "Foot",
  12786. image: {
  12787. source: "./media/characters/keset-vanrel/foot.svg"
  12788. }
  12789. },
  12790. battle: {
  12791. height: math.unit(7.408, "feet"),
  12792. name: "Battle",
  12793. image: {
  12794. source: "./media/characters/keset-vanrel/battle.svg",
  12795. extra: 1890 / 1386,
  12796. bottom: 73.28 / 1970
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(8 + 5 / 12, "feet"),
  12804. default: true
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(6, "feet"),
  12813. weight: math.unit(150, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/neos/front.svg",
  12817. extra: 1696 / 992,
  12818. bottom: 0.14
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(54, "cm"),
  12826. default: true
  12827. },
  12828. {
  12829. name: "Macro",
  12830. height: math.unit(100, "m")
  12831. },
  12832. {
  12833. name: "Megamacro",
  12834. height: math.unit(10, "km")
  12835. },
  12836. {
  12837. name: "Megamacro+",
  12838. height: math.unit(100, "km")
  12839. },
  12840. {
  12841. name: "Gigamacro",
  12842. height: math.unit(100, "Mm")
  12843. },
  12844. {
  12845. name: "Teramacro",
  12846. height: math.unit(100, "Gm")
  12847. },
  12848. {
  12849. name: "Examacro",
  12850. height: math.unit(100, "Em")
  12851. },
  12852. {
  12853. name: "Godly",
  12854. height: math.unit(10000, "Ym")
  12855. },
  12856. {
  12857. name: "Beyond Godly",
  12858. height: math.unit(25, "multiverses")
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12864. {
  12865. feminine: {
  12866. height: math.unit(5, "feet"),
  12867. weight: math.unit(100, "lb"),
  12868. name: "Feminine",
  12869. image: {
  12870. source: "./media/characters/sammy-mouse/feminine.svg",
  12871. extra: 2526 / 2425,
  12872. bottom: 0.123
  12873. }
  12874. },
  12875. masculine: {
  12876. height: math.unit(5, "feet"),
  12877. weight: math.unit(100, "lb"),
  12878. name: "Masculine",
  12879. image: {
  12880. source: "./media/characters/sammy-mouse/masculine.svg",
  12881. extra: 2526 / 2425,
  12882. bottom: 0.123
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Micro",
  12889. height: math.unit(5, "inches")
  12890. },
  12891. {
  12892. name: "Normal",
  12893. height: math.unit(5, "feet"),
  12894. default: true
  12895. },
  12896. {
  12897. name: "Macro",
  12898. height: math.unit(60, "feet")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(4, "feet"),
  12907. weight: math.unit(50, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/kole/front.svg",
  12911. extra: 1423 / 1303,
  12912. bottom: 0.025
  12913. }
  12914. },
  12915. back: {
  12916. height: math.unit(4, "feet"),
  12917. weight: math.unit(50, "lb"),
  12918. name: "Back",
  12919. image: {
  12920. source: "./media/characters/kole/back.svg",
  12921. extra: 1426 / 1280,
  12922. bottom: 0.02
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Normal",
  12929. height: math.unit(4, "feet"),
  12930. default: true
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(2.5, "feet"),
  12939. weight: math.unit(32, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/rufran/front.svg",
  12943. extra: 1313/885,
  12944. bottom: 94/1407
  12945. }
  12946. },
  12947. side: {
  12948. height: math.unit(2.5, "feet"),
  12949. weight: math.unit(32, "lb"),
  12950. name: "Side",
  12951. image: {
  12952. source: "./media/characters/rufran/side.svg",
  12953. extra: 1109/852,
  12954. bottom: 118/1227
  12955. }
  12956. },
  12957. back: {
  12958. height: math.unit(2.5, "feet"),
  12959. weight: math.unit(32, "lb"),
  12960. name: "Back",
  12961. image: {
  12962. source: "./media/characters/rufran/back.svg",
  12963. extra: 1280/878,
  12964. bottom: 131/1411
  12965. }
  12966. },
  12967. mouth: {
  12968. height: math.unit(1.13, "feet"),
  12969. name: "Mouth",
  12970. image: {
  12971. source: "./media/characters/rufran/mouth.svg"
  12972. }
  12973. },
  12974. foot: {
  12975. height: math.unit(1.33, "feet"),
  12976. name: "Foot",
  12977. image: {
  12978. source: "./media/characters/rufran/foot.svg"
  12979. }
  12980. },
  12981. koboldFront: {
  12982. height: math.unit(2 + 6 / 12, "feet"),
  12983. weight: math.unit(20, "lb"),
  12984. name: "Front (Kobold)",
  12985. image: {
  12986. source: "./media/characters/rufran/kobold-front.svg",
  12987. extra: 2041 / 1839,
  12988. bottom: 0.055
  12989. }
  12990. },
  12991. koboldBack: {
  12992. height: math.unit(2 + 6 / 12, "feet"),
  12993. weight: math.unit(20, "lb"),
  12994. name: "Back (Kobold)",
  12995. image: {
  12996. source: "./media/characters/rufran/kobold-back.svg",
  12997. extra: 2054 / 1839,
  12998. bottom: 0.01
  12999. }
  13000. },
  13001. koboldHand: {
  13002. height: math.unit(0.2166, "meters"),
  13003. name: "Hand (Kobold)",
  13004. image: {
  13005. source: "./media/characters/rufran/kobold-hand.svg"
  13006. }
  13007. },
  13008. koboldFoot: {
  13009. height: math.unit(0.185, "meters"),
  13010. name: "Foot (Kobold)",
  13011. image: {
  13012. source: "./media/characters/rufran/kobold-foot.svg"
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Micro",
  13019. height: math.unit(1, "inch")
  13020. },
  13021. {
  13022. name: "Normal",
  13023. height: math.unit(2 + 6 / 12, "feet"),
  13024. default: true
  13025. },
  13026. {
  13027. name: "Big",
  13028. height: math.unit(60, "feet")
  13029. },
  13030. {
  13031. name: "Macro",
  13032. height: math.unit(325, "feet")
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(0.3, "meters"),
  13041. weight: math.unit(3.5, "kg"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/chip/front.svg",
  13045. extra: 748 / 674
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Micro",
  13052. height: math.unit(1, "inch"),
  13053. default: true
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13059. {
  13060. side: {
  13061. height: math.unit(2.3, "meters"),
  13062. weight: math.unit(3500, "lb"),
  13063. name: "Side",
  13064. image: {
  13065. source: "./media/characters/torvid/side.svg",
  13066. extra: 1972 / 722,
  13067. bottom: 0.035
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Normal",
  13074. height: math.unit(2.3, "meters"),
  13075. default: true
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(2, "meters"),
  13084. weight: math.unit(150.5, "kg"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/susan/front.svg",
  13088. extra: 693 / 635,
  13089. bottom: 0.05
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Megamacro",
  13096. height: math.unit(505, "miles"),
  13097. default: true
  13098. },
  13099. ]
  13100. ))
  13101. characterMakers.push(() => makeCharacter(
  13102. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13103. {
  13104. front: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(150, "lb"),
  13107. name: "Front",
  13108. image: {
  13109. source: "./media/characters/raindrops/front.svg",
  13110. extra: 2655 / 2461,
  13111. bottom: 49 / 2705
  13112. }
  13113. },
  13114. back: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(150, "lb"),
  13117. name: "Back",
  13118. image: {
  13119. source: "./media/characters/raindrops/back.svg",
  13120. extra: 2574 / 2400,
  13121. bottom: 65 / 2634
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Micro",
  13128. height: math.unit(6, "inches")
  13129. },
  13130. {
  13131. name: "Normal",
  13132. height: math.unit(6 + 2 / 12, "feet")
  13133. },
  13134. {
  13135. name: "Macro",
  13136. height: math.unit(131, "feet"),
  13137. default: true
  13138. },
  13139. {
  13140. name: "Megamacro",
  13141. height: math.unit(15, "miles")
  13142. },
  13143. {
  13144. name: "Gigamacro",
  13145. height: math.unit(4000, "miles")
  13146. },
  13147. {
  13148. name: "Teramacro",
  13149. height: math.unit(315000, "miles")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(2.794, "meters"),
  13158. weight: math.unit(325, "kg"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/tezwa/front.svg",
  13162. extra: 2083 / 1906,
  13163. bottom: 0.031
  13164. }
  13165. },
  13166. foot: {
  13167. height: math.unit(0.687, "meters"),
  13168. name: "Foot",
  13169. image: {
  13170. source: "./media/characters/tezwa/foot.svg"
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(9 + 2 / 12, "feet"),
  13178. default: true
  13179. },
  13180. ]
  13181. ))
  13182. characterMakers.push(() => makeCharacter(
  13183. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13184. {
  13185. front: {
  13186. height: math.unit(58, "feet"),
  13187. weight: math.unit(89000, "lb"),
  13188. name: "Front",
  13189. image: {
  13190. source: "./media/characters/typhus/front.svg",
  13191. extra: 816 / 800,
  13192. bottom: 0.065
  13193. }
  13194. },
  13195. },
  13196. [
  13197. {
  13198. name: "Macro",
  13199. height: math.unit(58, "feet"),
  13200. default: true
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13206. {
  13207. front: {
  13208. height: math.unit(12, "feet"),
  13209. weight: math.unit(6, "tonnes"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/lyra-von-wulf/front.svg",
  13213. extra: 1,
  13214. bottom: 0.10
  13215. }
  13216. },
  13217. frontMecha: {
  13218. height: math.unit(12, "feet"),
  13219. weight: math.unit(12, "tonnes"),
  13220. name: "Front (Mecha)",
  13221. image: {
  13222. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13223. extra: 1,
  13224. bottom: 0.042
  13225. }
  13226. },
  13227. maw: {
  13228. height: math.unit(2.2, "feet"),
  13229. name: "Maw",
  13230. image: {
  13231. source: "./media/characters/lyra-von-wulf/maw.svg"
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(12, "feet"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Classic",
  13243. height: math.unit(50, "feet")
  13244. },
  13245. {
  13246. name: "Macro",
  13247. height: math.unit(500, "feet")
  13248. },
  13249. {
  13250. name: "Megamacro",
  13251. height: math.unit(1, "mile")
  13252. },
  13253. {
  13254. name: "Gigamacro",
  13255. height: math.unit(400, "miles")
  13256. },
  13257. {
  13258. name: "Teramacro",
  13259. height: math.unit(22000, "miles")
  13260. },
  13261. {
  13262. name: "Solarmacro",
  13263. height: math.unit(8600000, "miles")
  13264. },
  13265. {
  13266. name: "Galactic",
  13267. height: math.unit(1057000, "lightyears")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(6 + 10 / 12, "feet"),
  13276. weight: math.unit(150, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/dixon/front.svg",
  13280. extra: 3361 / 3209,
  13281. bottom: 0.01
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(6 + 10 / 12, "feet"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Big",
  13293. height: math.unit(12, "meters")
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(500, "meters")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(2, "km")
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13307. {
  13308. front: {
  13309. height: math.unit(185, "cm"),
  13310. weight: math.unit(68, "kg"),
  13311. name: "Front",
  13312. image: {
  13313. source: "./media/characters/kauko/front.svg",
  13314. extra: 1455 / 1421,
  13315. bottom: 0.03
  13316. }
  13317. },
  13318. back: {
  13319. height: math.unit(185, "cm"),
  13320. weight: math.unit(68, "kg"),
  13321. name: "Back",
  13322. image: {
  13323. source: "./media/characters/kauko/back.svg",
  13324. extra: 1455 / 1421,
  13325. bottom: 0.004
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(185, "cm"),
  13333. default: true
  13334. },
  13335. ]
  13336. ))
  13337. characterMakers.push(() => makeCharacter(
  13338. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13339. {
  13340. front: {
  13341. height: math.unit(6, "feet"),
  13342. weight: math.unit(150, "kg"),
  13343. name: "Front",
  13344. image: {
  13345. source: "./media/characters/varg/front.svg",
  13346. extra: 1108 / 1018,
  13347. bottom: 0.0375
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(5, "meters")
  13355. },
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(200, "meters")
  13359. },
  13360. {
  13361. name: "Megamacro",
  13362. height: math.unit(20, "kilometers")
  13363. },
  13364. {
  13365. name: "True Size",
  13366. height: math.unit(211, "km"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Gigamacro",
  13371. height: math.unit(1000, "km")
  13372. },
  13373. {
  13374. name: "Gigamacro+",
  13375. height: math.unit(8000, "km")
  13376. },
  13377. {
  13378. name: "Teramacro",
  13379. height: math.unit(1000000, "km")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(7 + 7 / 12, "feet"),
  13388. weight: math.unit(267, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/dayza/front.svg",
  13392. extra: 1262 / 1200,
  13393. bottom: 0.035
  13394. }
  13395. },
  13396. side: {
  13397. height: math.unit(7 + 7 / 12, "feet"),
  13398. weight: math.unit(267, "lb"),
  13399. name: "Side",
  13400. image: {
  13401. source: "./media/characters/dayza/side.svg",
  13402. extra: 1295 / 1245,
  13403. bottom: 0.05
  13404. }
  13405. },
  13406. back: {
  13407. height: math.unit(7 + 7 / 12, "feet"),
  13408. weight: math.unit(267, "lb"),
  13409. name: "Back",
  13410. image: {
  13411. source: "./media/characters/dayza/back.svg",
  13412. extra: 1241 / 1170
  13413. }
  13414. },
  13415. },
  13416. [
  13417. {
  13418. name: "Normal",
  13419. height: math.unit(7 + 7 / 12, "feet"),
  13420. default: true
  13421. },
  13422. {
  13423. name: "Macro",
  13424. height: math.unit(155, "feet")
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13430. {
  13431. front: {
  13432. height: math.unit(6 + 5 / 12, "feet"),
  13433. weight: math.unit(160, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/xanthos/front.svg",
  13437. extra: 1,
  13438. bottom: 0.04
  13439. }
  13440. },
  13441. back: {
  13442. height: math.unit(6 + 5 / 12, "feet"),
  13443. weight: math.unit(160, "lb"),
  13444. name: "Back",
  13445. image: {
  13446. source: "./media/characters/xanthos/back.svg",
  13447. extra: 1,
  13448. bottom: 0.03
  13449. }
  13450. },
  13451. hand: {
  13452. height: math.unit(0.928, "feet"),
  13453. name: "Hand",
  13454. image: {
  13455. source: "./media/characters/xanthos/hand.svg"
  13456. }
  13457. },
  13458. foot: {
  13459. height: math.unit(1.286, "feet"),
  13460. name: "Foot",
  13461. image: {
  13462. source: "./media/characters/xanthos/foot.svg"
  13463. }
  13464. },
  13465. },
  13466. [
  13467. {
  13468. name: "Normal",
  13469. height: math.unit(6 + 5 / 12, "feet"),
  13470. default: true
  13471. },
  13472. {
  13473. name: "Normal+",
  13474. height: math.unit(6, "meters")
  13475. },
  13476. {
  13477. name: "Macro",
  13478. height: math.unit(40, "feet")
  13479. },
  13480. {
  13481. name: "Macro+",
  13482. height: math.unit(200, "meters")
  13483. },
  13484. {
  13485. name: "Megamacro",
  13486. height: math.unit(20, "km")
  13487. },
  13488. {
  13489. name: "Megamacro+",
  13490. height: math.unit(100, "km")
  13491. },
  13492. {
  13493. name: "Gigamacro",
  13494. height: math.unit(200, "megameters")
  13495. },
  13496. {
  13497. name: "Gigamacro+",
  13498. height: math.unit(1.5, "gigameters")
  13499. },
  13500. ]
  13501. ))
  13502. characterMakers.push(() => makeCharacter(
  13503. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13504. {
  13505. front: {
  13506. height: math.unit(6 + 3 / 12, "feet"),
  13507. weight: math.unit(215, "lb"),
  13508. name: "Front",
  13509. image: {
  13510. source: "./media/characters/grynn/front.svg",
  13511. extra: 4627 / 4209,
  13512. bottom: 0.047
  13513. }
  13514. },
  13515. },
  13516. [
  13517. {
  13518. name: "Micro",
  13519. height: math.unit(6, "inches")
  13520. },
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(6 + 3 / 12, "feet"),
  13524. default: true
  13525. },
  13526. {
  13527. name: "Big",
  13528. height: math.unit(104, "feet")
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(944, "feet")
  13533. },
  13534. {
  13535. name: "Macro+",
  13536. height: math.unit(9480, "feet")
  13537. },
  13538. {
  13539. name: "Megamacro",
  13540. height: math.unit(78752, "feet")
  13541. },
  13542. {
  13543. name: "Megamacro+",
  13544. height: math.unit(630128, "feet")
  13545. },
  13546. {
  13547. name: "Megamacro++",
  13548. height: math.unit(3150695, "feet")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(7 + 5 / 12, "feet"),
  13557. weight: math.unit(450, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/mocha-aura/front.svg",
  13561. extra: 1907 / 1817,
  13562. bottom: 0.04
  13563. }
  13564. },
  13565. back: {
  13566. height: math.unit(7 + 5 / 12, "feet"),
  13567. weight: math.unit(450, "lb"),
  13568. name: "Back",
  13569. image: {
  13570. source: "./media/characters/mocha-aura/back.svg",
  13571. extra: 1900 / 1825,
  13572. bottom: 0.045
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Nano",
  13579. height: math.unit(1, "nm")
  13580. },
  13581. {
  13582. name: "Megamicro",
  13583. height: math.unit(1, "mm")
  13584. },
  13585. {
  13586. name: "Micro",
  13587. height: math.unit(3, "inches")
  13588. },
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(7 + 5 / 12, "feet"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Macro",
  13596. height: math.unit(30, "feet")
  13597. },
  13598. {
  13599. name: "Megamacro",
  13600. height: math.unit(3500, "feet")
  13601. },
  13602. {
  13603. name: "Teramacro",
  13604. height: math.unit(500000, "miles")
  13605. },
  13606. {
  13607. name: "Petamacro",
  13608. height: math.unit(50000000000000000, "parsecs")
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/ilisha-devya/front.svg",
  13621. extra: 1053/1049,
  13622. bottom: 270/1323
  13623. }
  13624. },
  13625. back: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(150, "lb"),
  13628. name: "Back",
  13629. image: {
  13630. source: "./media/characters/ilisha-devya/back.svg",
  13631. extra: 1131/1128,
  13632. bottom: 39/1170
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Macro",
  13639. height: math.unit(500, "feet"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Megamacro",
  13644. height: math.unit(10, "miles")
  13645. },
  13646. {
  13647. name: "Gigamacro",
  13648. height: math.unit(100000, "miles")
  13649. },
  13650. {
  13651. name: "Examacro",
  13652. height: math.unit(1e9, "lightyears")
  13653. },
  13654. {
  13655. name: "Omniversal",
  13656. height: math.unit(1e33, "lightyears")
  13657. },
  13658. {
  13659. name: "Beyond Infinite",
  13660. height: math.unit(1e100, "lightyears")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13666. {
  13667. Side: {
  13668. height: math.unit(6, "feet"),
  13669. weight: math.unit(150, "lb"),
  13670. name: "Side",
  13671. image: {
  13672. source: "./media/characters/mira/side.svg",
  13673. extra: 900 / 799,
  13674. bottom: 0.02
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Human Size",
  13681. height: math.unit(6, "feet")
  13682. },
  13683. {
  13684. name: "Macro",
  13685. height: math.unit(100, "feet"),
  13686. default: true
  13687. },
  13688. {
  13689. name: "Megamacro",
  13690. height: math.unit(10, "miles")
  13691. },
  13692. {
  13693. name: "Gigamacro",
  13694. height: math.unit(25000, "miles")
  13695. },
  13696. {
  13697. name: "Teramacro",
  13698. height: math.unit(300, "AU")
  13699. },
  13700. {
  13701. name: "Full Size",
  13702. height: math.unit(4.5e10, "lightyears")
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(150, "lb"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/holly/front.svg",
  13715. extra: 639 / 606
  13716. }
  13717. },
  13718. back: {
  13719. height: math.unit(6, "feet"),
  13720. weight: math.unit(150, "lb"),
  13721. name: "Back",
  13722. image: {
  13723. source: "./media/characters/holly/back.svg",
  13724. extra: 623 / 598
  13725. }
  13726. },
  13727. frontWorking: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(150, "lb"),
  13730. name: "Front (Working)",
  13731. image: {
  13732. source: "./media/characters/holly/front-working.svg",
  13733. extra: 607 / 577,
  13734. bottom: 0.048
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Normal",
  13741. height: math.unit(12 + 3 / 12, "feet"),
  13742. default: true
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Front",
  13753. image: {
  13754. source: "./media/characters/porter/front.svg",
  13755. extra: 1,
  13756. bottom: 0.01
  13757. }
  13758. },
  13759. frontRobes: {
  13760. height: math.unit(6, "feet"),
  13761. weight: math.unit(150, "lb"),
  13762. name: "Front (Robes)",
  13763. image: {
  13764. source: "./media/characters/porter/front-robes.svg",
  13765. extra: 1.01,
  13766. bottom: 0.01
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(11 + 9 / 12, "feet"),
  13774. default: true
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13780. {
  13781. legendary: {
  13782. height: math.unit(6, "feet"),
  13783. weight: math.unit(150, "lb"),
  13784. name: "Legendary",
  13785. image: {
  13786. source: "./media/characters/lucy/legendary.svg",
  13787. extra: 1355 / 1100,
  13788. bottom: 0.045
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Legendary",
  13795. height: math.unit(86882 * 2, "miles"),
  13796. default: true
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(6, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/drusilla/front.svg",
  13809. extra: 678 / 635,
  13810. bottom: 0.03
  13811. }
  13812. },
  13813. back: {
  13814. height: math.unit(6, "feet"),
  13815. weight: math.unit(150, "lb"),
  13816. name: "Back",
  13817. image: {
  13818. source: "./media/characters/drusilla/back.svg",
  13819. extra: 678 / 635,
  13820. bottom: 0.005
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Macro",
  13827. height: math.unit(100, "feet")
  13828. },
  13829. {
  13830. name: "Canon Height",
  13831. height: math.unit(2000, "feet"),
  13832. default: true
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(180, "lb"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/renard-thatch/front.svg",
  13845. extra: 2411 / 2275,
  13846. bottom: 0.01
  13847. }
  13848. },
  13849. frontPosing: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(180, "lb"),
  13852. name: "Front (Posing)",
  13853. image: {
  13854. source: "./media/characters/renard-thatch/front-posing.svg",
  13855. extra: 2381 / 2261,
  13856. bottom: 0.01
  13857. }
  13858. },
  13859. back: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(180, "lb"),
  13862. name: "Back",
  13863. image: {
  13864. source: "./media/characters/renard-thatch/back.svg",
  13865. extra: 2428 / 2288
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Micro",
  13872. height: math.unit(3, "inches")
  13873. },
  13874. {
  13875. name: "Default",
  13876. height: math.unit(6, "feet"),
  13877. default: true
  13878. },
  13879. {
  13880. name: "Macro",
  13881. height: math.unit(75, "feet")
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(1450, "feet"),
  13890. weight: math.unit(1.21e6, "tons"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/sekvra/front.svg",
  13894. extra: 1193/1190,
  13895. bottom: 78/1271
  13896. }
  13897. },
  13898. side: {
  13899. height: math.unit(1450, "feet"),
  13900. weight: math.unit(1.21e6, "tons"),
  13901. name: "Side",
  13902. image: {
  13903. source: "./media/characters/sekvra/side.svg",
  13904. extra: 1193/1190,
  13905. bottom: 52/1245
  13906. }
  13907. },
  13908. back: {
  13909. height: math.unit(1450, "feet"),
  13910. weight: math.unit(1.21e6, "tons"),
  13911. name: "Back",
  13912. image: {
  13913. source: "./media/characters/sekvra/back.svg",
  13914. extra: 1219/1216,
  13915. bottom: 21/1240
  13916. }
  13917. },
  13918. frontClothed: {
  13919. height: math.unit(1450, "feet"),
  13920. weight: math.unit(1.21e6, "tons"),
  13921. name: "Front (Clothed)",
  13922. image: {
  13923. source: "./media/characters/sekvra/front-clothed.svg",
  13924. extra: 1192/1189,
  13925. bottom: 79/1271
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Macro",
  13932. height: math.unit(1450, "feet"),
  13933. default: true
  13934. },
  13935. {
  13936. name: "Megamacro",
  13937. height: math.unit(15000, "feet")
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(6, "feet"),
  13946. weight: math.unit(150, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/carmine/front.svg",
  13950. extra: 1,
  13951. bottom: 0.035
  13952. }
  13953. },
  13954. frontArmor: {
  13955. height: math.unit(6, "feet"),
  13956. weight: math.unit(150, "lb"),
  13957. name: "Front (Armor)",
  13958. image: {
  13959. source: "./media/characters/carmine/front-armor.svg",
  13960. extra: 1,
  13961. bottom: 0.035
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Large",
  13968. height: math.unit(1, "mile")
  13969. },
  13970. {
  13971. name: "Huge",
  13972. height: math.unit(40, "miles"),
  13973. default: true
  13974. },
  13975. {
  13976. name: "Colossal",
  13977. height: math.unit(2500, "miles")
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13983. {
  13984. front: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(150, "lb"),
  13987. name: "Front",
  13988. image: {
  13989. source: "./media/characters/elyssia/front.svg",
  13990. extra: 2201 / 2035,
  13991. bottom: 0.05
  13992. }
  13993. },
  13994. frontClothed: {
  13995. height: math.unit(6, "feet"),
  13996. weight: math.unit(150, "lb"),
  13997. name: "Front (Clothed)",
  13998. image: {
  13999. source: "./media/characters/elyssia/front-clothed.svg",
  14000. extra: 2201 / 2035,
  14001. bottom: 0.05
  14002. }
  14003. },
  14004. back: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Back",
  14008. image: {
  14009. source: "./media/characters/elyssia/back.svg",
  14010. extra: 2201 / 2035,
  14011. bottom: 0.013
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Smaller",
  14018. height: math.unit(150, "feet")
  14019. },
  14020. {
  14021. name: "Standard",
  14022. height: math.unit(1400, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Distracted",
  14027. height: math.unit(15000, "feet")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(7 + 4/12, "feet"),
  14036. weight: math.unit(690, "lb"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/geno-maxwell/front.svg",
  14040. extra: 984/856,
  14041. bottom: 87/1071
  14042. }
  14043. },
  14044. back: {
  14045. height: math.unit(7 + 4/12, "feet"),
  14046. weight: math.unit(690, "lb"),
  14047. name: "Back",
  14048. image: {
  14049. source: "./media/characters/geno-maxwell/back.svg",
  14050. extra: 981/854,
  14051. bottom: 57/1038
  14052. }
  14053. },
  14054. frontCostume: {
  14055. height: math.unit(7 + 4/12, "feet"),
  14056. weight: math.unit(690, "lb"),
  14057. name: "Front (Costume)",
  14058. image: {
  14059. source: "./media/characters/geno-maxwell/front-costume.svg",
  14060. extra: 984/856,
  14061. bottom: 87/1071
  14062. }
  14063. },
  14064. backcostume: {
  14065. height: math.unit(7 + 4/12, "feet"),
  14066. weight: math.unit(690, "lb"),
  14067. name: "Back (Costume)",
  14068. image: {
  14069. source: "./media/characters/geno-maxwell/back-costume.svg",
  14070. extra: 981/854,
  14071. bottom: 57/1038
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Micro",
  14078. height: math.unit(3, "inches")
  14079. },
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(7 + 4 / 12, "feet"),
  14083. default: true
  14084. },
  14085. {
  14086. name: "Macro",
  14087. height: math.unit(220, "feet")
  14088. },
  14089. {
  14090. name: "Megamacro",
  14091. height: math.unit(11, "miles")
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(7 + 4/12, "feet"),
  14100. weight: math.unit(750, "lb"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/regena-maxwell/front.svg",
  14104. extra: 984/856,
  14105. bottom: 87/1071
  14106. }
  14107. },
  14108. back: {
  14109. height: math.unit(7 + 4/12, "feet"),
  14110. weight: math.unit(750, "lb"),
  14111. name: "Back",
  14112. image: {
  14113. source: "./media/characters/regena-maxwell/back.svg",
  14114. extra: 981/854,
  14115. bottom: 57/1038
  14116. }
  14117. },
  14118. frontCostume: {
  14119. height: math.unit(7 + 4/12, "feet"),
  14120. weight: math.unit(750, "lb"),
  14121. name: "Front (Costume)",
  14122. image: {
  14123. source: "./media/characters/regena-maxwell/front-costume.svg",
  14124. extra: 984/856,
  14125. bottom: 87/1071
  14126. }
  14127. },
  14128. backcostume: {
  14129. height: math.unit(7 + 4/12, "feet"),
  14130. weight: math.unit(750, "lb"),
  14131. name: "Back (Costume)",
  14132. image: {
  14133. source: "./media/characters/regena-maxwell/back-costume.svg",
  14134. extra: 981/854,
  14135. bottom: 57/1038
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(7 + 4 / 12, "feet"),
  14143. default: true
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(220, "feet")
  14148. },
  14149. {
  14150. name: "Megamacro",
  14151. height: math.unit(11, "miles")
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(6, "feet"),
  14160. weight: math.unit(150, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14164. extra: 860 / 690,
  14165. bottom: 0.03
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Normal",
  14172. height: math.unit(1.7, "meters"),
  14173. default: true
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(6, "feet"),
  14182. weight: math.unit(150, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/quilly/front.svg",
  14186. extra: 890 / 776
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Gigamacro",
  14193. height: math.unit(404090, "miles"),
  14194. default: true
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(7 + 8 / 12, "feet"),
  14203. weight: math.unit(350, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/tempest/front.svg",
  14207. extra: 1175 / 1086,
  14208. bottom: 0.02
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Normal",
  14215. height: math.unit(7 + 8 / 12, "feet"),
  14216. default: true
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14222. {
  14223. side: {
  14224. height: math.unit(4 + 5 / 12, "feet"),
  14225. weight: math.unit(80, "lb"),
  14226. name: "Side",
  14227. image: {
  14228. source: "./media/characters/rodger/side.svg",
  14229. extra: 1235 / 1118
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Micro",
  14236. height: math.unit(1, "inch")
  14237. },
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(4 + 5 / 12, "feet"),
  14241. default: true
  14242. },
  14243. {
  14244. name: "Macro",
  14245. height: math.unit(120, "feet")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(150, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/danyel/front.svg",
  14258. extra: 1185 / 1123,
  14259. bottom: 0.05
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Shrunken",
  14266. height: math.unit(0.5, "mm")
  14267. },
  14268. {
  14269. name: "Micro",
  14270. height: math.unit(1, "mm"),
  14271. default: true
  14272. },
  14273. {
  14274. name: "Upsized",
  14275. height: math.unit(5 + 5 / 12, "feet")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(5 + 6 / 12, "feet"),
  14284. weight: math.unit(200, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/vivian-bijoux/front.svg",
  14288. extra: 1217/1209,
  14289. bottom: 76/1293
  14290. }
  14291. },
  14292. back: {
  14293. height: math.unit(5 + 6 / 12, "feet"),
  14294. weight: math.unit(200, "lb"),
  14295. name: "Back",
  14296. image: {
  14297. source: "./media/characters/vivian-bijoux/back.svg",
  14298. extra: 1214/1208,
  14299. bottom: 51/1265
  14300. }
  14301. },
  14302. dressed: {
  14303. height: math.unit(5 + 6 / 12, "feet"),
  14304. weight: math.unit(200, "lb"),
  14305. name: "Dressed",
  14306. image: {
  14307. source: "./media/characters/vivian-bijoux/dressed.svg",
  14308. extra: 1217/1209,
  14309. bottom: 76/1293
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(5 + 6 / 12, "feet"),
  14317. default: true
  14318. },
  14319. {
  14320. name: "Bad Dream",
  14321. height: math.unit(500, "feet")
  14322. },
  14323. {
  14324. name: "Nightmare",
  14325. height: math.unit(500, "miles")
  14326. },
  14327. ]
  14328. ))
  14329. characterMakers.push(() => makeCharacter(
  14330. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14331. {
  14332. front: {
  14333. height: math.unit(6 + 1 / 12, "feet"),
  14334. weight: math.unit(260, "lb"),
  14335. name: "Front",
  14336. image: {
  14337. source: "./media/characters/zeta/front.svg",
  14338. extra: 1968 / 1889,
  14339. bottom: 0.06
  14340. }
  14341. },
  14342. back: {
  14343. height: math.unit(6 + 1 / 12, "feet"),
  14344. weight: math.unit(260, "lb"),
  14345. name: "Back",
  14346. image: {
  14347. source: "./media/characters/zeta/back.svg",
  14348. extra: 1944 / 1858,
  14349. bottom: 0.03
  14350. }
  14351. },
  14352. hand: {
  14353. height: math.unit(1.112, "feet"),
  14354. name: "Hand",
  14355. image: {
  14356. source: "./media/characters/zeta/hand.svg"
  14357. }
  14358. },
  14359. foot: {
  14360. height: math.unit(1.48, "feet"),
  14361. name: "Foot",
  14362. image: {
  14363. source: "./media/characters/zeta/foot.svg"
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Micro",
  14370. height: math.unit(6, "inches")
  14371. },
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(6 + 1 / 12, "feet"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Macro",
  14379. height: math.unit(20, "feet")
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14385. {
  14386. front: {
  14387. height: math.unit(6, "feet"),
  14388. weight: math.unit(150, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/jamie-larsen/front.svg",
  14392. extra: 962 / 933,
  14393. bottom: 0.02
  14394. }
  14395. },
  14396. back: {
  14397. height: math.unit(6, "feet"),
  14398. weight: math.unit(150, "lb"),
  14399. name: "Back",
  14400. image: {
  14401. source: "./media/characters/jamie-larsen/back.svg",
  14402. extra: 997 / 946
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Macro",
  14409. height: math.unit(28 + 7 / 12, "feet"),
  14410. default: true
  14411. },
  14412. {
  14413. name: "Macro+",
  14414. height: math.unit(180, "feet")
  14415. },
  14416. {
  14417. name: "Megamacro",
  14418. height: math.unit(10, "miles")
  14419. },
  14420. {
  14421. name: "Gigamacro",
  14422. height: math.unit(200000, "miles")
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(120, "lb"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/vance/front.svg",
  14435. extra: 1980 / 1890,
  14436. bottom: 0.09
  14437. }
  14438. },
  14439. back: {
  14440. height: math.unit(6, "feet"),
  14441. weight: math.unit(120, "lb"),
  14442. name: "Back",
  14443. image: {
  14444. source: "./media/characters/vance/back.svg",
  14445. extra: 2081 / 1994,
  14446. bottom: 0.014
  14447. }
  14448. },
  14449. hand: {
  14450. height: math.unit(0.88, "feet"),
  14451. name: "Hand",
  14452. image: {
  14453. source: "./media/characters/vance/hand.svg"
  14454. }
  14455. },
  14456. foot: {
  14457. height: math.unit(0.64, "feet"),
  14458. name: "Foot",
  14459. image: {
  14460. source: "./media/characters/vance/foot.svg"
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Small",
  14467. height: math.unit(90, "feet"),
  14468. default: true
  14469. },
  14470. {
  14471. name: "Macro",
  14472. height: math.unit(100, "meters")
  14473. },
  14474. {
  14475. name: "Megamacro",
  14476. height: math.unit(15, "miles")
  14477. },
  14478. ]
  14479. ))
  14480. characterMakers.push(() => makeCharacter(
  14481. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14482. {
  14483. front: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(180, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/xochitl/front.svg",
  14489. extra: 2297 / 2261,
  14490. bottom: 0.065
  14491. }
  14492. },
  14493. back: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(180, "lb"),
  14496. name: "Back",
  14497. image: {
  14498. source: "./media/characters/xochitl/back.svg",
  14499. extra: 2386 / 2354,
  14500. bottom: 0.01
  14501. }
  14502. },
  14503. foot: {
  14504. height: math.unit(6 / 5 * 1.15, "feet"),
  14505. weight: math.unit(150, "lb"),
  14506. name: "Foot",
  14507. image: {
  14508. source: "./media/characters/xochitl/foot.svg"
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Macro",
  14515. height: math.unit(80, "feet")
  14516. },
  14517. {
  14518. name: "Macro+",
  14519. height: math.unit(400, "feet"),
  14520. default: true
  14521. },
  14522. {
  14523. name: "Gigamacro",
  14524. height: math.unit(80000, "miles")
  14525. },
  14526. {
  14527. name: "Gigamacro+",
  14528. height: math.unit(400000, "miles")
  14529. },
  14530. {
  14531. name: "Teramacro",
  14532. height: math.unit(300, "AU")
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(6, "feet"),
  14541. weight: math.unit(150, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/vincent/front.svg",
  14545. extra: 1130 / 1080,
  14546. bottom: 0.055
  14547. }
  14548. },
  14549. beak: {
  14550. height: math.unit(6 * 0.1, "feet"),
  14551. name: "Beak",
  14552. image: {
  14553. source: "./media/characters/vincent/beak.svg"
  14554. }
  14555. },
  14556. hand: {
  14557. height: math.unit(6 * 0.85, "feet"),
  14558. weight: math.unit(150, "lb"),
  14559. name: "Hand",
  14560. image: {
  14561. source: "./media/characters/vincent/hand.svg"
  14562. }
  14563. },
  14564. foot: {
  14565. height: math.unit(6 * 0.19, "feet"),
  14566. weight: math.unit(150, "lb"),
  14567. name: "Foot",
  14568. image: {
  14569. source: "./media/characters/vincent/foot.svg"
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Base",
  14576. height: math.unit(6 + 5 / 12, "feet"),
  14577. default: true
  14578. },
  14579. {
  14580. name: "Macro",
  14581. height: math.unit(300, "feet")
  14582. },
  14583. {
  14584. name: "Megamacro",
  14585. height: math.unit(2, "miles")
  14586. },
  14587. {
  14588. name: "Gigamacro",
  14589. height: math.unit(1000, "miles")
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(2, "meters"),
  14598. weight: math.unit(500, "kg"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/coatl/front.svg",
  14602. extra: 3948 / 3500,
  14603. bottom: 0.082
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(4, "meters")
  14611. },
  14612. {
  14613. name: "Macro",
  14614. height: math.unit(100, "meters"),
  14615. default: true
  14616. },
  14617. {
  14618. name: "Macro+",
  14619. height: math.unit(300, "meters")
  14620. },
  14621. {
  14622. name: "Megamacro",
  14623. height: math.unit(3, "gigameters")
  14624. },
  14625. {
  14626. name: "Megamacro+",
  14627. height: math.unit(300, "terameters")
  14628. },
  14629. {
  14630. name: "Megamacro++",
  14631. height: math.unit(3, "lightyears")
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(6, "feet"),
  14640. weight: math.unit(50, "kg"),
  14641. name: "front",
  14642. image: {
  14643. source: "./media/characters/shiroryu/front.svg",
  14644. extra: 1990 / 1935
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Mortal Mingling",
  14651. height: math.unit(3, "meters")
  14652. },
  14653. {
  14654. name: "Kaiju-ish",
  14655. height: math.unit(250, "meters")
  14656. },
  14657. {
  14658. name: "Somewhat Godly",
  14659. height: math.unit(400, "km"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Planetary",
  14664. height: math.unit(300, "megameters")
  14665. },
  14666. {
  14667. name: "Galaxy-dwarfing",
  14668. height: math.unit(450, "kiloparsecs")
  14669. },
  14670. {
  14671. name: "Universe Eater",
  14672. height: math.unit(150, "gigaparsecs")
  14673. },
  14674. {
  14675. name: "Almost Immeasurable",
  14676. height: math.unit(1.3e266, "yottaparsecs")
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(6, "feet"),
  14685. weight: math.unit(150, "lb"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/umeko/front.svg",
  14689. extra: 1,
  14690. bottom: 0.019
  14691. }
  14692. },
  14693. frontArmored: {
  14694. height: math.unit(6, "feet"),
  14695. weight: math.unit(150, "lb"),
  14696. name: "Front (Armored)",
  14697. image: {
  14698. source: "./media/characters/umeko/front-armored.svg",
  14699. extra: 1,
  14700. bottom: 0.021
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(220, "feet"),
  14708. default: true
  14709. },
  14710. {
  14711. name: "Guardian Dragon",
  14712. height: math.unit(50, "miles")
  14713. },
  14714. {
  14715. name: "Cosmic",
  14716. height: math.unit(800000, "miles")
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(6, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/cassidy/front.svg",
  14729. extra: 810/808,
  14730. bottom: 41/851
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Canon Height",
  14737. height: math.unit(120, "feet"),
  14738. default: true
  14739. },
  14740. {
  14741. name: "Macro+",
  14742. height: math.unit(400, "feet")
  14743. },
  14744. {
  14745. name: "Macro++",
  14746. height: math.unit(4000, "feet")
  14747. },
  14748. {
  14749. name: "Megamacro",
  14750. height: math.unit(3, "miles")
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(6, "feet"),
  14759. weight: math.unit(150, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/isaac/front.svg",
  14763. extra: 896 / 815,
  14764. bottom: 0.11
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Human Size",
  14771. height: math.unit(8, "feet"),
  14772. default: true
  14773. },
  14774. {
  14775. name: "Macro",
  14776. height: math.unit(400, "feet")
  14777. },
  14778. {
  14779. name: "Megamacro",
  14780. height: math.unit(50, "miles")
  14781. },
  14782. {
  14783. name: "Canon Height",
  14784. height: math.unit(200, "AU")
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(72, "kg"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/sleekit/front.svg",
  14797. extra: 4693 / 4487,
  14798. bottom: 0.012
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Minimum Height",
  14805. height: math.unit(10, "meters")
  14806. },
  14807. {
  14808. name: "Smaller",
  14809. height: math.unit(25, "meters")
  14810. },
  14811. {
  14812. name: "Larger",
  14813. height: math.unit(38, "meters"),
  14814. default: true
  14815. },
  14816. {
  14817. name: "Maximum height",
  14818. height: math.unit(100, "meters")
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(6, "feet"),
  14827. weight: math.unit(150, "lb"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/nillia/front.svg",
  14831. extra: 2195 / 2037,
  14832. bottom: 0.005
  14833. }
  14834. },
  14835. back: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Back",
  14839. image: {
  14840. source: "./media/characters/nillia/back.svg",
  14841. extra: 2195 / 2037,
  14842. bottom: 0.005
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Canon Height",
  14849. height: math.unit(489, "feet"),
  14850. default: true
  14851. }
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(6, "feet"),
  14859. weight: math.unit(150, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/mesmyriza/front.svg",
  14863. extra: 2067 / 1784,
  14864. bottom: 0.035
  14865. }
  14866. },
  14867. foot: {
  14868. height: math.unit(6 / (250 / 35), "feet"),
  14869. name: "Foot",
  14870. image: {
  14871. source: "./media/characters/mesmyriza/foot.svg"
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Macro",
  14878. height: math.unit(457, "meters"),
  14879. default: true
  14880. },
  14881. {
  14882. name: "Megamacro",
  14883. height: math.unit(8, "megameters")
  14884. },
  14885. ]
  14886. ))
  14887. characterMakers.push(() => makeCharacter(
  14888. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14889. {
  14890. front: {
  14891. height: math.unit(6, "feet"),
  14892. weight: math.unit(250, "lb"),
  14893. name: "Front",
  14894. image: {
  14895. source: "./media/characters/saudade/front.svg",
  14896. extra: 1172 / 1139,
  14897. bottom: 0.035
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Micro",
  14904. height: math.unit(3, "inches")
  14905. },
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(6, "feet"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Macro",
  14913. height: math.unit(50, "feet")
  14914. },
  14915. {
  14916. name: "Megamacro",
  14917. height: math.unit(2800, "feet")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(5 + 4 / 12, "feet"),
  14926. weight: math.unit(100, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/keireer/front.svg",
  14930. extra: 716 / 666,
  14931. bottom: 0.05
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(5 + 4 / 12, "feet"),
  14939. default: true
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14945. {
  14946. front: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(90, "kg"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/mirja/front.svg",
  14952. extra: 1789 / 1683,
  14953. bottom: 0.05
  14954. }
  14955. },
  14956. frontDressed: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(90, "lb"),
  14959. name: "Front (Dressed)",
  14960. image: {
  14961. source: "./media/characters/mirja/front-dressed.svg",
  14962. extra: 1789 / 1683,
  14963. bottom: 0.05
  14964. }
  14965. },
  14966. back: {
  14967. height: math.unit(6, "feet"),
  14968. weight: math.unit(90, "lb"),
  14969. name: "Back",
  14970. image: {
  14971. source: "./media/characters/mirja/back.svg",
  14972. extra: 953 / 917,
  14973. bottom: 0.017
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "\"Incognito\"",
  14980. height: math.unit(3, "meters")
  14981. },
  14982. {
  14983. name: "Strolling Size",
  14984. height: math.unit(15, "km")
  14985. },
  14986. {
  14987. name: "Larger Strolling Size",
  14988. height: math.unit(400, "km")
  14989. },
  14990. {
  14991. name: "Preferred Size",
  14992. height: math.unit(5000, "km")
  14993. },
  14994. {
  14995. name: "True Size",
  14996. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14997. default: true
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15003. {
  15004. front: {
  15005. height: math.unit(15, "feet"),
  15006. weight: math.unit(880, "kg"),
  15007. name: "Front",
  15008. image: {
  15009. source: "./media/characters/nightraver/front.svg",
  15010. extra: 2444 / 2160,
  15011. bottom: 0.027
  15012. }
  15013. },
  15014. back: {
  15015. height: math.unit(15, "feet"),
  15016. weight: math.unit(880, "kg"),
  15017. name: "Back",
  15018. image: {
  15019. source: "./media/characters/nightraver/back.svg",
  15020. extra: 2309 / 2180,
  15021. bottom: 0.005
  15022. }
  15023. },
  15024. sole: {
  15025. height: math.unit(2.878, "feet"),
  15026. name: "Sole",
  15027. image: {
  15028. source: "./media/characters/nightraver/sole.svg"
  15029. }
  15030. },
  15031. foot: {
  15032. height: math.unit(2.285, "feet"),
  15033. name: "Foot",
  15034. image: {
  15035. source: "./media/characters/nightraver/foot.svg"
  15036. }
  15037. },
  15038. maw: {
  15039. height: math.unit(2.67, "feet"),
  15040. name: "Maw",
  15041. image: {
  15042. source: "./media/characters/nightraver/maw.svg"
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Micro",
  15049. height: math.unit(1, "cm")
  15050. },
  15051. {
  15052. name: "Normal",
  15053. height: math.unit(15, "feet"),
  15054. default: true
  15055. },
  15056. {
  15057. name: "Macro",
  15058. height: math.unit(300, "feet")
  15059. },
  15060. {
  15061. name: "Megamacro",
  15062. height: math.unit(300, "miles")
  15063. },
  15064. {
  15065. name: "Gigamacro",
  15066. height: math.unit(10000, "miles")
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15072. {
  15073. side: {
  15074. height: math.unit(2, "inches"),
  15075. weight: math.unit(5, "grams"),
  15076. name: "Side",
  15077. image: {
  15078. source: "./media/characters/arc/side.svg"
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Micro",
  15085. height: math.unit(2, "inches"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(1.1938, "meters"),
  15095. weight: math.unit(54, "kg"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/nebula-shahar/front.svg",
  15099. extra: 1642 / 1436,
  15100. bottom: 0.06
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Megamicro",
  15107. height: math.unit(0.3, "mm")
  15108. },
  15109. {
  15110. name: "Micro",
  15111. height: math.unit(3, "cm")
  15112. },
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(138, "cm"),
  15116. default: true
  15117. },
  15118. {
  15119. name: "Macro",
  15120. height: math.unit(30, "m")
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(5.24, "feet"),
  15129. weight: math.unit(150, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/shayla/front.svg",
  15133. extra: 1512 / 1414,
  15134. bottom: 0.01
  15135. }
  15136. },
  15137. back: {
  15138. height: math.unit(5.24, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Back",
  15141. image: {
  15142. source: "./media/characters/shayla/back.svg",
  15143. extra: 1512 / 1414
  15144. }
  15145. },
  15146. hand: {
  15147. height: math.unit(0.7781496062992126, "feet"),
  15148. name: "Hand",
  15149. image: {
  15150. source: "./media/characters/shayla/hand.svg"
  15151. }
  15152. },
  15153. foot: {
  15154. height: math.unit(1.4206036745406823, "feet"),
  15155. name: "Foot",
  15156. image: {
  15157. source: "./media/characters/shayla/foot.svg"
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Micro",
  15164. height: math.unit(0.32, "feet")
  15165. },
  15166. {
  15167. name: "Normal",
  15168. height: math.unit(5.24, "feet"),
  15169. default: true
  15170. },
  15171. {
  15172. name: "Macro",
  15173. height: math.unit(492.12, "feet")
  15174. },
  15175. {
  15176. name: "Megamacro",
  15177. height: math.unit(186.41, "miles")
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(2.2, "m"),
  15186. weight: math.unit(120, "kg"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/pia-jr/front.svg",
  15190. extra: 1000 / 970,
  15191. bottom: 0.035
  15192. }
  15193. },
  15194. hand: {
  15195. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15196. name: "Hand",
  15197. image: {
  15198. source: "./media/characters/pia-jr/hand.svg"
  15199. }
  15200. },
  15201. paw: {
  15202. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15203. name: "Paw",
  15204. image: {
  15205. source: "./media/characters/pia-jr/paw.svg"
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Micro",
  15212. height: math.unit(1.2, "cm")
  15213. },
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(2.2, "m"),
  15217. default: true
  15218. },
  15219. {
  15220. name: "Macro",
  15221. height: math.unit(180, "m")
  15222. },
  15223. {
  15224. name: "Megamacro",
  15225. height: math.unit(420, "km")
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(2, "m"),
  15234. weight: math.unit(115, "kg"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/pia-sr/front.svg",
  15238. extra: 760 / 730,
  15239. bottom: 0.015
  15240. }
  15241. },
  15242. back: {
  15243. height: math.unit(2, "m"),
  15244. weight: math.unit(115, "kg"),
  15245. name: "Back",
  15246. image: {
  15247. source: "./media/characters/pia-sr/back.svg",
  15248. extra: 760 / 730,
  15249. bottom: 0.01
  15250. }
  15251. },
  15252. hand: {
  15253. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15254. name: "Hand",
  15255. image: {
  15256. source: "./media/characters/pia-sr/hand.svg"
  15257. }
  15258. },
  15259. foot: {
  15260. height: math.unit(1.83, "feet"),
  15261. name: "Foot",
  15262. image: {
  15263. source: "./media/characters/pia-sr/foot.svg"
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Micro",
  15270. height: math.unit(88, "mm")
  15271. },
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(2, "m"),
  15275. default: true
  15276. },
  15277. {
  15278. name: "Macro",
  15279. height: math.unit(200, "m")
  15280. },
  15281. {
  15282. name: "Megamacro",
  15283. height: math.unit(420, "km")
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(8 + 2 / 12, "feet"),
  15292. weight: math.unit(300, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/kibibyte/front.svg",
  15296. extra: 2221 / 2098,
  15297. bottom: 0.04
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(8 + 2 / 12, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Socialable Macro",
  15309. height: math.unit(50, "feet")
  15310. },
  15311. {
  15312. name: "Macro",
  15313. height: math.unit(300, "feet")
  15314. },
  15315. {
  15316. name: "Megamacro",
  15317. height: math.unit(500, "miles")
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(6, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/felix/front.svg",
  15330. extra: 762 / 722,
  15331. bottom: 0.02
  15332. }
  15333. },
  15334. frontClothed: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Front (Clothed)",
  15338. image: {
  15339. source: "./media/characters/felix/front-clothed.svg",
  15340. extra: 762 / 722,
  15341. bottom: 0.02
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(6 + 8 / 12, "feet"),
  15349. default: true
  15350. },
  15351. {
  15352. name: "Macro",
  15353. height: math.unit(2600, "feet")
  15354. },
  15355. {
  15356. name: "Megamacro",
  15357. height: math.unit(450, "miles")
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15363. {
  15364. front: {
  15365. height: math.unit(6 + 1 / 12, "feet"),
  15366. weight: math.unit(250, "lb"),
  15367. name: "Front",
  15368. image: {
  15369. source: "./media/characters/tobo/front.svg",
  15370. extra: 608 / 586,
  15371. bottom: 0.023
  15372. }
  15373. },
  15374. back: {
  15375. height: math.unit(6 + 1 / 12, "feet"),
  15376. weight: math.unit(250, "lb"),
  15377. name: "Back",
  15378. image: {
  15379. source: "./media/characters/tobo/back.svg",
  15380. extra: 608 / 586
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Nano",
  15387. height: math.unit(2, "nm")
  15388. },
  15389. {
  15390. name: "Megamicro",
  15391. height: math.unit(0.1, "mm")
  15392. },
  15393. {
  15394. name: "Micro",
  15395. height: math.unit(1, "inch"),
  15396. default: true
  15397. },
  15398. {
  15399. name: "Human-sized",
  15400. height: math.unit(6 + 1 / 12, "feet")
  15401. },
  15402. {
  15403. name: "Macro",
  15404. height: math.unit(250, "feet")
  15405. },
  15406. {
  15407. name: "Megamacro",
  15408. height: math.unit(75, "miles")
  15409. },
  15410. {
  15411. name: "Texas-sized",
  15412. height: math.unit(750, "miles")
  15413. },
  15414. {
  15415. name: "Teramacro",
  15416. height: math.unit(50000, "miles")
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(269, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/danny-kapowsky/front.svg",
  15429. extra: 766 / 736,
  15430. bottom: 0.044
  15431. }
  15432. },
  15433. back: {
  15434. height: math.unit(6, "feet"),
  15435. weight: math.unit(269, "lb"),
  15436. name: "Back",
  15437. image: {
  15438. source: "./media/characters/danny-kapowsky/back.svg",
  15439. extra: 797 / 760,
  15440. bottom: 0.025
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Macro",
  15447. height: math.unit(150, "feet"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Macro+",
  15452. height: math.unit(200, "feet")
  15453. },
  15454. {
  15455. name: "Macro++",
  15456. height: math.unit(300, "feet")
  15457. },
  15458. {
  15459. name: "Macro+++",
  15460. height: math.unit(400, "feet")
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15466. {
  15467. side: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(170, "lb"),
  15470. name: "Side",
  15471. image: {
  15472. source: "./media/characters/finn/side.svg",
  15473. extra: 1953 / 1807,
  15474. bottom: 0.057
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Megamacro",
  15481. height: math.unit(14445, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(5 + 6 / 12, "feet"),
  15491. weight: math.unit(125, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/roy/front.svg",
  15495. extra: 1,
  15496. bottom: 0.11
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Micro",
  15503. height: math.unit(3, "inches"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(5 + 6 / 12, "feet")
  15509. },
  15510. {
  15511. name: "Lesser Macro",
  15512. height: math.unit(60, "feet")
  15513. },
  15514. {
  15515. name: "Greater Macro",
  15516. height: math.unit(120, "feet")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(100, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/aevsivs/front.svg",
  15529. extra: 1,
  15530. bottom: 0.03
  15531. }
  15532. },
  15533. back: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(100, "lb"),
  15536. name: "Back",
  15537. image: {
  15538. source: "./media/characters/aevsivs/back.svg"
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Micro",
  15545. height: math.unit(2, "inches"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(5, "feet")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(5 + 7 / 12, "feet"),
  15559. weight: math.unit(159, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/hildegard/front.svg",
  15563. extra: 289 / 269,
  15564. bottom: 7.63 / 297.8
  15565. }
  15566. },
  15567. back: {
  15568. height: math.unit(5 + 7 / 12, "feet"),
  15569. weight: math.unit(159, "lb"),
  15570. name: "Back",
  15571. image: {
  15572. source: "./media/characters/hildegard/back.svg",
  15573. extra: 280 / 260,
  15574. bottom: 2.3 / 282
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Normal",
  15581. height: math.unit(5 + 7 / 12, "feet"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15588. {
  15589. bernard: {
  15590. height: math.unit(2 + 7 / 12, "feet"),
  15591. weight: math.unit(66, "lb"),
  15592. name: "Bernard",
  15593. rename: true,
  15594. image: {
  15595. source: "./media/characters/bernard-wilder/bernard.svg",
  15596. extra: 192 / 128,
  15597. bottom: 0.05
  15598. }
  15599. },
  15600. wilder: {
  15601. height: math.unit(5 + 8 / 12, "feet"),
  15602. weight: math.unit(143, "lb"),
  15603. name: "Wilder",
  15604. rename: true,
  15605. image: {
  15606. source: "./media/characters/bernard-wilder/wilder.svg",
  15607. extra: 361 / 312,
  15608. bottom: 0.02
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(2 + 7 / 12, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15622. {
  15623. anthro: {
  15624. height: math.unit(6 + 1 / 12, "feet"),
  15625. weight: math.unit(155, "lb"),
  15626. name: "Anthro",
  15627. image: {
  15628. source: "./media/characters/hearth/anthro.svg",
  15629. extra: 1178/1136,
  15630. bottom: 28/1206
  15631. }
  15632. },
  15633. feral: {
  15634. height: math.unit(3.78, "feet"),
  15635. weight: math.unit(35, "kg"),
  15636. name: "Feral",
  15637. image: {
  15638. source: "./media/characters/hearth/feral.svg",
  15639. extra: 153 / 135,
  15640. bottom: 0.03
  15641. }
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Normal",
  15647. height: math.unit(6 + 1 / 12, "feet"),
  15648. default: true
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(6, "feet"),
  15657. weight: math.unit(182, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/ingrid/front.svg",
  15661. extra: 294 / 268,
  15662. bottom: 0.027
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(6, "feet"),
  15670. default: true
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15676. {
  15677. eevee: {
  15678. height: math.unit(2 + 10 / 12, "feet"),
  15679. weight: math.unit(86, "lb"),
  15680. name: "Malgam",
  15681. image: {
  15682. source: "./media/characters/malgam/eevee.svg",
  15683. extra: 952/784,
  15684. bottom: 38/990
  15685. }
  15686. },
  15687. sylveon: {
  15688. height: math.unit(4, "feet"),
  15689. weight: math.unit(101, "lb"),
  15690. name: "Future Malgam",
  15691. rename: true,
  15692. image: {
  15693. source: "./media/characters/malgam/sylveon.svg",
  15694. extra: 371 / 325,
  15695. bottom: 0.015
  15696. }
  15697. },
  15698. gigantamax: {
  15699. height: math.unit(50, "feet"),
  15700. name: "Gigantamax Malgam",
  15701. rename: true,
  15702. image: {
  15703. source: "./media/characters/malgam/gigantamax.svg"
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(2 + 10 / 12, "feet"),
  15711. default: true
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15717. {
  15718. front: {
  15719. height: math.unit(5 + 11 / 12, "feet"),
  15720. weight: math.unit(188, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/fleur/front.svg",
  15724. extra: 309 / 283,
  15725. bottom: 0.007
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Normal",
  15732. height: math.unit(5 + 11 / 12, "feet"),
  15733. default: true
  15734. },
  15735. ]
  15736. ))
  15737. characterMakers.push(() => makeCharacter(
  15738. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15739. {
  15740. front: {
  15741. height: math.unit(5 + 4 / 12, "feet"),
  15742. weight: math.unit(122, "lb"),
  15743. name: "Front",
  15744. image: {
  15745. source: "./media/characters/jude/front.svg",
  15746. extra: 288 / 273,
  15747. bottom: 0.03
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Normal",
  15754. height: math.unit(5 + 4 / 12, "feet"),
  15755. default: true
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15761. {
  15762. front: {
  15763. height: math.unit(5 + 11 / 12, "feet"),
  15764. weight: math.unit(190, "lb"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/seara/front.svg",
  15768. extra: 1,
  15769. bottom: 0.05
  15770. }
  15771. },
  15772. },
  15773. [
  15774. {
  15775. name: "Normal",
  15776. height: math.unit(5 + 11 / 12, "feet"),
  15777. default: true
  15778. },
  15779. ]
  15780. ))
  15781. characterMakers.push(() => makeCharacter(
  15782. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15783. {
  15784. front: {
  15785. height: math.unit(16 + 5 / 12, "feet"),
  15786. weight: math.unit(524, "lb"),
  15787. name: "Front",
  15788. image: {
  15789. source: "./media/characters/caspian-lugia/front.svg",
  15790. extra: 1,
  15791. bottom: 0.04
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Normal",
  15798. height: math.unit(16 + 5 / 12, "feet"),
  15799. default: true
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15805. {
  15806. front: {
  15807. height: math.unit(5 + 7 / 12, "feet"),
  15808. weight: math.unit(170, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/mika/front.svg",
  15812. extra: 1,
  15813. bottom: 0.016
  15814. }
  15815. },
  15816. },
  15817. [
  15818. {
  15819. name: "Normal",
  15820. height: math.unit(5 + 7 / 12, "feet"),
  15821. default: true
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(6 + 2 / 12, "feet"),
  15830. weight: math.unit(268, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/sol/front.svg",
  15834. extra: 247 / 231,
  15835. bottom: 0.05
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Normal",
  15842. height: math.unit(6 + 2 / 12, "feet"),
  15843. default: true
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15849. {
  15850. buizel: {
  15851. height: math.unit(2 + 5 / 12, "feet"),
  15852. weight: math.unit(87, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/umiko/buizel.svg",
  15856. extra: 172 / 157,
  15857. bottom: 0.01
  15858. },
  15859. form: "buizel",
  15860. default: true
  15861. },
  15862. floatzel: {
  15863. height: math.unit(5 + 9 / 12, "feet"),
  15864. weight: math.unit(250, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/umiko/floatzel.svg",
  15868. extra: 1076/1006,
  15869. bottom: 15/1091
  15870. },
  15871. form: "floatzel",
  15872. default: true
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Normal",
  15878. height: math.unit(2 + 5 / 12, "feet"),
  15879. form: "buizel",
  15880. default: true
  15881. },
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(5 + 9 / 12, "feet"),
  15885. form: "floatzel",
  15886. default: true
  15887. },
  15888. ],
  15889. {
  15890. "buizel": {
  15891. name: "Buizel"
  15892. },
  15893. "floatzel": {
  15894. name: "Floatzel",
  15895. default: true
  15896. }
  15897. }
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(6 + 2 / 12, "feet"),
  15904. weight: math.unit(146, "lb"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/iliac/front.svg",
  15908. extra: 389 / 365,
  15909. bottom: 0.035
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Normal",
  15916. height: math.unit(6 + 2 / 12, "feet"),
  15917. default: true
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(6, "feet"),
  15926. weight: math.unit(170, "lb"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/topaz/front.svg",
  15930. extra: 317 / 303,
  15931. bottom: 0.055
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(6, "feet"),
  15939. default: true
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(5 + 11 / 12, "feet"),
  15948. weight: math.unit(144, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/gabriel/front.svg",
  15952. extra: 285 / 262,
  15953. bottom: 0.004
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(5 + 11 / 12, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15967. {
  15968. side: {
  15969. height: math.unit(6 + 5 / 12, "feet"),
  15970. weight: math.unit(300, "lb"),
  15971. name: "Side",
  15972. image: {
  15973. source: "./media/characters/tempest-suicune/side.svg",
  15974. extra: 195 / 154,
  15975. bottom: 0.04
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(6 + 5 / 12, "feet"),
  15983. default: true
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(7 + 2 / 12, "feet"),
  15992. weight: math.unit(322, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/vulcan/front.svg",
  15996. extra: 154 / 147,
  15997. bottom: 0.04
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(7 + 2 / 12, "feet"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(5 + 10 / 12, "feet"),
  16014. weight: math.unit(264, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/gault/front.svg",
  16018. extra: 161 / 140,
  16019. bottom: 0.028
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(5 + 10 / 12, "feet"),
  16027. default: true
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16033. {
  16034. front: {
  16035. height: math.unit(6, "feet"),
  16036. weight: math.unit(150, "lb"),
  16037. name: "Front",
  16038. image: {
  16039. source: "./media/characters/shard/front.svg",
  16040. extra: 273 / 238,
  16041. bottom: 0.02
  16042. }
  16043. },
  16044. },
  16045. [
  16046. {
  16047. name: "Normal",
  16048. height: math.unit(3 + 6 / 12, "feet"),
  16049. default: true
  16050. },
  16051. ]
  16052. ))
  16053. characterMakers.push(() => makeCharacter(
  16054. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16055. {
  16056. front: {
  16057. height: math.unit(5 + 11 / 12, "feet"),
  16058. weight: math.unit(146, "lb"),
  16059. name: "Front",
  16060. image: {
  16061. source: "./media/characters/ashe/front.svg",
  16062. extra: 400 / 373,
  16063. bottom: 0.01
  16064. }
  16065. },
  16066. },
  16067. [
  16068. {
  16069. name: "Normal",
  16070. height: math.unit(5 + 11 / 12, "feet"),
  16071. default: true
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16077. {
  16078. front: {
  16079. height: math.unit(5 + 5 / 12, "feet"),
  16080. weight: math.unit(135, "lb"),
  16081. name: "Front",
  16082. image: {
  16083. source: "./media/characters/beatrix/front.svg",
  16084. extra: 392 / 379,
  16085. bottom: 0.01
  16086. }
  16087. },
  16088. },
  16089. [
  16090. {
  16091. name: "Normal",
  16092. height: math.unit(6, "feet"),
  16093. default: true
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16099. {
  16100. front: {
  16101. height: math.unit(6 + 2/12, "feet"),
  16102. weight: math.unit(135, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/ignatius/front.svg",
  16106. extra: 1380/1259,
  16107. bottom: 27/1407
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(6 + 2/12, "feet"),
  16115. default: true
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16121. {
  16122. front: {
  16123. height: math.unit(6 + 2 / 12, "feet"),
  16124. weight: math.unit(138, "lb"),
  16125. name: "Front",
  16126. image: {
  16127. source: "./media/characters/mei-li/front.svg",
  16128. extra: 237 / 229,
  16129. bottom: 0.03
  16130. }
  16131. },
  16132. },
  16133. [
  16134. {
  16135. name: "Normal",
  16136. height: math.unit(6 + 2 / 12, "feet"),
  16137. default: true
  16138. },
  16139. ]
  16140. ))
  16141. characterMakers.push(() => makeCharacter(
  16142. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16143. {
  16144. front: {
  16145. height: math.unit(2 + 4 / 12, "feet"),
  16146. weight: math.unit(62, "lb"),
  16147. name: "Front",
  16148. image: {
  16149. source: "./media/characters/puru/front.svg",
  16150. extra: 206 / 149,
  16151. bottom: 0.06
  16152. }
  16153. },
  16154. },
  16155. [
  16156. {
  16157. name: "Normal",
  16158. height: math.unit(2 + 4 / 12, "feet"),
  16159. default: true
  16160. },
  16161. ]
  16162. ))
  16163. characterMakers.push(() => makeCharacter(
  16164. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16165. {
  16166. anthro: {
  16167. height: math.unit(5 + 8/12, "feet"),
  16168. weight: math.unit(200, "lb"),
  16169. energyNeed: math.unit(2000, "kcal"),
  16170. name: "Anthro",
  16171. image: {
  16172. source: "./media/characters/kee/anthro.svg",
  16173. extra: 3251/3184,
  16174. bottom: 250/3501
  16175. }
  16176. },
  16177. taur: {
  16178. height: math.unit(11, "feet"),
  16179. weight: math.unit(500, "lb"),
  16180. energyNeed: math.unit(5000, "kcal"),
  16181. name: "Taur",
  16182. image: {
  16183. source: "./media/characters/kee/taur.svg",
  16184. extra: 1362/1320,
  16185. bottom: 83/1445
  16186. }
  16187. },
  16188. },
  16189. [
  16190. {
  16191. name: "Normal",
  16192. height: math.unit(5 + 8/12, "feet"),
  16193. default: true
  16194. },
  16195. {
  16196. name: "Macro",
  16197. height: math.unit(35, "feet")
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16203. {
  16204. anthro: {
  16205. height: math.unit(7, "feet"),
  16206. weight: math.unit(190, "lb"),
  16207. name: "Anthro",
  16208. image: {
  16209. source: "./media/characters/cobalt-dracha/anthro.svg",
  16210. extra: 231 / 225,
  16211. bottom: 0.04
  16212. }
  16213. },
  16214. feral: {
  16215. height: math.unit(9 + 7 / 12, "feet"),
  16216. weight: math.unit(294, "lb"),
  16217. name: "Feral",
  16218. image: {
  16219. source: "./media/characters/cobalt-dracha/feral.svg",
  16220. extra: 692 / 633,
  16221. bottom: 0.05
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Normal",
  16228. height: math.unit(7, "feet"),
  16229. default: true
  16230. },
  16231. ]
  16232. ))
  16233. characterMakers.push(() => makeCharacter(
  16234. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16235. {
  16236. fallen: {
  16237. height: math.unit(11 + 8 / 12, "feet"),
  16238. weight: math.unit(485, "lb"),
  16239. name: "Java (Fallen)",
  16240. rename: true,
  16241. image: {
  16242. source: "./media/characters/java/fallen.svg",
  16243. extra: 226 / 208,
  16244. bottom: 0.005
  16245. }
  16246. },
  16247. godkin: {
  16248. height: math.unit(10 + 6 / 12, "feet"),
  16249. weight: math.unit(328, "lb"),
  16250. name: "Java (Godkin)",
  16251. rename: true,
  16252. image: {
  16253. source: "./media/characters/java/godkin.svg",
  16254. extra: 1104/1068,
  16255. bottom: 36/1140
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(11 + 8 / 12, "feet"),
  16263. default: true
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16269. {
  16270. front: {
  16271. height: math.unit(5 + 9 / 12, "feet"),
  16272. weight: math.unit(170, "lb"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/purna/front.svg",
  16276. extra: 239 / 229,
  16277. bottom: 0.01
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(5 + 9 / 12, "feet"),
  16285. default: true
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(5 + 9 / 12, "feet"),
  16294. weight: math.unit(142, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/kuva/front.svg",
  16298. extra: 281 / 271,
  16299. bottom: 0.006
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(5 + 9 / 12, "feet"),
  16307. default: true
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16313. {
  16314. anthro: {
  16315. height: math.unit(9 + 2 / 12, "feet"),
  16316. weight: math.unit(270, "lb"),
  16317. name: "Anthro",
  16318. image: {
  16319. source: "./media/characters/embra/anthro.svg",
  16320. extra: 200 / 187,
  16321. bottom: 0.02
  16322. }
  16323. },
  16324. feral: {
  16325. height: math.unit(18 + 8 / 12, "feet"),
  16326. weight: math.unit(576, "lb"),
  16327. name: "Feral",
  16328. image: {
  16329. source: "./media/characters/embra/feral.svg",
  16330. extra: 152 / 137,
  16331. bottom: 0.037
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Normal",
  16338. height: math.unit(9 + 2 / 12, "feet"),
  16339. default: true
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16345. {
  16346. anthro: {
  16347. height: math.unit(10 + 9 / 12, "feet"),
  16348. weight: math.unit(224, "lb"),
  16349. name: "Anthro",
  16350. image: {
  16351. source: "./media/characters/grottos/anthro.svg",
  16352. extra: 350 / 332,
  16353. bottom: 0.045
  16354. }
  16355. },
  16356. feral: {
  16357. height: math.unit(20 + 7 / 12, "feet"),
  16358. weight: math.unit(629, "lb"),
  16359. name: "Feral",
  16360. image: {
  16361. source: "./media/characters/grottos/feral.svg",
  16362. extra: 207 / 190,
  16363. bottom: 0.05
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Normal",
  16370. height: math.unit(10 + 9 / 12, "feet"),
  16371. default: true
  16372. },
  16373. ]
  16374. ))
  16375. characterMakers.push(() => makeCharacter(
  16376. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16377. {
  16378. anthro: {
  16379. height: math.unit(9 + 6 / 12, "feet"),
  16380. weight: math.unit(298, "lb"),
  16381. name: "Anthro",
  16382. image: {
  16383. source: "./media/characters/frifna/anthro.svg",
  16384. extra: 282 / 269,
  16385. bottom: 0.015
  16386. }
  16387. },
  16388. feral: {
  16389. height: math.unit(16 + 2 / 12, "feet"),
  16390. weight: math.unit(624, "lb"),
  16391. name: "Feral",
  16392. image: {
  16393. source: "./media/characters/frifna/feral.svg"
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(9 + 6 / 12, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(6 + 2 / 12, "feet"),
  16410. weight: math.unit(168, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/elise/front.svg",
  16414. extra: 276 / 271
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(6 + 2 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(5 + 10 / 12, "feet"),
  16431. weight: math.unit(210, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/glade/front.svg",
  16435. extra: 258 / 247,
  16436. bottom: 0.008
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(5 + 10 / 12, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(5 + 10 / 12, "feet"),
  16453. weight: math.unit(129, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/rina/front.svg",
  16457. extra: 266 / 255,
  16458. bottom: 0.005
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(5 + 10 / 12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(6 + 1 / 12, "feet"),
  16475. weight: math.unit(192, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/veronica/front.svg",
  16479. extra: 319 / 309,
  16480. bottom: 0.005
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(6 + 1 / 12, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(9 + 3 / 12, "feet"),
  16497. weight: math.unit(1100, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/braxton/front.svg",
  16501. extra: 1057 / 984,
  16502. bottom: 0.05
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(9 + 3 / 12, "feet")
  16510. },
  16511. {
  16512. name: "Giant",
  16513. height: math.unit(300, "feet"),
  16514. default: true
  16515. },
  16516. {
  16517. name: "Macro",
  16518. height: math.unit(700, "feet")
  16519. },
  16520. {
  16521. name: "Megamacro",
  16522. height: math.unit(6000, "feet")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(6 + 7 / 12, "feet"),
  16531. weight: math.unit(150, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/blue-feyonics/front.svg",
  16535. extra: 1403 / 1306,
  16536. bottom: 0.047
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(6 + 7 / 12, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(1.8, "meters"),
  16553. weight: math.unit(60, "kg"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/maxwell/front.svg",
  16557. extra: 2060 / 1873
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Micro",
  16564. height: math.unit(1, "mm")
  16565. },
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(1.8, "meter"),
  16569. default: true
  16570. },
  16571. {
  16572. name: "Macro",
  16573. height: math.unit(30, "meters")
  16574. },
  16575. {
  16576. name: "Megamacro",
  16577. height: math.unit(10, "km")
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16583. {
  16584. front: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(150, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/jack/front.svg",
  16590. extra: 1754 / 1640,
  16591. bottom: 0.01
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(80000, "feet"),
  16599. default: true
  16600. },
  16601. {
  16602. name: "Max size",
  16603. height: math.unit(10, "lightyears")
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16609. {
  16610. urban: {
  16611. height: math.unit(5, "feet"),
  16612. weight: math.unit(240, "lb"),
  16613. name: "Urban",
  16614. image: {
  16615. source: "./media/characters/cafat/urban.svg",
  16616. extra: 1223/1126,
  16617. bottom: 205/1428
  16618. }
  16619. },
  16620. summer: {
  16621. height: math.unit(5, "feet"),
  16622. weight: math.unit(240, "lb"),
  16623. name: "Summer",
  16624. image: {
  16625. source: "./media/characters/cafat/summer.svg",
  16626. extra: 1223/1126,
  16627. bottom: 205/1428
  16628. }
  16629. },
  16630. winter: {
  16631. height: math.unit(5, "feet"),
  16632. weight: math.unit(240, "lb"),
  16633. name: "Winter",
  16634. image: {
  16635. source: "./media/characters/cafat/winter.svg",
  16636. extra: 1223/1126,
  16637. bottom: 205/1428
  16638. }
  16639. },
  16640. lingerie: {
  16641. height: math.unit(5, "feet"),
  16642. weight: math.unit(240, "lb"),
  16643. name: "Lingerie",
  16644. image: {
  16645. source: "./media/characters/cafat/lingerie.svg",
  16646. extra: 1223/1126,
  16647. bottom: 205/1428
  16648. }
  16649. },
  16650. upright: {
  16651. height: math.unit(6.3, "feet"),
  16652. weight: math.unit(240, "lb"),
  16653. name: "Upright",
  16654. image: {
  16655. source: "./media/characters/cafat/upright.svg",
  16656. bottom: 0.01
  16657. }
  16658. },
  16659. uprightFull: {
  16660. height: math.unit(6.3, "feet"),
  16661. weight: math.unit(240, "lb"),
  16662. name: "Upright (Full)",
  16663. image: {
  16664. source: "./media/characters/cafat/upright-full.svg",
  16665. bottom: 0.01
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Small",
  16672. height: math.unit(5, "feet"),
  16673. default: true
  16674. },
  16675. {
  16676. name: "Large",
  16677. height: math.unit(13, "feet")
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(6, "feet"),
  16686. weight: math.unit(150, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/verin-raharra/front.svg",
  16690. extra: 5019 / 4835,
  16691. bottom: 0.023
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(7 + 5 / 12, "feet"),
  16699. default: true
  16700. },
  16701. {
  16702. name: "Upsized",
  16703. height: math.unit(20, "feet")
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(7, "feet"),
  16712. weight: math.unit(230, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/nakata/front.svg",
  16716. extra: 1.005,
  16717. bottom: 0.01
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(7, "feet"),
  16725. default: true
  16726. },
  16727. {
  16728. name: "Big",
  16729. height: math.unit(14, "feet")
  16730. },
  16731. {
  16732. name: "Macro",
  16733. height: math.unit(400, "feet")
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16739. {
  16740. front: {
  16741. height: math.unit(4.91, "feet"),
  16742. weight: math.unit(100, "lb"),
  16743. name: "Front",
  16744. image: {
  16745. source: "./media/characters/lily/front.svg",
  16746. extra: 1585 / 1415,
  16747. bottom: 0.02
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(4.91, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16761. {
  16762. laying: {
  16763. height: math.unit(4 + 4 / 12, "feet"),
  16764. weight: math.unit(600, "lb"),
  16765. name: "Laying",
  16766. image: {
  16767. source: "./media/characters/sheila/laying.svg",
  16768. extra: 1333 / 1265,
  16769. bottom: 0.16
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(4 + 4 / 12, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(190, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/sax/front.svg",
  16790. extra: 1187 / 973,
  16791. bottom: 0.042
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Micro",
  16798. height: math.unit(4, "inches"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6, "feet"),
  16808. weight: math.unit(150, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/pandora/front.svg",
  16812. extra: 2720 / 2556,
  16813. bottom: 0.015
  16814. }
  16815. },
  16816. back: {
  16817. height: math.unit(6, "feet"),
  16818. weight: math.unit(150, "lb"),
  16819. name: "Back",
  16820. image: {
  16821. source: "./media/characters/pandora/back.svg",
  16822. extra: 2720 / 2556,
  16823. bottom: 0.01
  16824. }
  16825. },
  16826. beans: {
  16827. height: math.unit(6 / 8, "feet"),
  16828. name: "Beans",
  16829. image: {
  16830. source: "./media/characters/pandora/beans.svg"
  16831. }
  16832. },
  16833. collar: {
  16834. height: math.unit(0.31, "feet"),
  16835. name: "Collar",
  16836. image: {
  16837. source: "./media/characters/pandora/collar.svg"
  16838. }
  16839. },
  16840. skirt: {
  16841. height: math.unit(6, "feet"),
  16842. weight: math.unit(150, "lb"),
  16843. name: "Skirt",
  16844. image: {
  16845. source: "./media/characters/pandora/skirt.svg",
  16846. extra: 1622 / 1525,
  16847. bottom: 0.015
  16848. }
  16849. },
  16850. hoodie: {
  16851. height: math.unit(6, "feet"),
  16852. weight: math.unit(150, "lb"),
  16853. name: "Hoodie",
  16854. image: {
  16855. source: "./media/characters/pandora/hoodie.svg",
  16856. extra: 1622 / 1525,
  16857. bottom: 0.015
  16858. }
  16859. },
  16860. casual: {
  16861. height: math.unit(6, "feet"),
  16862. weight: math.unit(150, "lb"),
  16863. name: "Casual",
  16864. image: {
  16865. source: "./media/characters/pandora/casual.svg",
  16866. extra: 1622 / 1525,
  16867. bottom: 0.015
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(6, "feet")
  16875. },
  16876. {
  16877. name: "Big Steppy",
  16878. height: math.unit(1, "km"),
  16879. default: true
  16880. },
  16881. {
  16882. name: "Galactic Steppy",
  16883. height: math.unit(2, "gigameters")
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16889. {
  16890. side: {
  16891. height: math.unit(10, "feet"),
  16892. weight: math.unit(800, "kg"),
  16893. name: "Side",
  16894. image: {
  16895. source: "./media/characters/venio-darcony/side.svg",
  16896. extra: 1373 / 1003,
  16897. bottom: 0.037
  16898. }
  16899. },
  16900. front: {
  16901. height: math.unit(19, "feet"),
  16902. weight: math.unit(800, "kg"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/venio-darcony/front.svg"
  16906. }
  16907. },
  16908. back: {
  16909. height: math.unit(19, "feet"),
  16910. weight: math.unit(800, "kg"),
  16911. name: "Back",
  16912. image: {
  16913. source: "./media/characters/venio-darcony/back.svg"
  16914. }
  16915. },
  16916. sideNsfw: {
  16917. height: math.unit(10, "feet"),
  16918. weight: math.unit(800, "kg"),
  16919. name: "Side (NSFW)",
  16920. image: {
  16921. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16922. extra: 1373 / 1003,
  16923. bottom: 0.037
  16924. }
  16925. },
  16926. frontNsfw: {
  16927. height: math.unit(19, "feet"),
  16928. weight: math.unit(800, "kg"),
  16929. name: "Front (NSFW)",
  16930. image: {
  16931. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16932. }
  16933. },
  16934. backNsfw: {
  16935. height: math.unit(19, "feet"),
  16936. weight: math.unit(800, "kg"),
  16937. name: "Back (NSFW)",
  16938. image: {
  16939. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16940. }
  16941. },
  16942. sideArmored: {
  16943. height: math.unit(10, "feet"),
  16944. weight: math.unit(800, "kg"),
  16945. name: "Side (Armored)",
  16946. image: {
  16947. source: "./media/characters/venio-darcony/side-armored.svg",
  16948. extra: 1373 / 1003,
  16949. bottom: 0.037
  16950. }
  16951. },
  16952. frontArmored: {
  16953. height: math.unit(19, "feet"),
  16954. weight: math.unit(900, "kg"),
  16955. name: "Front (Armored)",
  16956. image: {
  16957. source: "./media/characters/venio-darcony/front-armored.svg"
  16958. }
  16959. },
  16960. backArmored: {
  16961. height: math.unit(19, "feet"),
  16962. weight: math.unit(900, "kg"),
  16963. name: "Back (Armored)",
  16964. image: {
  16965. source: "./media/characters/venio-darcony/back-armored.svg"
  16966. }
  16967. },
  16968. sword: {
  16969. height: math.unit(10, "feet"),
  16970. weight: math.unit(50, "lb"),
  16971. name: "Sword",
  16972. image: {
  16973. source: "./media/characters/venio-darcony/sword.svg"
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(10, "feet")
  16981. },
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(130, "feet"),
  16985. default: true
  16986. },
  16987. {
  16988. name: "Macro+",
  16989. height: math.unit(240, "feet")
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(6, "feet"),
  16998. weight: math.unit(150, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/veski/front.svg",
  17002. extra: 1299 / 1225,
  17003. bottom: 0.04
  17004. }
  17005. },
  17006. back: {
  17007. height: math.unit(6, "feet"),
  17008. weight: math.unit(150, "lb"),
  17009. name: "Back",
  17010. image: {
  17011. source: "./media/characters/veski/back.svg",
  17012. extra: 1299 / 1225,
  17013. bottom: 0.008
  17014. }
  17015. },
  17016. maw: {
  17017. height: math.unit(1.5 * 1.21, "feet"),
  17018. name: "Maw",
  17019. image: {
  17020. source: "./media/characters/veski/maw.svg"
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Macro",
  17027. height: math.unit(2, "km"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(5 + 7 / 12, "feet"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/isabelle/front.svg",
  17040. extra: 2130 / 1976,
  17041. bottom: 0.05
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Supermicro",
  17048. height: math.unit(10, "micrometers")
  17049. },
  17050. {
  17051. name: "Micro",
  17052. height: math.unit(1, "inch")
  17053. },
  17054. {
  17055. name: "Tiny",
  17056. height: math.unit(5, "inches")
  17057. },
  17058. {
  17059. name: "Standard",
  17060. height: math.unit(5 + 7 / 12, "inches")
  17061. },
  17062. {
  17063. name: "Macro",
  17064. height: math.unit(80, "meters"),
  17065. default: true
  17066. },
  17067. {
  17068. name: "Megamacro",
  17069. height: math.unit(250, "meters")
  17070. },
  17071. {
  17072. name: "Gigamacro",
  17073. height: math.unit(5, "km")
  17074. },
  17075. {
  17076. name: "Cosmic",
  17077. height: math.unit(2.5e6, "miles")
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(6, "feet"),
  17086. weight: math.unit(150, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/hanzo/front.svg",
  17090. extra: 374 / 344,
  17091. bottom: 0.02
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(8, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(7, "feet"),
  17108. weight: math.unit(130, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/anna/front.svg",
  17112. extra: 169 / 145,
  17113. bottom: 0.06
  17114. }
  17115. },
  17116. full: {
  17117. height: math.unit(4.96, "feet"),
  17118. weight: math.unit(220, "lb"),
  17119. name: "Full",
  17120. image: {
  17121. source: "./media/characters/anna/full.svg",
  17122. extra: 138 / 114,
  17123. bottom: 0.15
  17124. }
  17125. },
  17126. tongue: {
  17127. height: math.unit(2.53, "feet"),
  17128. name: "Tongue",
  17129. image: {
  17130. source: "./media/characters/anna/tongue.svg"
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(7, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17144. {
  17145. front: {
  17146. height: math.unit(7, "feet"),
  17147. weight: math.unit(150, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/ian-corvid/front.svg",
  17151. extra: 150 / 142,
  17152. bottom: 0.02
  17153. }
  17154. },
  17155. back: {
  17156. height: math.unit(7, "feet"),
  17157. weight: math.unit(150, "lb"),
  17158. name: "Back",
  17159. image: {
  17160. source: "./media/characters/ian-corvid/back.svg",
  17161. extra: 150 / 143,
  17162. bottom: 0.01
  17163. }
  17164. },
  17165. stomping: {
  17166. height: math.unit(7, "feet"),
  17167. weight: math.unit(150, "lb"),
  17168. name: "Stomping",
  17169. image: {
  17170. source: "./media/characters/ian-corvid/stomping.svg",
  17171. extra: 76 / 72
  17172. }
  17173. },
  17174. sitting: {
  17175. height: math.unit(7 / 1.8, "feet"),
  17176. weight: math.unit(150, "lb"),
  17177. name: "Sitting",
  17178. image: {
  17179. source: "./media/characters/ian-corvid/sitting.svg",
  17180. extra: 1400 / 1269,
  17181. bottom: 0.15
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Tiny Microw",
  17188. height: math.unit(1, "inch")
  17189. },
  17190. {
  17191. name: "Microw",
  17192. height: math.unit(6, "inches")
  17193. },
  17194. {
  17195. name: "Crow",
  17196. height: math.unit(7 + 1 / 12, "feet"),
  17197. default: true
  17198. },
  17199. {
  17200. name: "Macrow",
  17201. height: math.unit(176, "feet")
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(5 + 7 / 12, "feet"),
  17210. weight: math.unit(147, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/natalie-kellon/front.svg",
  17214. extra: 1214 / 1141,
  17215. bottom: 0.02
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Micro",
  17222. height: math.unit(1 / 16, "inch")
  17223. },
  17224. {
  17225. name: "Tiny",
  17226. height: math.unit(4, "inches")
  17227. },
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(5 + 7 / 12, "feet"),
  17231. default: true
  17232. },
  17233. {
  17234. name: "Amazon",
  17235. height: math.unit(12, "feet")
  17236. },
  17237. {
  17238. name: "Giantess",
  17239. height: math.unit(160, "meters")
  17240. },
  17241. {
  17242. name: "Titaness",
  17243. height: math.unit(800, "meters")
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17249. {
  17250. front: {
  17251. height: math.unit(6, "feet"),
  17252. weight: math.unit(150, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/alluria/front.svg",
  17256. extra: 806 / 738,
  17257. bottom: 0.01
  17258. }
  17259. },
  17260. side: {
  17261. height: math.unit(6, "feet"),
  17262. weight: math.unit(150, "lb"),
  17263. name: "Side",
  17264. image: {
  17265. source: "./media/characters/alluria/side.svg",
  17266. extra: 800 / 750,
  17267. }
  17268. },
  17269. back: {
  17270. height: math.unit(6, "feet"),
  17271. weight: math.unit(150, "lb"),
  17272. name: "Back",
  17273. image: {
  17274. source: "./media/characters/alluria/back.svg",
  17275. extra: 806 / 738,
  17276. }
  17277. },
  17278. frontMaid: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Front (Maid)",
  17282. image: {
  17283. source: "./media/characters/alluria/front-maid.svg",
  17284. extra: 806 / 738,
  17285. bottom: 0.01
  17286. }
  17287. },
  17288. sideMaid: {
  17289. height: math.unit(6, "feet"),
  17290. weight: math.unit(150, "lb"),
  17291. name: "Side (Maid)",
  17292. image: {
  17293. source: "./media/characters/alluria/side-maid.svg",
  17294. extra: 800 / 750,
  17295. bottom: 0.005
  17296. }
  17297. },
  17298. backMaid: {
  17299. height: math.unit(6, "feet"),
  17300. weight: math.unit(150, "lb"),
  17301. name: "Back (Maid)",
  17302. image: {
  17303. source: "./media/characters/alluria/back-maid.svg",
  17304. extra: 806 / 738,
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Micro",
  17311. height: math.unit(6, "inches"),
  17312. default: true
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17318. {
  17319. front: {
  17320. height: math.unit(6, "feet"),
  17321. weight: math.unit(150, "lb"),
  17322. name: "Front",
  17323. image: {
  17324. source: "./media/characters/kyle/front.svg",
  17325. extra: 1069 / 962,
  17326. bottom: 77.228 / 1727.45
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Macro",
  17333. height: math.unit(150, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(6, "feet"),
  17343. weight: math.unit(300, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/duncan/front.svg",
  17347. extra: 1650 / 1482,
  17348. bottom: 0.05
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Macro",
  17355. height: math.unit(100, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(5 + 4 / 12, "feet"),
  17365. weight: math.unit(220, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/memory/front.svg",
  17369. extra: 3641 / 3545,
  17370. bottom: 0.03
  17371. }
  17372. },
  17373. back: {
  17374. height: math.unit(5 + 4 / 12, "feet"),
  17375. weight: math.unit(220, "lb"),
  17376. name: "Back",
  17377. image: {
  17378. source: "./media/characters/memory/back.svg",
  17379. extra: 3641 / 3545,
  17380. bottom: 0.025
  17381. }
  17382. },
  17383. frontSkirt: {
  17384. height: math.unit(5 + 4 / 12, "feet"),
  17385. weight: math.unit(220, "lb"),
  17386. name: "Front (Skirt)",
  17387. image: {
  17388. source: "./media/characters/memory/front-skirt.svg",
  17389. extra: 3641 / 3545,
  17390. bottom: 0.03
  17391. }
  17392. },
  17393. frontDress: {
  17394. height: math.unit(5 + 4 / 12, "feet"),
  17395. weight: math.unit(220, "lb"),
  17396. name: "Front (Dress)",
  17397. image: {
  17398. source: "./media/characters/memory/front-dress.svg",
  17399. extra: 3641 / 3545,
  17400. bottom: 0.03
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Micro",
  17407. height: math.unit(6, "inches"),
  17408. default: true
  17409. },
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(5 + 4 / 12, "feet")
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(4 + 11 / 12, "feet"),
  17421. weight: math.unit(100, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/luno/front.svg",
  17425. extra: 1535 / 1487,
  17426. bottom: 0.03
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Micro",
  17433. height: math.unit(3, "inches")
  17434. },
  17435. {
  17436. name: "Normal",
  17437. height: math.unit(4 + 11 / 12, "feet"),
  17438. default: true
  17439. },
  17440. {
  17441. name: "Macro",
  17442. height: math.unit(300, "feet")
  17443. },
  17444. {
  17445. name: "Megamacro",
  17446. height: math.unit(700, "miles")
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(6 + 2 / 12, "feet"),
  17455. weight: math.unit(170, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/jamesy/front.svg",
  17459. extra: 440 / 382,
  17460. bottom: 0.005
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Micro",
  17467. height: math.unit(3, "inches")
  17468. },
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(6 + 2 / 12, "feet"),
  17472. default: true
  17473. },
  17474. {
  17475. name: "Macro",
  17476. height: math.unit(300, "feet")
  17477. },
  17478. {
  17479. name: "Megamacro",
  17480. height: math.unit(700, "miles")
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(6, "feet"),
  17489. weight: math.unit(160, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/mark/front.svg",
  17493. extra: 3300 / 3100,
  17494. bottom: 136.42 / 3440.47
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Macro",
  17501. height: math.unit(120, "meters")
  17502. },
  17503. {
  17504. name: "Bigger Macro",
  17505. height: math.unit(350, "meters")
  17506. },
  17507. {
  17508. name: "Megamacro",
  17509. height: math.unit(8, "km"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Continental",
  17514. height: math.unit(4550, "km")
  17515. },
  17516. {
  17517. name: "Planetary",
  17518. height: math.unit(65000, "km")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(6, "feet"),
  17527. weight: math.unit(400, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/mac/front.svg",
  17531. extra: 1048 / 987.7,
  17532. bottom: 60 / 1107.6,
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Macro",
  17539. height: math.unit(500, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(5 + 2 / 12, "feet"),
  17549. weight: math.unit(190, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/bari/front.svg",
  17553. extra: 3156 / 2880,
  17554. bottom: 0.03
  17555. }
  17556. },
  17557. back: {
  17558. height: math.unit(5 + 2 / 12, "feet"),
  17559. weight: math.unit(190, "lb"),
  17560. name: "Back",
  17561. image: {
  17562. source: "./media/characters/bari/back.svg",
  17563. extra: 3260 / 2834,
  17564. bottom: 0.025
  17565. }
  17566. },
  17567. frontPlush: {
  17568. height: math.unit(5 + 2 / 12, "feet"),
  17569. weight: math.unit(190, "lb"),
  17570. name: "Front (Plush)",
  17571. image: {
  17572. source: "./media/characters/bari/front-plush.svg",
  17573. extra: 1112 / 1061,
  17574. bottom: 0.002
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Micro",
  17581. height: math.unit(3, "inches")
  17582. },
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(5 + 2 / 12, "feet"),
  17586. default: true
  17587. },
  17588. {
  17589. name: "Macro",
  17590. height: math.unit(20, "feet")
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(6 + 1 / 12, "feet"),
  17599. weight: math.unit(275, "lb"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/hunter-misha-raven/front.svg"
  17603. }
  17604. },
  17605. },
  17606. [
  17607. {
  17608. name: "Mortal",
  17609. height: math.unit(6 + 1 / 12, "feet")
  17610. },
  17611. {
  17612. name: "Divine",
  17613. height: math.unit(1.12134e34, "parsecs"),
  17614. default: true
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17620. {
  17621. front: {
  17622. height: math.unit(6 + 3 / 12, "feet"),
  17623. weight: math.unit(220, "lb"),
  17624. name: "Front",
  17625. image: {
  17626. source: "./media/characters/max-calore/front.svg",
  17627. extra: 1700 / 1648,
  17628. bottom: 0.01
  17629. }
  17630. },
  17631. back: {
  17632. height: math.unit(6 + 3 / 12, "feet"),
  17633. weight: math.unit(220, "lb"),
  17634. name: "Back",
  17635. image: {
  17636. source: "./media/characters/max-calore/back.svg",
  17637. extra: 1700 / 1648,
  17638. bottom: 0.01
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(6 + 3 / 12, "feet"),
  17646. default: true
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17652. {
  17653. side: {
  17654. height: math.unit(2 + 8 / 12, "feet"),
  17655. weight: math.unit(99, "lb"),
  17656. name: "Side",
  17657. image: {
  17658. source: "./media/characters/aspen/side.svg",
  17659. extra: 152 / 138,
  17660. bottom: 0.032
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(2 + 8 / 12, "feet"),
  17668. default: true
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17674. {
  17675. side: {
  17676. height: math.unit(3 + 2 / 12, "feet"),
  17677. weight: math.unit(224, "lb"),
  17678. name: "Side",
  17679. image: {
  17680. source: "./media/characters/sheila-feral-wolf/side.svg",
  17681. extra: 179 / 166,
  17682. bottom: 0.03
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(3 + 2 / 12, "feet"),
  17690. default: true
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17696. {
  17697. side: {
  17698. height: math.unit(1 + 9 / 12, "feet"),
  17699. weight: math.unit(38, "lb"),
  17700. name: "Side",
  17701. image: {
  17702. source: "./media/characters/michelle/side.svg",
  17703. extra: 147 / 136.7,
  17704. bottom: 0.03
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(1 + 9 / 12, "feet"),
  17712. default: true
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(1.54, "feet"),
  17721. weight: math.unit(50, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/nino/front.svg"
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(1.54, "feet"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(1.49, "feet"),
  17741. weight: math.unit(45, "lb"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/viola/front.svg"
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(1.49, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(6 + 5 / 12, "feet"),
  17761. weight: math.unit(580, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/atlas/front.svg",
  17765. extra: 298.5 / 290,
  17766. bottom: 0.015
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(6 + 5 / 12, "feet"),
  17774. default: true
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17780. {
  17781. side: {
  17782. height: math.unit(15.6, "inches"),
  17783. weight: math.unit(10, "lb"),
  17784. name: "Side",
  17785. image: {
  17786. source: "./media/characters/davy/side.svg",
  17787. extra: 200 / 170,
  17788. bottom: 0.01
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(15.6, "inches"),
  17796. default: true
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17802. {
  17803. side: {
  17804. height: math.unit(4 + 8 / 12, "feet"),
  17805. weight: math.unit(166, "lb"),
  17806. name: "Side",
  17807. image: {
  17808. source: "./media/characters/fiona/side.svg",
  17809. extra: 232 / 220,
  17810. bottom: 0.03
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(4 + 8 / 12, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17824. {
  17825. front: {
  17826. height: math.unit(26, "inches"),
  17827. weight: math.unit(35, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/lyla/front.svg",
  17831. bottom: 0.1
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(3, "feet"),
  17839. default: true
  17840. },
  17841. ]
  17842. ))
  17843. characterMakers.push(() => makeCharacter(
  17844. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17845. {
  17846. side: {
  17847. height: math.unit(1.8, "feet"),
  17848. weight: math.unit(44, "lb"),
  17849. name: "Side",
  17850. image: {
  17851. source: "./media/characters/perseus/side.svg",
  17852. bottom: 0.21
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(1.8, "feet"),
  17860. default: true
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17866. {
  17867. side: {
  17868. height: math.unit(4 + 2 / 12, "feet"),
  17869. weight: math.unit(20, "lb"),
  17870. name: "Side",
  17871. image: {
  17872. source: "./media/characters/remus/side.svg"
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(4 + 2 / 12, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(4 + 11 / 12, "feet"),
  17889. weight: math.unit(114, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/raf/front.svg",
  17893. extra: 1504/1339,
  17894. bottom: 26/1530
  17895. }
  17896. },
  17897. side: {
  17898. height: math.unit(4 + 11 / 12, "feet"),
  17899. weight: math.unit(114, "lb"),
  17900. name: "Side",
  17901. image: {
  17902. source: "./media/characters/raf/side.svg",
  17903. extra: 1466/1316,
  17904. bottom: 29/1495
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Micro",
  17911. height: math.unit(2, "inches")
  17912. },
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(4 + 11 / 12, "feet"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Macro",
  17920. height: math.unit(70, "feet")
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(1.5, "meters"),
  17929. weight: math.unit(68, "kg"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/liam-einarr/front.svg",
  17933. extra: 2822 / 2666
  17934. }
  17935. },
  17936. back: {
  17937. height: math.unit(1.5, "meters"),
  17938. weight: math.unit(68, "kg"),
  17939. name: "Back",
  17940. image: {
  17941. source: "./media/characters/liam-einarr/back.svg",
  17942. extra: 2822 / 2666,
  17943. bottom: 0.015
  17944. }
  17945. },
  17946. },
  17947. [
  17948. {
  17949. name: "Normal",
  17950. height: math.unit(1.5, "meters"),
  17951. default: true
  17952. },
  17953. {
  17954. name: "Macro",
  17955. height: math.unit(150, "meters")
  17956. },
  17957. {
  17958. name: "Megamacro",
  17959. height: math.unit(35, "km")
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17965. {
  17966. front: {
  17967. height: math.unit(6, "feet"),
  17968. weight: math.unit(75, "kg"),
  17969. name: "Front",
  17970. image: {
  17971. source: "./media/characters/linda/front.svg",
  17972. extra: 930 / 874,
  17973. bottom: 0.004
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(6, "feet"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17987. {
  17988. front: {
  17989. height: math.unit(6 + 8 / 12, "feet"),
  17990. weight: math.unit(220, "lb"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/caylex/front.svg",
  17994. extra: 821 / 772,
  17995. bottom: 0.07
  17996. }
  17997. },
  17998. back: {
  17999. height: math.unit(6 + 8 / 12, "feet"),
  18000. weight: math.unit(220, "lb"),
  18001. name: "Back",
  18002. image: {
  18003. source: "./media/characters/caylex/back.svg",
  18004. extra: 821 / 772,
  18005. bottom: 0.022
  18006. }
  18007. },
  18008. hand: {
  18009. height: math.unit(1.25, "feet"),
  18010. name: "Hand",
  18011. image: {
  18012. source: "./media/characters/caylex/hand.svg"
  18013. }
  18014. },
  18015. foot: {
  18016. height: math.unit(1.6, "feet"),
  18017. name: "Foot",
  18018. image: {
  18019. source: "./media/characters/caylex/foot.svg"
  18020. }
  18021. },
  18022. armored: {
  18023. height: math.unit(6 + 8 / 12, "feet"),
  18024. weight: math.unit(250, "lb"),
  18025. name: "Armored",
  18026. image: {
  18027. source: "./media/characters/caylex/armored.svg",
  18028. extra: 1420 / 1310,
  18029. bottom: 0.045
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Normal",
  18036. height: math.unit(6 + 8 / 12, "feet"),
  18037. default: true
  18038. },
  18039. {
  18040. name: "Normal+",
  18041. height: math.unit(12, "feet")
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(7 + 6 / 12, "feet"),
  18050. weight: math.unit(288, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/alana/front.svg",
  18054. extra: 679 / 653,
  18055. bottom: 22.5 / 701
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(7 + 6 / 12, "feet")
  18063. },
  18064. {
  18065. name: "Large",
  18066. height: math.unit(50, "feet")
  18067. },
  18068. {
  18069. name: "Macro",
  18070. height: math.unit(100, "feet"),
  18071. default: true
  18072. },
  18073. {
  18074. name: "Macro+",
  18075. height: math.unit(200, "feet")
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(6 + 1 / 12, "feet"),
  18084. weight: math.unit(210, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/hasani/front.svg",
  18088. extra: 244 / 232,
  18089. bottom: 0.01
  18090. }
  18091. },
  18092. back: {
  18093. height: math.unit(6 + 1 / 12, "feet"),
  18094. weight: math.unit(210, "lb"),
  18095. name: "Back",
  18096. image: {
  18097. source: "./media/characters/hasani/back.svg",
  18098. extra: 244 / 232,
  18099. bottom: 0.01
  18100. }
  18101. },
  18102. },
  18103. [
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(6 + 1 / 12, "feet")
  18107. },
  18108. {
  18109. name: "Macro",
  18110. height: math.unit(175, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(1.82, "meters"),
  18120. weight: math.unit(140, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/nita/front.svg",
  18124. extra: 2473 / 2363,
  18125. bottom: 0.01
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(1.82, "m")
  18133. },
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(300, "m")
  18137. },
  18138. {
  18139. name: "Mistake Canon",
  18140. height: math.unit(0.5, "miles"),
  18141. default: true
  18142. },
  18143. {
  18144. name: "Big Mistake",
  18145. height: math.unit(13, "miles")
  18146. },
  18147. {
  18148. name: "Playing God",
  18149. height: math.unit(2450, "miles")
  18150. },
  18151. ]
  18152. ))
  18153. characterMakers.push(() => makeCharacter(
  18154. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18155. {
  18156. front: {
  18157. height: math.unit(4, "feet"),
  18158. weight: math.unit(120, "lb"),
  18159. name: "Front",
  18160. image: {
  18161. source: "./media/characters/shiriko/front.svg",
  18162. extra: 970/934,
  18163. bottom: 5/975
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(4, "feet"),
  18171. default: true
  18172. },
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18177. {
  18178. front: {
  18179. height: math.unit(6, "feet"),
  18180. name: "front",
  18181. image: {
  18182. source: "./media/characters/deja/front.svg",
  18183. extra: 926 / 840,
  18184. bottom: 0.07
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Planck Length",
  18191. height: math.unit(1.6e-35, "meters")
  18192. },
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(30.48, "meters"),
  18196. default: true
  18197. },
  18198. {
  18199. name: "Universal",
  18200. height: math.unit(8.8e26, "meters")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18206. {
  18207. side: {
  18208. height: math.unit(8, "feet"),
  18209. weight: math.unit(6300, "lb"),
  18210. name: "Side",
  18211. image: {
  18212. source: "./media/characters/anima/side.svg",
  18213. bottom: 0.035
  18214. }
  18215. },
  18216. },
  18217. [
  18218. {
  18219. name: "Normal",
  18220. height: math.unit(8, "feet"),
  18221. default: true
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18227. {
  18228. front: {
  18229. height: math.unit(8, "feet"),
  18230. weight: math.unit(350, "lb"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/bianca/front.svg",
  18234. extra: 234 / 225,
  18235. bottom: 0.03
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(8, "feet"),
  18243. default: true
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18249. {
  18250. front: {
  18251. height: math.unit(6, "feet"),
  18252. weight: math.unit(150, "lb"),
  18253. name: "Front",
  18254. image: {
  18255. source: "./media/characters/adinia/front.svg",
  18256. extra: 1845 / 1672,
  18257. bottom: 0.02
  18258. }
  18259. },
  18260. back: {
  18261. height: math.unit(6, "feet"),
  18262. weight: math.unit(150, "lb"),
  18263. name: "Back",
  18264. image: {
  18265. source: "./media/characters/adinia/back.svg",
  18266. extra: 1845 / 1672,
  18267. bottom: 0.002
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(11 + 5 / 12, "feet"),
  18275. default: true
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18281. {
  18282. front: {
  18283. height: math.unit(3, "meters"),
  18284. weight: math.unit(200, "kg"),
  18285. name: "Front",
  18286. image: {
  18287. source: "./media/characters/lykasa/front.svg",
  18288. extra: 1076 / 976,
  18289. bottom: 0.06
  18290. }
  18291. },
  18292. },
  18293. [
  18294. {
  18295. name: "Normal",
  18296. height: math.unit(3, "meters")
  18297. },
  18298. {
  18299. name: "Kaiju",
  18300. height: math.unit(120, "meters"),
  18301. default: true
  18302. },
  18303. {
  18304. name: "Mega Kaiju",
  18305. height: math.unit(240, "km")
  18306. },
  18307. {
  18308. name: "Giga Kaiju",
  18309. height: math.unit(400, "megameters")
  18310. },
  18311. {
  18312. name: "Tera Kaiju",
  18313. height: math.unit(800, "gigameters")
  18314. },
  18315. {
  18316. name: "Kaiju Dragon Goddess",
  18317. height: math.unit(26, "zettaparsecs")
  18318. },
  18319. ]
  18320. ))
  18321. characterMakers.push(() => makeCharacter(
  18322. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18323. {
  18324. side: {
  18325. height: math.unit(283 / 124 * 6, "feet"),
  18326. weight: math.unit(35000, "lb"),
  18327. name: "Side",
  18328. image: {
  18329. source: "./media/characters/malfaren/side.svg",
  18330. extra: 1310/529,
  18331. bottom: 24/1334
  18332. }
  18333. },
  18334. front: {
  18335. height: math.unit(22.36, "feet"),
  18336. weight: math.unit(35000, "lb"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/malfaren/front.svg",
  18340. extra: 1237/1115,
  18341. bottom: 32/1269
  18342. }
  18343. },
  18344. maw: {
  18345. height: math.unit(6.9, "feet"),
  18346. name: "Maw",
  18347. image: {
  18348. source: "./media/characters/malfaren/maw.svg"
  18349. }
  18350. },
  18351. dick: {
  18352. height: math.unit(6.19, "feet"),
  18353. name: "Dick",
  18354. image: {
  18355. source: "./media/characters/malfaren/dick.svg"
  18356. }
  18357. },
  18358. eye: {
  18359. height: math.unit(0.69, "feet"),
  18360. name: "Eye",
  18361. image: {
  18362. source: "./media/characters/malfaren/eye.svg"
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Big",
  18369. height: math.unit(283 / 162 * 6, "feet"),
  18370. },
  18371. {
  18372. name: "Bigger",
  18373. height: math.unit(283 / 124 * 6, "feet")
  18374. },
  18375. {
  18376. name: "Massive",
  18377. height: math.unit(283 / 92 * 6, "feet"),
  18378. default: true
  18379. },
  18380. {
  18381. name: "👀💦",
  18382. height: math.unit(283 / 73 * 6, "feet"),
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18388. {
  18389. front: {
  18390. height: math.unit(1.7, "m"),
  18391. weight: math.unit(70, "kg"),
  18392. name: "Front",
  18393. image: {
  18394. source: "./media/characters/kernel/front.svg",
  18395. extra: 222 / 210,
  18396. bottom: 0.007
  18397. }
  18398. },
  18399. },
  18400. [
  18401. {
  18402. name: "Nano",
  18403. height: math.unit(17, "micrometers")
  18404. },
  18405. {
  18406. name: "Micro",
  18407. height: math.unit(1.7, "mm")
  18408. },
  18409. {
  18410. name: "Small",
  18411. height: math.unit(1.7, "cm")
  18412. },
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(1.7, "m"),
  18416. default: true
  18417. },
  18418. ]
  18419. ))
  18420. characterMakers.push(() => makeCharacter(
  18421. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18422. {
  18423. front: {
  18424. height: math.unit(1.75, "meters"),
  18425. weight: math.unit(65, "kg"),
  18426. name: "Front",
  18427. image: {
  18428. source: "./media/characters/jayne-folest/front.svg",
  18429. extra: 2115 / 2007,
  18430. bottom: 0.02
  18431. }
  18432. },
  18433. back: {
  18434. height: math.unit(1.75, "meters"),
  18435. weight: math.unit(65, "kg"),
  18436. name: "Back",
  18437. image: {
  18438. source: "./media/characters/jayne-folest/back.svg",
  18439. extra: 2115 / 2007,
  18440. bottom: 0.005
  18441. }
  18442. },
  18443. frontClothed: {
  18444. height: math.unit(1.75, "meters"),
  18445. weight: math.unit(65, "kg"),
  18446. name: "Front (Clothed)",
  18447. image: {
  18448. source: "./media/characters/jayne-folest/front-clothed.svg",
  18449. extra: 2115 / 2007,
  18450. bottom: 0.035
  18451. }
  18452. },
  18453. hand: {
  18454. height: math.unit(1 / 1.260, "feet"),
  18455. name: "Hand",
  18456. image: {
  18457. source: "./media/characters/jayne-folest/hand.svg"
  18458. }
  18459. },
  18460. foot: {
  18461. height: math.unit(1 / 0.918, "feet"),
  18462. name: "Foot",
  18463. image: {
  18464. source: "./media/characters/jayne-folest/foot.svg"
  18465. }
  18466. },
  18467. },
  18468. [
  18469. {
  18470. name: "Micro",
  18471. height: math.unit(4, "cm")
  18472. },
  18473. {
  18474. name: "Normal",
  18475. height: math.unit(1.75, "meters")
  18476. },
  18477. {
  18478. name: "Macro",
  18479. height: math.unit(47.5, "meters"),
  18480. default: true
  18481. },
  18482. ]
  18483. ))
  18484. characterMakers.push(() => makeCharacter(
  18485. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18486. {
  18487. front: {
  18488. height: math.unit(180, "cm"),
  18489. weight: math.unit(70, "kg"),
  18490. name: "Front",
  18491. image: {
  18492. source: "./media/characters/algier/front.svg",
  18493. extra: 596 / 572,
  18494. bottom: 0.04
  18495. }
  18496. },
  18497. back: {
  18498. height: math.unit(180, "cm"),
  18499. weight: math.unit(70, "kg"),
  18500. name: "Back",
  18501. image: {
  18502. source: "./media/characters/algier/back.svg",
  18503. extra: 596 / 572,
  18504. bottom: 0.025
  18505. }
  18506. },
  18507. frontdressed: {
  18508. height: math.unit(180, "cm"),
  18509. weight: math.unit(150, "kg"),
  18510. name: "Front-dressed",
  18511. image: {
  18512. source: "./media/characters/algier/front-dressed.svg",
  18513. extra: 596 / 572,
  18514. bottom: 0.038
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Micro",
  18521. height: math.unit(5, "cm")
  18522. },
  18523. {
  18524. name: "Normal",
  18525. height: math.unit(180, "cm"),
  18526. default: true
  18527. },
  18528. {
  18529. name: "Macro",
  18530. height: math.unit(64, "m")
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18536. {
  18537. upright: {
  18538. height: math.unit(7, "feet"),
  18539. weight: math.unit(300, "lb"),
  18540. name: "Upright",
  18541. image: {
  18542. source: "./media/characters/pretzel/upright.svg",
  18543. extra: 534 / 522,
  18544. bottom: 0.065
  18545. }
  18546. },
  18547. sprawling: {
  18548. height: math.unit(3.75, "feet"),
  18549. weight: math.unit(300, "lb"),
  18550. name: "Sprawling",
  18551. image: {
  18552. source: "./media/characters/pretzel/sprawling.svg",
  18553. extra: 314 / 281,
  18554. bottom: 0.1
  18555. }
  18556. },
  18557. tongue: {
  18558. height: math.unit(2, "feet"),
  18559. name: "Tongue",
  18560. image: {
  18561. source: "./media/characters/pretzel/tongue.svg"
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(7, "feet"),
  18569. default: true
  18570. },
  18571. {
  18572. name: "Oversized",
  18573. height: math.unit(15, "feet")
  18574. },
  18575. {
  18576. name: "Huge",
  18577. height: math.unit(30, "feet")
  18578. },
  18579. {
  18580. name: "Macro",
  18581. height: math.unit(250, "feet")
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18587. {
  18588. sideFront: {
  18589. height: math.unit(5 + 2 / 12, "feet"),
  18590. weight: math.unit(120, "lb"),
  18591. name: "Front Side",
  18592. image: {
  18593. source: "./media/characters/roxi/side-front.svg",
  18594. extra: 2924 / 2717,
  18595. bottom: 0.08
  18596. }
  18597. },
  18598. sideBack: {
  18599. height: math.unit(5 + 2 / 12, "feet"),
  18600. weight: math.unit(120, "lb"),
  18601. name: "Back Side",
  18602. image: {
  18603. source: "./media/characters/roxi/side-back.svg",
  18604. extra: 2904 / 2693,
  18605. bottom: 0.06
  18606. }
  18607. },
  18608. front: {
  18609. height: math.unit(5 + 2 / 12, "feet"),
  18610. weight: math.unit(120, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/roxi/front.svg",
  18614. extra: 2028 / 1907,
  18615. bottom: 0.01
  18616. }
  18617. },
  18618. frontAlt: {
  18619. height: math.unit(5 + 2 / 12, "feet"),
  18620. weight: math.unit(120, "lb"),
  18621. name: "Front (Alt)",
  18622. image: {
  18623. source: "./media/characters/roxi/front-alt.svg",
  18624. extra: 1828 / 1798,
  18625. bottom: 0.01
  18626. }
  18627. },
  18628. sitting: {
  18629. height: math.unit(2.8, "feet"),
  18630. weight: math.unit(120, "lb"),
  18631. name: "Sitting",
  18632. image: {
  18633. source: "./media/characters/roxi/sitting.svg",
  18634. extra: 2660 / 2462,
  18635. bottom: 0.1
  18636. }
  18637. },
  18638. },
  18639. [
  18640. {
  18641. name: "Normal",
  18642. height: math.unit(5 + 2 / 12, "feet"),
  18643. default: true
  18644. },
  18645. ]
  18646. ))
  18647. characterMakers.push(() => makeCharacter(
  18648. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18649. {
  18650. side: {
  18651. height: math.unit(55, "feet"),
  18652. weight: math.unit(153, "tons"),
  18653. name: "Side",
  18654. image: {
  18655. source: "./media/characters/shadow/side.svg",
  18656. extra: 701 / 628,
  18657. bottom: 0.02
  18658. }
  18659. },
  18660. flying: {
  18661. height: math.unit(145, "feet"),
  18662. weight: math.unit(153, "tons"),
  18663. name: "Flying",
  18664. image: {
  18665. source: "./media/characters/shadow/flying.svg"
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(55, "feet"),
  18673. default: true
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18679. {
  18680. front: {
  18681. height: math.unit(6, "feet"),
  18682. weight: math.unit(200, "lb"),
  18683. name: "Front",
  18684. image: {
  18685. source: "./media/characters/marcie/front.svg",
  18686. extra: 960 / 876,
  18687. bottom: 58 / 1017.87
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Macro",
  18694. height: math.unit(1, "mile"),
  18695. default: true
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18701. {
  18702. front: {
  18703. height: math.unit(7, "feet"),
  18704. weight: math.unit(200, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/kachina/front.svg",
  18708. extra: 1290.68 / 1119,
  18709. bottom: 36.5 / 1327.18
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(7, "feet"),
  18717. default: true
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18723. {
  18724. looking: {
  18725. height: math.unit(2, "meters"),
  18726. weight: math.unit(300, "kg"),
  18727. name: "Looking",
  18728. image: {
  18729. source: "./media/characters/kash/looking.svg",
  18730. extra: 474 / 344,
  18731. bottom: 0.03
  18732. }
  18733. },
  18734. side: {
  18735. height: math.unit(2, "meters"),
  18736. weight: math.unit(300, "kg"),
  18737. name: "Side",
  18738. image: {
  18739. source: "./media/characters/kash/side.svg",
  18740. extra: 302 / 251,
  18741. bottom: 0.03
  18742. }
  18743. },
  18744. front: {
  18745. height: math.unit(2, "meters"),
  18746. weight: math.unit(300, "kg"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/kash/front.svg",
  18750. extra: 495 / 360,
  18751. bottom: 0.015
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(2, "meters"),
  18759. default: true
  18760. },
  18761. {
  18762. name: "Big",
  18763. height: math.unit(3, "meters")
  18764. },
  18765. {
  18766. name: "Large",
  18767. height: math.unit(5, "meters")
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18773. {
  18774. feeding: {
  18775. height: math.unit(6.7, "feet"),
  18776. weight: math.unit(350, "lb"),
  18777. name: "Feeding",
  18778. image: {
  18779. source: "./media/characters/lalim/feeding.svg",
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(6.7, "feet"),
  18787. default: true
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18793. {
  18794. front: {
  18795. height: math.unit(9.5, "feet"),
  18796. weight: math.unit(600, "lb"),
  18797. name: "Front",
  18798. image: {
  18799. source: "./media/characters/de'vout/front.svg",
  18800. extra: 1443 / 1328,
  18801. bottom: 0.025
  18802. }
  18803. },
  18804. back: {
  18805. height: math.unit(9.5, "feet"),
  18806. weight: math.unit(600, "lb"),
  18807. name: "Back",
  18808. image: {
  18809. source: "./media/characters/de'vout/back.svg",
  18810. extra: 1443 / 1328
  18811. }
  18812. },
  18813. frontDressed: {
  18814. height: math.unit(9.5, "feet"),
  18815. weight: math.unit(600, "lb"),
  18816. name: "Front (Dressed",
  18817. image: {
  18818. source: "./media/characters/de'vout/front-dressed.svg",
  18819. extra: 1443 / 1328,
  18820. bottom: 0.025
  18821. }
  18822. },
  18823. backDressed: {
  18824. height: math.unit(9.5, "feet"),
  18825. weight: math.unit(600, "lb"),
  18826. name: "Back (Dressed",
  18827. image: {
  18828. source: "./media/characters/de'vout/back-dressed.svg",
  18829. extra: 1443 / 1328
  18830. }
  18831. },
  18832. },
  18833. [
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(9.5, "feet"),
  18837. default: true
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(8, "feet"),
  18846. weight: math.unit(225, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/talana/front.svg",
  18850. extra: 1410 / 1300,
  18851. bottom: 0.015
  18852. }
  18853. },
  18854. frontDressed: {
  18855. height: math.unit(8, "feet"),
  18856. weight: math.unit(225, "lb"),
  18857. name: "Front (Dressed",
  18858. image: {
  18859. source: "./media/characters/talana/front-dressed.svg",
  18860. extra: 1410 / 1300,
  18861. bottom: 0.015
  18862. }
  18863. },
  18864. },
  18865. [
  18866. {
  18867. name: "Normal",
  18868. height: math.unit(8, "feet"),
  18869. default: true
  18870. },
  18871. ]
  18872. ))
  18873. characterMakers.push(() => makeCharacter(
  18874. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18875. {
  18876. side: {
  18877. height: math.unit(7.2, "feet"),
  18878. weight: math.unit(150, "lb"),
  18879. name: "Side",
  18880. image: {
  18881. source: "./media/characters/xeauvok/side.svg",
  18882. extra: 1975 / 1523,
  18883. bottom: 0.07
  18884. }
  18885. },
  18886. },
  18887. [
  18888. {
  18889. name: "Normal",
  18890. height: math.unit(7.2, "feet"),
  18891. default: true
  18892. },
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18897. {
  18898. side: {
  18899. height: math.unit(4, "meters"),
  18900. weight: math.unit(2200, "kg"),
  18901. name: "Side",
  18902. image: {
  18903. source: "./media/characters/zara/side.svg",
  18904. extra: 765/744,
  18905. bottom: 156/921
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(4, "meters"),
  18913. default: true
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18919. {
  18920. side: {
  18921. height: math.unit(6, "feet"),
  18922. weight: math.unit(150, "lb"),
  18923. name: "Side",
  18924. image: {
  18925. source: "./media/characters/richard-dragon/side.svg",
  18926. extra: 845 / 340,
  18927. bottom: 0.017
  18928. }
  18929. },
  18930. maw: {
  18931. height: math.unit(2.97, "feet"),
  18932. name: "Maw",
  18933. image: {
  18934. source: "./media/characters/richard-dragon/maw.svg"
  18935. }
  18936. },
  18937. },
  18938. [
  18939. ]
  18940. ))
  18941. characterMakers.push(() => makeCharacter(
  18942. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18943. {
  18944. front: {
  18945. height: math.unit(4, "feet"),
  18946. weight: math.unit(100, "lb"),
  18947. name: "Front",
  18948. image: {
  18949. source: "./media/characters/richard-smeargle/front.svg",
  18950. extra: 2952 / 2820,
  18951. bottom: 0.028
  18952. }
  18953. },
  18954. },
  18955. [
  18956. {
  18957. name: "Normal",
  18958. height: math.unit(4, "feet"),
  18959. default: true
  18960. },
  18961. {
  18962. name: "Dynamax",
  18963. height: math.unit(20, "meters")
  18964. },
  18965. ]
  18966. ))
  18967. characterMakers.push(() => makeCharacter(
  18968. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18969. {
  18970. front: {
  18971. height: math.unit(6, "feet"),
  18972. weight: math.unit(110, "lb"),
  18973. name: "Front",
  18974. image: {
  18975. source: "./media/characters/klay/front.svg",
  18976. extra: 962 / 883,
  18977. bottom: 0.04
  18978. }
  18979. },
  18980. back: {
  18981. height: math.unit(6, "feet"),
  18982. weight: math.unit(110, "lb"),
  18983. name: "Back",
  18984. image: {
  18985. source: "./media/characters/klay/back.svg",
  18986. extra: 962 / 883
  18987. }
  18988. },
  18989. beans: {
  18990. height: math.unit(1.15, "feet"),
  18991. name: "Beans",
  18992. image: {
  18993. source: "./media/characters/klay/beans.svg"
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "Micro",
  19000. height: math.unit(6, "inches")
  19001. },
  19002. {
  19003. name: "Mini",
  19004. height: math.unit(3, "feet")
  19005. },
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(6, "feet"),
  19009. default: true
  19010. },
  19011. {
  19012. name: "Big",
  19013. height: math.unit(25, "feet")
  19014. },
  19015. {
  19016. name: "Macro",
  19017. height: math.unit(100, "feet")
  19018. },
  19019. {
  19020. name: "Megamacro",
  19021. height: math.unit(400, "feet")
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19027. {
  19028. front: {
  19029. height: math.unit(6, "feet"),
  19030. weight: math.unit(160, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/marcus/front.svg",
  19034. extra: 734 / 676,
  19035. bottom: 0.03
  19036. }
  19037. },
  19038. },
  19039. [
  19040. {
  19041. name: "Little",
  19042. height: math.unit(6, "feet")
  19043. },
  19044. {
  19045. name: "Normal",
  19046. height: math.unit(110, "feet"),
  19047. default: true
  19048. },
  19049. {
  19050. name: "Macro",
  19051. height: math.unit(250, "feet")
  19052. },
  19053. {
  19054. name: "Megamacro",
  19055. height: math.unit(1000, "feet")
  19056. },
  19057. ]
  19058. ))
  19059. characterMakers.push(() => makeCharacter(
  19060. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19061. {
  19062. front: {
  19063. height: math.unit(7, "feet"),
  19064. weight: math.unit(275, "lb"),
  19065. name: "Front",
  19066. image: {
  19067. source: "./media/characters/claude-delroute/front.svg",
  19068. extra: 902/827,
  19069. bottom: 26/928
  19070. }
  19071. },
  19072. side: {
  19073. height: math.unit(7, "feet"),
  19074. weight: math.unit(275, "lb"),
  19075. name: "Side",
  19076. image: {
  19077. source: "./media/characters/claude-delroute/side.svg",
  19078. extra: 908/853,
  19079. bottom: 16/924
  19080. }
  19081. },
  19082. back: {
  19083. height: math.unit(7, "feet"),
  19084. weight: math.unit(275, "lb"),
  19085. name: "Back",
  19086. image: {
  19087. source: "./media/characters/claude-delroute/back.svg",
  19088. extra: 911/829,
  19089. bottom: 18/929
  19090. }
  19091. },
  19092. maw: {
  19093. height: math.unit(0.6407, "meters"),
  19094. name: "Maw",
  19095. image: {
  19096. source: "./media/characters/claude-delroute/maw.svg"
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(7, "feet"),
  19104. default: true
  19105. },
  19106. {
  19107. name: "Lorge",
  19108. height: math.unit(20, "feet")
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(8 + 4 / 12, "feet"),
  19117. weight: math.unit(600, "lb"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/dragonien/front.svg",
  19121. extra: 100 / 94,
  19122. bottom: 3.3 / 103.3445
  19123. }
  19124. },
  19125. back: {
  19126. height: math.unit(8 + 4 / 12, "feet"),
  19127. weight: math.unit(600, "lb"),
  19128. name: "Back",
  19129. image: {
  19130. source: "./media/characters/dragonien/back.svg",
  19131. extra: 776 / 746,
  19132. bottom: 6.4 / 782.0616
  19133. }
  19134. },
  19135. foot: {
  19136. height: math.unit(1.54, "feet"),
  19137. name: "Foot",
  19138. image: {
  19139. source: "./media/characters/dragonien/foot.svg",
  19140. }
  19141. },
  19142. },
  19143. [
  19144. {
  19145. name: "Normal",
  19146. height: math.unit(8 + 4 / 12, "feet"),
  19147. default: true
  19148. },
  19149. {
  19150. name: "Macro",
  19151. height: math.unit(200, "feet")
  19152. },
  19153. {
  19154. name: "Megamacro",
  19155. height: math.unit(1, "mile")
  19156. },
  19157. {
  19158. name: "Gigamacro",
  19159. height: math.unit(1000, "miles")
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(5 + 2 / 12, "feet"),
  19168. weight: math.unit(110, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/desta/front.svg",
  19172. extra: 767 / 726,
  19173. bottom: 11.7 / 779
  19174. }
  19175. },
  19176. back: {
  19177. height: math.unit(5 + 2 / 12, "feet"),
  19178. weight: math.unit(110, "lb"),
  19179. name: "Back",
  19180. image: {
  19181. source: "./media/characters/desta/back.svg",
  19182. extra: 777 / 728,
  19183. bottom: 6 / 784
  19184. }
  19185. },
  19186. frontAlt: {
  19187. height: math.unit(5 + 2 / 12, "feet"),
  19188. weight: math.unit(110, "lb"),
  19189. name: "Front",
  19190. image: {
  19191. source: "./media/characters/desta/front-alt.svg",
  19192. extra: 1482 / 1417
  19193. }
  19194. },
  19195. side: {
  19196. height: math.unit(5 + 2 / 12, "feet"),
  19197. weight: math.unit(110, "lb"),
  19198. name: "Side",
  19199. image: {
  19200. source: "./media/characters/desta/side.svg",
  19201. extra: 2579 / 2491,
  19202. bottom: 0.053
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Micro",
  19209. height: math.unit(6, "inches")
  19210. },
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(5 + 2 / 12, "feet"),
  19214. default: true
  19215. },
  19216. {
  19217. name: "Macro",
  19218. height: math.unit(62, "feet")
  19219. },
  19220. {
  19221. name: "Megamacro",
  19222. height: math.unit(1800, "feet")
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(10, "feet"),
  19231. weight: math.unit(700, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/storm-alystar/front.svg",
  19235. extra: 2112 / 1898,
  19236. bottom: 0.034
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Micro",
  19243. height: math.unit(3.5, "inches")
  19244. },
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(10, "feet"),
  19248. default: true
  19249. },
  19250. {
  19251. name: "Macro",
  19252. height: math.unit(400, "feet")
  19253. },
  19254. {
  19255. name: "Deific",
  19256. height: math.unit(60, "miles")
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19262. {
  19263. front: {
  19264. height: math.unit(2.35, "meters"),
  19265. weight: math.unit(119, "kg"),
  19266. name: "Front",
  19267. image: {
  19268. source: "./media/characters/ilia/front.svg",
  19269. extra: 1285 / 1255,
  19270. bottom: 0.06
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(2.35, "meters")
  19278. },
  19279. {
  19280. name: "Macro",
  19281. height: math.unit(140, "meters"),
  19282. default: true
  19283. },
  19284. {
  19285. name: "Megamacro",
  19286. height: math.unit(100, "miles")
  19287. },
  19288. ]
  19289. ))
  19290. characterMakers.push(() => makeCharacter(
  19291. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19292. {
  19293. front: {
  19294. height: math.unit(6 + 5 / 12, "feet"),
  19295. weight: math.unit(190, "lb"),
  19296. name: "Front",
  19297. image: {
  19298. source: "./media/characters/kingdead/front.svg",
  19299. extra: 1228 / 1177
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Micro",
  19306. height: math.unit(7, "inches")
  19307. },
  19308. {
  19309. name: "Normal",
  19310. height: math.unit(6 + 5 / 12, "feet")
  19311. },
  19312. {
  19313. name: "Macro",
  19314. height: math.unit(150, "feet"),
  19315. default: true
  19316. },
  19317. {
  19318. name: "Megamacro",
  19319. height: math.unit(200, "miles")
  19320. },
  19321. ]
  19322. ))
  19323. characterMakers.push(() => makeCharacter(
  19324. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19325. {
  19326. front: {
  19327. height: math.unit(8, "feet"),
  19328. weight: math.unit(600, "lb"),
  19329. name: "Front",
  19330. image: {
  19331. source: "./media/characters/kyrehx/front.svg",
  19332. extra: 1195 / 1095,
  19333. bottom: 0.034
  19334. }
  19335. },
  19336. },
  19337. [
  19338. {
  19339. name: "Micro",
  19340. height: math.unit(2, "inches")
  19341. },
  19342. {
  19343. name: "Normal",
  19344. height: math.unit(8, "feet"),
  19345. default: true
  19346. },
  19347. {
  19348. name: "Macro",
  19349. height: math.unit(255, "feet")
  19350. },
  19351. ]
  19352. ))
  19353. characterMakers.push(() => makeCharacter(
  19354. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19355. {
  19356. front: {
  19357. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19358. weight: math.unit(184, "lb"),
  19359. name: "Front",
  19360. image: {
  19361. source: "./media/characters/xang/front.svg",
  19362. extra: 845 / 755
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19370. default: true
  19371. },
  19372. {
  19373. name: "Macro",
  19374. height: math.unit(0.935 * 146, "feet")
  19375. },
  19376. {
  19377. name: "Megamacro",
  19378. height: math.unit(0.935 * 3, "miles")
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19384. {
  19385. frontDressed: {
  19386. height: math.unit(5 + 7 / 12, "feet"),
  19387. weight: math.unit(140, "lb"),
  19388. name: "Front (Dressed)",
  19389. image: {
  19390. source: "./media/characters/doc-weardno/front-dressed.svg",
  19391. extra: 263 / 234
  19392. }
  19393. },
  19394. backDressed: {
  19395. height: math.unit(5 + 7 / 12, "feet"),
  19396. weight: math.unit(140, "lb"),
  19397. name: "Back (Dressed)",
  19398. image: {
  19399. source: "./media/characters/doc-weardno/back-dressed.svg",
  19400. extra: 266 / 238
  19401. }
  19402. },
  19403. front: {
  19404. height: math.unit(5 + 7 / 12, "feet"),
  19405. weight: math.unit(140, "lb"),
  19406. name: "Front",
  19407. image: {
  19408. source: "./media/characters/doc-weardno/front.svg",
  19409. extra: 254 / 233
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Micro",
  19416. height: math.unit(3, "inches")
  19417. },
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(5 + 7 / 12, "feet"),
  19421. default: true
  19422. },
  19423. {
  19424. name: "Macro",
  19425. height: math.unit(25, "feet")
  19426. },
  19427. {
  19428. name: "Megamacro",
  19429. height: math.unit(2, "miles")
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19435. {
  19436. front: {
  19437. height: math.unit(6 + 2 / 12, "feet"),
  19438. weight: math.unit(153, "lb"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/seth-whilst/front.svg",
  19442. bottom: 0.07
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Micro",
  19449. height: math.unit(5, "inches")
  19450. },
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(6 + 2 / 12, "feet"),
  19454. default: true
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19460. {
  19461. front: {
  19462. height: math.unit(3, "inches"),
  19463. weight: math.unit(8, "grams"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/pocket-jabari/front.svg",
  19467. extra: 1024 / 974,
  19468. bottom: 0.039
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Minimicro",
  19475. height: math.unit(8, "mm")
  19476. },
  19477. {
  19478. name: "Micro",
  19479. height: math.unit(3, "inches"),
  19480. default: true
  19481. },
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(3, "feet")
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19490. {
  19491. frontDressed: {
  19492. height: math.unit(15, "feet"),
  19493. weight: math.unit(3280, "lb"),
  19494. name: "Front (Dressed)",
  19495. image: {
  19496. source: "./media/characters/sapphy/front-dressed.svg",
  19497. extra: 1951/1654,
  19498. bottom: 194/2145
  19499. },
  19500. form: "anthro",
  19501. default: true
  19502. },
  19503. backDressed: {
  19504. height: math.unit(15, "feet"),
  19505. weight: math.unit(3280, "lb"),
  19506. name: "Back (Dressed)",
  19507. image: {
  19508. source: "./media/characters/sapphy/back-dressed.svg",
  19509. extra: 2058/1918,
  19510. bottom: 125/2183
  19511. },
  19512. form: "anthro"
  19513. },
  19514. frontNude: {
  19515. height: math.unit(15, "feet"),
  19516. weight: math.unit(3280, "lb"),
  19517. name: "Front (Nude)",
  19518. image: {
  19519. source: "./media/characters/sapphy/front-nude.svg",
  19520. extra: 1951/1654,
  19521. bottom: 194/2145
  19522. },
  19523. form: "anthro"
  19524. },
  19525. backNude: {
  19526. height: math.unit(15, "feet"),
  19527. weight: math.unit(3280, "lb"),
  19528. name: "Back (Nude)",
  19529. image: {
  19530. source: "./media/characters/sapphy/back-nude.svg",
  19531. extra: 2058/1918,
  19532. bottom: 125/2183
  19533. },
  19534. form: "anthro"
  19535. },
  19536. full: {
  19537. height: math.unit(15, "feet"),
  19538. weight: math.unit(3280, "lb"),
  19539. name: "Full",
  19540. image: {
  19541. source: "./media/characters/sapphy/full.svg",
  19542. extra: 1396/1317,
  19543. bottom: 44/1440
  19544. },
  19545. form: "anthro"
  19546. },
  19547. dick: {
  19548. height: math.unit(3.8, "feet"),
  19549. name: "Dick",
  19550. image: {
  19551. source: "./media/characters/sapphy/dick.svg"
  19552. },
  19553. form: "anthro"
  19554. },
  19555. feral: {
  19556. height: math.unit(35, "feet"),
  19557. weight: math.unit(160, "tons"),
  19558. name: "Feral",
  19559. image: {
  19560. source: "./media/characters/sapphy/feral.svg",
  19561. extra: 1050/573,
  19562. bottom: 60/1110
  19563. },
  19564. form: "feral",
  19565. default: true
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(15, "feet"),
  19572. form: "anthro"
  19573. },
  19574. {
  19575. name: "Casual Macro",
  19576. height: math.unit(120, "feet"),
  19577. form: "anthro"
  19578. },
  19579. {
  19580. name: "Macro",
  19581. height: math.unit(2150, "feet"),
  19582. default: true,
  19583. form: "anthro"
  19584. },
  19585. {
  19586. name: "Megamacro",
  19587. height: math.unit(8, "miles"),
  19588. form: "anthro"
  19589. },
  19590. {
  19591. name: "Galaxy Mom",
  19592. height: math.unit(6, "megalightyears"),
  19593. form: "anthro"
  19594. },
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(35, "feet"),
  19598. form: "feral",
  19599. default: true
  19600. },
  19601. {
  19602. name: "Macro",
  19603. height: math.unit(300, "feet"),
  19604. form: "feral"
  19605. },
  19606. {
  19607. name: "Galaxy Mom",
  19608. height: math.unit(10, "megalightyears"),
  19609. form: "feral"
  19610. },
  19611. ],
  19612. {
  19613. "anthro": {
  19614. name: "Anthro",
  19615. default: true
  19616. },
  19617. "feral": {
  19618. name: "Feral"
  19619. }
  19620. }
  19621. ))
  19622. characterMakers.push(() => makeCharacter(
  19623. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19624. {
  19625. front: {
  19626. height: math.unit(6, "feet"),
  19627. weight: math.unit(170, "lb"),
  19628. name: "Front",
  19629. image: {
  19630. source: "./media/characters/kiro/front.svg",
  19631. extra: 1064 / 1012,
  19632. bottom: 0.052
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Micro",
  19639. height: math.unit(6, "inches")
  19640. },
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(6, "feet"),
  19644. default: true
  19645. },
  19646. {
  19647. name: "Macro",
  19648. height: math.unit(72, "feet")
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(5 + 9 / 12, "feet"),
  19657. weight: math.unit(175, "lb"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/irishfox/front.svg",
  19661. extra: 1912 / 1680,
  19662. bottom: 0.02
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Nano",
  19669. height: math.unit(1, "mm")
  19670. },
  19671. {
  19672. name: "Micro",
  19673. height: math.unit(2, "inches")
  19674. },
  19675. {
  19676. name: "Normal",
  19677. height: math.unit(5 + 9 / 12, "feet"),
  19678. default: true
  19679. },
  19680. {
  19681. name: "Macro",
  19682. height: math.unit(45, "feet")
  19683. },
  19684. ]
  19685. ))
  19686. characterMakers.push(() => makeCharacter(
  19687. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19688. {
  19689. front: {
  19690. height: math.unit(6 + 1 / 12, "feet"),
  19691. weight: math.unit(75, "lb"),
  19692. name: "Front",
  19693. image: {
  19694. source: "./media/characters/aronai-sieyes/front.svg",
  19695. extra: 1532/1450,
  19696. bottom: 42/1574
  19697. }
  19698. },
  19699. side: {
  19700. height: math.unit(6 + 1 / 12, "feet"),
  19701. weight: math.unit(75, "lb"),
  19702. name: "Side",
  19703. image: {
  19704. source: "./media/characters/aronai-sieyes/side.svg",
  19705. extra: 1422/1365,
  19706. bottom: 148/1570
  19707. }
  19708. },
  19709. back: {
  19710. height: math.unit(6 + 1 / 12, "feet"),
  19711. weight: math.unit(75, "lb"),
  19712. name: "Back",
  19713. image: {
  19714. source: "./media/characters/aronai-sieyes/back.svg",
  19715. extra: 1526/1464,
  19716. bottom: 51/1577
  19717. }
  19718. },
  19719. dressed: {
  19720. height: math.unit(6 + 1 / 12, "feet"),
  19721. weight: math.unit(75, "lb"),
  19722. name: "Dressed",
  19723. image: {
  19724. source: "./media/characters/aronai-sieyes/dressed.svg",
  19725. extra: 1559/1483,
  19726. bottom: 39/1598
  19727. }
  19728. },
  19729. slit: {
  19730. height: math.unit(1.3, "feet"),
  19731. name: "Slit",
  19732. image: {
  19733. source: "./media/characters/aronai-sieyes/slit.svg"
  19734. }
  19735. },
  19736. slitSpread: {
  19737. height: math.unit(0.9, "feet"),
  19738. name: "Slit (Spread)",
  19739. image: {
  19740. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19741. }
  19742. },
  19743. rump: {
  19744. height: math.unit(1.3, "feet"),
  19745. name: "Rump",
  19746. image: {
  19747. source: "./media/characters/aronai-sieyes/rump.svg"
  19748. }
  19749. },
  19750. maw: {
  19751. height: math.unit(1.25, "feet"),
  19752. name: "Maw",
  19753. image: {
  19754. source: "./media/characters/aronai-sieyes/maw.svg"
  19755. }
  19756. },
  19757. feral: {
  19758. height: math.unit(18, "feet"),
  19759. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19760. name: "Feral",
  19761. image: {
  19762. source: "./media/characters/aronai-sieyes/feral.svg",
  19763. extra: 1530 / 1240,
  19764. bottom: 0.035
  19765. }
  19766. },
  19767. },
  19768. [
  19769. {
  19770. name: "Micro",
  19771. height: math.unit(2, "inches")
  19772. },
  19773. {
  19774. name: "Normal",
  19775. height: math.unit(6 + 1 / 12, "feet"),
  19776. default: true
  19777. }
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19782. {
  19783. front: {
  19784. height: math.unit(12, "feet"),
  19785. weight: math.unit(410, "kg"),
  19786. name: "Front",
  19787. image: {
  19788. source: "./media/characters/xuna/front.svg",
  19789. extra: 2184 / 1980
  19790. }
  19791. },
  19792. side: {
  19793. height: math.unit(12, "feet"),
  19794. weight: math.unit(410, "kg"),
  19795. name: "Side",
  19796. image: {
  19797. source: "./media/characters/xuna/side.svg",
  19798. extra: 2184 / 1980
  19799. }
  19800. },
  19801. back: {
  19802. height: math.unit(12, "feet"),
  19803. weight: math.unit(410, "kg"),
  19804. name: "Back",
  19805. image: {
  19806. source: "./media/characters/xuna/back.svg",
  19807. extra: 2184 / 1980
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Nano glow",
  19814. height: math.unit(10, "nm")
  19815. },
  19816. {
  19817. name: "Micro floof",
  19818. height: math.unit(0.3, "m")
  19819. },
  19820. {
  19821. name: "Huggable softy boi",
  19822. height: math.unit(3.6576, "m"),
  19823. default: true
  19824. },
  19825. {
  19826. name: "Admirable floof",
  19827. height: math.unit(80, "meters")
  19828. },
  19829. {
  19830. name: "Gentle macro",
  19831. height: math.unit(300, "meters")
  19832. },
  19833. {
  19834. name: "Very careful floof",
  19835. height: math.unit(3200, "meters")
  19836. },
  19837. {
  19838. name: "The mega floof",
  19839. height: math.unit(36000, "meters")
  19840. },
  19841. {
  19842. name: "Giga-fur-Wicker",
  19843. height: math.unit(4800000, "meters")
  19844. },
  19845. {
  19846. name: "Licky world",
  19847. height: math.unit(20000000, "meters")
  19848. },
  19849. {
  19850. name: "Floofy cyan sun",
  19851. height: math.unit(1500000000, "meters")
  19852. },
  19853. {
  19854. name: "Milky Wicker",
  19855. height: math.unit(1000000000000000000000, "meters")
  19856. },
  19857. {
  19858. name: "The observing Wicker",
  19859. height: math.unit(999999999999999999999999999, "meters")
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(5 + 9 / 12, "feet"),
  19868. weight: math.unit(150, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/arokha-sieyes/front.svg",
  19872. extra: 1425 / 1284,
  19873. bottom: 0.05
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Normal",
  19880. height: math.unit(5 + 9 / 12, "feet")
  19881. },
  19882. {
  19883. name: "Macro",
  19884. height: math.unit(30, "meters"),
  19885. default: true
  19886. },
  19887. ]
  19888. ))
  19889. characterMakers.push(() => makeCharacter(
  19890. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19891. {
  19892. front: {
  19893. height: math.unit(6, "feet"),
  19894. weight: math.unit(180, "lb"),
  19895. name: "Front",
  19896. image: {
  19897. source: "./media/characters/arokh-sieyes/front.svg",
  19898. extra: 1830 / 1769,
  19899. bottom: 0.01
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Normal",
  19906. height: math.unit(6, "feet")
  19907. },
  19908. {
  19909. name: "Macro",
  19910. height: math.unit(30, "meters"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19917. {
  19918. side: {
  19919. height: math.unit(13 + 1 / 12, "feet"),
  19920. weight: math.unit(8.5, "tonnes"),
  19921. name: "Side",
  19922. image: {
  19923. source: "./media/characters/goldeneye/side.svg",
  19924. extra: 1182 / 778,
  19925. bottom: 0.067
  19926. }
  19927. },
  19928. paw: {
  19929. height: math.unit(3.4, "feet"),
  19930. name: "Paw",
  19931. image: {
  19932. source: "./media/characters/goldeneye/paw.svg"
  19933. }
  19934. },
  19935. },
  19936. [
  19937. {
  19938. name: "Normal",
  19939. height: math.unit(13 + 1 / 12, "feet"),
  19940. default: true
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19946. {
  19947. front: {
  19948. height: math.unit(6 + 1 / 12, "feet"),
  19949. weight: math.unit(210, "lb"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/leonardo-lycheborne/front.svg",
  19953. extra: 776/723,
  19954. bottom: 34/810
  19955. }
  19956. },
  19957. side: {
  19958. height: math.unit(6 + 1 / 12, "feet"),
  19959. weight: math.unit(210, "lb"),
  19960. name: "Side",
  19961. image: {
  19962. source: "./media/characters/leonardo-lycheborne/side.svg",
  19963. extra: 780/728,
  19964. bottom: 12/792
  19965. }
  19966. },
  19967. back: {
  19968. height: math.unit(6 + 1 / 12, "feet"),
  19969. weight: math.unit(210, "lb"),
  19970. name: "Back",
  19971. image: {
  19972. source: "./media/characters/leonardo-lycheborne/back.svg",
  19973. extra: 775/721,
  19974. bottom: 17/792
  19975. }
  19976. },
  19977. hand: {
  19978. height: math.unit(1.08, "feet"),
  19979. name: "Hand",
  19980. image: {
  19981. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19982. }
  19983. },
  19984. foot: {
  19985. height: math.unit(1.32, "feet"),
  19986. name: "Foot",
  19987. image: {
  19988. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19989. }
  19990. },
  19991. maw: {
  19992. height: math.unit(1, "feet"),
  19993. name: "Maw",
  19994. image: {
  19995. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19996. }
  19997. },
  19998. were: {
  19999. height: math.unit(20, "feet"),
  20000. weight: math.unit(7800, "lb"),
  20001. name: "Were",
  20002. image: {
  20003. source: "./media/characters/leonardo-lycheborne/were.svg",
  20004. extra: 1224/1165,
  20005. bottom: 72/1296
  20006. }
  20007. },
  20008. feral: {
  20009. height: math.unit(7.5, "feet"),
  20010. weight: math.unit(600, "lb"),
  20011. name: "Feral",
  20012. image: {
  20013. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20014. extra: 797/702,
  20015. bottom: 139/936
  20016. }
  20017. },
  20018. taur: {
  20019. height: math.unit(11, "feet"),
  20020. weight: math.unit(3300, "lb"),
  20021. name: "Taur",
  20022. image: {
  20023. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20024. extra: 1271/1197,
  20025. bottom: 47/1318
  20026. }
  20027. },
  20028. barghest: {
  20029. height: math.unit(11, "feet"),
  20030. weight: math.unit(1300, "lb"),
  20031. name: "Barghest",
  20032. image: {
  20033. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20034. extra: 1291/1204,
  20035. bottom: 37/1328
  20036. }
  20037. },
  20038. dick: {
  20039. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20040. name: "Dick",
  20041. image: {
  20042. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20043. }
  20044. },
  20045. dickWere: {
  20046. height: math.unit((20) / 3.8, "feet"),
  20047. name: "Dick (Were)",
  20048. image: {
  20049. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(6 + 1 / 12, "feet"),
  20057. default: true
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20063. {
  20064. front: {
  20065. height: math.unit(10, "feet"),
  20066. weight: math.unit(350, "lb"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/jet/front.svg",
  20070. extra: 2050 / 1980,
  20071. bottom: 0.013
  20072. }
  20073. },
  20074. back: {
  20075. height: math.unit(10, "feet"),
  20076. weight: math.unit(350, "lb"),
  20077. name: "Back",
  20078. image: {
  20079. source: "./media/characters/jet/back.svg",
  20080. extra: 2050 / 1980,
  20081. bottom: 0.013
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Micro",
  20088. height: math.unit(6, "inches")
  20089. },
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(10, "feet"),
  20093. default: true
  20094. },
  20095. {
  20096. name: "Macro",
  20097. height: math.unit(100, "feet")
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20103. {
  20104. front: {
  20105. height: math.unit(15, "feet"),
  20106. weight: math.unit(2800, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/tanarath/front.svg",
  20110. extra: 2392 / 2220,
  20111. bottom: 0.03
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(15, "feet"),
  20116. weight: math.unit(2800, "lb"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/tanarath/back.svg",
  20120. extra: 2392 / 2220,
  20121. bottom: 0.03
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(15, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(7 + 1 / 12, "feet"),
  20138. weight: math.unit(175, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/patty-cattybatty/front.svg",
  20142. extra: 908 / 874,
  20143. bottom: 0.025
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Micro",
  20150. height: math.unit(1, "inch")
  20151. },
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(7 + 1 / 12, "feet")
  20155. },
  20156. {
  20157. name: "Mini Macro",
  20158. height: math.unit(155, "feet")
  20159. },
  20160. {
  20161. name: "Macro",
  20162. height: math.unit(1077, "feet")
  20163. },
  20164. {
  20165. name: "Mega Macro",
  20166. height: math.unit(47650, "feet"),
  20167. default: true
  20168. },
  20169. {
  20170. name: "Giga Macro",
  20171. height: math.unit(440, "miles")
  20172. },
  20173. {
  20174. name: "Tera Macro",
  20175. height: math.unit(8700, "miles")
  20176. },
  20177. {
  20178. name: "Planetary Macro",
  20179. height: math.unit(32700, "miles")
  20180. },
  20181. {
  20182. name: "Solar Macro",
  20183. height: math.unit(550000, "miles")
  20184. },
  20185. {
  20186. name: "Celestial Macro",
  20187. height: math.unit(2.5, "AU")
  20188. },
  20189. ]
  20190. ))
  20191. characterMakers.push(() => makeCharacter(
  20192. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20193. {
  20194. front: {
  20195. height: math.unit(4 + 5 / 12, "feet"),
  20196. weight: math.unit(90, "lb"),
  20197. name: "Front",
  20198. image: {
  20199. source: "./media/characters/cappu/front.svg",
  20200. extra: 1247 / 1152,
  20201. bottom: 0.012
  20202. }
  20203. },
  20204. },
  20205. [
  20206. {
  20207. name: "Normal",
  20208. height: math.unit(4 + 5 / 12, "feet"),
  20209. default: true
  20210. },
  20211. ]
  20212. ))
  20213. characterMakers.push(() => makeCharacter(
  20214. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20215. {
  20216. frontDressed: {
  20217. height: math.unit(70, "cm"),
  20218. weight: math.unit(6, "kg"),
  20219. name: "Front (Dressed)",
  20220. image: {
  20221. source: "./media/characters/sebi/front-dressed.svg",
  20222. extra: 713.5 / 686.5,
  20223. bottom: 0.003
  20224. }
  20225. },
  20226. front: {
  20227. height: math.unit(70, "cm"),
  20228. weight: math.unit(5, "kg"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/sebi/front.svg",
  20232. extra: 713.5 / 686.5,
  20233. bottom: 0.003
  20234. }
  20235. }
  20236. },
  20237. [
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(70, "cm"),
  20241. default: true
  20242. },
  20243. {
  20244. name: "Macro",
  20245. height: math.unit(8, "meters")
  20246. },
  20247. ]
  20248. ))
  20249. characterMakers.push(() => makeCharacter(
  20250. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20251. {
  20252. front: {
  20253. height: math.unit(6, "feet"),
  20254. weight: math.unit(150, "lb"),
  20255. name: "Front",
  20256. image: {
  20257. source: "./media/characters/typhek/front.svg",
  20258. extra: 1948 / 1929,
  20259. bottom: 0.025
  20260. }
  20261. },
  20262. side: {
  20263. height: math.unit(6, "feet"),
  20264. weight: math.unit(150, "lb"),
  20265. name: "Side",
  20266. image: {
  20267. source: "./media/characters/typhek/side.svg",
  20268. extra: 2034 / 2010,
  20269. bottom: 0.003
  20270. }
  20271. },
  20272. back: {
  20273. height: math.unit(6, "feet"),
  20274. weight: math.unit(150, "lb"),
  20275. name: "Back",
  20276. image: {
  20277. source: "./media/characters/typhek/back.svg",
  20278. extra: 2005 / 1978,
  20279. bottom: 0.004
  20280. }
  20281. },
  20282. palm: {
  20283. height: math.unit(1.2, "feet"),
  20284. name: "Palm",
  20285. image: {
  20286. source: "./media/characters/typhek/palm.svg"
  20287. }
  20288. },
  20289. fist: {
  20290. height: math.unit(1.1, "feet"),
  20291. name: "Fist",
  20292. image: {
  20293. source: "./media/characters/typhek/fist.svg"
  20294. }
  20295. },
  20296. foot: {
  20297. height: math.unit(1.57, "feet"),
  20298. name: "Foot",
  20299. image: {
  20300. source: "./media/characters/typhek/foot.svg"
  20301. }
  20302. },
  20303. sole: {
  20304. height: math.unit(2.05, "feet"),
  20305. name: "Sole",
  20306. image: {
  20307. source: "./media/characters/typhek/sole.svg"
  20308. }
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Macro",
  20314. height: math.unit(40, "stories"),
  20315. default: true
  20316. },
  20317. {
  20318. name: "Megamacro",
  20319. height: math.unit(1, "mile")
  20320. },
  20321. {
  20322. name: "Gigamacro",
  20323. height: math.unit(4000, "solarradii")
  20324. },
  20325. {
  20326. name: "Universal",
  20327. height: math.unit(1.1, "universes")
  20328. }
  20329. ]
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20333. {
  20334. side: {
  20335. height: math.unit(5 + 7 / 12, "feet"),
  20336. weight: math.unit(150, "lb"),
  20337. name: "Side",
  20338. image: {
  20339. source: "./media/characters/kassy/side.svg",
  20340. extra: 1280 / 1225,
  20341. bottom: 0.002
  20342. }
  20343. },
  20344. front: {
  20345. height: math.unit(5 + 7 / 12, "feet"),
  20346. weight: math.unit(150, "lb"),
  20347. name: "Front",
  20348. image: {
  20349. source: "./media/characters/kassy/front.svg",
  20350. extra: 1280 / 1225,
  20351. bottom: 0.025
  20352. }
  20353. },
  20354. back: {
  20355. height: math.unit(5 + 7 / 12, "feet"),
  20356. weight: math.unit(150, "lb"),
  20357. name: "Back",
  20358. image: {
  20359. source: "./media/characters/kassy/back.svg",
  20360. extra: 1280 / 1225,
  20361. bottom: 0.002
  20362. }
  20363. },
  20364. foot: {
  20365. height: math.unit(1.266, "feet"),
  20366. name: "Foot",
  20367. image: {
  20368. source: "./media/characters/kassy/foot.svg"
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(5 + 7 / 12, "feet")
  20376. },
  20377. {
  20378. name: "Macro",
  20379. height: math.unit(137, "feet"),
  20380. default: true
  20381. },
  20382. {
  20383. name: "Megamacro",
  20384. height: math.unit(1, "mile")
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20390. {
  20391. front: {
  20392. height: math.unit(6 + 1 / 12, "feet"),
  20393. weight: math.unit(200, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/neil/front.svg",
  20397. extra: 1326 / 1250,
  20398. bottom: 0.023
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(6 + 1 / 12, "feet"),
  20406. default: true
  20407. },
  20408. {
  20409. name: "Macro",
  20410. height: math.unit(200, "feet")
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(5 + 9 / 12, "feet"),
  20419. weight: math.unit(190, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/atticus/front.svg",
  20423. extra: 2934 / 2785,
  20424. bottom: 0.025
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Normal",
  20431. height: math.unit(5 + 9 / 12, "feet"),
  20432. default: true
  20433. },
  20434. {
  20435. name: "Macro",
  20436. height: math.unit(180, "feet")
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20442. {
  20443. side: {
  20444. height: math.unit(9, "feet"),
  20445. weight: math.unit(650, "lb"),
  20446. name: "Side",
  20447. image: {
  20448. source: "./media/characters/milo/side.svg",
  20449. extra: 2644 / 2310,
  20450. bottom: 0.032
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(9, "feet"),
  20458. default: true
  20459. },
  20460. {
  20461. name: "Macro",
  20462. height: math.unit(300, "feet")
  20463. },
  20464. ]
  20465. ))
  20466. characterMakers.push(() => makeCharacter(
  20467. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20468. {
  20469. side: {
  20470. height: math.unit(8, "meters"),
  20471. weight: math.unit(90000, "kg"),
  20472. name: "Side",
  20473. image: {
  20474. source: "./media/characters/ijzer/side.svg",
  20475. extra: 2756 / 1600,
  20476. bottom: 0.01
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Small",
  20483. height: math.unit(3, "meters")
  20484. },
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(8, "meters"),
  20488. default: true
  20489. },
  20490. {
  20491. name: "Normal+",
  20492. height: math.unit(10, "meters")
  20493. },
  20494. {
  20495. name: "Bigger",
  20496. height: math.unit(24, "meters")
  20497. },
  20498. {
  20499. name: "Huge",
  20500. height: math.unit(80, "meters")
  20501. },
  20502. ]
  20503. ))
  20504. characterMakers.push(() => makeCharacter(
  20505. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20506. {
  20507. front: {
  20508. height: math.unit(6 + 2 / 12, "feet"),
  20509. weight: math.unit(153, "lb"),
  20510. name: "Front",
  20511. image: {
  20512. source: "./media/characters/luca-cervicum/front.svg",
  20513. extra: 370 / 327,
  20514. bottom: 0.015
  20515. }
  20516. },
  20517. back: {
  20518. height: math.unit(6 + 2 / 12, "feet"),
  20519. weight: math.unit(153, "lb"),
  20520. name: "Back",
  20521. image: {
  20522. source: "./media/characters/luca-cervicum/back.svg",
  20523. extra: 367 / 333,
  20524. bottom: 0.005
  20525. }
  20526. },
  20527. frontGear: {
  20528. height: math.unit(6 + 2 / 12, "feet"),
  20529. weight: math.unit(173, "lb"),
  20530. name: "Front (Gear)",
  20531. image: {
  20532. source: "./media/characters/luca-cervicum/front-gear.svg",
  20533. extra: 377 / 333,
  20534. bottom: 0.006
  20535. }
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Normal",
  20541. height: math.unit(6 + 2 / 12, "feet"),
  20542. default: true
  20543. },
  20544. ]
  20545. ))
  20546. characterMakers.push(() => makeCharacter(
  20547. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20548. {
  20549. front: {
  20550. height: math.unit(6 + 1 / 12, "feet"),
  20551. weight: math.unit(304, "lb"),
  20552. name: "Front",
  20553. image: {
  20554. source: "./media/characters/oliver/front.svg",
  20555. extra: 157 / 143,
  20556. bottom: 0.08
  20557. }
  20558. },
  20559. },
  20560. [
  20561. {
  20562. name: "Normal",
  20563. height: math.unit(6 + 1 / 12, "feet"),
  20564. default: true
  20565. },
  20566. ]
  20567. ))
  20568. characterMakers.push(() => makeCharacter(
  20569. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20570. {
  20571. front: {
  20572. height: math.unit(5 + 7 / 12, "feet"),
  20573. weight: math.unit(140, "lb"),
  20574. name: "Front",
  20575. image: {
  20576. source: "./media/characters/shane/front.svg",
  20577. extra: 304 / 289,
  20578. bottom: 0.005
  20579. }
  20580. },
  20581. },
  20582. [
  20583. {
  20584. name: "Normal",
  20585. height: math.unit(5 + 7 / 12, "feet"),
  20586. default: true
  20587. },
  20588. ]
  20589. ))
  20590. characterMakers.push(() => makeCharacter(
  20591. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20592. {
  20593. front: {
  20594. height: math.unit(5 + 9 / 12, "feet"),
  20595. weight: math.unit(178, "lb"),
  20596. name: "Front",
  20597. image: {
  20598. source: "./media/characters/shin/front.svg",
  20599. extra: 159 / 151,
  20600. bottom: 0.015
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "Normal",
  20607. height: math.unit(5 + 9 / 12, "feet"),
  20608. default: true
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20614. {
  20615. front: {
  20616. height: math.unit(5 + 10 / 12, "feet"),
  20617. weight: math.unit(168, "lb"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/xerxes/front.svg",
  20621. extra: 282 / 260,
  20622. bottom: 0.045
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Normal",
  20629. height: math.unit(5 + 10 / 12, "feet"),
  20630. default: true
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20636. {
  20637. front: {
  20638. height: math.unit(6 + 7 / 12, "feet"),
  20639. weight: math.unit(208, "lb"),
  20640. name: "Front",
  20641. image: {
  20642. source: "./media/characters/chaska/front.svg",
  20643. extra: 332 / 319,
  20644. bottom: 0.015
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Normal",
  20651. height: math.unit(6 + 7 / 12, "feet"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(5 + 8 / 12, "feet"),
  20661. weight: math.unit(208, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/enuk/front.svg",
  20665. extra: 437 / 406,
  20666. bottom: 0.02
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(5 + 8 / 12, "feet"),
  20674. default: true
  20675. },
  20676. ]
  20677. ))
  20678. characterMakers.push(() => makeCharacter(
  20679. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20680. {
  20681. front: {
  20682. height: math.unit(5 + 10 / 12, "feet"),
  20683. weight: math.unit(252, "lb"),
  20684. name: "Front",
  20685. image: {
  20686. source: "./media/characters/bruun/front.svg",
  20687. extra: 197 / 187,
  20688. bottom: 0.012
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(5 + 10 / 12, "feet"),
  20696. default: true
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(6 + 10 / 12, "feet"),
  20705. weight: math.unit(255, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/alexeev/front.svg",
  20709. extra: 213 / 200,
  20710. bottom: 0.05
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(6 + 10 / 12, "feet"),
  20718. default: true
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20724. {
  20725. front: {
  20726. height: math.unit(2 + 8 / 12, "feet"),
  20727. weight: math.unit(22, "lb"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/evelyn/front.svg",
  20731. extra: 208 / 180
  20732. }
  20733. },
  20734. },
  20735. [
  20736. {
  20737. name: "Normal",
  20738. height: math.unit(2 + 8 / 12, "feet"),
  20739. default: true
  20740. },
  20741. ]
  20742. ))
  20743. characterMakers.push(() => makeCharacter(
  20744. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20745. {
  20746. front: {
  20747. height: math.unit(5 + 9 / 12, "feet"),
  20748. weight: math.unit(139, "lb"),
  20749. name: "Front",
  20750. image: {
  20751. source: "./media/characters/inca/front.svg",
  20752. extra: 294 / 291,
  20753. bottom: 0.03
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(5 + 9 / 12, "feet"),
  20761. default: true
  20762. },
  20763. ]
  20764. ))
  20765. characterMakers.push(() => makeCharacter(
  20766. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20767. {
  20768. front: {
  20769. height: math.unit(6 + 3 / 12, "feet"),
  20770. weight: math.unit(185, "lb"),
  20771. name: "Front",
  20772. image: {
  20773. source: "./media/characters/mera/front.svg",
  20774. extra: 291 / 277,
  20775. bottom: 0.03
  20776. }
  20777. },
  20778. },
  20779. [
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(6 + 3 / 12, "feet"),
  20783. default: true
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20789. {
  20790. front: {
  20791. height: math.unit(6 + 7 / 12, "feet"),
  20792. weight: math.unit(160, "lb"),
  20793. name: "Front",
  20794. image: {
  20795. source: "./media/characters/ceres/front.svg",
  20796. extra: 1023 / 950,
  20797. bottom: 0.027
  20798. }
  20799. },
  20800. back: {
  20801. height: math.unit(6 + 7 / 12, "feet"),
  20802. weight: math.unit(160, "lb"),
  20803. name: "Back",
  20804. image: {
  20805. source: "./media/characters/ceres/back.svg",
  20806. extra: 1023 / 950
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(6 + 7 / 12, "feet"),
  20814. default: true
  20815. },
  20816. ]
  20817. ))
  20818. characterMakers.push(() => makeCharacter(
  20819. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20820. {
  20821. front: {
  20822. height: math.unit(5 + 10 / 12, "feet"),
  20823. weight: math.unit(150, "lb"),
  20824. name: "Front",
  20825. image: {
  20826. source: "./media/characters/kris/front.svg",
  20827. extra: 885 / 803,
  20828. bottom: 0.03
  20829. }
  20830. },
  20831. },
  20832. [
  20833. {
  20834. name: "Normal",
  20835. height: math.unit(5 + 10 / 12, "feet"),
  20836. default: true
  20837. },
  20838. ]
  20839. ))
  20840. characterMakers.push(() => makeCharacter(
  20841. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20842. {
  20843. front: {
  20844. height: math.unit(7, "feet"),
  20845. weight: math.unit(120, "kg"),
  20846. name: "Front",
  20847. image: {
  20848. source: "./media/characters/taluthus/front.svg",
  20849. extra: 903 / 833,
  20850. bottom: 0.015
  20851. }
  20852. },
  20853. },
  20854. [
  20855. {
  20856. name: "Normal",
  20857. height: math.unit(7, "feet"),
  20858. default: true
  20859. },
  20860. {
  20861. name: "Macro",
  20862. height: math.unit(300, "feet")
  20863. },
  20864. ]
  20865. ))
  20866. characterMakers.push(() => makeCharacter(
  20867. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20868. {
  20869. front: {
  20870. height: math.unit(5 + 9 / 12, "feet"),
  20871. weight: math.unit(145, "lb"),
  20872. name: "Front",
  20873. image: {
  20874. source: "./media/characters/dawn/front.svg",
  20875. extra: 2094 / 2016,
  20876. bottom: 0.025
  20877. }
  20878. },
  20879. back: {
  20880. height: math.unit(5 + 9 / 12, "feet"),
  20881. weight: math.unit(160, "lb"),
  20882. name: "Back",
  20883. image: {
  20884. source: "./media/characters/dawn/back.svg",
  20885. extra: 2112 / 2080,
  20886. bottom: 0.005
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Normal",
  20893. height: math.unit(6 + 7 / 12, "feet"),
  20894. default: true
  20895. },
  20896. ]
  20897. ))
  20898. characterMakers.push(() => makeCharacter(
  20899. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20900. {
  20901. anthro: {
  20902. height: math.unit(8 + 3 / 12, "feet"),
  20903. weight: math.unit(450, "lb"),
  20904. name: "Anthro",
  20905. image: {
  20906. source: "./media/characters/arador/anthro.svg",
  20907. extra: 1835 / 1718,
  20908. bottom: 0.025
  20909. }
  20910. },
  20911. feral: {
  20912. height: math.unit(4, "feet"),
  20913. weight: math.unit(200, "lb"),
  20914. name: "Feral",
  20915. image: {
  20916. source: "./media/characters/arador/feral.svg",
  20917. extra: 1683 / 1514,
  20918. bottom: 0.07
  20919. }
  20920. },
  20921. },
  20922. [
  20923. {
  20924. name: "Normal",
  20925. height: math.unit(8 + 3 / 12, "feet")
  20926. },
  20927. {
  20928. name: "Macro",
  20929. height: math.unit(82.5, "feet"),
  20930. default: true
  20931. },
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20936. {
  20937. front: {
  20938. height: math.unit(5 + 10 / 12, "feet"),
  20939. weight: math.unit(125, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/dharsi/front.svg",
  20943. extra: 716 / 630,
  20944. bottom: 0.035
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Nano",
  20951. height: math.unit(100, "nm")
  20952. },
  20953. {
  20954. name: "Micro",
  20955. height: math.unit(2, "inches")
  20956. },
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(5 + 10 / 12, "feet"),
  20960. default: true
  20961. },
  20962. {
  20963. name: "Macro",
  20964. height: math.unit(1000, "feet")
  20965. },
  20966. {
  20967. name: "Megamacro",
  20968. height: math.unit(10, "miles")
  20969. },
  20970. {
  20971. name: "Gigamacro",
  20972. height: math.unit(3000, "miles")
  20973. },
  20974. {
  20975. name: "Teramacro",
  20976. height: math.unit(500000, "miles")
  20977. },
  20978. {
  20979. name: "Teramacro+",
  20980. height: math.unit(30, "galaxies")
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(6, "feet"),
  20989. weight: math.unit(150, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/deathy/front.svg",
  20993. extra: 1552 / 1463,
  20994. bottom: 0.025
  20995. }
  20996. },
  20997. side: {
  20998. height: math.unit(6, "feet"),
  20999. weight: math.unit(150, "lb"),
  21000. name: "Side",
  21001. image: {
  21002. source: "./media/characters/deathy/side.svg",
  21003. extra: 1604 / 1455,
  21004. bottom: 0.025
  21005. }
  21006. },
  21007. back: {
  21008. height: math.unit(6, "feet"),
  21009. weight: math.unit(150, "lb"),
  21010. name: "Back",
  21011. image: {
  21012. source: "./media/characters/deathy/back.svg",
  21013. extra: 1580 / 1463,
  21014. bottom: 0.005
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Micro",
  21021. height: math.unit(5, "millimeters")
  21022. },
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(6 + 5 / 12, "feet"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21032. {
  21033. front: {
  21034. height: math.unit(16, "feet"),
  21035. weight: math.unit(4000, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/juniper/front.svg",
  21039. bottom: 0.04
  21040. }
  21041. },
  21042. },
  21043. [
  21044. {
  21045. name: "Normal",
  21046. height: math.unit(16, "feet"),
  21047. default: true
  21048. },
  21049. ]
  21050. ))
  21051. characterMakers.push(() => makeCharacter(
  21052. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21053. {
  21054. front: {
  21055. height: math.unit(6, "feet"),
  21056. weight: math.unit(150, "lb"),
  21057. name: "Front",
  21058. image: {
  21059. source: "./media/characters/hipster/front.svg",
  21060. extra: 1312 / 1209,
  21061. bottom: 0.025
  21062. }
  21063. },
  21064. back: {
  21065. height: math.unit(6, "feet"),
  21066. weight: math.unit(150, "lb"),
  21067. name: "Back",
  21068. image: {
  21069. source: "./media/characters/hipster/back.svg",
  21070. extra: 1281 / 1196,
  21071. bottom: 0.01
  21072. }
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Micro",
  21078. height: math.unit(1, "mm")
  21079. },
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(4, "inches"),
  21083. default: true
  21084. },
  21085. {
  21086. name: "Macro",
  21087. height: math.unit(500, "feet")
  21088. },
  21089. {
  21090. name: "Megamacro",
  21091. height: math.unit(1000, "miles")
  21092. },
  21093. ]
  21094. ))
  21095. characterMakers.push(() => makeCharacter(
  21096. { name: "Tendirmuldr", species: ["cow"], 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/tendirmuldr/front.svg",
  21104. extra: 1878 / 1772,
  21105. bottom: 0.015
  21106. }
  21107. },
  21108. },
  21109. [
  21110. {
  21111. name: "Megamacro",
  21112. height: math.unit(1500, "miles"),
  21113. default: true
  21114. },
  21115. ]
  21116. ))
  21117. characterMakers.push(() => makeCharacter(
  21118. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21119. {
  21120. front: {
  21121. height: math.unit(14, "feet"),
  21122. weight: math.unit(12000, "lb"),
  21123. name: "Front",
  21124. image: {
  21125. source: "./media/characters/mort/front.svg",
  21126. extra: 365 / 318,
  21127. bottom: 0.01
  21128. }
  21129. },
  21130. side: {
  21131. height: math.unit(14, "feet"),
  21132. weight: math.unit(12000, "lb"),
  21133. name: "Side",
  21134. image: {
  21135. source: "./media/characters/mort/side.svg",
  21136. extra: 365 / 318,
  21137. bottom: 0.052
  21138. },
  21139. default: true
  21140. },
  21141. back: {
  21142. height: math.unit(14, "feet"),
  21143. weight: math.unit(12000, "lb"),
  21144. name: "Back",
  21145. image: {
  21146. source: "./media/characters/mort/back.svg",
  21147. extra: 371 / 332,
  21148. bottom: 0.18
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(14, "feet"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21162. {
  21163. front: {
  21164. height: math.unit(8, "feet"),
  21165. weight: math.unit(1, "ton"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/lycoa/front.svg",
  21169. extra: 1836/1728,
  21170. bottom: 81/1917
  21171. }
  21172. },
  21173. back: {
  21174. height: math.unit(8, "feet"),
  21175. weight: math.unit(1, "ton"),
  21176. name: "Back",
  21177. image: {
  21178. source: "./media/characters/lycoa/back.svg",
  21179. extra: 1785/1720,
  21180. bottom: 91/1876
  21181. }
  21182. },
  21183. head: {
  21184. height: math.unit(1.6243, "feet"),
  21185. name: "Head",
  21186. image: {
  21187. source: "./media/characters/lycoa/head.svg",
  21188. extra: 1011/782,
  21189. bottom: 0/1011
  21190. }
  21191. },
  21192. tailmaw: {
  21193. height: math.unit(1.9, "feet"),
  21194. name: "Tailmaw",
  21195. image: {
  21196. source: "./media/characters/lycoa/tailmaw.svg"
  21197. }
  21198. },
  21199. tentacles: {
  21200. height: math.unit(2.1, "feet"),
  21201. name: "Tentacles",
  21202. image: {
  21203. source: "./media/characters/lycoa/tentacles.svg"
  21204. }
  21205. },
  21206. dick: {
  21207. height: math.unit(1.73, "feet"),
  21208. name: "Dick",
  21209. image: {
  21210. source: "./media/characters/lycoa/dick.svg"
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Normal",
  21217. height: math.unit(8, "feet"),
  21218. default: true
  21219. },
  21220. {
  21221. name: "Macro",
  21222. height: math.unit(30, "feet")
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21228. {
  21229. front: {
  21230. height: math.unit(4 + 2 / 12, "feet"),
  21231. weight: math.unit(70, "lb"),
  21232. name: "Front",
  21233. image: {
  21234. source: "./media/characters/naldara/front.svg",
  21235. extra: 1664/1387,
  21236. bottom: 81/1745
  21237. },
  21238. form: "anthro",
  21239. default: true
  21240. },
  21241. naga: {
  21242. height: math.unit(20, "feet"),
  21243. weight: math.unit(15000, "kg"),
  21244. name: "Front",
  21245. image: {
  21246. source: "./media/characters/naldara/naga.svg",
  21247. extra: 1590/1396,
  21248. bottom: 285/1875
  21249. },
  21250. form: "naga",
  21251. default: true
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Normal",
  21257. height: math.unit(4 + 2 / 12, "feet"),
  21258. form: "anthro",
  21259. default: true
  21260. },
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(20, "feet"),
  21264. form: "naga",
  21265. default: true
  21266. },
  21267. ],
  21268. {
  21269. "anthro": {
  21270. name: "Anthro",
  21271. default: true
  21272. },
  21273. "naga": {
  21274. name: "Naga"
  21275. }
  21276. }
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21280. {
  21281. front: {
  21282. height: math.unit(13 + 7 / 12, "feet"),
  21283. weight: math.unit(1500, "lb"),
  21284. name: "Front",
  21285. image: {
  21286. source: "./media/characters/briar/front.svg",
  21287. extra: 1223/1157,
  21288. bottom: 123/1346
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(13 + 7 / 12, "feet"),
  21296. default: true
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21302. {
  21303. side: {
  21304. height: math.unit(16, "feet"),
  21305. weight: math.unit(500, "lb"),
  21306. name: "Side",
  21307. image: {
  21308. source: "./media/characters/vanguard/side.svg",
  21309. extra: 1022/914,
  21310. bottom: 30/1052
  21311. }
  21312. },
  21313. sideAlt: {
  21314. height: math.unit(10, "feet"),
  21315. weight: math.unit(500, "lb"),
  21316. name: "Side (Alt)",
  21317. image: {
  21318. source: "./media/characters/vanguard/side-alt.svg",
  21319. extra: 502 / 425,
  21320. bottom: 0.087
  21321. }
  21322. },
  21323. },
  21324. [
  21325. {
  21326. name: "Normal",
  21327. height: math.unit(17.71, "feet"),
  21328. default: true
  21329. },
  21330. ]
  21331. ))
  21332. characterMakers.push(() => makeCharacter(
  21333. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21334. {
  21335. front: {
  21336. height: math.unit(7.5, "feet"),
  21337. weight: math.unit(2, "lb"),
  21338. name: "Front",
  21339. image: {
  21340. source: "./media/characters/artemis/work-safe-front.svg",
  21341. extra: 1192 / 1075,
  21342. bottom: 0.07
  21343. },
  21344. form: "work-safe",
  21345. default: true
  21346. },
  21347. frontNsfw: {
  21348. height: math.unit(7.5, "feet"),
  21349. weight: math.unit(2, "lb"),
  21350. name: "Front",
  21351. image: {
  21352. source: "./media/characters/artemis/calibrating-front.svg",
  21353. extra: 1192 / 1075,
  21354. bottom: 0.07
  21355. },
  21356. form: "calibrating",
  21357. default: true
  21358. },
  21359. frontNsfwer: {
  21360. height: math.unit(7.5, "feet"),
  21361. weight: math.unit(2, "lb"),
  21362. name: "Front",
  21363. image: {
  21364. source: "./media/characters/artemis/oversize-load-front.svg",
  21365. extra: 1192 / 1075,
  21366. bottom: 0.07
  21367. },
  21368. form: "oversize-load",
  21369. default: true
  21370. },
  21371. side: {
  21372. height: math.unit(7.5, "feet"),
  21373. weight: math.unit(2, "lb"),
  21374. name: "Side",
  21375. image: {
  21376. source: "./media/characters/artemis/work-safe-side.svg",
  21377. extra: 1192 / 1075,
  21378. bottom: 0.07
  21379. },
  21380. form: "work-safe"
  21381. },
  21382. sideNsfw: {
  21383. height: math.unit(7.5, "feet"),
  21384. weight: math.unit(2, "lb"),
  21385. name: "Side",
  21386. image: {
  21387. source: "./media/characters/artemis/calibrating-side.svg",
  21388. extra: 1192 / 1075,
  21389. bottom: 0.07
  21390. },
  21391. form: "calibrating"
  21392. },
  21393. sideNsfwer: {
  21394. height: math.unit(7.5, "feet"),
  21395. weight: math.unit(2, "lb"),
  21396. name: "Side",
  21397. image: {
  21398. source: "./media/characters/artemis/oversize-load-side.svg",
  21399. extra: 1192 / 1075,
  21400. bottom: 0.07
  21401. },
  21402. form: "oversize-load"
  21403. },
  21404. maw: {
  21405. height: math.unit(1.1, "feet"),
  21406. name: "Maw",
  21407. image: {
  21408. source: "./media/characters/artemis/maw.svg"
  21409. },
  21410. form: "work-safe"
  21411. },
  21412. stomach: {
  21413. height: math.unit(0.95, "feet"),
  21414. name: "Stomach",
  21415. image: {
  21416. source: "./media/characters/artemis/stomach.svg"
  21417. },
  21418. form: "work-safe"
  21419. },
  21420. dickCanine: {
  21421. height: math.unit(1, "feet"),
  21422. name: "Dick (Canine)",
  21423. image: {
  21424. source: "./media/characters/artemis/dick-canine.svg"
  21425. },
  21426. form: "calibrating"
  21427. },
  21428. dickEquine: {
  21429. height: math.unit(0.85, "feet"),
  21430. name: "Dick (Equine)",
  21431. image: {
  21432. source: "./media/characters/artemis/dick-equine.svg"
  21433. },
  21434. form: "calibrating"
  21435. },
  21436. dickExotic: {
  21437. height: math.unit(0.85, "feet"),
  21438. name: "Dick (Exotic)",
  21439. image: {
  21440. source: "./media/characters/artemis/dick-exotic.svg"
  21441. },
  21442. form: "calibrating"
  21443. },
  21444. dickCanineBigger: {
  21445. height: math.unit(1 * 1.33, "feet"),
  21446. name: "Dick (Canine)",
  21447. image: {
  21448. source: "./media/characters/artemis/dick-canine.svg"
  21449. },
  21450. form: "oversize-load"
  21451. },
  21452. dickEquineBigger: {
  21453. height: math.unit(0.85 * 1.33, "feet"),
  21454. name: "Dick (Equine)",
  21455. image: {
  21456. source: "./media/characters/artemis/dick-equine.svg"
  21457. },
  21458. form: "oversize-load"
  21459. },
  21460. dickExoticBigger: {
  21461. height: math.unit(0.85 * 1.33, "feet"),
  21462. name: "Dick (Exotic)",
  21463. image: {
  21464. source: "./media/characters/artemis/dick-exotic.svg"
  21465. },
  21466. form: "oversize-load"
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Normal",
  21472. height: math.unit(7.5, "feet"),
  21473. form: "work-safe",
  21474. default: true
  21475. },
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(7.5, "feet"),
  21479. form: "calibrating",
  21480. default: true
  21481. },
  21482. {
  21483. name: "Normal",
  21484. height: math.unit(7.5, "feet"),
  21485. form: "oversize-load",
  21486. default: true
  21487. },
  21488. {
  21489. name: "Enlarged",
  21490. height: math.unit(12, "feet"),
  21491. form: "work-safe",
  21492. },
  21493. {
  21494. name: "Enlarged",
  21495. height: math.unit(12, "feet"),
  21496. form: "calibrating",
  21497. },
  21498. {
  21499. name: "Enlarged",
  21500. height: math.unit(12, "feet"),
  21501. form: "oversize-load",
  21502. },
  21503. ],
  21504. {
  21505. "work-safe": {
  21506. name: "Work-Safe",
  21507. default: true
  21508. },
  21509. "calibrating": {
  21510. name: "Calibrating"
  21511. },
  21512. "oversize-load": {
  21513. name: "Oversize Load"
  21514. }
  21515. }
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21519. {
  21520. front: {
  21521. height: math.unit(5 + 3 / 12, "feet"),
  21522. weight: math.unit(160, "lb"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/kira/front.svg",
  21526. extra: 906 / 786,
  21527. bottom: 0.01
  21528. }
  21529. },
  21530. back: {
  21531. height: math.unit(5 + 3 / 12, "feet"),
  21532. weight: math.unit(160, "lb"),
  21533. name: "Back",
  21534. image: {
  21535. source: "./media/characters/kira/back.svg",
  21536. extra: 882 / 757,
  21537. bottom: 0.005
  21538. }
  21539. },
  21540. frontDressed: {
  21541. height: math.unit(5 + 3 / 12, "feet"),
  21542. weight: math.unit(160, "lb"),
  21543. name: "Front (Dressed)",
  21544. image: {
  21545. source: "./media/characters/kira/front-dressed.svg",
  21546. extra: 906 / 786,
  21547. bottom: 0.01
  21548. }
  21549. },
  21550. beans: {
  21551. height: math.unit(0.92, "feet"),
  21552. name: "Beans",
  21553. image: {
  21554. source: "./media/characters/kira/beans.svg"
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(5 + 3 / 12, "feet"),
  21562. default: true
  21563. },
  21564. ]
  21565. ))
  21566. characterMakers.push(() => makeCharacter(
  21567. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21568. {
  21569. front: {
  21570. height: math.unit(5 + 4 / 12, "feet"),
  21571. weight: math.unit(145, "lb"),
  21572. name: "Front",
  21573. image: {
  21574. source: "./media/characters/scramble/front.svg",
  21575. extra: 763 / 727,
  21576. bottom: 0.05
  21577. }
  21578. },
  21579. back: {
  21580. height: math.unit(5 + 4 / 12, "feet"),
  21581. weight: math.unit(145, "lb"),
  21582. name: "Back",
  21583. image: {
  21584. source: "./media/characters/scramble/back.svg",
  21585. extra: 826 / 737,
  21586. bottom: 0.002
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(5 + 4 / 12, "feet"),
  21594. default: true
  21595. },
  21596. ]
  21597. ))
  21598. characterMakers.push(() => makeCharacter(
  21599. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21600. {
  21601. side: {
  21602. height: math.unit(6 + 2 / 12, "feet"),
  21603. weight: math.unit(190, "lb"),
  21604. name: "Side",
  21605. image: {
  21606. source: "./media/characters/biscuit/side.svg",
  21607. extra: 858 / 791,
  21608. bottom: 0.044
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(6 + 2 / 12, "feet"),
  21616. default: true
  21617. },
  21618. ]
  21619. ))
  21620. characterMakers.push(() => makeCharacter(
  21621. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21622. {
  21623. front: {
  21624. height: math.unit(5 + 2 / 12, "feet"),
  21625. weight: math.unit(120, "lb"),
  21626. name: "Front",
  21627. image: {
  21628. source: "./media/characters/poffin/front.svg",
  21629. extra: 786 / 680,
  21630. bottom: 0.005
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(5 + 2 / 12, "feet"),
  21638. default: true
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21644. {
  21645. front: {
  21646. height: math.unit(6 + 3 / 12, "feet"),
  21647. weight: math.unit(519, "lb"),
  21648. name: "Front",
  21649. image: {
  21650. source: "./media/characters/dhari/front.svg",
  21651. extra: 1048 / 946,
  21652. bottom: 0.015
  21653. }
  21654. },
  21655. back: {
  21656. height: math.unit(6 + 3 / 12, "feet"),
  21657. weight: math.unit(519, "lb"),
  21658. name: "Back",
  21659. image: {
  21660. source: "./media/characters/dhari/back.svg",
  21661. extra: 1048 / 931,
  21662. bottom: 0.005
  21663. }
  21664. },
  21665. frontDressed: {
  21666. height: math.unit(6 + 3 / 12, "feet"),
  21667. weight: math.unit(519, "lb"),
  21668. name: "Front (Dressed)",
  21669. image: {
  21670. source: "./media/characters/dhari/front-dressed.svg",
  21671. extra: 1713 / 1546,
  21672. bottom: 0.02
  21673. }
  21674. },
  21675. backDressed: {
  21676. height: math.unit(6 + 3 / 12, "feet"),
  21677. weight: math.unit(519, "lb"),
  21678. name: "Back (Dressed)",
  21679. image: {
  21680. source: "./media/characters/dhari/back-dressed.svg",
  21681. extra: 1699 / 1537,
  21682. bottom: 0.01
  21683. }
  21684. },
  21685. maw: {
  21686. height: math.unit(0.95, "feet"),
  21687. name: "Maw",
  21688. image: {
  21689. source: "./media/characters/dhari/maw.svg"
  21690. }
  21691. },
  21692. wereFront: {
  21693. height: math.unit(12 + 8 / 12, "feet"),
  21694. weight: math.unit(4000, "lb"),
  21695. name: "Front (Were)",
  21696. image: {
  21697. source: "./media/characters/dhari/were-front.svg",
  21698. extra: 1065 / 969,
  21699. bottom: 0.015
  21700. }
  21701. },
  21702. wereBack: {
  21703. height: math.unit(12 + 8 / 12, "feet"),
  21704. weight: math.unit(4000, "lb"),
  21705. name: "Back (Were)",
  21706. image: {
  21707. source: "./media/characters/dhari/were-back.svg",
  21708. extra: 1065 / 969,
  21709. bottom: 0.012
  21710. }
  21711. },
  21712. wereMaw: {
  21713. height: math.unit(0.625, "meters"),
  21714. name: "Maw (Were)",
  21715. image: {
  21716. source: "./media/characters/dhari/were-maw.svg"
  21717. }
  21718. },
  21719. },
  21720. [
  21721. {
  21722. name: "Normal",
  21723. height: math.unit(6 + 3 / 12, "feet"),
  21724. default: true
  21725. },
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21730. {
  21731. anthro: {
  21732. height: math.unit(5 + 7 / 12, "feet"),
  21733. weight: math.unit(175, "lb"),
  21734. name: "Anthro",
  21735. image: {
  21736. source: "./media/characters/rena-dyne/anthro.svg",
  21737. extra: 1849 / 1785,
  21738. bottom: 0.005
  21739. }
  21740. },
  21741. taur: {
  21742. height: math.unit(15 + 6 / 12, "feet"),
  21743. weight: math.unit(8000, "lb"),
  21744. name: "Taur",
  21745. image: {
  21746. source: "./media/characters/rena-dyne/taur.svg",
  21747. extra: 2315 / 2234,
  21748. bottom: 0.033
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(5 + 7 / 12, "feet"),
  21756. default: true
  21757. },
  21758. ]
  21759. ))
  21760. characterMakers.push(() => makeCharacter(
  21761. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21762. {
  21763. front: {
  21764. height: math.unit(8, "feet"),
  21765. weight: math.unit(600, "lb"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/weremeep/front.svg",
  21769. extra: 967 / 862,
  21770. bottom: 0.01
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(8, "feet"),
  21778. default: true
  21779. },
  21780. {
  21781. name: "Lorg",
  21782. height: math.unit(12, "feet")
  21783. },
  21784. {
  21785. name: "Oh Lawd She Comin'",
  21786. height: math.unit(20, "feet")
  21787. },
  21788. ]
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21792. {
  21793. front: {
  21794. height: math.unit(4, "feet"),
  21795. weight: math.unit(90, "lb"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/reza/front.svg",
  21799. extra: 1183 / 1111,
  21800. bottom: 0.017
  21801. }
  21802. },
  21803. back: {
  21804. height: math.unit(4, "feet"),
  21805. weight: math.unit(90, "lb"),
  21806. name: "Back",
  21807. image: {
  21808. source: "./media/characters/reza/back.svg",
  21809. extra: 1183 / 1111,
  21810. bottom: 0.01
  21811. }
  21812. },
  21813. drake: {
  21814. height: math.unit(30, "feet"),
  21815. weight: math.unit(246960, "lb"),
  21816. name: "Drake",
  21817. image: {
  21818. source: "./media/characters/reza/drake.svg",
  21819. extra: 2350 / 2024,
  21820. bottom: 60.7 / 2403
  21821. }
  21822. },
  21823. },
  21824. [
  21825. {
  21826. name: "Normal",
  21827. height: math.unit(4, "feet"),
  21828. default: true
  21829. },
  21830. ]
  21831. ))
  21832. characterMakers.push(() => makeCharacter(
  21833. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21834. {
  21835. side: {
  21836. height: math.unit(15, "feet"),
  21837. weight: math.unit(14, "tons"),
  21838. name: "Side",
  21839. image: {
  21840. source: "./media/characters/athea/side.svg",
  21841. extra: 960 / 540,
  21842. bottom: 0.003
  21843. }
  21844. },
  21845. sitting: {
  21846. height: math.unit(6 * 2.85, "feet"),
  21847. weight: math.unit(14, "tons"),
  21848. name: "Sitting",
  21849. image: {
  21850. source: "./media/characters/athea/sitting.svg",
  21851. extra: 621 / 581,
  21852. bottom: 0.075
  21853. }
  21854. },
  21855. maw: {
  21856. height: math.unit(7.59498031496063, "feet"),
  21857. name: "Maw",
  21858. image: {
  21859. source: "./media/characters/athea/maw.svg"
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Lap Cat",
  21866. height: math.unit(2.5, "feet")
  21867. },
  21868. {
  21869. name: "Minimacro",
  21870. height: math.unit(15, "feet"),
  21871. default: true
  21872. },
  21873. {
  21874. name: "Macro",
  21875. height: math.unit(120, "feet")
  21876. },
  21877. {
  21878. name: "Macro+",
  21879. height: math.unit(640, "feet")
  21880. },
  21881. {
  21882. name: "Colossus",
  21883. height: math.unit(2.2, "miles")
  21884. },
  21885. ]
  21886. ))
  21887. characterMakers.push(() => makeCharacter(
  21888. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21889. {
  21890. front: {
  21891. height: math.unit(8 + 8 / 12, "feet"),
  21892. weight: math.unit(130, "kg"),
  21893. name: "Front",
  21894. image: {
  21895. source: "./media/characters/seroko/front.svg",
  21896. extra: 1385 / 1280,
  21897. bottom: 0.025
  21898. }
  21899. },
  21900. back: {
  21901. height: math.unit(8 + 8 / 12, "feet"),
  21902. weight: math.unit(130, "kg"),
  21903. name: "Back",
  21904. image: {
  21905. source: "./media/characters/seroko/back.svg",
  21906. extra: 1369 / 1238,
  21907. bottom: 0.018
  21908. }
  21909. },
  21910. frontDressed: {
  21911. height: math.unit(8 + 8 / 12, "feet"),
  21912. weight: math.unit(130, "kg"),
  21913. name: "Front (Dressed)",
  21914. image: {
  21915. source: "./media/characters/seroko/front-dressed.svg",
  21916. extra: 1366 / 1275,
  21917. bottom: 0.03
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(8 + 8 / 12, "feet"),
  21925. default: true
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21931. {
  21932. front: {
  21933. height: math.unit(5.5, "feet"),
  21934. weight: math.unit(160, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/quatzi/front.svg",
  21938. extra: 2346 / 2242,
  21939. bottom: 0.015
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(5.5, "feet"),
  21947. default: true
  21948. },
  21949. {
  21950. name: "Big",
  21951. height: math.unit(7.7, "feet")
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(5 + 11 / 12, "feet"),
  21960. weight: math.unit(180, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/sen/front.svg",
  21964. extra: 1321 / 1254,
  21965. bottom: 0.015
  21966. }
  21967. },
  21968. side: {
  21969. height: math.unit(5 + 11 / 12, "feet"),
  21970. weight: math.unit(180, "lb"),
  21971. name: "Side",
  21972. image: {
  21973. source: "./media/characters/sen/side.svg",
  21974. extra: 1321 / 1254,
  21975. bottom: 0.007
  21976. }
  21977. },
  21978. back: {
  21979. height: math.unit(5 + 11 / 12, "feet"),
  21980. weight: math.unit(180, "lb"),
  21981. name: "Back",
  21982. image: {
  21983. source: "./media/characters/sen/back.svg",
  21984. extra: 1321 / 1254
  21985. }
  21986. },
  21987. },
  21988. [
  21989. {
  21990. name: "Normal",
  21991. height: math.unit(5 + 11 / 12, "feet"),
  21992. default: true
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21998. {
  21999. front: {
  22000. height: math.unit(166.6, "cm"),
  22001. weight: math.unit(66.6, "kg"),
  22002. name: "Front",
  22003. image: {
  22004. source: "./media/characters/fruity/front.svg",
  22005. extra: 1510 / 1386,
  22006. bottom: 0.04
  22007. }
  22008. },
  22009. back: {
  22010. height: math.unit(166.6, "cm"),
  22011. weight: math.unit(66.6, "lb"),
  22012. name: "Back",
  22013. image: {
  22014. source: "./media/characters/fruity/back.svg",
  22015. extra: 1563 / 1435,
  22016. bottom: 0.005
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Normal",
  22023. height: math.unit(166.6, "cm"),
  22024. default: true
  22025. },
  22026. {
  22027. name: "Demonic",
  22028. height: math.unit(166.6, "feet")
  22029. },
  22030. ]
  22031. ))
  22032. characterMakers.push(() => makeCharacter(
  22033. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22034. {
  22035. side: {
  22036. height: math.unit(10, "feet"),
  22037. weight: math.unit(500, "lb"),
  22038. name: "Side",
  22039. image: {
  22040. source: "./media/characters/zost/side.svg",
  22041. extra: 2870/2533,
  22042. bottom: 252/3122
  22043. }
  22044. },
  22045. mawFront: {
  22046. height: math.unit(1.08, "meters"),
  22047. name: "Maw (Front)",
  22048. image: {
  22049. source: "./media/characters/zost/maw-front.svg"
  22050. }
  22051. },
  22052. mawSide: {
  22053. height: math.unit(2.66, "feet"),
  22054. name: "Maw (Side)",
  22055. image: {
  22056. source: "./media/characters/zost/maw-side.svg"
  22057. }
  22058. },
  22059. wingspan: {
  22060. height: math.unit(7.4, "feet"),
  22061. name: "Wingspan",
  22062. image: {
  22063. source: "./media/characters/zost/wingspan.svg"
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(10, "feet"),
  22071. default: true
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22077. {
  22078. front: {
  22079. height: math.unit(5 + 4 / 12, "feet"),
  22080. weight: math.unit(120, "lb"),
  22081. name: "Front",
  22082. image: {
  22083. source: "./media/characters/luci/front.svg",
  22084. extra: 1985 / 1884,
  22085. bottom: 0.04
  22086. }
  22087. },
  22088. back: {
  22089. height: math.unit(5 + 4 / 12, "feet"),
  22090. weight: math.unit(120, "lb"),
  22091. name: "Back",
  22092. image: {
  22093. source: "./media/characters/luci/back.svg",
  22094. extra: 1892 / 1791,
  22095. bottom: 0.002
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(5 + 4 / 12, "feet"),
  22103. default: true
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(1500, "feet"),
  22112. weight: math.unit(3.8e6, "tons"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/2th/front.svg",
  22116. extra: 3489 / 3350,
  22117. bottom: 0.1
  22118. }
  22119. },
  22120. foot: {
  22121. height: math.unit(461, "feet"),
  22122. name: "Foot",
  22123. image: {
  22124. source: "./media/characters/2th/foot.svg"
  22125. }
  22126. },
  22127. },
  22128. [
  22129. {
  22130. name: "\"Micro\"",
  22131. height: math.unit(15 + 7 / 12, "feet")
  22132. },
  22133. {
  22134. name: "Normal",
  22135. height: math.unit(1500, "feet"),
  22136. default: true
  22137. },
  22138. {
  22139. name: "Macro",
  22140. height: math.unit(5000, "feet")
  22141. },
  22142. {
  22143. name: "Megamacro",
  22144. height: math.unit(15, "miles")
  22145. },
  22146. {
  22147. name: "Gigamacro",
  22148. height: math.unit(4000, "miles")
  22149. },
  22150. {
  22151. name: "Galactic",
  22152. height: math.unit(50, "AU")
  22153. },
  22154. ]
  22155. ))
  22156. characterMakers.push(() => makeCharacter(
  22157. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22158. {
  22159. front: {
  22160. height: math.unit(5 + 6 / 12, "feet"),
  22161. weight: math.unit(220, "lb"),
  22162. name: "Front",
  22163. image: {
  22164. source: "./media/characters/amethyst/front.svg",
  22165. extra: 2078 / 2040,
  22166. bottom: 0.045
  22167. }
  22168. },
  22169. back: {
  22170. height: math.unit(5 + 6 / 12, "feet"),
  22171. weight: math.unit(220, "lb"),
  22172. name: "Back",
  22173. image: {
  22174. source: "./media/characters/amethyst/back.svg",
  22175. extra: 2021 / 1989,
  22176. bottom: 0.02
  22177. }
  22178. },
  22179. },
  22180. [
  22181. {
  22182. name: "Normal",
  22183. height: math.unit(5 + 6 / 12, "feet"),
  22184. default: true
  22185. },
  22186. ]
  22187. ))
  22188. characterMakers.push(() => makeCharacter(
  22189. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22190. {
  22191. front: {
  22192. height: math.unit(4 + 11 / 12, "feet"),
  22193. weight: math.unit(120, "lb"),
  22194. name: "Front",
  22195. image: {
  22196. source: "./media/characters/yumi-akiyama/front.svg",
  22197. extra: 1327 / 1235,
  22198. bottom: 0.02
  22199. }
  22200. },
  22201. back: {
  22202. height: math.unit(4 + 11 / 12, "feet"),
  22203. weight: math.unit(120, "lb"),
  22204. name: "Back",
  22205. image: {
  22206. source: "./media/characters/yumi-akiyama/back.svg",
  22207. extra: 1287 / 1245,
  22208. bottom: 0.002
  22209. }
  22210. },
  22211. },
  22212. [
  22213. {
  22214. name: "Galactic",
  22215. height: math.unit(50, "galaxies"),
  22216. default: true
  22217. },
  22218. {
  22219. name: "Universal",
  22220. height: math.unit(100, "universes")
  22221. },
  22222. ]
  22223. ))
  22224. characterMakers.push(() => makeCharacter(
  22225. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22226. {
  22227. front: {
  22228. height: math.unit(8, "feet"),
  22229. weight: math.unit(500, "lb"),
  22230. name: "Front",
  22231. image: {
  22232. source: "./media/characters/rifter-yrmori/front.svg",
  22233. extra: 1180 / 1125,
  22234. bottom: 0.02
  22235. }
  22236. },
  22237. back: {
  22238. height: math.unit(8, "feet"),
  22239. weight: math.unit(500, "lb"),
  22240. name: "Back",
  22241. image: {
  22242. source: "./media/characters/rifter-yrmori/back.svg",
  22243. extra: 1190 / 1145,
  22244. bottom: 0.001
  22245. }
  22246. },
  22247. wings: {
  22248. height: math.unit(7.75, "feet"),
  22249. weight: math.unit(500, "lb"),
  22250. name: "Wings",
  22251. image: {
  22252. source: "./media/characters/rifter-yrmori/wings.svg",
  22253. extra: 1357 / 1285
  22254. }
  22255. },
  22256. maw: {
  22257. height: math.unit(0.8, "feet"),
  22258. name: "Maw",
  22259. image: {
  22260. source: "./media/characters/rifter-yrmori/maw.svg"
  22261. }
  22262. },
  22263. mawfront: {
  22264. height: math.unit(1.45, "feet"),
  22265. name: "Maw (Front)",
  22266. image: {
  22267. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(8, "feet"),
  22275. default: true
  22276. },
  22277. {
  22278. name: "Macro",
  22279. height: math.unit(42, "meters")
  22280. },
  22281. ]
  22282. ))
  22283. characterMakers.push(() => makeCharacter(
  22284. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22285. {
  22286. were: {
  22287. height: math.unit(25 + 6 / 12, "feet"),
  22288. weight: math.unit(10000, "lb"),
  22289. name: "Were",
  22290. image: {
  22291. source: "./media/characters/tahajin/were.svg",
  22292. extra: 801 / 770,
  22293. bottom: 0.042
  22294. }
  22295. },
  22296. aquatic: {
  22297. height: math.unit(6 + 4 / 12, "feet"),
  22298. weight: math.unit(160, "lb"),
  22299. name: "Aquatic",
  22300. image: {
  22301. source: "./media/characters/tahajin/aquatic.svg",
  22302. extra: 572 / 542,
  22303. bottom: 0.04
  22304. }
  22305. },
  22306. chow: {
  22307. height: math.unit(8 + 11 / 12, "feet"),
  22308. weight: math.unit(450, "lb"),
  22309. name: "Chow",
  22310. image: {
  22311. source: "./media/characters/tahajin/chow.svg",
  22312. extra: 660 / 640,
  22313. bottom: 0.015
  22314. }
  22315. },
  22316. demiNaga: {
  22317. height: math.unit(6 + 8 / 12, "feet"),
  22318. weight: math.unit(300, "lb"),
  22319. name: "Demi Naga",
  22320. image: {
  22321. source: "./media/characters/tahajin/demi-naga.svg",
  22322. extra: 643 / 615,
  22323. bottom: 0.1
  22324. }
  22325. },
  22326. data: {
  22327. height: math.unit(5, "inches"),
  22328. weight: math.unit(0.1, "lb"),
  22329. name: "Data",
  22330. image: {
  22331. source: "./media/characters/tahajin/data.svg"
  22332. }
  22333. },
  22334. fluu: {
  22335. height: math.unit(5 + 7 / 12, "feet"),
  22336. weight: math.unit(140, "lb"),
  22337. name: "Fluu",
  22338. image: {
  22339. source: "./media/characters/tahajin/fluu.svg",
  22340. extra: 628 / 592,
  22341. bottom: 0.02
  22342. }
  22343. },
  22344. starWarrior: {
  22345. height: math.unit(4 + 5 / 12, "feet"),
  22346. weight: math.unit(50, "lb"),
  22347. name: "Star Warrior",
  22348. image: {
  22349. source: "./media/characters/tahajin/star-warrior.svg"
  22350. }
  22351. },
  22352. },
  22353. [
  22354. {
  22355. name: "Normal",
  22356. height: math.unit(25 + 6 / 12, "feet"),
  22357. default: true
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22363. {
  22364. front: {
  22365. height: math.unit(8, "feet"),
  22366. weight: math.unit(350, "lb"),
  22367. name: "Front",
  22368. image: {
  22369. source: "./media/characters/gabira/front.svg",
  22370. extra: 608 / 580,
  22371. bottom: 0.03
  22372. }
  22373. },
  22374. back: {
  22375. height: math.unit(8, "feet"),
  22376. weight: math.unit(350, "lb"),
  22377. name: "Back",
  22378. image: {
  22379. source: "./media/characters/gabira/back.svg",
  22380. extra: 608 / 580,
  22381. bottom: 0.03
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Normal",
  22388. height: math.unit(8, "feet"),
  22389. default: true
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22395. {
  22396. front: {
  22397. height: math.unit(5 + 3 / 12, "feet"),
  22398. weight: math.unit(137, "lb"),
  22399. name: "Front",
  22400. image: {
  22401. source: "./media/characters/sasha-katraine/front.svg",
  22402. extra: 1745/1694,
  22403. bottom: 37/1782
  22404. }
  22405. },
  22406. back: {
  22407. height: math.unit(5 + 3 / 12, "feet"),
  22408. weight: math.unit(137, "lb"),
  22409. name: "Back",
  22410. image: {
  22411. source: "./media/characters/sasha-katraine/back.svg",
  22412. extra: 1776/1699,
  22413. bottom: 26/1802
  22414. }
  22415. },
  22416. },
  22417. [
  22418. {
  22419. name: "Micro",
  22420. height: math.unit(5, "inches")
  22421. },
  22422. {
  22423. name: "Normal",
  22424. height: math.unit(5 + 3 / 12, "feet"),
  22425. default: true
  22426. },
  22427. ]
  22428. ))
  22429. characterMakers.push(() => makeCharacter(
  22430. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22431. {
  22432. side: {
  22433. height: math.unit(4, "inches"),
  22434. weight: math.unit(200, "grams"),
  22435. name: "Side",
  22436. image: {
  22437. source: "./media/characters/der/side.svg",
  22438. extra: 719 / 400,
  22439. bottom: 30.6 / 749.9187
  22440. }
  22441. },
  22442. },
  22443. [
  22444. {
  22445. name: "Micro",
  22446. height: math.unit(4, "inches"),
  22447. default: true
  22448. },
  22449. ]
  22450. ))
  22451. characterMakers.push(() => makeCharacter(
  22452. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22453. {
  22454. side: {
  22455. height: math.unit(30, "meters"),
  22456. weight: math.unit(700, "tonnes"),
  22457. name: "Side",
  22458. image: {
  22459. source: "./media/characters/fixerdragon/side.svg",
  22460. extra: (1293.0514 - 116.03) / 1106.86,
  22461. bottom: 116.03 / 1293.0514
  22462. }
  22463. },
  22464. },
  22465. [
  22466. {
  22467. name: "Planck",
  22468. height: math.unit(1.6e-35, "meters")
  22469. },
  22470. {
  22471. name: "Micro",
  22472. height: math.unit(0.4, "meters")
  22473. },
  22474. {
  22475. name: "Normal",
  22476. height: math.unit(30, "meters"),
  22477. default: true
  22478. },
  22479. {
  22480. name: "Megamacro",
  22481. height: math.unit(1.2, "megameters")
  22482. },
  22483. {
  22484. name: "Teramacro",
  22485. height: math.unit(130, "terameters")
  22486. },
  22487. {
  22488. name: "Yottamacro",
  22489. height: math.unit(6200, "yottameters")
  22490. },
  22491. ]
  22492. ));
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22495. {
  22496. front: {
  22497. height: math.unit(8, "feet"),
  22498. weight: math.unit(250, "lb"),
  22499. name: "Front",
  22500. image: {
  22501. source: "./media/characters/kite/front.svg",
  22502. extra: 2796 / 2659,
  22503. bottom: 0.002
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(8, "feet"),
  22511. default: true
  22512. },
  22513. {
  22514. name: "Macro",
  22515. height: math.unit(360, "feet")
  22516. },
  22517. {
  22518. name: "Megamacro",
  22519. height: math.unit(1500, "feet")
  22520. },
  22521. ]
  22522. ))
  22523. characterMakers.push(() => makeCharacter(
  22524. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22525. {
  22526. front: {
  22527. height: math.unit(5 + 11/12, "feet"),
  22528. weight: math.unit(170, "lb"),
  22529. name: "Front",
  22530. image: {
  22531. source: "./media/characters/poojawa-vynar/front.svg",
  22532. extra: 1735/1585,
  22533. bottom: 96/1831
  22534. }
  22535. },
  22536. back: {
  22537. height: math.unit(5 + 11/12, "feet"),
  22538. weight: math.unit(170, "lb"),
  22539. name: "Back",
  22540. image: {
  22541. source: "./media/characters/poojawa-vynar/back.svg",
  22542. extra: 1749/1607,
  22543. bottom: 28/1777
  22544. }
  22545. },
  22546. male: {
  22547. height: math.unit(5 + 11/12, "feet"),
  22548. weight: math.unit(170, "lb"),
  22549. name: "Male",
  22550. image: {
  22551. source: "./media/characters/poojawa-vynar/male.svg",
  22552. extra: 1855/1713,
  22553. bottom: 63/1918
  22554. }
  22555. },
  22556. taur: {
  22557. height: math.unit(5 + 11/12, "feet"),
  22558. weight: math.unit(170, "lb"),
  22559. name: "Taur",
  22560. image: {
  22561. source: "./media/characters/poojawa-vynar/taur.svg",
  22562. extra: 1151/1059,
  22563. bottom: 356/1507
  22564. }
  22565. },
  22566. frontDressed: {
  22567. height: math.unit(5 + 11/12, "feet"),
  22568. weight: math.unit(170, "lb"),
  22569. name: "Front (Dressed)",
  22570. image: {
  22571. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22572. extra: 1735/1585,
  22573. bottom: 96/1831
  22574. }
  22575. },
  22576. backDressed: {
  22577. height: math.unit(5 + 11/12, "feet"),
  22578. weight: math.unit(170, "lb"),
  22579. name: "Back (Dressed)",
  22580. image: {
  22581. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22582. extra: 1749/1607,
  22583. bottom: 28/1777
  22584. }
  22585. },
  22586. maleDressed: {
  22587. height: math.unit(5 + 11/12, "feet"),
  22588. weight: math.unit(170, "lb"),
  22589. name: "Male (Dressed)",
  22590. image: {
  22591. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22592. extra: 1855/1713,
  22593. bottom: 63/1918
  22594. }
  22595. },
  22596. taurDressed: {
  22597. height: math.unit(5 + 11/12, "feet"),
  22598. weight: math.unit(170, "lb"),
  22599. name: "Taur (Dressed)",
  22600. image: {
  22601. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22602. extra: 1151/1059,
  22603. bottom: 356/1507
  22604. }
  22605. },
  22606. maw: {
  22607. height: math.unit(1.46, "feet"),
  22608. name: "Maw",
  22609. image: {
  22610. source: "./media/characters/poojawa-vynar/maw.svg"
  22611. }
  22612. },
  22613. head: {
  22614. height: math.unit(2.34, "feet"),
  22615. name: "Head",
  22616. image: {
  22617. source: "./media/characters/poojawa-vynar/head.svg"
  22618. }
  22619. },
  22620. paw: {
  22621. height: math.unit(1.61, "feet"),
  22622. name: "Paw",
  22623. image: {
  22624. source: "./media/characters/poojawa-vynar/paw.svg"
  22625. }
  22626. },
  22627. pawToering: {
  22628. height: math.unit(1.72, "feet"),
  22629. name: "Paw (Toering)",
  22630. image: {
  22631. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22632. }
  22633. },
  22634. toering: {
  22635. height: math.unit(2.9, "inches"),
  22636. name: "Toering",
  22637. image: {
  22638. source: "./media/characters/poojawa-vynar/toering.svg"
  22639. }
  22640. },
  22641. shaft: {
  22642. height: math.unit(0.625, "feet"),
  22643. name: "Shaft",
  22644. image: {
  22645. source: "./media/characters/poojawa-vynar/shaft.svg"
  22646. }
  22647. },
  22648. spade: {
  22649. height: math.unit(0.42, "feet"),
  22650. name: "Spade",
  22651. image: {
  22652. source: "./media/characters/poojawa-vynar/spade.svg"
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Shortstack",
  22659. height: math.unit(4, "feet")
  22660. },
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(5 + 11 / 12, "feet"),
  22664. default: true
  22665. },
  22666. {
  22667. name: "Tauric",
  22668. height: math.unit(4, "meters")
  22669. },
  22670. ]
  22671. ))
  22672. characterMakers.push(() => makeCharacter(
  22673. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22674. {
  22675. front: {
  22676. height: math.unit(293, "meters"),
  22677. weight: math.unit(70400, "tons"),
  22678. name: "Front",
  22679. image: {
  22680. source: "./media/characters/violette/front.svg",
  22681. extra: 1227 / 1180,
  22682. bottom: 0.005
  22683. }
  22684. },
  22685. back: {
  22686. height: math.unit(293, "meters"),
  22687. weight: math.unit(70400, "tons"),
  22688. name: "Back",
  22689. image: {
  22690. source: "./media/characters/violette/back.svg",
  22691. extra: 1227 / 1180,
  22692. bottom: 0.005
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Macro",
  22699. height: math.unit(293, "meters"),
  22700. default: true
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22706. {
  22707. front: {
  22708. height: math.unit(1050, "feet"),
  22709. weight: math.unit(200000, "tons"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/alessandra/front.svg",
  22713. extra: 960 / 912,
  22714. bottom: 0.06
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Macro",
  22721. height: math.unit(1050, "feet")
  22722. },
  22723. {
  22724. name: "Macro+",
  22725. height: math.unit(900, "meters"),
  22726. default: true
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22732. {
  22733. front: {
  22734. height: math.unit(5, "feet"),
  22735. weight: math.unit(187, "lb"),
  22736. name: "Front",
  22737. image: {
  22738. source: "./media/characters/person/front.svg",
  22739. extra: 3087 / 2945,
  22740. bottom: 91 / 3181
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Micro",
  22747. height: math.unit(3, "inches")
  22748. },
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(5, "feet"),
  22752. default: true
  22753. },
  22754. {
  22755. name: "Macro",
  22756. height: math.unit(90, "feet")
  22757. },
  22758. {
  22759. name: "Max Size",
  22760. height: math.unit(280, "feet")
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(4.5, "meters"),
  22769. weight: math.unit(3200, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/ty/front.svg",
  22773. extra: 1038 / 960,
  22774. bottom: 31.156 / 1068
  22775. }
  22776. },
  22777. back: {
  22778. height: math.unit(4.5, "meters"),
  22779. weight: math.unit(3200, "lb"),
  22780. name: "Back",
  22781. image: {
  22782. source: "./media/characters/ty/back.svg",
  22783. extra: 1044 / 966,
  22784. bottom: 7.48 / 1049
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Normal",
  22791. height: math.unit(4.5, "meters"),
  22792. default: true
  22793. },
  22794. ]
  22795. ))
  22796. characterMakers.push(() => makeCharacter(
  22797. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22798. {
  22799. front: {
  22800. height: math.unit(5 + 4 / 12, "feet"),
  22801. weight: math.unit(115, "lb"),
  22802. name: "Front",
  22803. image: {
  22804. source: "./media/characters/rocky/front.svg",
  22805. extra: 1012 / 975,
  22806. bottom: 54 / 1066
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Normal",
  22813. height: math.unit(5 + 4 / 12, "feet"),
  22814. default: true
  22815. },
  22816. ]
  22817. ))
  22818. characterMakers.push(() => makeCharacter(
  22819. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22820. {
  22821. upright: {
  22822. height: math.unit(6, "meters"),
  22823. weight: math.unit(4000, "kg"),
  22824. name: "Upright",
  22825. image: {
  22826. source: "./media/characters/ruin/upright.svg",
  22827. extra: 668 / 661,
  22828. bottom: 42 / 799.8396
  22829. }
  22830. },
  22831. },
  22832. [
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(6, "meters"),
  22836. default: true
  22837. },
  22838. ]
  22839. ))
  22840. characterMakers.push(() => makeCharacter(
  22841. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22842. {
  22843. front: {
  22844. height: math.unit(5, "feet"),
  22845. weight: math.unit(106, "lb"),
  22846. name: "Front",
  22847. image: {
  22848. source: "./media/characters/robin/front.svg",
  22849. extra: 862 / 799,
  22850. bottom: 42.4 / 914.8856
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Normal",
  22857. height: math.unit(5, "feet"),
  22858. default: true
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22864. {
  22865. side: {
  22866. height: math.unit(3, "feet"),
  22867. weight: math.unit(225, "lb"),
  22868. name: "Side",
  22869. image: {
  22870. source: "./media/characters/saian/side.svg",
  22871. extra: 566 / 356,
  22872. bottom: 79.7 / 643
  22873. }
  22874. },
  22875. maw: {
  22876. height: math.unit(2.85, "feet"),
  22877. name: "Maw",
  22878. image: {
  22879. source: "./media/characters/saian/maw.svg"
  22880. }
  22881. },
  22882. },
  22883. [
  22884. {
  22885. name: "Normal",
  22886. height: math.unit(3, "feet"),
  22887. default: true
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22893. {
  22894. side: {
  22895. height: math.unit(8, "feet"),
  22896. weight: math.unit(300, "lb"),
  22897. name: "Side",
  22898. image: {
  22899. source: "./media/characters/equus-silvermane/side.svg",
  22900. extra: 2176 / 2050,
  22901. bottom: 65.7 / 2245
  22902. }
  22903. },
  22904. front: {
  22905. height: math.unit(8, "feet"),
  22906. weight: math.unit(300, "lb"),
  22907. name: "Front",
  22908. image: {
  22909. source: "./media/characters/equus-silvermane/front.svg",
  22910. extra: 4633 / 4400,
  22911. bottom: 71.3 / 4706.915
  22912. }
  22913. },
  22914. sideStepping: {
  22915. height: math.unit(8, "feet"),
  22916. weight: math.unit(300, "lb"),
  22917. name: "Side (Stepping)",
  22918. image: {
  22919. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22920. extra: 1968 / 1860,
  22921. bottom: 16.4 / 1989
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Normal",
  22928. height: math.unit(8, "feet")
  22929. },
  22930. {
  22931. name: "Minimacro",
  22932. height: math.unit(75, "feet"),
  22933. default: true
  22934. },
  22935. {
  22936. name: "Macro",
  22937. height: math.unit(150, "feet")
  22938. },
  22939. {
  22940. name: "Macro+",
  22941. height: math.unit(1000, "feet")
  22942. },
  22943. {
  22944. name: "Megamacro",
  22945. height: math.unit(1, "mile")
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22951. {
  22952. side: {
  22953. height: math.unit(20, "feet"),
  22954. weight: math.unit(30000, "kg"),
  22955. name: "Side",
  22956. image: {
  22957. source: "./media/characters/windar/side.svg",
  22958. extra: 1491 / 1248,
  22959. bottom: 82.56 / 1568
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(20, "feet"),
  22967. default: true
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22973. {
  22974. side: {
  22975. height: math.unit(15.66, "feet"),
  22976. weight: math.unit(150, "lb"),
  22977. name: "Side",
  22978. image: {
  22979. source: "./media/characters/melody/side.svg",
  22980. extra: 1097 / 944,
  22981. bottom: 11.8 / 1109
  22982. }
  22983. },
  22984. sideOutfit: {
  22985. height: math.unit(15.66, "feet"),
  22986. weight: math.unit(150, "lb"),
  22987. name: "Side (Outfit)",
  22988. image: {
  22989. source: "./media/characters/melody/side-outfit.svg",
  22990. extra: 1097 / 944,
  22991. bottom: 11.8 / 1109
  22992. }
  22993. },
  22994. },
  22995. [
  22996. {
  22997. name: "Normal",
  22998. height: math.unit(15.66, "feet"),
  22999. default: true
  23000. },
  23001. ]
  23002. ))
  23003. characterMakers.push(() => makeCharacter(
  23004. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23005. {
  23006. armoredFront: {
  23007. height: math.unit(8, "feet"),
  23008. weight: math.unit(325, "lb"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/windera/armored-front.svg",
  23012. extra: 1830/1598,
  23013. bottom: 151/1981
  23014. },
  23015. form: "armored",
  23016. default: true
  23017. },
  23018. macroFront: {
  23019. height: math.unit(70, "feet"),
  23020. weight: math.unit(315453, "lb"),
  23021. name: "Front",
  23022. image: {
  23023. source: "./media/characters/windera/macro-front.svg",
  23024. extra: 963/883,
  23025. bottom: 23/986
  23026. },
  23027. form: "macro",
  23028. default: true
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Normal",
  23034. height: math.unit(8, "feet"),
  23035. default: true,
  23036. form: "armored"
  23037. },
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(70, "feet"),
  23041. default: true,
  23042. form: "macro"
  23043. },
  23044. ],
  23045. {
  23046. "armored": {
  23047. name: "Armored",
  23048. default: true
  23049. },
  23050. "macro": {
  23051. name: "Macro",
  23052. },
  23053. }
  23054. ))
  23055. characterMakers.push(() => makeCharacter(
  23056. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23057. {
  23058. front: {
  23059. height: math.unit(28.75, "feet"),
  23060. weight: math.unit(2000, "kg"),
  23061. name: "Front",
  23062. image: {
  23063. source: "./media/characters/sonear/front.svg",
  23064. extra: 1041.1 / 964.9,
  23065. bottom: 53.7 / 1096.6
  23066. }
  23067. },
  23068. },
  23069. [
  23070. {
  23071. name: "Normal",
  23072. height: math.unit(28.75, "feet"),
  23073. default: true
  23074. },
  23075. ]
  23076. ))
  23077. characterMakers.push(() => makeCharacter(
  23078. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23079. {
  23080. side: {
  23081. height: math.unit(25.5, "feet"),
  23082. weight: math.unit(23000, "kg"),
  23083. name: "Side",
  23084. image: {
  23085. source: "./media/characters/kanara/side.svg"
  23086. }
  23087. },
  23088. },
  23089. [
  23090. {
  23091. name: "Normal",
  23092. height: math.unit(25.5, "feet"),
  23093. default: true
  23094. },
  23095. ]
  23096. ))
  23097. characterMakers.push(() => makeCharacter(
  23098. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23099. {
  23100. side: {
  23101. height: math.unit(10, "feet"),
  23102. weight: math.unit(1000, "kg"),
  23103. name: "Side",
  23104. image: {
  23105. source: "./media/characters/ereus/side.svg",
  23106. extra: 1157 / 959,
  23107. bottom: 153 / 1312.5
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Normal",
  23114. height: math.unit(10, "feet"),
  23115. default: true
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23121. {
  23122. side: {
  23123. height: math.unit(4.5, "feet"),
  23124. weight: math.unit(500, "lb"),
  23125. name: "Side",
  23126. image: {
  23127. source: "./media/characters/e-ter/side.svg",
  23128. extra: 1550 / 1248,
  23129. bottom: 146 / 1694
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Normal",
  23136. height: math.unit(4.5, "feet"),
  23137. default: true
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23143. {
  23144. side: {
  23145. height: math.unit(9.7, "feet"),
  23146. weight: math.unit(4000, "kg"),
  23147. name: "Side",
  23148. image: {
  23149. source: "./media/characters/yamie/side.svg"
  23150. }
  23151. },
  23152. },
  23153. [
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(9.7, "feet"),
  23157. default: true
  23158. },
  23159. ]
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23163. {
  23164. front: {
  23165. height: math.unit(50, "feet"),
  23166. weight: math.unit(50000, "kg"),
  23167. name: "Front",
  23168. image: {
  23169. source: "./media/characters/anders/front.svg",
  23170. extra: 570 / 539,
  23171. bottom: 14.7 / 586.7
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Large",
  23178. height: math.unit(50, "feet")
  23179. },
  23180. {
  23181. name: "Macro",
  23182. height: math.unit(2000, "feet"),
  23183. default: true
  23184. },
  23185. {
  23186. name: "Megamacro",
  23187. height: math.unit(12, "miles")
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23193. {
  23194. front: {
  23195. height: math.unit(7 + 2 / 12, "feet"),
  23196. weight: math.unit(300, "lb"),
  23197. name: "Front",
  23198. image: {
  23199. source: "./media/characters/reban/front.svg",
  23200. extra: 1287/1212,
  23201. bottom: 148/1435
  23202. }
  23203. },
  23204. head: {
  23205. height: math.unit(1.95, "feet"),
  23206. name: "Head",
  23207. image: {
  23208. source: "./media/characters/reban/head.svg"
  23209. }
  23210. },
  23211. maw: {
  23212. height: math.unit(0.95, "feet"),
  23213. name: "Maw",
  23214. image: {
  23215. source: "./media/characters/reban/maw.svg"
  23216. }
  23217. },
  23218. foot: {
  23219. height: math.unit(1.65, "feet"),
  23220. name: "Foot",
  23221. image: {
  23222. source: "./media/characters/reban/foot.svg"
  23223. }
  23224. },
  23225. dick: {
  23226. height: math.unit(7 / 5, "feet"),
  23227. name: "Dick",
  23228. image: {
  23229. source: "./media/characters/reban/dick.svg"
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Natural Height",
  23236. height: math.unit(7 + 2 / 12, "feet")
  23237. },
  23238. {
  23239. name: "Macro",
  23240. height: math.unit(500, "feet"),
  23241. default: true
  23242. },
  23243. {
  23244. name: "Canon Height",
  23245. height: math.unit(50, "AU")
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23251. {
  23252. front: {
  23253. height: math.unit(6, "feet"),
  23254. weight: math.unit(150, "lb"),
  23255. name: "Front",
  23256. image: {
  23257. source: "./media/characters/terrance-keayes/front.svg",
  23258. extra: 1.005,
  23259. bottom: 151 / 1615
  23260. }
  23261. },
  23262. side: {
  23263. height: math.unit(6, "feet"),
  23264. weight: math.unit(150, "lb"),
  23265. name: "Side",
  23266. image: {
  23267. source: "./media/characters/terrance-keayes/side.svg",
  23268. extra: 1.005,
  23269. bottom: 129.4 / 1544
  23270. }
  23271. },
  23272. back: {
  23273. height: math.unit(6, "feet"),
  23274. weight: math.unit(150, "lb"),
  23275. name: "Back",
  23276. image: {
  23277. source: "./media/characters/terrance-keayes/back.svg",
  23278. extra: 1.005,
  23279. bottom: 58.4 / 1557.3
  23280. }
  23281. },
  23282. dick: {
  23283. height: math.unit(6 * 0.208, "feet"),
  23284. name: "Dick",
  23285. image: {
  23286. source: "./media/characters/terrance-keayes/dick.svg"
  23287. }
  23288. },
  23289. },
  23290. [
  23291. {
  23292. name: "Canon Height",
  23293. height: math.unit(35, "miles"),
  23294. default: true
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23300. {
  23301. front: {
  23302. height: math.unit(6, "feet"),
  23303. weight: math.unit(150, "lb"),
  23304. name: "Front",
  23305. image: {
  23306. source: "./media/characters/ofelia/front.svg",
  23307. extra: 1130/1117,
  23308. bottom: 91/1221
  23309. }
  23310. },
  23311. back: {
  23312. height: math.unit(6, "feet"),
  23313. weight: math.unit(150, "lb"),
  23314. name: "Back",
  23315. image: {
  23316. source: "./media/characters/ofelia/back.svg",
  23317. extra: 1172/1159,
  23318. bottom: 28/1200
  23319. }
  23320. },
  23321. maw: {
  23322. height: math.unit(1, "feet"),
  23323. name: "Maw",
  23324. image: {
  23325. source: "./media/characters/ofelia/maw.svg"
  23326. }
  23327. },
  23328. foot: {
  23329. height: math.unit(1.949, "feet"),
  23330. name: "Foot",
  23331. image: {
  23332. source: "./media/characters/ofelia/foot.svg"
  23333. }
  23334. },
  23335. },
  23336. [
  23337. {
  23338. name: "Canon Height",
  23339. height: math.unit(2000, "miles"),
  23340. default: true
  23341. },
  23342. ]
  23343. ))
  23344. characterMakers.push(() => makeCharacter(
  23345. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23346. {
  23347. front: {
  23348. height: math.unit(6, "feet"),
  23349. weight: math.unit(150, "lb"),
  23350. name: "Front",
  23351. image: {
  23352. source: "./media/characters/samuel/front.svg",
  23353. extra: 265 / 258,
  23354. bottom: 2 / 266.1566
  23355. }
  23356. },
  23357. },
  23358. [
  23359. {
  23360. name: "Macro",
  23361. height: math.unit(100, "feet"),
  23362. default: true
  23363. },
  23364. {
  23365. name: "Full Size",
  23366. height: math.unit(1000, "miles")
  23367. },
  23368. ]
  23369. ))
  23370. characterMakers.push(() => makeCharacter(
  23371. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23372. {
  23373. front: {
  23374. height: math.unit(6, "feet"),
  23375. weight: math.unit(300, "lb"),
  23376. name: "Front",
  23377. image: {
  23378. source: "./media/characters/beishir-kiel/front.svg",
  23379. extra: 569 / 547,
  23380. bottom: 41.9 / 609
  23381. }
  23382. },
  23383. maw: {
  23384. height: math.unit(6 * 0.202, "feet"),
  23385. name: "Maw",
  23386. image: {
  23387. source: "./media/characters/beishir-kiel/maw.svg"
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(300, "feet"),
  23395. default: true
  23396. },
  23397. ]
  23398. ))
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23401. {
  23402. front: {
  23403. height: math.unit(5 + 7/12, "feet"),
  23404. weight: math.unit(120, "lb"),
  23405. name: "Front",
  23406. image: {
  23407. source: "./media/characters/logan-grey/front.svg",
  23408. extra: 1836/1738,
  23409. bottom: 108/1944
  23410. }
  23411. },
  23412. back: {
  23413. height: math.unit(5 + 7/12, "feet"),
  23414. weight: math.unit(120, "lb"),
  23415. name: "Back",
  23416. image: {
  23417. source: "./media/characters/logan-grey/back.svg",
  23418. extra: 1880/1794,
  23419. bottom: 24/1904
  23420. }
  23421. },
  23422. frontSfw: {
  23423. height: math.unit(5 + 7/12, "feet"),
  23424. weight: math.unit(120, "lb"),
  23425. name: "Front (SFW)",
  23426. image: {
  23427. source: "./media/characters/logan-grey/front-sfw.svg",
  23428. extra: 1836/1738,
  23429. bottom: 108/1944
  23430. }
  23431. },
  23432. backSfw: {
  23433. height: math.unit(5 + 7/12, "feet"),
  23434. weight: math.unit(120, "lb"),
  23435. name: "Back (SFW)",
  23436. image: {
  23437. source: "./media/characters/logan-grey/back-sfw.svg",
  23438. extra: 1880/1794,
  23439. bottom: 24/1904
  23440. }
  23441. },
  23442. hands: {
  23443. height: math.unit(0.84, "feet"),
  23444. name: "Hands",
  23445. image: {
  23446. source: "./media/characters/logan-grey/hands.svg"
  23447. }
  23448. },
  23449. paws: {
  23450. height: math.unit(0.72, "feet"),
  23451. name: "Paws",
  23452. image: {
  23453. source: "./media/characters/logan-grey/paws.svg"
  23454. }
  23455. },
  23456. cock: {
  23457. height: math.unit(1.45, "feet"),
  23458. name: "Cock",
  23459. image: {
  23460. source: "./media/characters/logan-grey/cock.svg"
  23461. }
  23462. },
  23463. cockAlt: {
  23464. height: math.unit(1.437, "feet"),
  23465. name: "Cock (alt)",
  23466. image: {
  23467. source: "./media/characters/logan-grey/cock-alt.svg"
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Normal",
  23474. height: math.unit(5 + 8 / 12, "feet")
  23475. },
  23476. {
  23477. name: "The 500 Foot Femboy",
  23478. height: math.unit(500, "feet"),
  23479. default: true
  23480. },
  23481. {
  23482. name: "Megmacro",
  23483. height: math.unit(20, "miles")
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23489. {
  23490. front: {
  23491. height: math.unit(8 + 2 / 12, "feet"),
  23492. weight: math.unit(275, "lb"),
  23493. name: "Front",
  23494. image: {
  23495. source: "./media/characters/draganta/front.svg",
  23496. extra: 1177 / 1135,
  23497. bottom: 33.46 / 1212.1
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(8 + 6 / 12, "feet"),
  23505. default: true
  23506. },
  23507. {
  23508. name: "Macro",
  23509. height: math.unit(150, "feet")
  23510. },
  23511. {
  23512. name: "Megamacro",
  23513. height: math.unit(1000, "miles")
  23514. },
  23515. ]
  23516. ))
  23517. characterMakers.push(() => makeCharacter(
  23518. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23519. {
  23520. front: {
  23521. height: math.unit(1.72, "m"),
  23522. weight: math.unit(80, "lb"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/voski/front.svg",
  23526. extra: 2076.22 / 2022.4,
  23527. bottom: 102.7 / 2177.3866
  23528. }
  23529. },
  23530. frontFlaccid: {
  23531. height: math.unit(1.72, "m"),
  23532. weight: math.unit(80, "lb"),
  23533. name: "Front (Flaccid)",
  23534. image: {
  23535. source: "./media/characters/voski/front-flaccid.svg",
  23536. extra: 2076.22 / 2022.4,
  23537. bottom: 102.7 / 2177.3866
  23538. }
  23539. },
  23540. frontErect: {
  23541. height: math.unit(1.72, "m"),
  23542. weight: math.unit(80, "lb"),
  23543. name: "Front (Erect)",
  23544. image: {
  23545. source: "./media/characters/voski/front-erect.svg",
  23546. extra: 2076.22 / 2022.4,
  23547. bottom: 102.7 / 2177.3866
  23548. }
  23549. },
  23550. back: {
  23551. height: math.unit(1.72, "m"),
  23552. weight: math.unit(80, "lb"),
  23553. name: "Back",
  23554. image: {
  23555. source: "./media/characters/voski/back.svg",
  23556. extra: 2104 / 2051,
  23557. bottom: 10.45 / 2113.63
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(1.72, "m")
  23565. },
  23566. {
  23567. name: "Macro",
  23568. height: math.unit(55, "m"),
  23569. default: true
  23570. },
  23571. {
  23572. name: "Macro+",
  23573. height: math.unit(300, "m")
  23574. },
  23575. {
  23576. name: "Macro++",
  23577. height: math.unit(700, "m")
  23578. },
  23579. {
  23580. name: "Macro+++",
  23581. height: math.unit(4500, "m")
  23582. },
  23583. {
  23584. name: "Macro++++",
  23585. height: math.unit(45, "km")
  23586. },
  23587. {
  23588. name: "Macro+++++",
  23589. height: math.unit(1220, "km")
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23595. {
  23596. front: {
  23597. height: math.unit(2.3, "m"),
  23598. weight: math.unit(304, "kg"),
  23599. name: "Front",
  23600. image: {
  23601. source: "./media/characters/icowom-lee/front.svg",
  23602. extra: 985 / 955,
  23603. bottom: 25.4 / 1012
  23604. }
  23605. },
  23606. fronttentacles: {
  23607. height: math.unit(2.3, "m"),
  23608. weight: math.unit(304, "kg"),
  23609. name: "Front-tentacles",
  23610. image: {
  23611. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23612. extra: 985 / 955,
  23613. bottom: 25.4 / 1012
  23614. }
  23615. },
  23616. back: {
  23617. height: math.unit(2.3, "m"),
  23618. weight: math.unit(304, "kg"),
  23619. name: "Back",
  23620. image: {
  23621. source: "./media/characters/icowom-lee/back.svg",
  23622. extra: 975 / 954,
  23623. bottom: 9.5 / 985
  23624. }
  23625. },
  23626. backtentacles: {
  23627. height: math.unit(2.3, "m"),
  23628. weight: math.unit(304, "kg"),
  23629. name: "Back-tentacles",
  23630. image: {
  23631. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23632. extra: 975 / 954,
  23633. bottom: 9.5 / 985
  23634. }
  23635. },
  23636. frontDressed: {
  23637. height: math.unit(2.3, "m"),
  23638. weight: math.unit(304, "kg"),
  23639. name: "Front (Dressed)",
  23640. image: {
  23641. source: "./media/characters/icowom-lee/front-dressed.svg",
  23642. extra: 3076 / 2933,
  23643. bottom: 51.4 / 3125.1889
  23644. }
  23645. },
  23646. rump: {
  23647. height: math.unit(0.776, "meters"),
  23648. name: "Rump",
  23649. image: {
  23650. source: "./media/characters/icowom-lee/rump.svg"
  23651. }
  23652. },
  23653. genitals: {
  23654. height: math.unit(0.78, "meters"),
  23655. name: "Genitals",
  23656. image: {
  23657. source: "./media/characters/icowom-lee/genitals.svg"
  23658. }
  23659. },
  23660. },
  23661. [
  23662. {
  23663. name: "Normal",
  23664. height: math.unit(2.3, "meters"),
  23665. default: true
  23666. },
  23667. {
  23668. name: "Macro",
  23669. height: math.unit(94, "meters"),
  23670. default: true
  23671. },
  23672. ]
  23673. ))
  23674. characterMakers.push(() => makeCharacter(
  23675. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23676. {
  23677. front: {
  23678. height: math.unit(22, "meters"),
  23679. weight: math.unit(21000, "kg"),
  23680. name: "Front",
  23681. image: {
  23682. source: "./media/characters/shock-diamond/front.svg",
  23683. extra: 2204 / 2053,
  23684. bottom: 65 / 2239.47
  23685. }
  23686. },
  23687. frontNude: {
  23688. height: math.unit(22, "meters"),
  23689. weight: math.unit(21000, "kg"),
  23690. name: "Front (Nude)",
  23691. image: {
  23692. source: "./media/characters/shock-diamond/front-nude.svg",
  23693. extra: 2514 / 2285,
  23694. bottom: 13 / 2527.56
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(3, "meters")
  23702. },
  23703. {
  23704. name: "Macro",
  23705. height: math.unit(22, "meters"),
  23706. default: true
  23707. },
  23708. ]
  23709. ))
  23710. characterMakers.push(() => makeCharacter(
  23711. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23712. {
  23713. front: {
  23714. height: math.unit(5 + 4 / 12, "feet"),
  23715. weight: math.unit(120, "lb"),
  23716. name: "Front",
  23717. image: {
  23718. source: "./media/characters/rory/front.svg",
  23719. extra: 1318/1241,
  23720. bottom: 42/1360
  23721. }
  23722. },
  23723. back: {
  23724. height: math.unit(5 + 4 / 12, "feet"),
  23725. weight: math.unit(120, "lb"),
  23726. name: "Back",
  23727. image: {
  23728. source: "./media/characters/rory/back.svg",
  23729. extra: 1318/1241,
  23730. bottom: 42/1360
  23731. }
  23732. },
  23733. butt: {
  23734. height: math.unit(1.74, "feet"),
  23735. name: "Butt",
  23736. image: {
  23737. source: "./media/characters/rory/butt.svg"
  23738. }
  23739. },
  23740. dick: {
  23741. height: math.unit(1.02, "feet"),
  23742. name: "Dick",
  23743. image: {
  23744. source: "./media/characters/rory/dick.svg"
  23745. }
  23746. },
  23747. paws: {
  23748. height: math.unit(1, "feet"),
  23749. name: "Paws",
  23750. image: {
  23751. source: "./media/characters/rory/paws.svg"
  23752. }
  23753. },
  23754. frontAlt: {
  23755. height: math.unit(5 + 4 / 12, "feet"),
  23756. weight: math.unit(120, "lb"),
  23757. name: "Front (Alt)",
  23758. image: {
  23759. source: "./media/characters/rory/front-alt.svg",
  23760. extra: 589 / 556,
  23761. bottom: 45.7 / 635.76
  23762. }
  23763. },
  23764. frontAltNude: {
  23765. height: math.unit(5 + 4 / 12, "feet"),
  23766. weight: math.unit(120, "lb"),
  23767. name: "Front (Alt, Nude)",
  23768. image: {
  23769. source: "./media/characters/rory/front-alt-nude.svg",
  23770. extra: 589 / 556,
  23771. bottom: 45.7 / 635.76
  23772. }
  23773. },
  23774. side: {
  23775. height: math.unit(5 + 4 / 12, "feet"),
  23776. weight: math.unit(120, "lb"),
  23777. name: "Side",
  23778. image: {
  23779. source: "./media/characters/rory/side.svg",
  23780. extra: 597 / 564,
  23781. bottom: 55 / 653
  23782. }
  23783. },
  23784. backAlt: {
  23785. height: math.unit(5 + 4 / 12, "feet"),
  23786. weight: math.unit(120, "lb"),
  23787. name: "Back (Alt)",
  23788. image: {
  23789. source: "./media/characters/rory/back-alt.svg",
  23790. extra: 620 / 585,
  23791. bottom: 8.86 / 630.43
  23792. }
  23793. },
  23794. dickAlt: {
  23795. height: math.unit(0.86, "feet"),
  23796. name: "Dick (Alt)",
  23797. image: {
  23798. source: "./media/characters/rory/dick-alt.svg"
  23799. }
  23800. },
  23801. },
  23802. [
  23803. {
  23804. name: "Normal",
  23805. height: math.unit(5 + 4 / 12, "feet"),
  23806. default: true
  23807. },
  23808. {
  23809. name: "Macro",
  23810. height: math.unit(100, "feet")
  23811. },
  23812. {
  23813. name: "Macro+",
  23814. height: math.unit(140, "feet")
  23815. },
  23816. {
  23817. name: "Macro++",
  23818. height: math.unit(300, "feet")
  23819. },
  23820. ]
  23821. ))
  23822. characterMakers.push(() => makeCharacter(
  23823. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23824. {
  23825. front: {
  23826. height: math.unit(5 + 9 / 12, "feet"),
  23827. weight: math.unit(190, "lb"),
  23828. name: "Front",
  23829. image: {
  23830. source: "./media/characters/sprisk/front.svg",
  23831. extra: 1225 / 1180,
  23832. bottom: 42.7 / 1266.4
  23833. }
  23834. },
  23835. frontNsfw: {
  23836. height: math.unit(5 + 9 / 12, "feet"),
  23837. weight: math.unit(190, "lb"),
  23838. name: "Front (NSFW)",
  23839. image: {
  23840. source: "./media/characters/sprisk/front-nsfw.svg",
  23841. extra: 1225 / 1180,
  23842. bottom: 42.7 / 1266.4
  23843. }
  23844. },
  23845. back: {
  23846. height: math.unit(5 + 9 / 12, "feet"),
  23847. weight: math.unit(190, "lb"),
  23848. name: "Back",
  23849. image: {
  23850. source: "./media/characters/sprisk/back.svg",
  23851. extra: 1247 / 1200,
  23852. bottom: 5.6 / 1253.04
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Tiny",
  23859. height: math.unit(2, "inches")
  23860. },
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(5 + 9 / 12, "feet"),
  23864. default: true
  23865. },
  23866. {
  23867. name: "Mini Macro",
  23868. height: math.unit(18, "feet")
  23869. },
  23870. {
  23871. name: "Macro",
  23872. height: math.unit(100, "feet")
  23873. },
  23874. {
  23875. name: "MACRO",
  23876. height: math.unit(50, "miles")
  23877. },
  23878. {
  23879. name: "M A C R O",
  23880. height: math.unit(300, "miles")
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23886. {
  23887. side: {
  23888. height: math.unit(15.6, "meters"),
  23889. weight: math.unit(700000, "kg"),
  23890. name: "Side",
  23891. image: {
  23892. source: "./media/characters/bunsen/side.svg",
  23893. extra: 1644 / 358
  23894. }
  23895. },
  23896. foot: {
  23897. height: math.unit(1.611 * 1644 / 358, "meter"),
  23898. name: "Foot",
  23899. image: {
  23900. source: "./media/characters/bunsen/foot.svg"
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Small",
  23907. height: math.unit(10, "feet")
  23908. },
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(15.6, "meters"),
  23912. default: true
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23918. {
  23919. front: {
  23920. height: math.unit(4 + 11 / 12, "feet"),
  23921. weight: math.unit(140, "lb"),
  23922. name: "Front",
  23923. image: {
  23924. source: "./media/characters/sesh/front.svg",
  23925. extra: 3420 / 3231,
  23926. bottom: 72 / 3949.5
  23927. }
  23928. },
  23929. },
  23930. [
  23931. {
  23932. name: "Normal",
  23933. height: math.unit(4 + 11 / 12, "feet")
  23934. },
  23935. {
  23936. name: "Grown",
  23937. height: math.unit(15, "feet"),
  23938. default: true
  23939. },
  23940. {
  23941. name: "Macro",
  23942. height: math.unit(1500, "feet")
  23943. },
  23944. {
  23945. name: "Megamacro",
  23946. height: math.unit(30, "miles")
  23947. },
  23948. {
  23949. name: "Continental",
  23950. height: math.unit(3000, "miles")
  23951. },
  23952. {
  23953. name: "Gravity Mass",
  23954. height: math.unit(300000, "miles")
  23955. },
  23956. {
  23957. name: "Planet Buster",
  23958. height: math.unit(30000000, "miles")
  23959. },
  23960. {
  23961. name: "Big",
  23962. height: math.unit(3000000000, "miles")
  23963. },
  23964. ]
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23968. {
  23969. front: {
  23970. height: math.unit(9, "feet"),
  23971. weight: math.unit(350, "lb"),
  23972. name: "Front",
  23973. image: {
  23974. source: "./media/characters/pepper/front.svg",
  23975. extra: 1448 / 1312,
  23976. bottom: 9.4 / 1457.88
  23977. }
  23978. },
  23979. back: {
  23980. height: math.unit(9, "feet"),
  23981. weight: math.unit(350, "lb"),
  23982. name: "Back",
  23983. image: {
  23984. source: "./media/characters/pepper/back.svg",
  23985. extra: 1423 / 1300,
  23986. bottom: 4.6 / 1429
  23987. }
  23988. },
  23989. maw: {
  23990. height: math.unit(0.932, "feet"),
  23991. name: "Maw",
  23992. image: {
  23993. source: "./media/characters/pepper/maw.svg"
  23994. }
  23995. },
  23996. },
  23997. [
  23998. {
  23999. name: "Normal",
  24000. height: math.unit(9, "feet"),
  24001. default: true
  24002. },
  24003. ]
  24004. ))
  24005. characterMakers.push(() => makeCharacter(
  24006. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24007. {
  24008. front: {
  24009. height: math.unit(6, "feet"),
  24010. weight: math.unit(150, "lb"),
  24011. name: "Front",
  24012. image: {
  24013. source: "./media/characters/maelstrom/front.svg",
  24014. extra: 2100 / 1883,
  24015. bottom: 94 / 2196.7
  24016. }
  24017. },
  24018. },
  24019. [
  24020. {
  24021. name: "Less Kaiju",
  24022. height: math.unit(200, "feet")
  24023. },
  24024. {
  24025. name: "Kaiju",
  24026. height: math.unit(400, "feet"),
  24027. default: true
  24028. },
  24029. {
  24030. name: "Kaiju-er",
  24031. height: math.unit(600, "feet")
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24037. {
  24038. front: {
  24039. height: math.unit(6 + 5 / 12, "feet"),
  24040. weight: math.unit(180, "lb"),
  24041. name: "Front",
  24042. image: {
  24043. source: "./media/characters/lexir/front.svg",
  24044. extra: 180 / 172,
  24045. bottom: 12 / 192
  24046. }
  24047. },
  24048. back: {
  24049. height: math.unit(6 + 5 / 12, "feet"),
  24050. weight: math.unit(180, "lb"),
  24051. name: "Back",
  24052. image: {
  24053. source: "./media/characters/lexir/back.svg",
  24054. extra: 1273/1201,
  24055. bottom: 39/1312
  24056. }
  24057. },
  24058. },
  24059. [
  24060. {
  24061. name: "Very Smal",
  24062. height: math.unit(1, "nm")
  24063. },
  24064. {
  24065. name: "Normal",
  24066. height: math.unit(6 + 5 / 12, "feet"),
  24067. default: true
  24068. },
  24069. {
  24070. name: "Macro",
  24071. height: math.unit(1, "mile")
  24072. },
  24073. {
  24074. name: "Megamacro",
  24075. height: math.unit(50, "miles")
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(1.5, "meters"),
  24084. weight: math.unit(100, "lb"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/maksio/front.svg",
  24088. extra: 1549 / 1531,
  24089. bottom: 123.7 / 1674.5429
  24090. }
  24091. },
  24092. back: {
  24093. height: math.unit(1.5, "meters"),
  24094. weight: math.unit(100, "lb"),
  24095. name: "Back",
  24096. image: {
  24097. source: "./media/characters/maksio/back.svg",
  24098. extra: 1541 / 1509,
  24099. bottom: 97 / 1639
  24100. }
  24101. },
  24102. hand: {
  24103. height: math.unit(0.621, "feet"),
  24104. name: "Hand",
  24105. image: {
  24106. source: "./media/characters/maksio/hand.svg"
  24107. }
  24108. },
  24109. foot: {
  24110. height: math.unit(1.611, "feet"),
  24111. name: "Foot",
  24112. image: {
  24113. source: "./media/characters/maksio/foot.svg"
  24114. }
  24115. },
  24116. },
  24117. [
  24118. {
  24119. name: "Shrunken",
  24120. height: math.unit(10, "cm")
  24121. },
  24122. {
  24123. name: "Normal",
  24124. height: math.unit(150, "cm"),
  24125. default: true
  24126. },
  24127. ]
  24128. ))
  24129. characterMakers.push(() => makeCharacter(
  24130. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24131. {
  24132. front: {
  24133. height: math.unit(100, "feet"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/erza-bear/front.svg",
  24137. extra: 2449 / 2390,
  24138. bottom: 46 / 2494
  24139. }
  24140. },
  24141. back: {
  24142. height: math.unit(100, "feet"),
  24143. name: "Back",
  24144. image: {
  24145. source: "./media/characters/erza-bear/back.svg",
  24146. extra: 2489 / 2430,
  24147. bottom: 85.4 / 2480
  24148. }
  24149. },
  24150. tail: {
  24151. height: math.unit(42, "feet"),
  24152. name: "Tail",
  24153. image: {
  24154. source: "./media/characters/erza-bear/tail.svg"
  24155. }
  24156. },
  24157. tongue: {
  24158. height: math.unit(8, "feet"),
  24159. name: "Tongue",
  24160. image: {
  24161. source: "./media/characters/erza-bear/tongue.svg"
  24162. }
  24163. },
  24164. dick: {
  24165. height: math.unit(10.5, "feet"),
  24166. name: "Dick",
  24167. image: {
  24168. source: "./media/characters/erza-bear/dick.svg"
  24169. }
  24170. },
  24171. dickVertical: {
  24172. height: math.unit(16.9, "feet"),
  24173. name: "Dick (Vertical)",
  24174. image: {
  24175. source: "./media/characters/erza-bear/dick-vertical.svg"
  24176. }
  24177. },
  24178. },
  24179. [
  24180. {
  24181. name: "Macro",
  24182. height: math.unit(100, "feet"),
  24183. default: true
  24184. },
  24185. ]
  24186. ))
  24187. characterMakers.push(() => makeCharacter(
  24188. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24189. {
  24190. front: {
  24191. height: math.unit(172, "cm"),
  24192. weight: math.unit(73, "kg"),
  24193. name: "Front",
  24194. image: {
  24195. source: "./media/characters/violet-flor/front.svg",
  24196. extra: 1530 / 1442,
  24197. bottom: 61.9 / 1588.8
  24198. }
  24199. },
  24200. back: {
  24201. height: math.unit(180, "cm"),
  24202. weight: math.unit(73, "kg"),
  24203. name: "Back",
  24204. image: {
  24205. source: "./media/characters/violet-flor/back.svg",
  24206. extra: 1692 / 1630,
  24207. bottom: 20 / 1712
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Normal",
  24214. height: math.unit(172, "cm"),
  24215. default: true
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24221. {
  24222. front: {
  24223. height: math.unit(6, "feet"),
  24224. weight: math.unit(220, "lb"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/lynn-rhea/front.svg",
  24228. extra: 310 / 273
  24229. }
  24230. },
  24231. back: {
  24232. height: math.unit(6, "feet"),
  24233. weight: math.unit(220, "lb"),
  24234. name: "Back",
  24235. image: {
  24236. source: "./media/characters/lynn-rhea/back.svg",
  24237. extra: 310 / 273
  24238. }
  24239. },
  24240. dicks: {
  24241. height: math.unit(0.9, "feet"),
  24242. name: "Dicks",
  24243. image: {
  24244. source: "./media/characters/lynn-rhea/dicks.svg"
  24245. }
  24246. },
  24247. slit: {
  24248. height: math.unit(0.4, "feet"),
  24249. name: "Slit",
  24250. image: {
  24251. source: "./media/characters/lynn-rhea/slit.svg"
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Micro",
  24258. height: math.unit(1, "inch")
  24259. },
  24260. {
  24261. name: "Macro",
  24262. height: math.unit(60, "feet"),
  24263. default: true
  24264. },
  24265. {
  24266. name: "Megamacro",
  24267. height: math.unit(2, "miles")
  24268. },
  24269. {
  24270. name: "Gigamacro",
  24271. height: math.unit(3, "earths")
  24272. },
  24273. {
  24274. name: "Galactic",
  24275. height: math.unit(0.8, "galaxies")
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24281. {
  24282. front: {
  24283. height: math.unit(1600, "feet"),
  24284. weight: math.unit(85758785169, "kg"),
  24285. name: "Front",
  24286. image: {
  24287. source: "./media/characters/valathos/front.svg",
  24288. extra: 1451 / 1339
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Macro",
  24295. height: math.unit(1600, "feet"),
  24296. default: true
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24302. {
  24303. front: {
  24304. height: math.unit(7 + 5 / 12, "feet"),
  24305. weight: math.unit(300, "lb"),
  24306. name: "Front",
  24307. image: {
  24308. source: "./media/characters/azula/front.svg",
  24309. extra: 3208 / 2880,
  24310. bottom: 80.2 / 3277
  24311. }
  24312. },
  24313. back: {
  24314. height: math.unit(7 + 5 / 12, "feet"),
  24315. weight: math.unit(300, "lb"),
  24316. name: "Back",
  24317. image: {
  24318. source: "./media/characters/azula/back.svg",
  24319. extra: 3169 / 2822,
  24320. bottom: 150.6 / 3321
  24321. }
  24322. },
  24323. },
  24324. [
  24325. {
  24326. name: "Normal",
  24327. height: math.unit(7 + 5 / 12, "feet"),
  24328. default: true
  24329. },
  24330. {
  24331. name: "Big",
  24332. height: math.unit(20, "feet")
  24333. },
  24334. ]
  24335. ))
  24336. characterMakers.push(() => makeCharacter(
  24337. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24338. {
  24339. front: {
  24340. height: math.unit(5 + 1 / 12, "feet"),
  24341. weight: math.unit(110, "lb"),
  24342. name: "Front",
  24343. image: {
  24344. source: "./media/characters/rupert/front.svg",
  24345. extra: 1549 / 1495,
  24346. bottom: 54.2 / 1604.4
  24347. }
  24348. },
  24349. },
  24350. [
  24351. {
  24352. name: "Normal",
  24353. height: math.unit(5 + 1 / 12, "feet"),
  24354. default: true
  24355. },
  24356. ]
  24357. ))
  24358. characterMakers.push(() => makeCharacter(
  24359. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24360. {
  24361. front: {
  24362. height: math.unit(8 + 4 / 12, "feet"),
  24363. weight: math.unit(350, "lb"),
  24364. name: "Front",
  24365. image: {
  24366. source: "./media/characters/sheera-castellar/front.svg",
  24367. extra: 1957 / 1894,
  24368. bottom: 26.97 / 1975.017
  24369. }
  24370. },
  24371. side: {
  24372. height: math.unit(8 + 4 / 12, "feet"),
  24373. weight: math.unit(350, "lb"),
  24374. name: "Side",
  24375. image: {
  24376. source: "./media/characters/sheera-castellar/side.svg",
  24377. extra: 1957 / 1894
  24378. }
  24379. },
  24380. back: {
  24381. height: math.unit(8 + 4 / 12, "feet"),
  24382. weight: math.unit(350, "lb"),
  24383. name: "Back",
  24384. image: {
  24385. source: "./media/characters/sheera-castellar/back.svg",
  24386. extra: 1957 / 1894
  24387. }
  24388. },
  24389. angled: {
  24390. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24391. weight: math.unit(350, "lb"),
  24392. name: "Angled",
  24393. image: {
  24394. source: "./media/characters/sheera-castellar/angled.svg",
  24395. extra: 1807 / 1707,
  24396. bottom: 68 / 1875
  24397. }
  24398. },
  24399. genitals: {
  24400. height: math.unit(2.2, "feet"),
  24401. name: "Genitals",
  24402. image: {
  24403. source: "./media/characters/sheera-castellar/genitals.svg"
  24404. }
  24405. },
  24406. taur: {
  24407. height: math.unit(10 + 6/12, "feet"),
  24408. name: "Taur",
  24409. image: {
  24410. source: "./media/characters/sheera-castellar/taur.svg",
  24411. extra: 2017/1909,
  24412. bottom: 185/2202
  24413. }
  24414. },
  24415. },
  24416. [
  24417. {
  24418. name: "Normal",
  24419. height: math.unit(8 + 4 / 12, "feet")
  24420. },
  24421. {
  24422. name: "Macro",
  24423. height: math.unit(150, "feet"),
  24424. default: true
  24425. },
  24426. {
  24427. name: "Macro+",
  24428. height: math.unit(800, "feet")
  24429. },
  24430. ]
  24431. ))
  24432. characterMakers.push(() => makeCharacter(
  24433. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24434. {
  24435. front: {
  24436. height: math.unit(6, "feet"),
  24437. weight: math.unit(150, "lb"),
  24438. name: "Front",
  24439. image: {
  24440. source: "./media/characters/jaipur/front.svg",
  24441. extra: 3860 / 3731,
  24442. bottom: 287 / 4140
  24443. }
  24444. },
  24445. back: {
  24446. height: math.unit(6, "feet"),
  24447. weight: math.unit(150, "lb"),
  24448. name: "Back",
  24449. image: {
  24450. source: "./media/characters/jaipur/back.svg",
  24451. extra: 1637/1561,
  24452. bottom: 154/1791
  24453. }
  24454. },
  24455. },
  24456. [
  24457. {
  24458. name: "Normal",
  24459. height: math.unit(1.85, "meters"),
  24460. default: true
  24461. },
  24462. {
  24463. name: "Macro",
  24464. height: math.unit(150, "meters")
  24465. },
  24466. {
  24467. name: "Macro+",
  24468. height: math.unit(0.5, "miles")
  24469. },
  24470. {
  24471. name: "Macro++",
  24472. height: math.unit(2.5, "miles")
  24473. },
  24474. {
  24475. name: "Macro+++",
  24476. height: math.unit(12, "miles")
  24477. },
  24478. {
  24479. name: "Macro++++",
  24480. height: math.unit(120, "miles")
  24481. },
  24482. {
  24483. name: "Macro+++++",
  24484. height: math.unit(1200, "miles")
  24485. },
  24486. ]
  24487. ))
  24488. characterMakers.push(() => makeCharacter(
  24489. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24490. {
  24491. front: {
  24492. height: math.unit(6, "feet"),
  24493. weight: math.unit(150, "lb"),
  24494. name: "Front",
  24495. image: {
  24496. source: "./media/characters/sheila-wolf/front.svg",
  24497. extra: 1931 / 1808,
  24498. bottom: 29.5 / 1960
  24499. }
  24500. },
  24501. dick: {
  24502. height: math.unit(1.464, "feet"),
  24503. name: "Dick",
  24504. image: {
  24505. source: "./media/characters/sheila-wolf/dick.svg"
  24506. }
  24507. },
  24508. muzzle: {
  24509. height: math.unit(0.513, "feet"),
  24510. name: "Muzzle",
  24511. image: {
  24512. source: "./media/characters/sheila-wolf/muzzle.svg"
  24513. }
  24514. },
  24515. },
  24516. [
  24517. {
  24518. name: "Macro",
  24519. height: math.unit(70, "feet"),
  24520. default: true
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24526. {
  24527. front: {
  24528. height: math.unit(32, "meters"),
  24529. weight: math.unit(300000, "kg"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/almor/front.svg",
  24533. extra: 1408 / 1322,
  24534. bottom: 94.6 / 1506.5
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Macro",
  24541. height: math.unit(32, "meters"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24548. {
  24549. front: {
  24550. height: math.unit(7, "feet"),
  24551. weight: math.unit(200, "lb"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/silver/front.svg",
  24555. extra: 472.1 / 450.5,
  24556. bottom: 26.5 / 499.424
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Normal",
  24563. height: math.unit(7, "feet"),
  24564. default: true
  24565. },
  24566. {
  24567. name: "Macro",
  24568. height: math.unit(800, "feet")
  24569. },
  24570. {
  24571. name: "Megamacro",
  24572. height: math.unit(250, "miles")
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(6, "feet"),
  24581. weight: math.unit(150, "lb"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/pliskin/front.svg",
  24585. extra: 1469 / 1359,
  24586. bottom: 70 / 1540
  24587. }
  24588. },
  24589. },
  24590. [
  24591. {
  24592. name: "Micro",
  24593. height: math.unit(3, "inches")
  24594. },
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(5 + 11 / 12, "feet"),
  24598. default: true
  24599. },
  24600. {
  24601. name: "Macro",
  24602. height: math.unit(120, "feet")
  24603. },
  24604. ]
  24605. ))
  24606. characterMakers.push(() => makeCharacter(
  24607. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24608. {
  24609. front: {
  24610. height: math.unit(6, "feet"),
  24611. weight: math.unit(150, "lb"),
  24612. name: "Front",
  24613. image: {
  24614. source: "./media/characters/sammy/front.svg",
  24615. extra: 1193 / 1089,
  24616. bottom: 30.5 / 1226
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Macro",
  24623. height: math.unit(1700, "feet"),
  24624. default: true
  24625. },
  24626. {
  24627. name: "Examacro",
  24628. height: math.unit(2.5e9, "lightyears")
  24629. },
  24630. ]
  24631. ))
  24632. characterMakers.push(() => makeCharacter(
  24633. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24634. {
  24635. front: {
  24636. height: math.unit(21, "meters"),
  24637. weight: math.unit(12, "tonnes"),
  24638. name: "Front",
  24639. image: {
  24640. source: "./media/characters/kuru/front.svg",
  24641. extra: 4301 / 3785,
  24642. bottom: 371.3 / 4691
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Macro",
  24649. height: math.unit(21, "meters"),
  24650. default: true
  24651. },
  24652. ]
  24653. ))
  24654. characterMakers.push(() => makeCharacter(
  24655. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24656. {
  24657. front: {
  24658. height: math.unit(23, "meters"),
  24659. weight: math.unit(12.2, "tonnes"),
  24660. name: "Front",
  24661. image: {
  24662. source: "./media/characters/rakka/front.svg",
  24663. extra: 4670 / 4169,
  24664. bottom: 301 / 4968.7
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Macro",
  24671. height: math.unit(23, "meters"),
  24672. default: true
  24673. },
  24674. ]
  24675. ))
  24676. characterMakers.push(() => makeCharacter(
  24677. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24678. {
  24679. front: {
  24680. height: math.unit(6, "feet"),
  24681. weight: math.unit(150, "lb"),
  24682. name: "Front",
  24683. image: {
  24684. source: "./media/characters/rhys-feline/front.svg",
  24685. extra: 2488 / 2308,
  24686. bottom: 35.67 / 2519.19
  24687. }
  24688. },
  24689. },
  24690. [
  24691. {
  24692. name: "Really Small",
  24693. height: math.unit(1, "nm")
  24694. },
  24695. {
  24696. name: "Micro",
  24697. height: math.unit(4, "inches")
  24698. },
  24699. {
  24700. name: "Normal",
  24701. height: math.unit(4 + 10 / 12, "feet"),
  24702. default: true
  24703. },
  24704. {
  24705. name: "Macro",
  24706. height: math.unit(100, "feet")
  24707. },
  24708. {
  24709. name: "Megamacto",
  24710. height: math.unit(50, "miles")
  24711. },
  24712. ]
  24713. ))
  24714. characterMakers.push(() => makeCharacter(
  24715. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24716. {
  24717. side: {
  24718. height: math.unit(30, "feet"),
  24719. weight: math.unit(35000, "kg"),
  24720. name: "Side",
  24721. image: {
  24722. source: "./media/characters/alydar/side.svg",
  24723. extra: 234 / 222,
  24724. bottom: 6.5 / 241
  24725. }
  24726. },
  24727. front: {
  24728. height: math.unit(30, "feet"),
  24729. weight: math.unit(35000, "kg"),
  24730. name: "Front",
  24731. image: {
  24732. source: "./media/characters/alydar/front.svg",
  24733. extra: 223.37 / 210.2,
  24734. bottom: 22.3 / 246.76
  24735. }
  24736. },
  24737. top: {
  24738. height: math.unit(64.54, "feet"),
  24739. weight: math.unit(35000, "kg"),
  24740. name: "Top",
  24741. image: {
  24742. source: "./media/characters/alydar/top.svg"
  24743. }
  24744. },
  24745. anthro: {
  24746. height: math.unit(30, "feet"),
  24747. weight: math.unit(9000, "kg"),
  24748. name: "Anthro",
  24749. image: {
  24750. source: "./media/characters/alydar/anthro.svg",
  24751. extra: 432 / 421,
  24752. bottom: 7.18 / 440
  24753. }
  24754. },
  24755. maw: {
  24756. height: math.unit(11.693, "feet"),
  24757. name: "Maw",
  24758. image: {
  24759. source: "./media/characters/alydar/maw.svg"
  24760. }
  24761. },
  24762. head: {
  24763. height: math.unit(11.693, "feet"),
  24764. name: "Head",
  24765. image: {
  24766. source: "./media/characters/alydar/head.svg"
  24767. }
  24768. },
  24769. headAlt: {
  24770. height: math.unit(12.861, "feet"),
  24771. name: "Head (Alt)",
  24772. image: {
  24773. source: "./media/characters/alydar/head-alt.svg"
  24774. }
  24775. },
  24776. wing: {
  24777. height: math.unit(20.712, "feet"),
  24778. name: "Wing",
  24779. image: {
  24780. source: "./media/characters/alydar/wing.svg"
  24781. }
  24782. },
  24783. wingFeather: {
  24784. height: math.unit(9.662, "feet"),
  24785. name: "Wing Feather",
  24786. image: {
  24787. source: "./media/characters/alydar/wing-feather.svg"
  24788. }
  24789. },
  24790. countourFeather: {
  24791. height: math.unit(4.154, "feet"),
  24792. name: "Contour Feather",
  24793. image: {
  24794. source: "./media/characters/alydar/contour-feather.svg"
  24795. }
  24796. },
  24797. },
  24798. [
  24799. {
  24800. name: "Diplomatic",
  24801. height: math.unit(13, "feet"),
  24802. default: true
  24803. },
  24804. {
  24805. name: "Small",
  24806. height: math.unit(30, "feet")
  24807. },
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(95, "feet"),
  24811. default: true
  24812. },
  24813. {
  24814. name: "Large",
  24815. height: math.unit(285, "feet")
  24816. },
  24817. {
  24818. name: "Incomprehensible",
  24819. height: math.unit(450, "megameters")
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24825. {
  24826. side: {
  24827. height: math.unit(11, "feet"),
  24828. weight: math.unit(1750, "kg"),
  24829. name: "Side",
  24830. image: {
  24831. source: "./media/characters/selicia/side.svg",
  24832. extra: 440 / 396,
  24833. bottom: 24.8 / 465.979
  24834. }
  24835. },
  24836. maw: {
  24837. height: math.unit(4.665, "feet"),
  24838. name: "Maw",
  24839. image: {
  24840. source: "./media/characters/selicia/maw.svg"
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Normal",
  24847. height: math.unit(11, "feet"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24854. {
  24855. side: {
  24856. height: math.unit(2 + 6 / 12, "feet"),
  24857. weight: math.unit(30, "lb"),
  24858. name: "Side",
  24859. image: {
  24860. source: "./media/characters/layla/side.svg",
  24861. extra: 244 / 188,
  24862. bottom: 18.2 / 262.1
  24863. }
  24864. },
  24865. back: {
  24866. height: math.unit(2 + 6 / 12, "feet"),
  24867. weight: math.unit(30, "lb"),
  24868. name: "Back",
  24869. image: {
  24870. source: "./media/characters/layla/back.svg",
  24871. extra: 308 / 241.5,
  24872. bottom: 8.9 / 316.8
  24873. }
  24874. },
  24875. cumming: {
  24876. height: math.unit(2 + 6 / 12, "feet"),
  24877. weight: math.unit(30, "lb"),
  24878. name: "Cumming",
  24879. image: {
  24880. source: "./media/characters/layla/cumming.svg",
  24881. extra: 342 / 279,
  24882. bottom: 595 / 938
  24883. }
  24884. },
  24885. dickFlaccid: {
  24886. height: math.unit(2.595, "feet"),
  24887. name: "Flaccid Genitals",
  24888. image: {
  24889. source: "./media/characters/layla/dick-flaccid.svg"
  24890. }
  24891. },
  24892. dickErect: {
  24893. height: math.unit(2.359, "feet"),
  24894. name: "Erect Genitals",
  24895. image: {
  24896. source: "./media/characters/layla/dick-erect.svg"
  24897. }
  24898. },
  24899. dragon: {
  24900. height: math.unit(40, "feet"),
  24901. name: "Dragon",
  24902. image: {
  24903. source: "./media/characters/layla/dragon.svg",
  24904. extra: 610/535,
  24905. bottom: 367/977
  24906. }
  24907. },
  24908. taur: {
  24909. height: math.unit(30, "feet"),
  24910. name: "Taur",
  24911. image: {
  24912. source: "./media/characters/layla/taur.svg",
  24913. extra: 1268/1199,
  24914. bottom: 112/1380
  24915. }
  24916. },
  24917. },
  24918. [
  24919. {
  24920. name: "Micro",
  24921. height: math.unit(1, "inch")
  24922. },
  24923. {
  24924. name: "Small",
  24925. height: math.unit(1, "foot")
  24926. },
  24927. {
  24928. name: "Normal",
  24929. height: math.unit(2 + 6 / 12, "feet"),
  24930. default: true
  24931. },
  24932. {
  24933. name: "Macro",
  24934. height: math.unit(200, "feet")
  24935. },
  24936. {
  24937. name: "Megamacro",
  24938. height: math.unit(1000, "miles")
  24939. },
  24940. {
  24941. name: "Planetary",
  24942. height: math.unit(8000, "miles")
  24943. },
  24944. {
  24945. name: "True Layla",
  24946. height: math.unit(200000 * 7, "multiverses")
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24952. {
  24953. back: {
  24954. height: math.unit(10.5, "feet"),
  24955. weight: math.unit(800, "lb"),
  24956. name: "Back",
  24957. image: {
  24958. source: "./media/characters/knox/back.svg",
  24959. extra: 1486 / 1089,
  24960. bottom: 107 / 1601.4
  24961. }
  24962. },
  24963. side: {
  24964. height: math.unit(10.5, "feet"),
  24965. weight: math.unit(800, "lb"),
  24966. name: "Side",
  24967. image: {
  24968. source: "./media/characters/knox/side.svg",
  24969. extra: 244 / 218,
  24970. bottom: 14 / 260
  24971. }
  24972. },
  24973. },
  24974. [
  24975. {
  24976. name: "Compact",
  24977. height: math.unit(10.5, "feet"),
  24978. default: true
  24979. },
  24980. {
  24981. name: "Dynamax",
  24982. height: math.unit(210, "feet")
  24983. },
  24984. {
  24985. name: "Full Macro",
  24986. height: math.unit(850, "feet")
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24992. {
  24993. front: {
  24994. height: math.unit(28, "feet"),
  24995. weight: math.unit(10500, "lb"),
  24996. name: "Front",
  24997. image: {
  24998. source: "./media/characters/kayda/front.svg",
  24999. extra: 1536 / 1428,
  25000. bottom: 68.7 / 1603
  25001. }
  25002. },
  25003. back: {
  25004. height: math.unit(28, "feet"),
  25005. weight: math.unit(10500, "lb"),
  25006. name: "Back",
  25007. image: {
  25008. source: "./media/characters/kayda/back.svg",
  25009. extra: 1557 / 1464,
  25010. bottom: 39.5 / 1597.49
  25011. }
  25012. },
  25013. dick: {
  25014. height: math.unit(3.858, "feet"),
  25015. name: "Dick",
  25016. image: {
  25017. source: "./media/characters/kayda/dick.svg"
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Macro",
  25024. height: math.unit(28, "feet"),
  25025. default: true
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(10 + 11 / 12, "feet"),
  25034. weight: math.unit(1400, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/brian/front.svg",
  25038. extra: 737 / 692,
  25039. bottom: 55.4 / 785
  25040. }
  25041. },
  25042. },
  25043. [
  25044. {
  25045. name: "Normal",
  25046. height: math.unit(10 + 11 / 12, "feet"),
  25047. default: true
  25048. },
  25049. ]
  25050. ))
  25051. characterMakers.push(() => makeCharacter(
  25052. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25053. {
  25054. front: {
  25055. height: math.unit(5 + 8 / 12, "feet"),
  25056. weight: math.unit(140, "lb"),
  25057. name: "Front",
  25058. image: {
  25059. source: "./media/characters/khemri/front.svg",
  25060. extra: 4780 / 4059,
  25061. bottom: 80.1 / 4859.25
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Micro",
  25068. height: math.unit(6, "inches")
  25069. },
  25070. {
  25071. name: "Normal",
  25072. height: math.unit(5 + 8 / 12, "feet"),
  25073. default: true
  25074. },
  25075. ]
  25076. ))
  25077. characterMakers.push(() => makeCharacter(
  25078. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25079. {
  25080. front: {
  25081. height: math.unit(13, "feet"),
  25082. weight: math.unit(1700, "lb"),
  25083. name: "Front",
  25084. image: {
  25085. source: "./media/characters/felix-braveheart/front.svg",
  25086. extra: 1222 / 1157,
  25087. bottom: 53.2 / 1280
  25088. }
  25089. },
  25090. back: {
  25091. height: math.unit(13, "feet"),
  25092. weight: math.unit(1700, "lb"),
  25093. name: "Back",
  25094. image: {
  25095. source: "./media/characters/felix-braveheart/back.svg",
  25096. extra: 1277 / 1203,
  25097. bottom: 50.2 / 1327
  25098. }
  25099. },
  25100. feral: {
  25101. height: math.unit(6, "feet"),
  25102. weight: math.unit(400, "lb"),
  25103. name: "Feral",
  25104. image: {
  25105. source: "./media/characters/felix-braveheart/feral.svg",
  25106. extra: 682 / 625,
  25107. bottom: 6.9 / 688
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Normal",
  25114. height: math.unit(13, "feet"),
  25115. default: true
  25116. },
  25117. ]
  25118. ))
  25119. characterMakers.push(() => makeCharacter(
  25120. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25121. {
  25122. side: {
  25123. height: math.unit(5 + 11 / 12, "feet"),
  25124. weight: math.unit(1400, "lb"),
  25125. name: "Side",
  25126. image: {
  25127. source: "./media/characters/shadow-blade/side.svg",
  25128. extra: 1726 / 1267,
  25129. bottom: 58.4 / 1785
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Normal",
  25136. height: math.unit(5 + 11 / 12, "feet"),
  25137. default: true
  25138. },
  25139. ]
  25140. ))
  25141. characterMakers.push(() => makeCharacter(
  25142. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25143. {
  25144. front: {
  25145. height: math.unit(1 + 6 / 12, "feet"),
  25146. weight: math.unit(25, "lb"),
  25147. name: "Front",
  25148. image: {
  25149. source: "./media/characters/karla-halldor/front.svg",
  25150. extra: 1459 / 1383,
  25151. bottom: 12 / 1472
  25152. }
  25153. },
  25154. },
  25155. [
  25156. {
  25157. name: "Normal",
  25158. height: math.unit(1 + 6 / 12, "feet"),
  25159. default: true
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25165. {
  25166. front: {
  25167. height: math.unit(6 + 2 / 12, "feet"),
  25168. weight: math.unit(160, "lb"),
  25169. name: "Front",
  25170. image: {
  25171. source: "./media/characters/ariam/front.svg",
  25172. extra: 1073/976,
  25173. bottom: 52/1125
  25174. }
  25175. },
  25176. back: {
  25177. height: math.unit(6 + 2/12, "feet"),
  25178. weight: math.unit(160, "lb"),
  25179. name: "Back",
  25180. image: {
  25181. source: "./media/characters/ariam/back.svg",
  25182. extra: 1103/1023,
  25183. bottom: 9/1112
  25184. }
  25185. },
  25186. dressed: {
  25187. height: math.unit(6 + 2/12, "feet"),
  25188. weight: math.unit(160, "lb"),
  25189. name: "Dressed",
  25190. image: {
  25191. source: "./media/characters/ariam/dressed.svg",
  25192. extra: 1099/1009,
  25193. bottom: 25/1124
  25194. }
  25195. },
  25196. squatting: {
  25197. height: math.unit(4.1, "feet"),
  25198. weight: math.unit(160, "lb"),
  25199. name: "Squatting",
  25200. image: {
  25201. source: "./media/characters/ariam/squatting.svg",
  25202. extra: 2617 / 2112,
  25203. bottom: 61.2 / 2681,
  25204. }
  25205. },
  25206. },
  25207. [
  25208. {
  25209. name: "Normal",
  25210. height: math.unit(6 + 2 / 12, "feet"),
  25211. default: true
  25212. },
  25213. {
  25214. name: "Normal+",
  25215. height: math.unit(4, "meters")
  25216. },
  25217. {
  25218. name: "Macro",
  25219. height: math.unit(50, "meters")
  25220. },
  25221. {
  25222. name: "Macro+",
  25223. height: math.unit(100, "meters")
  25224. },
  25225. {
  25226. name: "Megamacro",
  25227. height: math.unit(20, "km")
  25228. },
  25229. {
  25230. name: "Caretaker",
  25231. height: math.unit(444, "megameters")
  25232. },
  25233. ]
  25234. ))
  25235. characterMakers.push(() => makeCharacter(
  25236. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25237. {
  25238. front: {
  25239. height: math.unit(1.67, "meters"),
  25240. weight: math.unit(140, "lb"),
  25241. name: "Front",
  25242. image: {
  25243. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25244. extra: 438 / 410,
  25245. bottom: 0.75 / 439
  25246. }
  25247. },
  25248. },
  25249. [
  25250. {
  25251. name: "Shrunken",
  25252. height: math.unit(7.6, "cm")
  25253. },
  25254. {
  25255. name: "Human Scale",
  25256. height: math.unit(1.67, "meters")
  25257. },
  25258. {
  25259. name: "Wolxi Scale",
  25260. height: math.unit(36.7, "meters"),
  25261. default: true
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25267. {
  25268. front: {
  25269. height: math.unit(1.73, "meters"),
  25270. weight: math.unit(240, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/izue-two-mothers/front.svg",
  25274. extra: 469 / 437,
  25275. bottom: 1.24 / 470.6
  25276. }
  25277. },
  25278. },
  25279. [
  25280. {
  25281. name: "Shrunken",
  25282. height: math.unit(7.86, "cm")
  25283. },
  25284. {
  25285. name: "Human Scale",
  25286. height: math.unit(1.73, "meters")
  25287. },
  25288. {
  25289. name: "Wolxi Scale",
  25290. height: math.unit(38, "meters"),
  25291. default: true
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25297. {
  25298. front: {
  25299. height: math.unit(1.55, "meters"),
  25300. weight: math.unit(120, "lb"),
  25301. name: "Front",
  25302. image: {
  25303. source: "./media/characters/teeku-love-shack/front.svg",
  25304. extra: 387 / 362,
  25305. bottom: 1.51 / 388
  25306. }
  25307. },
  25308. },
  25309. [
  25310. {
  25311. name: "Shrunken",
  25312. height: math.unit(7, "cm")
  25313. },
  25314. {
  25315. name: "Human Scale",
  25316. height: math.unit(1.55, "meters")
  25317. },
  25318. {
  25319. name: "Wolxi Scale",
  25320. height: math.unit(34.1, "meters"),
  25321. default: true
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25327. {
  25328. front: {
  25329. height: math.unit(1.83, "meters"),
  25330. weight: math.unit(135, "lb"),
  25331. name: "Front",
  25332. image: {
  25333. source: "./media/characters/dejma-the-red/front.svg",
  25334. extra: 480 / 458,
  25335. bottom: 1.8 / 482
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Shrunken",
  25342. height: math.unit(8.3, "cm")
  25343. },
  25344. {
  25345. name: "Human Scale",
  25346. height: math.unit(1.83, "meters")
  25347. },
  25348. {
  25349. name: "Wolxi Scale",
  25350. height: math.unit(40, "meters"),
  25351. default: true
  25352. },
  25353. ]
  25354. ))
  25355. characterMakers.push(() => makeCharacter(
  25356. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25357. {
  25358. front: {
  25359. height: math.unit(1.78, "meters"),
  25360. weight: math.unit(65, "kg"),
  25361. name: "Front",
  25362. image: {
  25363. source: "./media/characters/aki/front.svg",
  25364. extra: 452 / 415
  25365. }
  25366. },
  25367. frontNsfw: {
  25368. height: math.unit(1.78, "meters"),
  25369. weight: math.unit(65, "kg"),
  25370. name: "Front (NSFW)",
  25371. image: {
  25372. source: "./media/characters/aki/front-nsfw.svg",
  25373. extra: 452 / 415
  25374. }
  25375. },
  25376. back: {
  25377. height: math.unit(1.78, "meters"),
  25378. weight: math.unit(65, "kg"),
  25379. name: "Back",
  25380. image: {
  25381. source: "./media/characters/aki/back.svg",
  25382. extra: 452 / 415
  25383. }
  25384. },
  25385. rump: {
  25386. height: math.unit(2.05, "feet"),
  25387. name: "Rump",
  25388. image: {
  25389. source: "./media/characters/aki/rump.svg"
  25390. }
  25391. },
  25392. dick: {
  25393. height: math.unit(0.95, "feet"),
  25394. name: "Dick",
  25395. image: {
  25396. source: "./media/characters/aki/dick.svg"
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Micro",
  25403. height: math.unit(15, "cm")
  25404. },
  25405. {
  25406. name: "Normal",
  25407. height: math.unit(178, "cm"),
  25408. default: true
  25409. },
  25410. {
  25411. name: "Macro",
  25412. height: math.unit(214, "m")
  25413. },
  25414. {
  25415. name: "Macro+",
  25416. height: math.unit(534, "m")
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25422. {
  25423. front: {
  25424. height: math.unit(5 + 5 / 12, "feet"),
  25425. weight: math.unit(120, "lb"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/ari/front.svg",
  25429. extra: 1550/1471,
  25430. bottom: 39/1589
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Normal",
  25437. height: math.unit(5 + 5 / 12, "feet")
  25438. },
  25439. {
  25440. name: "Macro",
  25441. height: math.unit(100, "feet"),
  25442. default: true
  25443. },
  25444. {
  25445. name: "Megamacro",
  25446. height: math.unit(100, "miles")
  25447. },
  25448. {
  25449. name: "Gigamacro",
  25450. height: math.unit(80000, "miles")
  25451. },
  25452. ]
  25453. ))
  25454. characterMakers.push(() => makeCharacter(
  25455. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25456. {
  25457. side: {
  25458. height: math.unit(9, "feet"),
  25459. weight: math.unit(400, "kg"),
  25460. name: "Side",
  25461. image: {
  25462. source: "./media/characters/bolt/side.svg",
  25463. extra: 1126 / 896,
  25464. bottom: 60 / 1187.3,
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Micro",
  25471. height: math.unit(5, "inches")
  25472. },
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(9, "feet"),
  25476. default: true
  25477. },
  25478. {
  25479. name: "Macro",
  25480. height: math.unit(700, "feet")
  25481. },
  25482. {
  25483. name: "Max Size",
  25484. height: math.unit(1.52e22, "yottameters")
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(4.3, "meters"),
  25493. weight: math.unit(3, "tons"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/draekon-sylviar/front.svg",
  25497. extra: 2072/1512,
  25498. bottom: 74/2146
  25499. }
  25500. },
  25501. back: {
  25502. height: math.unit(4.3, "meters"),
  25503. weight: math.unit(3, "tons"),
  25504. name: "Back",
  25505. image: {
  25506. source: "./media/characters/draekon-sylviar/back.svg",
  25507. extra: 1639/1483,
  25508. bottom: 41/1680
  25509. }
  25510. },
  25511. feral: {
  25512. height: math.unit(1.15, "meters"),
  25513. weight: math.unit(3, "tons"),
  25514. name: "Feral",
  25515. image: {
  25516. source: "./media/characters/draekon-sylviar/feral.svg",
  25517. extra: 1033/395,
  25518. bottom: 130/1163
  25519. }
  25520. },
  25521. maw: {
  25522. height: math.unit(1.3, "meters"),
  25523. name: "Maw",
  25524. image: {
  25525. source: "./media/characters/draekon-sylviar/maw.svg"
  25526. }
  25527. },
  25528. mawSeparated: {
  25529. height: math.unit(1.53, "meters"),
  25530. name: "Separated Maw",
  25531. image: {
  25532. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25533. }
  25534. },
  25535. tail: {
  25536. height: math.unit(1.15, "meters"),
  25537. name: "Tail",
  25538. image: {
  25539. source: "./media/characters/draekon-sylviar/tail.svg"
  25540. }
  25541. },
  25542. tailDick: {
  25543. height: math.unit(1.15, "meters"),
  25544. name: "Tail (Dick)",
  25545. image: {
  25546. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25547. }
  25548. },
  25549. tailDickSeparated: {
  25550. height: math.unit(1.19, "meters"),
  25551. name: "Tail (Separated Dick)",
  25552. image: {
  25553. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25554. }
  25555. },
  25556. slit: {
  25557. height: math.unit(1, "meters"),
  25558. name: "Slit",
  25559. image: {
  25560. source: "./media/characters/draekon-sylviar/slit.svg"
  25561. }
  25562. },
  25563. dick: {
  25564. height: math.unit(1.15, "meters"),
  25565. name: "Dick",
  25566. image: {
  25567. source: "./media/characters/draekon-sylviar/dick.svg"
  25568. }
  25569. },
  25570. dickSeparated: {
  25571. height: math.unit(1.1, "meters"),
  25572. name: "Separated Dick",
  25573. image: {
  25574. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25575. }
  25576. },
  25577. sheath: {
  25578. height: math.unit(1.15, "meters"),
  25579. name: "Sheath",
  25580. image: {
  25581. source: "./media/characters/draekon-sylviar/sheath.svg"
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Small",
  25588. height: math.unit(4.53 / 2, "meters"),
  25589. default: true
  25590. },
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(4.53, "meters"),
  25594. default: true
  25595. },
  25596. {
  25597. name: "Large",
  25598. height: math.unit(4.53 * 2, "meters"),
  25599. },
  25600. ]
  25601. ))
  25602. characterMakers.push(() => makeCharacter(
  25603. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25604. {
  25605. front: {
  25606. height: math.unit(6 + 2 / 12, "feet"),
  25607. weight: math.unit(180, "lb"),
  25608. name: "Front",
  25609. image: {
  25610. source: "./media/characters/brawler/front.svg",
  25611. extra: 3301 / 3027,
  25612. bottom: 138 / 3439
  25613. }
  25614. },
  25615. },
  25616. [
  25617. {
  25618. name: "Normal",
  25619. height: math.unit(6 + 2 / 12, "feet"),
  25620. default: true
  25621. },
  25622. ]
  25623. ))
  25624. characterMakers.push(() => makeCharacter(
  25625. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25626. {
  25627. front: {
  25628. height: math.unit(11, "feet"),
  25629. weight: math.unit(1000, "lb"),
  25630. name: "Front",
  25631. image: {
  25632. source: "./media/characters/alex/front.svg",
  25633. bottom: 44.5 / 620
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Micro",
  25640. height: math.unit(5, "inches")
  25641. },
  25642. {
  25643. name: "Normal",
  25644. height: math.unit(11, "feet"),
  25645. default: true
  25646. },
  25647. {
  25648. name: "Macro",
  25649. height: math.unit(9.5e9, "feet")
  25650. },
  25651. {
  25652. name: "Max Size",
  25653. height: math.unit(1.4e283, "yottameters")
  25654. },
  25655. ]
  25656. ))
  25657. characterMakers.push(() => makeCharacter(
  25658. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25659. {
  25660. female: {
  25661. height: math.unit(29.9, "m"),
  25662. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25663. name: "Female",
  25664. image: {
  25665. source: "./media/characters/zenari/female.svg",
  25666. extra: 3281.6 / 3217,
  25667. bottom: 72.2 / 3353
  25668. }
  25669. },
  25670. male: {
  25671. height: math.unit(27.7, "m"),
  25672. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25673. name: "Male",
  25674. image: {
  25675. source: "./media/characters/zenari/male.svg",
  25676. extra: 3008 / 2991,
  25677. bottom: 54.6 / 3069
  25678. }
  25679. },
  25680. },
  25681. [
  25682. {
  25683. name: "Macro",
  25684. height: math.unit(29.7, "meters"),
  25685. default: true
  25686. },
  25687. ]
  25688. ))
  25689. characterMakers.push(() => makeCharacter(
  25690. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25691. {
  25692. female: {
  25693. height: math.unit(23.8, "m"),
  25694. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25695. name: "Female",
  25696. image: {
  25697. source: "./media/characters/mactarian/female.svg",
  25698. extra: 2662 / 2569,
  25699. bottom: 73 / 2736
  25700. }
  25701. },
  25702. male: {
  25703. height: math.unit(23.8, "m"),
  25704. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25705. name: "Male",
  25706. image: {
  25707. source: "./media/characters/mactarian/male.svg",
  25708. extra: 2673 / 2600,
  25709. bottom: 76 / 2750
  25710. }
  25711. },
  25712. },
  25713. [
  25714. {
  25715. name: "Macro",
  25716. height: math.unit(23.8, "meters"),
  25717. default: true
  25718. },
  25719. ]
  25720. ))
  25721. characterMakers.push(() => makeCharacter(
  25722. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25723. {
  25724. female: {
  25725. height: math.unit(19.3, "m"),
  25726. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25727. name: "Female",
  25728. image: {
  25729. source: "./media/characters/umok/female.svg",
  25730. extra: 2186 / 2078,
  25731. bottom: 87 / 2277
  25732. }
  25733. },
  25734. male: {
  25735. height: math.unit(19.5, "m"),
  25736. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25737. name: "Male",
  25738. image: {
  25739. source: "./media/characters/umok/male.svg",
  25740. extra: 2233 / 2140,
  25741. bottom: 24.4 / 2258
  25742. }
  25743. },
  25744. },
  25745. [
  25746. {
  25747. name: "Macro",
  25748. height: math.unit(19.3, "meters"),
  25749. default: true
  25750. },
  25751. ]
  25752. ))
  25753. characterMakers.push(() => makeCharacter(
  25754. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25755. {
  25756. female: {
  25757. height: math.unit(26.15, "m"),
  25758. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25759. name: "Female",
  25760. image: {
  25761. source: "./media/characters/joraxian/female.svg",
  25762. extra: 2912 / 2824,
  25763. bottom: 36 / 2956
  25764. }
  25765. },
  25766. male: {
  25767. height: math.unit(25.4, "m"),
  25768. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25769. name: "Male",
  25770. image: {
  25771. source: "./media/characters/joraxian/male.svg",
  25772. extra: 2877 / 2721,
  25773. bottom: 82 / 2967
  25774. }
  25775. },
  25776. },
  25777. [
  25778. {
  25779. name: "Macro",
  25780. height: math.unit(26.15, "meters"),
  25781. default: true
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25787. {
  25788. female: {
  25789. height: math.unit(21.6, "m"),
  25790. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25791. name: "Female",
  25792. image: {
  25793. source: "./media/characters/sthara/female.svg",
  25794. extra: 2516 / 2347,
  25795. bottom: 21.5 / 2537
  25796. }
  25797. },
  25798. male: {
  25799. height: math.unit(24, "m"),
  25800. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25801. name: "Male",
  25802. image: {
  25803. source: "./media/characters/sthara/male.svg",
  25804. extra: 2732 / 2607,
  25805. bottom: 23 / 2732
  25806. }
  25807. },
  25808. },
  25809. [
  25810. {
  25811. name: "Macro",
  25812. height: math.unit(21.6, "meters"),
  25813. default: true
  25814. },
  25815. ]
  25816. ))
  25817. characterMakers.push(() => makeCharacter(
  25818. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25819. {
  25820. front: {
  25821. height: math.unit(6 + 4 / 12, "feet"),
  25822. weight: math.unit(175, "lb"),
  25823. name: "Front",
  25824. image: {
  25825. source: "./media/characters/luka-bryzant/front.svg",
  25826. extra: 311 / 289,
  25827. bottom: 4 / 315
  25828. }
  25829. },
  25830. back: {
  25831. height: math.unit(6 + 4 / 12, "feet"),
  25832. weight: math.unit(175, "lb"),
  25833. name: "Back",
  25834. image: {
  25835. source: "./media/characters/luka-bryzant/back.svg",
  25836. extra: 311 / 289,
  25837. bottom: 3.8 / 313.7
  25838. }
  25839. },
  25840. },
  25841. [
  25842. {
  25843. name: "Micro",
  25844. height: math.unit(10, "inches")
  25845. },
  25846. {
  25847. name: "Normal",
  25848. height: math.unit(6 + 4 / 12, "feet"),
  25849. default: true
  25850. },
  25851. {
  25852. name: "Large",
  25853. height: math.unit(12, "feet")
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25859. {
  25860. front: {
  25861. height: math.unit(5 + 7 / 12, "feet"),
  25862. weight: math.unit(185, "lb"),
  25863. name: "Front",
  25864. image: {
  25865. source: "./media/characters/aman-aquila/front.svg",
  25866. extra: 1013 / 976,
  25867. bottom: 45.6 / 1057
  25868. }
  25869. },
  25870. side: {
  25871. height: math.unit(5 + 7 / 12, "feet"),
  25872. weight: math.unit(185, "lb"),
  25873. name: "Side",
  25874. image: {
  25875. source: "./media/characters/aman-aquila/side.svg",
  25876. extra: 1054 / 1011,
  25877. bottom: 15 / 1070
  25878. }
  25879. },
  25880. back: {
  25881. height: math.unit(5 + 7 / 12, "feet"),
  25882. weight: math.unit(185, "lb"),
  25883. name: "Back",
  25884. image: {
  25885. source: "./media/characters/aman-aquila/back.svg",
  25886. extra: 1026 / 970,
  25887. bottom: 12 / 1039
  25888. }
  25889. },
  25890. head: {
  25891. height: math.unit(1.211, "feet"),
  25892. name: "Head",
  25893. image: {
  25894. source: "./media/characters/aman-aquila/head.svg",
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Minimicro",
  25901. height: math.unit(0.057, "inches")
  25902. },
  25903. {
  25904. name: "Micro",
  25905. height: math.unit(7, "inches")
  25906. },
  25907. {
  25908. name: "Mini",
  25909. height: math.unit(3 + 7 / 12, "feet")
  25910. },
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(5 + 7 / 12, "feet"),
  25914. default: true
  25915. },
  25916. {
  25917. name: "Macro",
  25918. height: math.unit(157 + 7 / 12, "feet")
  25919. },
  25920. {
  25921. name: "Megamacro",
  25922. height: math.unit(1557 + 7 / 12, "feet")
  25923. },
  25924. {
  25925. name: "Gigamacro",
  25926. height: math.unit(15557 + 7 / 12, "feet")
  25927. },
  25928. ]
  25929. ))
  25930. characterMakers.push(() => makeCharacter(
  25931. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25932. {
  25933. front: {
  25934. height: math.unit(3 + 2 / 12, "inches"),
  25935. weight: math.unit(0.3, "ounces"),
  25936. name: "Front",
  25937. image: {
  25938. source: "./media/characters/hiphae/front.svg",
  25939. extra: 1931 / 1683,
  25940. bottom: 24 / 1955
  25941. }
  25942. },
  25943. },
  25944. [
  25945. {
  25946. name: "Normal",
  25947. height: math.unit(3 + 1 / 2, "inches"),
  25948. default: true
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25954. {
  25955. front: {
  25956. height: math.unit(5 + 10 / 12, "feet"),
  25957. weight: math.unit(165, "lb"),
  25958. name: "Front",
  25959. image: {
  25960. source: "./media/characters/nicky/front.svg",
  25961. extra: 3144 / 2886,
  25962. bottom: 45.6 / 3192
  25963. }
  25964. },
  25965. back: {
  25966. height: math.unit(5 + 10 / 12, "feet"),
  25967. weight: math.unit(165, "lb"),
  25968. name: "Back",
  25969. image: {
  25970. source: "./media/characters/nicky/back.svg",
  25971. extra: 3055 / 2804,
  25972. bottom: 28.4 / 3087
  25973. }
  25974. },
  25975. frontclothed: {
  25976. height: math.unit(5 + 10 / 12, "feet"),
  25977. weight: math.unit(165, "lb"),
  25978. name: "Front-clothed",
  25979. image: {
  25980. source: "./media/characters/nicky/front-clothed.svg",
  25981. extra: 3184.9 / 2926.9,
  25982. bottom: 86.5 / 3239.9
  25983. }
  25984. },
  25985. foot: {
  25986. height: math.unit(1.16, "feet"),
  25987. name: "Foot",
  25988. image: {
  25989. source: "./media/characters/nicky/foot.svg"
  25990. }
  25991. },
  25992. feet: {
  25993. height: math.unit(1.34, "feet"),
  25994. name: "Feet",
  25995. image: {
  25996. source: "./media/characters/nicky/feet.svg"
  25997. }
  25998. },
  25999. maw: {
  26000. height: math.unit(0.9, "feet"),
  26001. name: "Maw",
  26002. image: {
  26003. source: "./media/characters/nicky/maw.svg"
  26004. }
  26005. },
  26006. },
  26007. [
  26008. {
  26009. name: "Normal",
  26010. height: math.unit(5 + 10 / 12, "feet"),
  26011. default: true
  26012. },
  26013. {
  26014. name: "Macro",
  26015. height: math.unit(60, "feet")
  26016. },
  26017. {
  26018. name: "Megamacro",
  26019. height: math.unit(1, "mile")
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26025. {
  26026. side: {
  26027. height: math.unit(10, "feet"),
  26028. weight: math.unit(600, "lb"),
  26029. name: "Side",
  26030. image: {
  26031. source: "./media/characters/blair/side.svg",
  26032. bottom: 16.6 / 475,
  26033. extra: 458 / 431
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Micro",
  26040. height: math.unit(8, "inches")
  26041. },
  26042. {
  26043. name: "Normal",
  26044. height: math.unit(10, "feet"),
  26045. default: true
  26046. },
  26047. {
  26048. name: "Macro",
  26049. height: math.unit(180, "feet")
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26055. {
  26056. front: {
  26057. height: math.unit(5 + 4 / 12, "feet"),
  26058. weight: math.unit(125, "lb"),
  26059. name: "Front",
  26060. image: {
  26061. source: "./media/characters/fisher/front.svg",
  26062. extra: 444 / 390,
  26063. bottom: 2 / 444.8
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Micro",
  26070. height: math.unit(4, "inches")
  26071. },
  26072. {
  26073. name: "Normal",
  26074. height: math.unit(5 + 4 / 12, "feet"),
  26075. default: true
  26076. },
  26077. {
  26078. name: "Macro",
  26079. height: math.unit(100, "feet")
  26080. },
  26081. ]
  26082. ))
  26083. characterMakers.push(() => makeCharacter(
  26084. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26085. {
  26086. front: {
  26087. height: math.unit(6.71, "feet"),
  26088. weight: math.unit(200, "lb"),
  26089. preyCapacity: math.unit(1000000, "people"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/gliss/front.svg",
  26093. extra: 2347 / 2231,
  26094. bottom: 113 / 2462
  26095. }
  26096. },
  26097. hammerspaceSize: {
  26098. height: math.unit(6.71 * 717, "feet"),
  26099. weight: math.unit(200, "lb"),
  26100. preyCapacity: math.unit(1000000, "people"),
  26101. name: "Hammerspace Size",
  26102. image: {
  26103. source: "./media/characters/gliss/front.svg",
  26104. extra: 2347 / 2231,
  26105. bottom: 113 / 2462
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(6.71, "feet"),
  26113. default: true
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26119. {
  26120. side: {
  26121. height: math.unit(1.44, "m"),
  26122. weight: math.unit(80, "kg"),
  26123. name: "Side",
  26124. image: {
  26125. source: "./media/characters/dune-anderson/side.svg",
  26126. bottom: 49 / 1426
  26127. }
  26128. },
  26129. },
  26130. [
  26131. {
  26132. name: "Wolf-sized",
  26133. height: math.unit(1.44, "meters")
  26134. },
  26135. {
  26136. name: "Normal",
  26137. height: math.unit(5.05, "meters"),
  26138. default: true
  26139. },
  26140. {
  26141. name: "Big",
  26142. height: math.unit(14.4, "meters")
  26143. },
  26144. {
  26145. name: "Huge",
  26146. height: math.unit(144, "meters")
  26147. },
  26148. ]
  26149. ))
  26150. characterMakers.push(() => makeCharacter(
  26151. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26152. {
  26153. front: {
  26154. height: math.unit(7, "feet"),
  26155. weight: math.unit(425, "lb"),
  26156. name: "Front",
  26157. image: {
  26158. source: "./media/characters/hind/front.svg",
  26159. extra: 2091 / 1860,
  26160. bottom: 129 / 2220
  26161. }
  26162. },
  26163. back: {
  26164. height: math.unit(7, "feet"),
  26165. weight: math.unit(425, "lb"),
  26166. name: "Back",
  26167. image: {
  26168. source: "./media/characters/hind/back.svg",
  26169. extra: 2091 / 1860,
  26170. bottom: 24.6 / 2309
  26171. }
  26172. },
  26173. tail: {
  26174. height: math.unit(2.8, "feet"),
  26175. name: "Tail",
  26176. image: {
  26177. source: "./media/characters/hind/tail.svg"
  26178. }
  26179. },
  26180. head: {
  26181. height: math.unit(2.55, "feet"),
  26182. name: "Head",
  26183. image: {
  26184. source: "./media/characters/hind/head.svg"
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "XS",
  26191. height: math.unit(0.7, "feet")
  26192. },
  26193. {
  26194. name: "Normal",
  26195. height: math.unit(7, "feet"),
  26196. default: true
  26197. },
  26198. {
  26199. name: "XL",
  26200. height: math.unit(70, "feet")
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26206. {
  26207. front: {
  26208. height: math.unit(2.1, "meters"),
  26209. weight: math.unit(150, "lb"),
  26210. name: "Front",
  26211. image: {
  26212. source: "./media/characters/tharquench-sizestealer/front.svg",
  26213. extra: 1605/1470,
  26214. bottom: 36/1641
  26215. }
  26216. },
  26217. frontAlt: {
  26218. height: math.unit(2.1, "meters"),
  26219. weight: math.unit(150, "lb"),
  26220. name: "Front (Alt)",
  26221. image: {
  26222. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26223. extra: 2318 / 2063,
  26224. bottom: 93.4 / 2410
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Nano",
  26231. height: math.unit(1, "mm")
  26232. },
  26233. {
  26234. name: "Micro",
  26235. height: math.unit(1, "cm")
  26236. },
  26237. {
  26238. name: "Normal",
  26239. height: math.unit(2.1, "meters"),
  26240. default: true
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26246. {
  26247. front: {
  26248. height: math.unit(7 + 5 / 12, "feet"),
  26249. weight: math.unit(357, "lb"),
  26250. name: "Front",
  26251. image: {
  26252. source: "./media/characters/solex-draconov/front.svg",
  26253. extra: 1993 / 1865,
  26254. bottom: 117 / 2111
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Natural Height",
  26261. height: math.unit(7 + 5 / 12, "feet"),
  26262. default: true
  26263. },
  26264. {
  26265. name: "Macro",
  26266. height: math.unit(350, "feet")
  26267. },
  26268. {
  26269. name: "Macro+",
  26270. height: math.unit(1000, "feet")
  26271. },
  26272. {
  26273. name: "Megamacro",
  26274. height: math.unit(20, "km")
  26275. },
  26276. {
  26277. name: "Megamacro+",
  26278. height: math.unit(1000, "km")
  26279. },
  26280. {
  26281. name: "Gigamacro",
  26282. height: math.unit(2.5, "Gm")
  26283. },
  26284. {
  26285. name: "Teramacro",
  26286. height: math.unit(15, "Tm")
  26287. },
  26288. {
  26289. name: "Galactic",
  26290. height: math.unit(30, "Zm")
  26291. },
  26292. {
  26293. name: "Universal",
  26294. height: math.unit(21000, "Ym")
  26295. },
  26296. {
  26297. name: "Omniversal",
  26298. height: math.unit(9.861e50, "Ym")
  26299. },
  26300. {
  26301. name: "Existential",
  26302. height: math.unit(1e300, "meters")
  26303. },
  26304. ]
  26305. ))
  26306. characterMakers.push(() => makeCharacter(
  26307. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26308. {
  26309. side: {
  26310. height: math.unit(25, "feet"),
  26311. weight: math.unit(90000, "lb"),
  26312. name: "Side",
  26313. image: {
  26314. source: "./media/characters/mandarax/side.svg",
  26315. extra: 614 / 332,
  26316. bottom: 55 / 630
  26317. }
  26318. },
  26319. lounging: {
  26320. height: math.unit(15.4, "feet"),
  26321. weight: math.unit(90000, "lb"),
  26322. name: "Lounging",
  26323. image: {
  26324. source: "./media/characters/mandarax/lounging.svg",
  26325. extra: 817/609,
  26326. bottom: 685/1502
  26327. }
  26328. },
  26329. head: {
  26330. height: math.unit(11.4, "feet"),
  26331. name: "Head",
  26332. image: {
  26333. source: "./media/characters/mandarax/head.svg"
  26334. }
  26335. },
  26336. belly: {
  26337. height: math.unit(33, "feet"),
  26338. name: "Belly",
  26339. preyCapacity: math.unit(500, "people"),
  26340. image: {
  26341. source: "./media/characters/mandarax/belly.svg"
  26342. }
  26343. },
  26344. dick: {
  26345. height: math.unit(8.46, "feet"),
  26346. name: "Dick",
  26347. image: {
  26348. source: "./media/characters/mandarax/dick.svg"
  26349. }
  26350. },
  26351. top: {
  26352. height: math.unit(28, "meters"),
  26353. name: "Top",
  26354. image: {
  26355. source: "./media/characters/mandarax/top.svg"
  26356. }
  26357. },
  26358. },
  26359. [
  26360. {
  26361. name: "Normal",
  26362. height: math.unit(25, "feet"),
  26363. default: true
  26364. },
  26365. ]
  26366. ))
  26367. characterMakers.push(() => makeCharacter(
  26368. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26369. {
  26370. front: {
  26371. height: math.unit(5, "feet"),
  26372. weight: math.unit(90, "lb"),
  26373. name: "Front",
  26374. image: {
  26375. source: "./media/characters/pixil/front.svg",
  26376. extra: 2000 / 1618,
  26377. bottom: 12.3 / 2011
  26378. }
  26379. },
  26380. },
  26381. [
  26382. {
  26383. name: "Normal",
  26384. height: math.unit(5, "feet"),
  26385. default: true
  26386. },
  26387. {
  26388. name: "Megamacro",
  26389. height: math.unit(10, "miles"),
  26390. },
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26395. {
  26396. front: {
  26397. height: math.unit(7 + 2 / 12, "feet"),
  26398. weight: math.unit(200, "lb"),
  26399. name: "Front",
  26400. image: {
  26401. source: "./media/characters/angel/front.svg",
  26402. extra: 1830 / 1737,
  26403. bottom: 22.6 / 1854,
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Normal",
  26410. height: math.unit(7 + 2 / 12, "feet"),
  26411. default: true
  26412. },
  26413. {
  26414. name: "Macro",
  26415. height: math.unit(1000, "feet")
  26416. },
  26417. {
  26418. name: "Megamacro",
  26419. height: math.unit(2, "miles")
  26420. },
  26421. {
  26422. name: "Gigamacro",
  26423. height: math.unit(20, "earths")
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26429. {
  26430. front: {
  26431. height: math.unit(5, "feet"),
  26432. weight: math.unit(180, "lb"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/mekana/front.svg",
  26436. extra: 1671 / 1605,
  26437. bottom: 3.5 / 1691
  26438. }
  26439. },
  26440. side: {
  26441. height: math.unit(5, "feet"),
  26442. weight: math.unit(180, "lb"),
  26443. name: "Side",
  26444. image: {
  26445. source: "./media/characters/mekana/side.svg",
  26446. extra: 1671 / 1605,
  26447. bottom: 3.5 / 1691
  26448. }
  26449. },
  26450. back: {
  26451. height: math.unit(5, "feet"),
  26452. weight: math.unit(180, "lb"),
  26453. name: "Back",
  26454. image: {
  26455. source: "./media/characters/mekana/back.svg",
  26456. extra: 1671 / 1605,
  26457. bottom: 3.5 / 1691
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Normal",
  26464. height: math.unit(5, "feet"),
  26465. default: true
  26466. },
  26467. ]
  26468. ))
  26469. characterMakers.push(() => makeCharacter(
  26470. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26471. {
  26472. front: {
  26473. height: math.unit(4 + 6 / 12, "feet"),
  26474. weight: math.unit(80, "lb"),
  26475. name: "Front",
  26476. image: {
  26477. source: "./media/characters/pixie/front.svg",
  26478. extra: 1924 / 1825,
  26479. bottom: 22.4 / 1946
  26480. }
  26481. },
  26482. },
  26483. [
  26484. {
  26485. name: "Normal",
  26486. height: math.unit(4 + 6 / 12, "feet"),
  26487. default: true
  26488. },
  26489. {
  26490. name: "Macro",
  26491. height: math.unit(40, "feet")
  26492. },
  26493. ]
  26494. ))
  26495. characterMakers.push(() => makeCharacter(
  26496. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26497. {
  26498. front: {
  26499. height: math.unit(2.1, "meters"),
  26500. weight: math.unit(200, "lb"),
  26501. name: "Front",
  26502. image: {
  26503. source: "./media/characters/the-lascivious/front.svg",
  26504. extra: 1 / 0.893,
  26505. bottom: 3.5 / 573.7
  26506. }
  26507. },
  26508. },
  26509. [
  26510. {
  26511. name: "Human Scale",
  26512. height: math.unit(2.1, "meters")
  26513. },
  26514. {
  26515. name: "Wolxi Scale",
  26516. height: math.unit(46.2, "m"),
  26517. default: true
  26518. },
  26519. {
  26520. name: "Boinker of Buildings",
  26521. height: math.unit(10, "km")
  26522. },
  26523. {
  26524. name: "Shagger of Skyscrapers",
  26525. height: math.unit(40, "km")
  26526. },
  26527. {
  26528. name: "Banger of Boroughs",
  26529. height: math.unit(4000, "km")
  26530. },
  26531. {
  26532. name: "Screwer of States",
  26533. height: math.unit(100000, "km")
  26534. },
  26535. {
  26536. name: "Pounder of Planets",
  26537. height: math.unit(2000000, "km")
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(6, "feet"),
  26546. weight: math.unit(150, "lb"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/aj/front.svg",
  26550. extra: 2039 / 1562,
  26551. bottom: 40 / 2079
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Normal",
  26558. height: math.unit(11 + 6 / 12, "feet"),
  26559. default: true
  26560. },
  26561. {
  26562. name: "Megamacro",
  26563. height: math.unit(60, "megameters")
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26569. {
  26570. side: {
  26571. height: math.unit(31 + 8 / 12, "feet"),
  26572. weight: math.unit(75000, "kg"),
  26573. name: "Side",
  26574. image: {
  26575. source: "./media/characters/koros/side.svg",
  26576. extra: 1442 / 1297,
  26577. bottom: 122.7 / 1562
  26578. }
  26579. },
  26580. dicksKingsCrown: {
  26581. height: math.unit(6, "feet"),
  26582. name: "Dicks (King's Crown)",
  26583. image: {
  26584. source: "./media/characters/koros/dicks-kings-crown.svg"
  26585. }
  26586. },
  26587. dicksTailSet: {
  26588. height: math.unit(3, "feet"),
  26589. name: "Dicks (Tail Set)",
  26590. image: {
  26591. source: "./media/characters/koros/dicks-tail-set.svg"
  26592. }
  26593. },
  26594. dickCumming: {
  26595. height: math.unit(7.98, "feet"),
  26596. name: "Dick (Cumming)",
  26597. image: {
  26598. source: "./media/characters/koros/dick-cumming.svg"
  26599. }
  26600. },
  26601. dicksBack: {
  26602. height: math.unit(5.9, "feet"),
  26603. name: "Dicks (Back)",
  26604. image: {
  26605. source: "./media/characters/koros/dicks-back.svg"
  26606. }
  26607. },
  26608. dicksFront: {
  26609. height: math.unit(3.72, "feet"),
  26610. name: "Dicks (Front)",
  26611. image: {
  26612. source: "./media/characters/koros/dicks-front.svg"
  26613. }
  26614. },
  26615. dicksPeeking: {
  26616. height: math.unit(3.0, "feet"),
  26617. name: "Dicks (Peeking)",
  26618. image: {
  26619. source: "./media/characters/koros/dicks-peeking.svg"
  26620. }
  26621. },
  26622. eye: {
  26623. height: math.unit(1.7, "feet"),
  26624. name: "Eye",
  26625. image: {
  26626. source: "./media/characters/koros/eye.svg"
  26627. }
  26628. },
  26629. headFront: {
  26630. height: math.unit(11.69, "feet"),
  26631. name: "Head (Front)",
  26632. image: {
  26633. source: "./media/characters/koros/head-front.svg"
  26634. }
  26635. },
  26636. headSide: {
  26637. height: math.unit(14, "feet"),
  26638. name: "Head (Side)",
  26639. image: {
  26640. source: "./media/characters/koros/head-side.svg"
  26641. }
  26642. },
  26643. leg: {
  26644. height: math.unit(17, "feet"),
  26645. name: "Leg",
  26646. image: {
  26647. source: "./media/characters/koros/leg.svg"
  26648. }
  26649. },
  26650. mawSide: {
  26651. height: math.unit(12.8, "feet"),
  26652. name: "Maw (Side)",
  26653. image: {
  26654. source: "./media/characters/koros/maw-side.svg"
  26655. }
  26656. },
  26657. mawSpitting: {
  26658. height: math.unit(17, "feet"),
  26659. name: "Maw (Spitting)",
  26660. image: {
  26661. source: "./media/characters/koros/maw-spitting.svg"
  26662. }
  26663. },
  26664. slit: {
  26665. height: math.unit(2.8, "feet"),
  26666. name: "Slit",
  26667. image: {
  26668. source: "./media/characters/koros/slit.svg"
  26669. }
  26670. },
  26671. stomach: {
  26672. height: math.unit(6.8, "feet"),
  26673. preyCapacity: math.unit(20, "people"),
  26674. name: "Stomach",
  26675. image: {
  26676. source: "./media/characters/koros/stomach.svg"
  26677. }
  26678. },
  26679. wingspanBottom: {
  26680. height: math.unit(114, "feet"),
  26681. name: "Wingspan (Bottom)",
  26682. image: {
  26683. source: "./media/characters/koros/wingspan-bottom.svg"
  26684. }
  26685. },
  26686. wingspanTop: {
  26687. height: math.unit(104, "feet"),
  26688. name: "Wingspan (Top)",
  26689. image: {
  26690. source: "./media/characters/koros/wingspan-top.svg"
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Normal",
  26697. height: math.unit(31 + 8 / 12, "feet"),
  26698. default: true
  26699. },
  26700. ]
  26701. ))
  26702. characterMakers.push(() => makeCharacter(
  26703. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26704. {
  26705. front: {
  26706. height: math.unit(18 + 5 / 12, "feet"),
  26707. weight: math.unit(3750, "kg"),
  26708. name: "Front",
  26709. image: {
  26710. source: "./media/characters/vexx/front.svg",
  26711. extra: 426 / 396,
  26712. bottom: 31.5 / 458
  26713. }
  26714. },
  26715. maw: {
  26716. height: math.unit(6, "feet"),
  26717. name: "Maw",
  26718. image: {
  26719. source: "./media/characters/vexx/maw.svg"
  26720. }
  26721. },
  26722. },
  26723. [
  26724. {
  26725. name: "Normal",
  26726. height: math.unit(18 + 5 / 12, "feet"),
  26727. default: true
  26728. },
  26729. ]
  26730. ))
  26731. characterMakers.push(() => makeCharacter(
  26732. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26733. {
  26734. front: {
  26735. height: math.unit(17 + 6 / 12, "feet"),
  26736. weight: math.unit(150, "lb"),
  26737. name: "Front",
  26738. image: {
  26739. source: "./media/characters/baadra/front.svg",
  26740. extra: 1694/1553,
  26741. bottom: 179/1873
  26742. }
  26743. },
  26744. frontAlt: {
  26745. height: math.unit(17 + 6 / 12, "feet"),
  26746. weight: math.unit(150, "lb"),
  26747. name: "Front (Alt)",
  26748. image: {
  26749. source: "./media/characters/baadra/front-alt.svg",
  26750. extra: 3137 / 2890,
  26751. bottom: 168.4 / 3305
  26752. }
  26753. },
  26754. back: {
  26755. height: math.unit(17 + 6 / 12, "feet"),
  26756. weight: math.unit(150, "lb"),
  26757. name: "Back",
  26758. image: {
  26759. source: "./media/characters/baadra/back.svg",
  26760. extra: 3142 / 2890,
  26761. bottom: 220 / 3371
  26762. }
  26763. },
  26764. head: {
  26765. height: math.unit(5.45, "feet"),
  26766. name: "Head",
  26767. image: {
  26768. source: "./media/characters/baadra/head.svg"
  26769. }
  26770. },
  26771. headAngry: {
  26772. height: math.unit(4.95, "feet"),
  26773. name: "Head (Angry)",
  26774. image: {
  26775. source: "./media/characters/baadra/head-angry.svg"
  26776. }
  26777. },
  26778. headOpen: {
  26779. height: math.unit(6, "feet"),
  26780. name: "Head (Open)",
  26781. image: {
  26782. source: "./media/characters/baadra/head-open.svg"
  26783. }
  26784. },
  26785. },
  26786. [
  26787. {
  26788. name: "Normal",
  26789. height: math.unit(17 + 6 / 12, "feet"),
  26790. default: true
  26791. },
  26792. ]
  26793. ))
  26794. characterMakers.push(() => makeCharacter(
  26795. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26796. {
  26797. front: {
  26798. height: math.unit(7 + 3 / 12, "feet"),
  26799. weight: math.unit(180, "lb"),
  26800. name: "Front",
  26801. image: {
  26802. source: "./media/characters/juri/front.svg",
  26803. extra: 1401 / 1237,
  26804. bottom: 18.5 / 1418
  26805. }
  26806. },
  26807. side: {
  26808. height: math.unit(7 + 3 / 12, "feet"),
  26809. weight: math.unit(180, "lb"),
  26810. name: "Side",
  26811. image: {
  26812. source: "./media/characters/juri/side.svg",
  26813. extra: 1424 / 1242,
  26814. bottom: 18.5 / 1447
  26815. }
  26816. },
  26817. sitting: {
  26818. height: math.unit(6, "feet"),
  26819. weight: math.unit(180, "lb"),
  26820. name: "Sitting",
  26821. image: {
  26822. source: "./media/characters/juri/sitting.svg",
  26823. extra: 1270 / 1143,
  26824. bottom: 100 / 1343
  26825. }
  26826. },
  26827. back: {
  26828. height: math.unit(7 + 3 / 12, "feet"),
  26829. weight: math.unit(180, "lb"),
  26830. name: "Back",
  26831. image: {
  26832. source: "./media/characters/juri/back.svg",
  26833. extra: 1377 / 1240,
  26834. bottom: 23.7 / 1405
  26835. }
  26836. },
  26837. maw: {
  26838. height: math.unit(2.8, "feet"),
  26839. name: "Maw",
  26840. image: {
  26841. source: "./media/characters/juri/maw.svg"
  26842. }
  26843. },
  26844. stomach: {
  26845. height: math.unit(0.89, "feet"),
  26846. preyCapacity: math.unit(4, "liters"),
  26847. name: "Stomach",
  26848. image: {
  26849. source: "./media/characters/juri/stomach.svg"
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(7 + 3 / 12, "feet"),
  26857. default: true
  26858. },
  26859. ]
  26860. ))
  26861. characterMakers.push(() => makeCharacter(
  26862. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26863. {
  26864. fox: {
  26865. height: math.unit(5 + 6 / 12, "feet"),
  26866. weight: math.unit(140, "lb"),
  26867. name: "Fox",
  26868. image: {
  26869. source: "./media/characters/maxene-sita/fox.svg",
  26870. extra: 146 / 138,
  26871. bottom: 2.1 / 148.19
  26872. }
  26873. },
  26874. foxLaying: {
  26875. height: math.unit(1.70, "feet"),
  26876. weight: math.unit(140, "lb"),
  26877. name: "Fox (Laying)",
  26878. image: {
  26879. source: "./media/characters/maxene-sita/fox-laying.svg",
  26880. extra: 910 / 572,
  26881. bottom: 71 / 981
  26882. }
  26883. },
  26884. kitsune: {
  26885. height: math.unit(10, "feet"),
  26886. weight: math.unit(800, "lb"),
  26887. name: "Kitsune",
  26888. image: {
  26889. source: "./media/characters/maxene-sita/kitsune.svg",
  26890. extra: 185 / 176,
  26891. bottom: 4.7 / 189.9
  26892. }
  26893. },
  26894. hellhound: {
  26895. height: math.unit(10, "feet"),
  26896. weight: math.unit(700, "lb"),
  26897. name: "Hellhound",
  26898. image: {
  26899. source: "./media/characters/maxene-sita/hellhound.svg",
  26900. extra: 1600 / 1545,
  26901. bottom: 81 / 1681
  26902. }
  26903. },
  26904. },
  26905. [
  26906. {
  26907. name: "Normal",
  26908. height: math.unit(5 + 6 / 12, "feet"),
  26909. default: true
  26910. },
  26911. ]
  26912. ))
  26913. characterMakers.push(() => makeCharacter(
  26914. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26915. {
  26916. front: {
  26917. height: math.unit(3 + 4 / 12, "feet"),
  26918. weight: math.unit(70, "lb"),
  26919. name: "Front",
  26920. image: {
  26921. source: "./media/characters/maia/front.svg",
  26922. extra: 227 / 219.5,
  26923. bottom: 40 / 267
  26924. }
  26925. },
  26926. back: {
  26927. height: math.unit(3 + 4 / 12, "feet"),
  26928. weight: math.unit(70, "lb"),
  26929. name: "Back",
  26930. image: {
  26931. source: "./media/characters/maia/back.svg",
  26932. extra: 237 / 225
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Normal",
  26939. height: math.unit(3 + 4 / 12, "feet"),
  26940. default: true
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26946. {
  26947. front: {
  26948. height: math.unit(5 + 10 / 12, "feet"),
  26949. weight: math.unit(197, "lb"),
  26950. name: "Front",
  26951. image: {
  26952. source: "./media/characters/jabaro/front.svg",
  26953. extra: 225 / 216,
  26954. bottom: 5.06 / 230
  26955. }
  26956. },
  26957. back: {
  26958. height: math.unit(5 + 10 / 12, "feet"),
  26959. weight: math.unit(197, "lb"),
  26960. name: "Back",
  26961. image: {
  26962. source: "./media/characters/jabaro/back.svg",
  26963. extra: 225 / 219,
  26964. bottom: 1.9 / 227
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Normal",
  26971. height: math.unit(5 + 10 / 12, "feet"),
  26972. default: true
  26973. },
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26978. {
  26979. front: {
  26980. height: math.unit(5 + 8 / 12, "feet"),
  26981. weight: math.unit(139, "lb"),
  26982. name: "Front",
  26983. image: {
  26984. source: "./media/characters/risa/front.svg",
  26985. extra: 270 / 260,
  26986. bottom: 11.2 / 282
  26987. }
  26988. },
  26989. back: {
  26990. height: math.unit(5 + 8 / 12, "feet"),
  26991. weight: math.unit(139, "lb"),
  26992. name: "Back",
  26993. image: {
  26994. source: "./media/characters/risa/back.svg",
  26995. extra: 264 / 255,
  26996. bottom: 4 / 268
  26997. }
  26998. },
  26999. },
  27000. [
  27001. {
  27002. name: "Normal",
  27003. height: math.unit(5 + 8 / 12, "feet"),
  27004. default: true
  27005. },
  27006. ]
  27007. ))
  27008. characterMakers.push(() => makeCharacter(
  27009. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27010. {
  27011. front: {
  27012. height: math.unit(2 + 11 / 12, "feet"),
  27013. weight: math.unit(30, "lb"),
  27014. name: "Front",
  27015. image: {
  27016. source: "./media/characters/weatley/front.svg",
  27017. bottom: 10.7 / 414,
  27018. extra: 403.5 / 362
  27019. }
  27020. },
  27021. back: {
  27022. height: math.unit(2 + 11 / 12, "feet"),
  27023. weight: math.unit(30, "lb"),
  27024. name: "Back",
  27025. image: {
  27026. source: "./media/characters/weatley/back.svg",
  27027. bottom: 10.7 / 414,
  27028. extra: 403.5 / 362
  27029. }
  27030. },
  27031. },
  27032. [
  27033. {
  27034. name: "Normal",
  27035. height: math.unit(2 + 11 / 12, "feet"),
  27036. default: true
  27037. },
  27038. ]
  27039. ))
  27040. characterMakers.push(() => makeCharacter(
  27041. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27042. {
  27043. front: {
  27044. height: math.unit(5 + 2 / 12, "feet"),
  27045. weight: math.unit(50, "kg"),
  27046. name: "Front",
  27047. image: {
  27048. source: "./media/characters/mercury-crescent/front.svg",
  27049. extra: 1088 / 1033,
  27050. bottom: 18.9 / 1109
  27051. }
  27052. },
  27053. },
  27054. [
  27055. {
  27056. name: "Normal",
  27057. height: math.unit(5 + 2 / 12, "feet"),
  27058. default: true
  27059. },
  27060. ]
  27061. ))
  27062. characterMakers.push(() => makeCharacter(
  27063. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27064. {
  27065. front: {
  27066. height: math.unit(2, "feet"),
  27067. weight: math.unit(15, "kg"),
  27068. name: "Front",
  27069. image: {
  27070. source: "./media/characters/diamond-jones/front.svg",
  27071. extra: 727/723,
  27072. bottom: 46/773
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(2, "feet"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(3, "feet"),
  27089. weight: math.unit(30, "kg"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/sweet-bit/front.svg",
  27093. extra: 675 / 567,
  27094. bottom: 27.7 / 703
  27095. }
  27096. },
  27097. },
  27098. [
  27099. {
  27100. name: "Normal",
  27101. height: math.unit(3, "feet"),
  27102. default: true
  27103. },
  27104. ]
  27105. ))
  27106. characterMakers.push(() => makeCharacter(
  27107. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27108. {
  27109. side: {
  27110. height: math.unit(9.178, "feet"),
  27111. weight: math.unit(500, "lb"),
  27112. name: "Side",
  27113. image: {
  27114. source: "./media/characters/umbrazen/side.svg",
  27115. extra: 1730 / 1473,
  27116. bottom: 34.6 / 1765
  27117. }
  27118. },
  27119. },
  27120. [
  27121. {
  27122. name: "Normal",
  27123. height: math.unit(9.178, "feet"),
  27124. default: true
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(10, "feet"),
  27133. weight: math.unit(750, "lb"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/arlist/front.svg",
  27137. extra: 961 / 778,
  27138. bottom: 6.2 / 986
  27139. }
  27140. },
  27141. },
  27142. [
  27143. {
  27144. name: "Normal",
  27145. height: math.unit(10, "feet"),
  27146. default: true
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27152. {
  27153. front: {
  27154. height: math.unit(5 + 1 / 12, "feet"),
  27155. weight: math.unit(110, "lb"),
  27156. name: "Front",
  27157. image: {
  27158. source: "./media/characters/aradel/front.svg",
  27159. extra: 324 / 303,
  27160. bottom: 3.6 / 329.4
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Normal",
  27167. height: math.unit(5 + 1 / 12, "feet"),
  27168. default: true
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27174. {
  27175. dressed: {
  27176. height: math.unit(3 + 8 / 12, "feet"),
  27177. weight: math.unit(50, "lb"),
  27178. name: "Dressed",
  27179. image: {
  27180. source: "./media/characters/serryn/dressed.svg",
  27181. extra: 1792 / 1656,
  27182. bottom: 43.5 / 1840
  27183. }
  27184. },
  27185. nude: {
  27186. height: math.unit(3 + 8 / 12, "feet"),
  27187. weight: math.unit(50, "lb"),
  27188. name: "Nude",
  27189. image: {
  27190. source: "./media/characters/serryn/nude.svg",
  27191. extra: 1792 / 1656,
  27192. bottom: 43.5 / 1840
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(3 + 8 / 12, "feet"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27206. {
  27207. front: {
  27208. height: math.unit(7 + 10 / 12, "feet"),
  27209. weight: math.unit(255, "lb"),
  27210. name: "Front",
  27211. image: {
  27212. source: "./media/characters/xavier-thyme/front.svg",
  27213. extra: 3733 / 3642,
  27214. bottom: 131 / 3869
  27215. }
  27216. },
  27217. frontRaven: {
  27218. height: math.unit(7 + 10 / 12, "feet"),
  27219. weight: math.unit(255, "lb"),
  27220. name: "Front (Raven)",
  27221. image: {
  27222. source: "./media/characters/xavier-thyme/front-raven.svg",
  27223. extra: 4385 / 3642,
  27224. bottom: 131 / 4517
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Normal",
  27231. height: math.unit(7 + 10 / 12, "feet"),
  27232. default: true
  27233. },
  27234. ]
  27235. ))
  27236. characterMakers.push(() => makeCharacter(
  27237. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27238. {
  27239. front: {
  27240. height: math.unit(1.6, "m"),
  27241. weight: math.unit(50, "kg"),
  27242. name: "Front",
  27243. image: {
  27244. source: "./media/characters/kiki/front.svg",
  27245. extra: 4682 / 3610,
  27246. bottom: 115 / 4777
  27247. }
  27248. },
  27249. },
  27250. [
  27251. {
  27252. name: "Normal",
  27253. height: math.unit(1.6, "meters"),
  27254. default: true
  27255. },
  27256. ]
  27257. ))
  27258. characterMakers.push(() => makeCharacter(
  27259. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27260. {
  27261. front: {
  27262. height: math.unit(50, "m"),
  27263. weight: math.unit(500, "tonnes"),
  27264. name: "Front",
  27265. image: {
  27266. source: "./media/characters/ryoko/front.svg",
  27267. extra: 4632 / 3926,
  27268. bottom: 193 / 4823
  27269. }
  27270. },
  27271. },
  27272. [
  27273. {
  27274. name: "Normal",
  27275. height: math.unit(50, "meters"),
  27276. default: true
  27277. },
  27278. ]
  27279. ))
  27280. characterMakers.push(() => makeCharacter(
  27281. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27282. {
  27283. front: {
  27284. height: math.unit(30, "m"),
  27285. weight: math.unit(22, "tonnes"),
  27286. name: "Front",
  27287. image: {
  27288. source: "./media/characters/elio/front.svg",
  27289. extra: 4582 / 3720,
  27290. bottom: 236 / 4828
  27291. }
  27292. },
  27293. },
  27294. [
  27295. {
  27296. name: "Normal",
  27297. height: math.unit(30, "meters"),
  27298. default: true
  27299. },
  27300. ]
  27301. ))
  27302. characterMakers.push(() => makeCharacter(
  27303. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27304. {
  27305. front: {
  27306. height: math.unit(6 + 3 / 12, "feet"),
  27307. weight: math.unit(120, "lb"),
  27308. name: "Front",
  27309. image: {
  27310. source: "./media/characters/azura/front.svg",
  27311. extra: 1149 / 1135,
  27312. bottom: 45 / 1194
  27313. }
  27314. },
  27315. frontClothed: {
  27316. height: math.unit(6 + 3 / 12, "feet"),
  27317. weight: math.unit(120, "lb"),
  27318. name: "Front (Clothed)",
  27319. image: {
  27320. source: "./media/characters/azura/front-clothed.svg",
  27321. extra: 1149 / 1135,
  27322. bottom: 45 / 1194
  27323. }
  27324. },
  27325. },
  27326. [
  27327. {
  27328. name: "Normal",
  27329. height: math.unit(6 + 3 / 12, "feet"),
  27330. default: true
  27331. },
  27332. {
  27333. name: "Macro",
  27334. height: math.unit(20 + 6 / 12, "feet")
  27335. },
  27336. {
  27337. name: "Megamacro",
  27338. height: math.unit(12, "miles")
  27339. },
  27340. {
  27341. name: "Gigamacro",
  27342. height: math.unit(10000, "miles")
  27343. },
  27344. {
  27345. name: "Teramacro",
  27346. height: math.unit(900000, "miles")
  27347. },
  27348. ]
  27349. ))
  27350. characterMakers.push(() => makeCharacter(
  27351. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27352. {
  27353. front: {
  27354. height: math.unit(12, "feet"),
  27355. weight: math.unit(1, "ton"),
  27356. capacity: math.unit(660000, "gallons"),
  27357. name: "Front",
  27358. image: {
  27359. source: "./media/characters/zeus/front.svg",
  27360. extra: 5005 / 4717,
  27361. bottom: 363 / 5388
  27362. }
  27363. },
  27364. },
  27365. [
  27366. {
  27367. name: "Normal",
  27368. height: math.unit(12, "feet")
  27369. },
  27370. {
  27371. name: "Preferred Size",
  27372. height: math.unit(0.5, "miles"),
  27373. default: true
  27374. },
  27375. {
  27376. name: "Giga Horse",
  27377. height: math.unit(300, "miles")
  27378. },
  27379. {
  27380. name: "Riding Planets",
  27381. height: math.unit(30, "megameters")
  27382. },
  27383. {
  27384. name: "Cosmic Giant",
  27385. height: math.unit(3, "zettameters")
  27386. },
  27387. {
  27388. name: "Breeding God",
  27389. height: math.unit(9.92e22, "yottameters")
  27390. },
  27391. ]
  27392. ))
  27393. characterMakers.push(() => makeCharacter(
  27394. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27395. {
  27396. side: {
  27397. height: math.unit(9, "feet"),
  27398. weight: math.unit(1500, "kg"),
  27399. name: "Side",
  27400. image: {
  27401. source: "./media/characters/fang/side.svg",
  27402. extra: 924 / 866,
  27403. bottom: 47.5 / 972.3
  27404. }
  27405. },
  27406. },
  27407. [
  27408. {
  27409. name: "Normal",
  27410. height: math.unit(9, "feet"),
  27411. default: true
  27412. },
  27413. {
  27414. name: "Macro",
  27415. height: math.unit(75 + 6 / 12, "feet")
  27416. },
  27417. {
  27418. name: "Teramacro",
  27419. height: math.unit(50000, "miles")
  27420. },
  27421. ]
  27422. ))
  27423. characterMakers.push(() => makeCharacter(
  27424. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27425. {
  27426. front: {
  27427. height: math.unit(10, "feet"),
  27428. weight: math.unit(2, "tons"),
  27429. name: "Front",
  27430. image: {
  27431. source: "./media/characters/rekhit/front.svg",
  27432. extra: 2796 / 2590,
  27433. bottom: 225 / 3022
  27434. }
  27435. },
  27436. },
  27437. [
  27438. {
  27439. name: "Normal",
  27440. height: math.unit(10, "feet"),
  27441. default: true
  27442. },
  27443. {
  27444. name: "Macro",
  27445. height: math.unit(500, "feet")
  27446. },
  27447. ]
  27448. ))
  27449. characterMakers.push(() => makeCharacter(
  27450. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27451. {
  27452. front: {
  27453. height: math.unit(7 + 6.451 / 12, "feet"),
  27454. weight: math.unit(310, "lb"),
  27455. name: "Front",
  27456. image: {
  27457. source: "./media/characters/dahlia-verrick/front.svg",
  27458. extra: 1488 / 1365,
  27459. bottom: 6.2 / 1495
  27460. }
  27461. },
  27462. back: {
  27463. height: math.unit(7 + 6.451 / 12, "feet"),
  27464. weight: math.unit(310, "lb"),
  27465. name: "Back",
  27466. image: {
  27467. source: "./media/characters/dahlia-verrick/back.svg",
  27468. extra: 1472 / 1351,
  27469. bottom: 5.28 / 1477
  27470. }
  27471. },
  27472. frontBusiness: {
  27473. height: math.unit(7 + 6.451 / 12, "feet"),
  27474. weight: math.unit(200, "lb"),
  27475. name: "Front (Business)",
  27476. image: {
  27477. source: "./media/characters/dahlia-verrick/front-business.svg",
  27478. extra: 1478 / 1381,
  27479. bottom: 5.5 / 1484
  27480. }
  27481. },
  27482. frontCasual: {
  27483. height: math.unit(7 + 6.451 / 12, "feet"),
  27484. weight: math.unit(200, "lb"),
  27485. name: "Front (Casual)",
  27486. image: {
  27487. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27488. extra: 1478 / 1381,
  27489. bottom: 5.5 / 1484
  27490. }
  27491. },
  27492. },
  27493. [
  27494. {
  27495. name: "Travel-Sized",
  27496. height: math.unit(7.45, "inches")
  27497. },
  27498. {
  27499. name: "Normal",
  27500. height: math.unit(7 + 6.451 / 12, "feet"),
  27501. default: true
  27502. },
  27503. {
  27504. name: "Hitting the Town",
  27505. height: math.unit(37 + 8 / 12, "feet")
  27506. },
  27507. {
  27508. name: "Stomp in the Suburbs",
  27509. height: math.unit(964 + 9.728 / 12, "feet")
  27510. },
  27511. {
  27512. name: "Sit on the City",
  27513. height: math.unit(61747 + 10.592 / 12, "feet")
  27514. },
  27515. {
  27516. name: "Glomp the Globe",
  27517. height: math.unit(252919327 + 4.832 / 12, "feet")
  27518. },
  27519. ]
  27520. ))
  27521. characterMakers.push(() => makeCharacter(
  27522. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27523. {
  27524. front: {
  27525. height: math.unit(6 + 4 / 12, "feet"),
  27526. weight: math.unit(320, "lb"),
  27527. name: "Front",
  27528. image: {
  27529. source: "./media/characters/balina-mahigan/front.svg",
  27530. extra: 447 / 428,
  27531. bottom: 18 / 466
  27532. }
  27533. },
  27534. back: {
  27535. height: math.unit(6 + 4 / 12, "feet"),
  27536. weight: math.unit(320, "lb"),
  27537. name: "Back",
  27538. image: {
  27539. source: "./media/characters/balina-mahigan/back.svg",
  27540. extra: 445 / 428,
  27541. bottom: 4.07 / 448
  27542. }
  27543. },
  27544. arm: {
  27545. height: math.unit(1.88, "feet"),
  27546. name: "Arm",
  27547. image: {
  27548. source: "./media/characters/balina-mahigan/arm.svg"
  27549. }
  27550. },
  27551. backPort: {
  27552. height: math.unit(0.685, "feet"),
  27553. name: "Back Port",
  27554. image: {
  27555. source: "./media/characters/balina-mahigan/back-port.svg"
  27556. }
  27557. },
  27558. hoofpaw: {
  27559. height: math.unit(1.41, "feet"),
  27560. name: "Hoofpaw",
  27561. image: {
  27562. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27563. }
  27564. },
  27565. leftHandBack: {
  27566. height: math.unit(0.938, "feet"),
  27567. name: "Left Hand (Back)",
  27568. image: {
  27569. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27570. }
  27571. },
  27572. leftHandFront: {
  27573. height: math.unit(0.938, "feet"),
  27574. name: "Left Hand (Front)",
  27575. image: {
  27576. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27577. }
  27578. },
  27579. rightHandBack: {
  27580. height: math.unit(0.95, "feet"),
  27581. name: "Right Hand (Back)",
  27582. image: {
  27583. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27584. }
  27585. },
  27586. rightHandFront: {
  27587. height: math.unit(0.95, "feet"),
  27588. name: "Right Hand (Front)",
  27589. image: {
  27590. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27591. }
  27592. },
  27593. },
  27594. [
  27595. {
  27596. name: "Normal",
  27597. height: math.unit(6 + 4 / 12, "feet"),
  27598. default: true
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27604. {
  27605. front: {
  27606. height: math.unit(6, "feet"),
  27607. weight: math.unit(320, "lb"),
  27608. name: "Front",
  27609. image: {
  27610. source: "./media/characters/balina-mejeri/front.svg",
  27611. extra: 517 / 488,
  27612. bottom: 44.2 / 561
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Normal",
  27619. height: math.unit(6 + 4 / 12, "feet")
  27620. },
  27621. {
  27622. name: "Business",
  27623. height: math.unit(155, "feet"),
  27624. default: true
  27625. },
  27626. ]
  27627. ))
  27628. characterMakers.push(() => makeCharacter(
  27629. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27630. {
  27631. kneeling: {
  27632. height: math.unit(6 + 4 / 12, "feet"),
  27633. weight: math.unit(300 * 20, "lb"),
  27634. name: "Kneeling",
  27635. image: {
  27636. source: "./media/characters/balbarian/kneeling.svg",
  27637. extra: 922 / 862,
  27638. bottom: 42.4 / 965
  27639. }
  27640. },
  27641. },
  27642. [
  27643. {
  27644. name: "Normal",
  27645. height: math.unit(6 + 4 / 12, "feet")
  27646. },
  27647. {
  27648. name: "Treasured",
  27649. height: math.unit(18 + 9 / 12, "feet"),
  27650. default: true
  27651. },
  27652. {
  27653. name: "Macro",
  27654. height: math.unit(900, "feet")
  27655. },
  27656. ]
  27657. ))
  27658. characterMakers.push(() => makeCharacter(
  27659. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27660. {
  27661. front: {
  27662. height: math.unit(6 + 4 / 12, "feet"),
  27663. weight: math.unit(325, "lb"),
  27664. name: "Front",
  27665. image: {
  27666. source: "./media/characters/balina-amarini/front.svg",
  27667. extra: 415 / 403,
  27668. bottom: 19 / 433.4
  27669. }
  27670. },
  27671. back: {
  27672. height: math.unit(6 + 4 / 12, "feet"),
  27673. weight: math.unit(325, "lb"),
  27674. name: "Back",
  27675. image: {
  27676. source: "./media/characters/balina-amarini/back.svg",
  27677. extra: 415 / 403,
  27678. bottom: 13.5 / 432
  27679. }
  27680. },
  27681. overdrive: {
  27682. height: math.unit(6 + 4 / 12, "feet"),
  27683. weight: math.unit(400, "lb"),
  27684. name: "Overdrive",
  27685. image: {
  27686. source: "./media/characters/balina-amarini/overdrive.svg",
  27687. extra: 269 / 259,
  27688. bottom: 12 / 282
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Boom",
  27695. height: math.unit(9 + 10 / 12, "feet"),
  27696. default: true
  27697. },
  27698. {
  27699. name: "Macro",
  27700. height: math.unit(280, "feet")
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27706. {
  27707. goddess: {
  27708. height: math.unit(600, "feet"),
  27709. weight: math.unit(2000000, "tons"),
  27710. name: "Goddess",
  27711. image: {
  27712. source: "./media/characters/lady-kubwa/goddess.svg",
  27713. extra: 1240.5 / 1223,
  27714. bottom: 22 / 1263
  27715. }
  27716. },
  27717. goddesser: {
  27718. height: math.unit(900, "feet"),
  27719. weight: math.unit(20000000, "lb"),
  27720. name: "Goddess-er",
  27721. image: {
  27722. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27723. extra: 899 / 888,
  27724. bottom: 12.6 / 912
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Macro",
  27731. height: math.unit(600, "feet"),
  27732. default: true
  27733. },
  27734. {
  27735. name: "Megamacro",
  27736. height: math.unit(250, "miles")
  27737. },
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27742. {
  27743. front: {
  27744. height: math.unit(7 + 7 / 12, "feet"),
  27745. weight: math.unit(250, "lb"),
  27746. name: "Front",
  27747. image: {
  27748. source: "./media/characters/tala-grovehorn/front.svg",
  27749. extra: 2636 / 2525,
  27750. bottom: 147 / 2781
  27751. }
  27752. },
  27753. back: {
  27754. height: math.unit(7 + 7 / 12, "feet"),
  27755. weight: math.unit(250, "lb"),
  27756. name: "Back",
  27757. image: {
  27758. source: "./media/characters/tala-grovehorn/back.svg",
  27759. extra: 2635 / 2539,
  27760. bottom: 100 / 2732.8
  27761. }
  27762. },
  27763. mouth: {
  27764. height: math.unit(1.15, "feet"),
  27765. name: "Mouth",
  27766. image: {
  27767. source: "./media/characters/tala-grovehorn/mouth.svg"
  27768. }
  27769. },
  27770. dick: {
  27771. height: math.unit(2.36, "feet"),
  27772. name: "Dick",
  27773. image: {
  27774. source: "./media/characters/tala-grovehorn/dick.svg"
  27775. }
  27776. },
  27777. slit: {
  27778. height: math.unit(0.61, "feet"),
  27779. name: "Slit",
  27780. image: {
  27781. source: "./media/characters/tala-grovehorn/slit.svg"
  27782. }
  27783. },
  27784. },
  27785. [
  27786. ]
  27787. ))
  27788. characterMakers.push(() => makeCharacter(
  27789. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27790. {
  27791. front: {
  27792. height: math.unit(7 + 7 / 12, "feet"),
  27793. weight: math.unit(225, "lb"),
  27794. name: "Front",
  27795. image: {
  27796. source: "./media/characters/epona/front.svg",
  27797. extra: 2445 / 2290,
  27798. bottom: 251 / 2696
  27799. }
  27800. },
  27801. back: {
  27802. height: math.unit(7 + 7 / 12, "feet"),
  27803. weight: math.unit(225, "lb"),
  27804. name: "Back",
  27805. image: {
  27806. source: "./media/characters/epona/back.svg",
  27807. extra: 2546 / 2408,
  27808. bottom: 44 / 2589
  27809. }
  27810. },
  27811. genitals: {
  27812. height: math.unit(1.5, "feet"),
  27813. name: "Genitals",
  27814. image: {
  27815. source: "./media/characters/epona/genitals.svg"
  27816. }
  27817. },
  27818. },
  27819. [
  27820. {
  27821. name: "Normal",
  27822. height: math.unit(7 + 7 / 12, "feet"),
  27823. default: true
  27824. },
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27829. {
  27830. front: {
  27831. height: math.unit(7, "feet"),
  27832. weight: math.unit(518, "lb"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/avia-bloodbourn/front.svg",
  27836. extra: 1466 / 1350,
  27837. bottom: 65 / 1527
  27838. }
  27839. },
  27840. },
  27841. [
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27846. {
  27847. front: {
  27848. height: math.unit(9.35, "feet"),
  27849. weight: math.unit(600, "lb"),
  27850. name: "Front",
  27851. image: {
  27852. source: "./media/characters/amera/front.svg",
  27853. extra: 891 / 818,
  27854. bottom: 30 / 922.7
  27855. }
  27856. },
  27857. back: {
  27858. height: math.unit(9.35, "feet"),
  27859. weight: math.unit(600, "lb"),
  27860. name: "Back",
  27861. image: {
  27862. source: "./media/characters/amera/back.svg",
  27863. extra: 876 / 824,
  27864. bottom: 6.8 / 884
  27865. }
  27866. },
  27867. dick: {
  27868. height: math.unit(2.14, "feet"),
  27869. name: "Dick",
  27870. image: {
  27871. source: "./media/characters/amera/dick.svg"
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(9.35, "feet"),
  27879. default: true
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27885. {
  27886. kneeling: {
  27887. height: math.unit(3 + 4 / 12, "feet"),
  27888. weight: math.unit(90, "lb"),
  27889. name: "Kneeling",
  27890. image: {
  27891. source: "./media/characters/rosewen/kneeling.svg",
  27892. extra: 1835 / 1571,
  27893. bottom: 27.7 / 1862
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(3 + 4 / 12, "feet"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27907. {
  27908. front: {
  27909. height: math.unit(5 + 10 / 12, "feet"),
  27910. weight: math.unit(200, "lb"),
  27911. name: "Front",
  27912. image: {
  27913. source: "./media/characters/sabah/front.svg",
  27914. extra: 849 / 763,
  27915. bottom: 33.9 / 881
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(5 + 10 / 12, "feet"),
  27923. default: true
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27929. {
  27930. front: {
  27931. height: math.unit(3 + 5 / 12, "feet"),
  27932. weight: math.unit(40, "kg"),
  27933. name: "Front",
  27934. image: {
  27935. source: "./media/characters/purple-flame/front.svg",
  27936. extra: 1577 / 1412,
  27937. bottom: 97 / 1694
  27938. }
  27939. },
  27940. frontDressed: {
  27941. height: math.unit(3 + 5 / 12, "feet"),
  27942. weight: math.unit(40, "kg"),
  27943. name: "Front (Dressed)",
  27944. image: {
  27945. source: "./media/characters/purple-flame/front-dressed.svg",
  27946. extra: 1577 / 1412,
  27947. bottom: 97 / 1694
  27948. }
  27949. },
  27950. headphones: {
  27951. height: math.unit(0.85, "feet"),
  27952. name: "Headphones",
  27953. image: {
  27954. source: "./media/characters/purple-flame/headphones.svg"
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Really Small",
  27961. height: math.unit(5, "cm")
  27962. },
  27963. {
  27964. name: "Micro",
  27965. height: math.unit(1 + 5 / 12, "feet")
  27966. },
  27967. {
  27968. name: "Normal",
  27969. height: math.unit(3 + 5 / 12, "feet"),
  27970. default: true
  27971. },
  27972. {
  27973. name: "Minimacro",
  27974. height: math.unit(125, "feet")
  27975. },
  27976. {
  27977. name: "Macro",
  27978. height: math.unit(0.5, "miles")
  27979. },
  27980. {
  27981. name: "Megamacro",
  27982. height: math.unit(50, "miles")
  27983. },
  27984. {
  27985. name: "Gigantic",
  27986. height: math.unit(750, "miles")
  27987. },
  27988. {
  27989. name: "Planetary",
  27990. height: math.unit(15000, "miles")
  27991. },
  27992. ]
  27993. ))
  27994. characterMakers.push(() => makeCharacter(
  27995. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27996. {
  27997. front: {
  27998. height: math.unit(14, "feet"),
  27999. weight: math.unit(959, "lb"),
  28000. name: "Front",
  28001. image: {
  28002. source: "./media/characters/arsenal/front.svg",
  28003. extra: 2357 / 2157,
  28004. bottom: 93 / 2458
  28005. }
  28006. },
  28007. },
  28008. [
  28009. {
  28010. name: "Normal",
  28011. height: math.unit(14, "feet"),
  28012. default: true
  28013. },
  28014. ]
  28015. ))
  28016. characterMakers.push(() => makeCharacter(
  28017. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28018. {
  28019. front: {
  28020. height: math.unit(6, "feet"),
  28021. weight: math.unit(150, "lb"),
  28022. name: "Front",
  28023. image: {
  28024. source: "./media/characters/adira/front.svg",
  28025. extra: 1078 / 1029,
  28026. bottom: 87 / 1166
  28027. }
  28028. },
  28029. },
  28030. [
  28031. {
  28032. name: "Micro",
  28033. height: math.unit(4, "inches"),
  28034. default: true
  28035. },
  28036. {
  28037. name: "Macro",
  28038. height: math.unit(50, "feet")
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(16, "feet"),
  28047. weight: math.unit(1000, "lb"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/grim/front.svg",
  28051. extra: 622 / 614,
  28052. bottom: 18.1 / 642
  28053. }
  28054. },
  28055. back: {
  28056. height: math.unit(16, "feet"),
  28057. weight: math.unit(1000, "lb"),
  28058. name: "Back",
  28059. image: {
  28060. source: "./media/characters/grim/back.svg",
  28061. extra: 610.6 / 602,
  28062. bottom: 40.8 / 652
  28063. }
  28064. },
  28065. hunched: {
  28066. height: math.unit(9.75, "feet"),
  28067. weight: math.unit(1000, "lb"),
  28068. name: "Hunched",
  28069. image: {
  28070. source: "./media/characters/grim/hunched.svg",
  28071. extra: 304 / 297,
  28072. bottom: 35.4 / 394
  28073. }
  28074. },
  28075. },
  28076. [
  28077. {
  28078. name: "Normal",
  28079. height: math.unit(16, "feet"),
  28080. default: true
  28081. },
  28082. ]
  28083. ))
  28084. characterMakers.push(() => makeCharacter(
  28085. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28086. {
  28087. front: {
  28088. height: math.unit(2.3, "meters"),
  28089. weight: math.unit(300, "lb"),
  28090. name: "Front",
  28091. image: {
  28092. source: "./media/characters/sinja/front-sfw.svg",
  28093. extra: 1393 / 1294,
  28094. bottom: 70 / 1463
  28095. }
  28096. },
  28097. frontNsfw: {
  28098. height: math.unit(2.3, "meters"),
  28099. weight: math.unit(300, "lb"),
  28100. name: "Front (NSFW)",
  28101. image: {
  28102. source: "./media/characters/sinja/front-nsfw.svg",
  28103. extra: 1393 / 1294,
  28104. bottom: 70 / 1463
  28105. }
  28106. },
  28107. back: {
  28108. height: math.unit(2.3, "meters"),
  28109. weight: math.unit(300, "lb"),
  28110. name: "Back",
  28111. image: {
  28112. source: "./media/characters/sinja/back.svg",
  28113. extra: 1393 / 1294,
  28114. bottom: 70 / 1463
  28115. }
  28116. },
  28117. head: {
  28118. height: math.unit(1.771, "feet"),
  28119. name: "Head",
  28120. image: {
  28121. source: "./media/characters/sinja/head.svg"
  28122. }
  28123. },
  28124. slit: {
  28125. height: math.unit(0.8, "feet"),
  28126. name: "Slit",
  28127. image: {
  28128. source: "./media/characters/sinja/slit.svg"
  28129. }
  28130. },
  28131. },
  28132. [
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(2.3, "meters")
  28136. },
  28137. {
  28138. name: "Macro",
  28139. height: math.unit(91, "meters"),
  28140. default: true
  28141. },
  28142. {
  28143. name: "Megamacro",
  28144. height: math.unit(91440, "meters")
  28145. },
  28146. {
  28147. name: "Gigamacro",
  28148. height: math.unit(60960000, "meters")
  28149. },
  28150. {
  28151. name: "Teramacro",
  28152. height: math.unit(9144000000, "meters")
  28153. },
  28154. ]
  28155. ))
  28156. characterMakers.push(() => makeCharacter(
  28157. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28158. {
  28159. front: {
  28160. height: math.unit(1.7, "meters"),
  28161. weight: math.unit(130, "lb"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/kyu/front.svg",
  28165. extra: 415 / 395,
  28166. bottom: 5 / 420
  28167. }
  28168. },
  28169. head: {
  28170. height: math.unit(1.75, "feet"),
  28171. name: "Head",
  28172. image: {
  28173. source: "./media/characters/kyu/head.svg"
  28174. }
  28175. },
  28176. foot: {
  28177. height: math.unit(0.81, "feet"),
  28178. name: "Foot",
  28179. image: {
  28180. source: "./media/characters/kyu/foot.svg"
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(1.7, "meters")
  28188. },
  28189. {
  28190. name: "Macro",
  28191. height: math.unit(131, "feet"),
  28192. default: true
  28193. },
  28194. {
  28195. name: "Megamacro",
  28196. height: math.unit(91440, "meters")
  28197. },
  28198. {
  28199. name: "Gigamacro",
  28200. height: math.unit(60960000, "meters")
  28201. },
  28202. {
  28203. name: "Teramacro",
  28204. height: math.unit(9144000000, "meters")
  28205. },
  28206. ]
  28207. ))
  28208. characterMakers.push(() => makeCharacter(
  28209. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28210. {
  28211. front: {
  28212. height: math.unit(7 + 1 / 12, "feet"),
  28213. weight: math.unit(250, "lb"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/joey/front.svg",
  28217. extra: 1791 / 1537,
  28218. bottom: 28 / 1816
  28219. }
  28220. },
  28221. },
  28222. [
  28223. {
  28224. name: "Micro",
  28225. height: math.unit(3, "inches")
  28226. },
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(7 + 1 / 12, "feet"),
  28230. default: true
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28236. {
  28237. front: {
  28238. height: math.unit(165, "cm"),
  28239. weight: math.unit(140, "lb"),
  28240. name: "Front",
  28241. image: {
  28242. source: "./media/characters/sam-evans/front.svg",
  28243. extra: 3417 / 3230,
  28244. bottom: 41.3 / 3417
  28245. }
  28246. },
  28247. frontSixTails: {
  28248. height: math.unit(165, "cm"),
  28249. weight: math.unit(140, "lb"),
  28250. name: "Front-six-tails",
  28251. image: {
  28252. source: "./media/characters/sam-evans/front-six-tails.svg",
  28253. extra: 3417 / 3230,
  28254. bottom: 41.3 / 3417
  28255. }
  28256. },
  28257. back: {
  28258. height: math.unit(165, "cm"),
  28259. weight: math.unit(140, "lb"),
  28260. name: "Back",
  28261. image: {
  28262. source: "./media/characters/sam-evans/back.svg",
  28263. extra: 3227 / 3032,
  28264. bottom: 6.8 / 3234
  28265. }
  28266. },
  28267. face: {
  28268. height: math.unit(0.68, "feet"),
  28269. name: "Face",
  28270. image: {
  28271. source: "./media/characters/sam-evans/face.svg"
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(165, "cm"),
  28279. default: true
  28280. },
  28281. {
  28282. name: "Macro",
  28283. height: math.unit(100, "meters")
  28284. },
  28285. {
  28286. name: "Macro+",
  28287. height: math.unit(800, "meters")
  28288. },
  28289. {
  28290. name: "Macro++",
  28291. height: math.unit(3, "km")
  28292. },
  28293. {
  28294. name: "Macro+++",
  28295. height: math.unit(30, "km")
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(10, "feet"),
  28304. weight: math.unit(750, "lb"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/juliet-a/front.svg",
  28308. extra: 1766 / 1720,
  28309. bottom: 43 / 1809
  28310. }
  28311. },
  28312. back: {
  28313. height: math.unit(10, "feet"),
  28314. weight: math.unit(750, "lb"),
  28315. name: "Back",
  28316. image: {
  28317. source: "./media/characters/juliet-a/back.svg",
  28318. extra: 1781 / 1734,
  28319. bottom: 35 / 1810,
  28320. }
  28321. },
  28322. },
  28323. [
  28324. {
  28325. name: "Normal",
  28326. height: math.unit(10, "feet"),
  28327. default: true
  28328. },
  28329. {
  28330. name: "Dragon Form",
  28331. height: math.unit(250, "feet")
  28332. },
  28333. {
  28334. name: "Macro",
  28335. height: math.unit(1000, "feet")
  28336. },
  28337. {
  28338. name: "Megamacro",
  28339. height: math.unit(10000, "feet")
  28340. }
  28341. ]
  28342. ))
  28343. characterMakers.push(() => makeCharacter(
  28344. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28345. {
  28346. regular: {
  28347. height: math.unit(7 + 3 / 12, "feet"),
  28348. weight: math.unit(260, "lb"),
  28349. name: "Regular",
  28350. image: {
  28351. source: "./media/characters/wild/regular.svg",
  28352. extra: 97.45 / 92,
  28353. bottom: 6.8 / 104.3
  28354. }
  28355. },
  28356. biggums: {
  28357. height: math.unit(8 + 6 / 12, "feet"),
  28358. weight: math.unit(425, "lb"),
  28359. name: "Biggums",
  28360. image: {
  28361. source: "./media/characters/wild/biggums.svg",
  28362. extra: 97.45 / 92,
  28363. bottom: 7.5 / 132.34
  28364. }
  28365. },
  28366. mawRegular: {
  28367. height: math.unit(1.24, "feet"),
  28368. name: "Maw (Regular)",
  28369. image: {
  28370. source: "./media/characters/wild/maw.svg"
  28371. }
  28372. },
  28373. mawBiggums: {
  28374. height: math.unit(1.47, "feet"),
  28375. name: "Maw (Biggums)",
  28376. image: {
  28377. source: "./media/characters/wild/maw.svg"
  28378. }
  28379. },
  28380. },
  28381. [
  28382. {
  28383. name: "Normal",
  28384. height: math.unit(7 + 3 / 12, "feet"),
  28385. default: true
  28386. },
  28387. ]
  28388. ))
  28389. characterMakers.push(() => makeCharacter(
  28390. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28391. {
  28392. front: {
  28393. height: math.unit(2.5, "meters"),
  28394. weight: math.unit(200, "kg"),
  28395. name: "Front",
  28396. image: {
  28397. source: "./media/characters/vidar/front.svg",
  28398. extra: 2994 / 2795,
  28399. bottom: 56 / 3061
  28400. }
  28401. },
  28402. back: {
  28403. height: math.unit(2.5, "meters"),
  28404. weight: math.unit(200, "kg"),
  28405. name: "Back",
  28406. image: {
  28407. source: "./media/characters/vidar/back.svg",
  28408. extra: 3131 / 2928,
  28409. bottom: 13.5 / 3141.5
  28410. }
  28411. },
  28412. feral: {
  28413. height: math.unit(2.5, "meters"),
  28414. weight: math.unit(2000, "kg"),
  28415. name: "Feral",
  28416. image: {
  28417. source: "./media/characters/vidar/feral.svg",
  28418. extra: 2790 / 1765,
  28419. bottom: 6 / 2796
  28420. }
  28421. },
  28422. },
  28423. [
  28424. {
  28425. name: "Normal",
  28426. height: math.unit(2.5, "meters"),
  28427. default: true
  28428. },
  28429. {
  28430. name: "Macro",
  28431. height: math.unit(100, "meters")
  28432. },
  28433. ]
  28434. ))
  28435. characterMakers.push(() => makeCharacter(
  28436. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28437. {
  28438. front: {
  28439. height: math.unit(5 + 9 / 12, "feet"),
  28440. weight: math.unit(120, "lb"),
  28441. name: "Front",
  28442. image: {
  28443. source: "./media/characters/ash/front.svg",
  28444. extra: 2189 / 1961,
  28445. bottom: 5.2 / 2194
  28446. }
  28447. },
  28448. },
  28449. [
  28450. {
  28451. name: "Normal",
  28452. height: math.unit(5 + 9 / 12, "feet"),
  28453. default: true
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(9, "feet"),
  28462. weight: math.unit(10000, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/gygabite/front.svg",
  28466. bottom: 31.7 / 537.8,
  28467. extra: 505 / 370
  28468. }
  28469. },
  28470. },
  28471. [
  28472. {
  28473. name: "Normal",
  28474. height: math.unit(9, "feet"),
  28475. default: true
  28476. },
  28477. ]
  28478. ))
  28479. characterMakers.push(() => makeCharacter(
  28480. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28481. {
  28482. front: {
  28483. height: math.unit(12, "feet"),
  28484. weight: math.unit(35000, "lb"),
  28485. name: "Front",
  28486. image: {
  28487. source: "./media/characters/p0tat0/front.svg",
  28488. extra: 1065 / 921,
  28489. bottom: 55.7 / 1121.25
  28490. }
  28491. },
  28492. },
  28493. [
  28494. {
  28495. name: "Normal",
  28496. height: math.unit(12, "feet"),
  28497. default: true
  28498. },
  28499. ]
  28500. ))
  28501. characterMakers.push(() => makeCharacter(
  28502. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28503. {
  28504. side: {
  28505. height: math.unit(6.5, "feet"),
  28506. weight: math.unit(800, "lb"),
  28507. name: "Side",
  28508. image: {
  28509. source: "./media/characters/dusk/side.svg",
  28510. extra: 615 / 373,
  28511. bottom: 53 / 664
  28512. }
  28513. },
  28514. sitting: {
  28515. height: math.unit(7, "feet"),
  28516. weight: math.unit(800, "lb"),
  28517. name: "Sitting",
  28518. image: {
  28519. source: "./media/characters/dusk/sitting.svg",
  28520. extra: 753 / 425,
  28521. bottom: 33 / 774
  28522. }
  28523. },
  28524. head: {
  28525. height: math.unit(6.1, "feet"),
  28526. name: "Head",
  28527. image: {
  28528. source: "./media/characters/dusk/head.svg"
  28529. }
  28530. },
  28531. },
  28532. [
  28533. {
  28534. name: "Normal",
  28535. height: math.unit(7, "feet"),
  28536. default: true
  28537. },
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28542. {
  28543. front: {
  28544. height: math.unit(15, "feet"),
  28545. weight: math.unit(7000, "lb"),
  28546. name: "Front",
  28547. image: {
  28548. source: "./media/characters/jay-direwolf/front.svg",
  28549. extra: 1810 / 1732,
  28550. bottom: 66 / 1892
  28551. }
  28552. },
  28553. },
  28554. [
  28555. {
  28556. name: "Normal",
  28557. height: math.unit(15, "feet"),
  28558. default: true
  28559. },
  28560. ]
  28561. ))
  28562. characterMakers.push(() => makeCharacter(
  28563. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28564. {
  28565. front: {
  28566. height: math.unit(4 + 9 / 12, "feet"),
  28567. weight: math.unit(130, "lb"),
  28568. name: "Front",
  28569. image: {
  28570. source: "./media/characters/anchovie/front.svg",
  28571. extra: 382 / 350,
  28572. bottom: 25 / 409
  28573. }
  28574. },
  28575. back: {
  28576. height: math.unit(4 + 9 / 12, "feet"),
  28577. weight: math.unit(130, "lb"),
  28578. name: "Back",
  28579. image: {
  28580. source: "./media/characters/anchovie/back.svg",
  28581. extra: 385 / 352,
  28582. bottom: 16.6 / 402
  28583. }
  28584. },
  28585. frontDressed: {
  28586. height: math.unit(4 + 9 / 12, "feet"),
  28587. weight: math.unit(130, "lb"),
  28588. name: "Front (Dressed)",
  28589. image: {
  28590. source: "./media/characters/anchovie/front-dressed.svg",
  28591. extra: 382 / 350,
  28592. bottom: 25 / 409
  28593. }
  28594. },
  28595. backDressed: {
  28596. height: math.unit(4 + 9 / 12, "feet"),
  28597. weight: math.unit(130, "lb"),
  28598. name: "Back (Dressed)",
  28599. image: {
  28600. source: "./media/characters/anchovie/back-dressed.svg",
  28601. extra: 385 / 352,
  28602. bottom: 16.6 / 402
  28603. }
  28604. },
  28605. },
  28606. [
  28607. {
  28608. name: "Micro",
  28609. height: math.unit(6.4, "inches")
  28610. },
  28611. {
  28612. name: "Normal",
  28613. height: math.unit(4 + 9 / 12, "feet"),
  28614. default: true
  28615. },
  28616. ]
  28617. ))
  28618. characterMakers.push(() => makeCharacter(
  28619. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28620. {
  28621. front: {
  28622. height: math.unit(2, "meters"),
  28623. weight: math.unit(180, "lb"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/acidrenamon/front.svg",
  28627. extra: 987 / 890,
  28628. bottom: 22.8 / 1009
  28629. }
  28630. },
  28631. back: {
  28632. height: math.unit(2, "meters"),
  28633. weight: math.unit(180, "lb"),
  28634. name: "Back",
  28635. image: {
  28636. source: "./media/characters/acidrenamon/back.svg",
  28637. extra: 983 / 891,
  28638. bottom: 8.4 / 992
  28639. }
  28640. },
  28641. head: {
  28642. height: math.unit(1.92, "feet"),
  28643. name: "Head",
  28644. image: {
  28645. source: "./media/characters/acidrenamon/head.svg"
  28646. }
  28647. },
  28648. rump: {
  28649. height: math.unit(1.72, "feet"),
  28650. name: "Rump",
  28651. image: {
  28652. source: "./media/characters/acidrenamon/rump.svg"
  28653. }
  28654. },
  28655. tail: {
  28656. height: math.unit(4.2, "feet"),
  28657. name: "Tail",
  28658. image: {
  28659. source: "./media/characters/acidrenamon/tail.svg"
  28660. }
  28661. },
  28662. },
  28663. [
  28664. {
  28665. name: "Normal",
  28666. height: math.unit(2, "meters"),
  28667. default: true
  28668. },
  28669. {
  28670. name: "Minimacro",
  28671. height: math.unit(7, "meters")
  28672. },
  28673. {
  28674. name: "Macro",
  28675. height: math.unit(200, "meters")
  28676. },
  28677. {
  28678. name: "Gigamacro",
  28679. height: math.unit(0.2, "earths")
  28680. },
  28681. ]
  28682. ))
  28683. characterMakers.push(() => makeCharacter(
  28684. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28685. {
  28686. front: {
  28687. height: math.unit(152, "feet"),
  28688. name: "Front",
  28689. image: {
  28690. source: "./media/characters/kenzie-lee/front.svg",
  28691. extra: 1869/1774,
  28692. bottom: 128/1997
  28693. }
  28694. },
  28695. side: {
  28696. height: math.unit(86, "feet"),
  28697. name: "Side",
  28698. image: {
  28699. source: "./media/characters/kenzie-lee/side.svg",
  28700. extra: 930/815,
  28701. bottom: 177/1107
  28702. }
  28703. },
  28704. paw: {
  28705. height: math.unit(15, "feet"),
  28706. name: "Paw",
  28707. image: {
  28708. source: "./media/characters/kenzie-lee/paw.svg"
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Kenzie Flea",
  28715. height: math.unit(2, "mm"),
  28716. default: true
  28717. },
  28718. {
  28719. name: "Micro",
  28720. height: math.unit(2, "inches")
  28721. },
  28722. {
  28723. name: "Normal",
  28724. height: math.unit(152, "feet")
  28725. },
  28726. {
  28727. name: "Megamacro",
  28728. height: math.unit(7, "miles")
  28729. },
  28730. {
  28731. name: "Gigamacro",
  28732. height: math.unit(8000, "miles")
  28733. },
  28734. ]
  28735. ))
  28736. characterMakers.push(() => makeCharacter(
  28737. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28738. {
  28739. front: {
  28740. height: math.unit(6, "feet"),
  28741. name: "Front",
  28742. image: {
  28743. source: "./media/characters/withers/front.svg",
  28744. extra: 1935/1760,
  28745. bottom: 72/2007
  28746. }
  28747. },
  28748. back: {
  28749. height: math.unit(6, "feet"),
  28750. name: "Back",
  28751. image: {
  28752. source: "./media/characters/withers/back.svg",
  28753. extra: 1944/1792,
  28754. bottom: 12/1956
  28755. }
  28756. },
  28757. dressed: {
  28758. height: math.unit(6, "feet"),
  28759. name: "Dressed",
  28760. image: {
  28761. source: "./media/characters/withers/dressed.svg",
  28762. extra: 1937/1765,
  28763. bottom: 73/2010
  28764. }
  28765. },
  28766. phase1: {
  28767. height: math.unit(1.1, "feet"),
  28768. name: "Phase 1",
  28769. image: {
  28770. source: "./media/characters/withers/phase-1.svg",
  28771. extra: 1885/1232,
  28772. bottom: 0/1885
  28773. }
  28774. },
  28775. phase2: {
  28776. height: math.unit(1.05, "feet"),
  28777. name: "Phase 2",
  28778. image: {
  28779. source: "./media/characters/withers/phase-2.svg",
  28780. extra: 1792/1090,
  28781. bottom: 0/1792
  28782. }
  28783. },
  28784. partyWipe: {
  28785. height: math.unit(1.1, "feet"),
  28786. name: "Party Wipe",
  28787. image: {
  28788. source: "./media/characters/withers/party-wipe.svg",
  28789. extra: 1864/1207,
  28790. bottom: 0/1864
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Macro",
  28797. height: math.unit(167, "feet"),
  28798. default: true
  28799. },
  28800. {
  28801. name: "Megamacro",
  28802. height: math.unit(15, "miles")
  28803. }
  28804. ]
  28805. ))
  28806. characterMakers.push(() => makeCharacter(
  28807. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28808. {
  28809. front: {
  28810. height: math.unit(6 + 7 / 12, "feet"),
  28811. weight: math.unit(250, "lb"),
  28812. name: "Front",
  28813. image: {
  28814. source: "./media/characters/nemoskii/front.svg",
  28815. extra: 2270 / 1734,
  28816. bottom: 86 / 2354
  28817. }
  28818. },
  28819. back: {
  28820. height: math.unit(6 + 7 / 12, "feet"),
  28821. weight: math.unit(250, "lb"),
  28822. name: "Back",
  28823. image: {
  28824. source: "./media/characters/nemoskii/back.svg",
  28825. extra: 1845 / 1788,
  28826. bottom: 10.5 / 1852
  28827. }
  28828. },
  28829. head: {
  28830. height: math.unit(1.31, "feet"),
  28831. name: "Head",
  28832. image: {
  28833. source: "./media/characters/nemoskii/head.svg"
  28834. }
  28835. },
  28836. },
  28837. [
  28838. {
  28839. name: "Micro",
  28840. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28841. },
  28842. {
  28843. name: "Normal",
  28844. height: math.unit(6 + 7 / 12, "feet"),
  28845. default: true
  28846. },
  28847. {
  28848. name: "Macro",
  28849. height: math.unit((6 + 7 / 12) * 150, "feet")
  28850. },
  28851. {
  28852. name: "Macro+",
  28853. height: math.unit((6 + 7 / 12) * 500, "feet")
  28854. },
  28855. {
  28856. name: "Megamacro",
  28857. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(1, "mile"),
  28866. weight: math.unit(265261.9, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/shui/front.svg",
  28870. extra: 1633 / 1564,
  28871. bottom: 91.5 / 1726
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Macro",
  28878. height: math.unit(1, "mile"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(12 + 6 / 12, "feet"),
  28888. weight: math.unit(1342, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/arokh-takakura/front.svg",
  28892. extra: 1089 / 1043,
  28893. bottom: 77.4 / 1176.7
  28894. }
  28895. },
  28896. back: {
  28897. height: math.unit(12 + 6 / 12, "feet"),
  28898. weight: math.unit(1342, "lb"),
  28899. name: "Back",
  28900. image: {
  28901. source: "./media/characters/arokh-takakura/back.svg",
  28902. extra: 1046 / 1019,
  28903. bottom: 102 / 1150
  28904. }
  28905. },
  28906. },
  28907. [
  28908. {
  28909. name: "Big",
  28910. height: math.unit(12 + 6 / 12, "feet"),
  28911. default: true
  28912. },
  28913. ]
  28914. ))
  28915. characterMakers.push(() => makeCharacter(
  28916. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28917. {
  28918. front: {
  28919. height: math.unit(5 + 6 / 12, "feet"),
  28920. weight: math.unit(150, "lb"),
  28921. name: "Front",
  28922. image: {
  28923. source: "./media/characters/theo/front.svg",
  28924. extra: 1184 / 1131,
  28925. bottom: 7.4 / 1191
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Micro",
  28932. height: math.unit(5, "inches")
  28933. },
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(5 + 6 / 12, "feet"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28943. {
  28944. front: {
  28945. height: math.unit(5 + 9 / 12, "feet"),
  28946. weight: math.unit(130, "lb"),
  28947. name: "Front",
  28948. image: {
  28949. source: "./media/characters/cecelia-swift/front.svg",
  28950. extra: 502 / 484,
  28951. bottom: 23 / 523
  28952. }
  28953. },
  28954. back: {
  28955. height: math.unit(5 + 9 / 12, "feet"),
  28956. weight: math.unit(130, "lb"),
  28957. name: "Back",
  28958. image: {
  28959. source: "./media/characters/cecelia-swift/back.svg",
  28960. extra: 499 / 485,
  28961. bottom: 12 / 511
  28962. }
  28963. },
  28964. head: {
  28965. height: math.unit(0.90, "feet"),
  28966. name: "Head",
  28967. image: {
  28968. source: "./media/characters/cecelia-swift/head.svg"
  28969. }
  28970. },
  28971. rump: {
  28972. height: math.unit(1.75, "feet"),
  28973. name: "Rump",
  28974. image: {
  28975. source: "./media/characters/cecelia-swift/rump.svg"
  28976. }
  28977. },
  28978. },
  28979. [
  28980. {
  28981. name: "Normal",
  28982. height: math.unit(5 + 9 / 12, "feet"),
  28983. default: true
  28984. },
  28985. {
  28986. name: "Big",
  28987. height: math.unit(50, "feet")
  28988. },
  28989. {
  28990. name: "Macro",
  28991. height: math.unit(100, "feet")
  28992. },
  28993. {
  28994. name: "Macro+",
  28995. height: math.unit(500, "feet")
  28996. },
  28997. {
  28998. name: "Macro++",
  28999. height: math.unit(1000, "feet")
  29000. },
  29001. ]
  29002. ))
  29003. characterMakers.push(() => makeCharacter(
  29004. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29005. {
  29006. front: {
  29007. height: math.unit(6, "feet"),
  29008. weight: math.unit(150, "lb"),
  29009. name: "Front",
  29010. image: {
  29011. source: "./media/characters/kaunan/front.svg",
  29012. extra: 2890 / 2523,
  29013. bottom: 49 / 2939
  29014. }
  29015. },
  29016. },
  29017. [
  29018. {
  29019. name: "Macro",
  29020. height: math.unit(150, "feet"),
  29021. default: true
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29027. {
  29028. front: {
  29029. height: math.unit(175, "cm"),
  29030. weight: math.unit(60, "kg"),
  29031. name: "Front",
  29032. image: {
  29033. source: "./media/characters/fei/front.svg",
  29034. extra: 1873/1723,
  29035. bottom: 53/1926
  29036. }
  29037. },
  29038. },
  29039. [
  29040. {
  29041. name: "Mortal",
  29042. height: math.unit(175, "cm")
  29043. },
  29044. {
  29045. name: "Normal",
  29046. height: math.unit(3500, "m"),
  29047. default: true
  29048. },
  29049. {
  29050. name: "Stroll",
  29051. height: math.unit(17.5, "km")
  29052. },
  29053. {
  29054. name: "Showoff",
  29055. height: math.unit(175, "km")
  29056. },
  29057. ]
  29058. ))
  29059. characterMakers.push(() => makeCharacter(
  29060. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29061. {
  29062. front: {
  29063. height: math.unit(7, "feet"),
  29064. weight: math.unit(1000, "kg"),
  29065. name: "Front",
  29066. image: {
  29067. source: "./media/characters/edrax/front.svg",
  29068. extra: 2838 / 2550,
  29069. bottom: 130 / 2968
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Small",
  29076. height: math.unit(7, "feet")
  29077. },
  29078. {
  29079. name: "Normal",
  29080. height: math.unit(1500, "meters")
  29081. },
  29082. {
  29083. name: "Mega",
  29084. height: math.unit(12000000, "km"),
  29085. default: true
  29086. },
  29087. {
  29088. name: "Megamacro",
  29089. height: math.unit(10600000, "lightyears")
  29090. },
  29091. {
  29092. name: "Hypermacro",
  29093. height: math.unit(256, "yottameters")
  29094. },
  29095. ]
  29096. ))
  29097. characterMakers.push(() => makeCharacter(
  29098. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29099. {
  29100. front: {
  29101. height: math.unit(10, "feet"),
  29102. weight: math.unit(750, "lb"),
  29103. name: "Front",
  29104. image: {
  29105. source: "./media/characters/clove/front.svg",
  29106. extra: 1918/1751,
  29107. bottom: 52/1970
  29108. }
  29109. },
  29110. back: {
  29111. height: math.unit(10, "feet"),
  29112. weight: math.unit(750, "lb"),
  29113. name: "Back",
  29114. image: {
  29115. source: "./media/characters/clove/back.svg",
  29116. extra: 1912/1747,
  29117. bottom: 50/1962
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(10, "feet"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(4, "feet"),
  29134. weight: math.unit(50, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/alex-rabbit/front.svg",
  29138. extra: 507 / 458,
  29139. bottom: 18.5 / 527
  29140. }
  29141. },
  29142. back: {
  29143. height: math.unit(4, "feet"),
  29144. weight: math.unit(50, "lb"),
  29145. name: "Back",
  29146. image: {
  29147. source: "./media/characters/alex-rabbit/back.svg",
  29148. extra: 502 / 460,
  29149. bottom: 18.9 / 521
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(4, "feet"),
  29157. default: true
  29158. },
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29163. {
  29164. front: {
  29165. height: math.unit(1 + 3 / 12, "feet"),
  29166. weight: math.unit(80, "lb"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/zander-rose/front.svg",
  29170. extra: 916 / 797,
  29171. bottom: 17 / 933
  29172. }
  29173. },
  29174. back: {
  29175. height: math.unit(1 + 3 / 12, "feet"),
  29176. weight: math.unit(80, "lb"),
  29177. name: "Back",
  29178. image: {
  29179. source: "./media/characters/zander-rose/back.svg",
  29180. extra: 903 / 779,
  29181. bottom: 31 / 934
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Normal",
  29188. height: math.unit(1 + 3 / 12, "feet"),
  29189. default: true
  29190. },
  29191. ]
  29192. ))
  29193. characterMakers.push(() => makeCharacter(
  29194. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29195. {
  29196. anthro: {
  29197. height: math.unit(6, "feet"),
  29198. weight: math.unit(150, "lb"),
  29199. name: "Anthro",
  29200. image: {
  29201. source: "./media/characters/razz/anthro.svg",
  29202. extra: 1437 / 1343,
  29203. bottom: 48 / 1485
  29204. }
  29205. },
  29206. feral: {
  29207. height: math.unit(6, "feet"),
  29208. weight: math.unit(150, "lb"),
  29209. name: "Feral",
  29210. image: {
  29211. source: "./media/characters/razz/feral.svg",
  29212. extra: 2569 / 1385,
  29213. bottom: 95 / 2664
  29214. }
  29215. },
  29216. },
  29217. [
  29218. {
  29219. name: "Normal",
  29220. height: math.unit(6, "feet"),
  29221. default: true
  29222. },
  29223. ]
  29224. ))
  29225. characterMakers.push(() => makeCharacter(
  29226. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29227. {
  29228. front: {
  29229. height: math.unit(9 + 4 / 12, "feet"),
  29230. weight: math.unit(500, "lb"),
  29231. name: "Front",
  29232. image: {
  29233. source: "./media/characters/morrigan/front.svg",
  29234. extra: 2707 / 2579,
  29235. bottom: 156 / 2863
  29236. }
  29237. },
  29238. },
  29239. [
  29240. {
  29241. name: "Normal",
  29242. height: math.unit(9 + 4 / 12, "feet"),
  29243. default: true
  29244. },
  29245. ]
  29246. ))
  29247. characterMakers.push(() => makeCharacter(
  29248. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29249. {
  29250. front: {
  29251. height: math.unit(5, "stories"),
  29252. weight: math.unit(4000, "lb"),
  29253. name: "Front",
  29254. image: {
  29255. source: "./media/characters/jenene/front.svg",
  29256. extra: 1780 / 1710,
  29257. bottom: 57 / 1837
  29258. }
  29259. },
  29260. },
  29261. [
  29262. {
  29263. name: "Normal",
  29264. height: math.unit(5, "stories"),
  29265. default: true
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29271. {
  29272. taurSfw: {
  29273. height: math.unit(10, "meters"),
  29274. weight: math.unit(17500, "kg"),
  29275. name: "Taur",
  29276. image: {
  29277. source: "./media/characters/faey/taur-sfw.svg",
  29278. extra: 1200 / 968,
  29279. bottom: 41 / 1241
  29280. }
  29281. },
  29282. chestmaw: {
  29283. height: math.unit(2.01, "meters"),
  29284. name: "Chestmaw",
  29285. image: {
  29286. source: "./media/characters/faey/chestmaw.svg"
  29287. }
  29288. },
  29289. foot: {
  29290. height: math.unit(2.43, "meters"),
  29291. name: "Foot",
  29292. image: {
  29293. source: "./media/characters/faey/foot.svg"
  29294. }
  29295. },
  29296. jaws: {
  29297. height: math.unit(1.66, "meters"),
  29298. name: "Jaws",
  29299. image: {
  29300. source: "./media/characters/faey/jaws.svg"
  29301. }
  29302. },
  29303. tongues: {
  29304. height: math.unit(2.01, "meters"),
  29305. name: "Tongues",
  29306. image: {
  29307. source: "./media/characters/faey/tongues.svg"
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Small",
  29314. height: math.unit(10, "meters"),
  29315. default: true
  29316. },
  29317. {
  29318. name: "Big",
  29319. height: math.unit(500000, "km")
  29320. },
  29321. ]
  29322. ))
  29323. characterMakers.push(() => makeCharacter(
  29324. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29325. {
  29326. front: {
  29327. height: math.unit(7, "feet"),
  29328. weight: math.unit(275, "lb"),
  29329. name: "Front",
  29330. image: {
  29331. source: "./media/characters/roku/front.svg",
  29332. extra: 903 / 878,
  29333. bottom: 37 / 940
  29334. }
  29335. },
  29336. },
  29337. [
  29338. {
  29339. name: "Normal",
  29340. height: math.unit(7, "feet"),
  29341. default: true
  29342. },
  29343. {
  29344. name: "Macro",
  29345. height: math.unit(500, "feet")
  29346. },
  29347. {
  29348. name: "Megamacro",
  29349. height: math.unit(200, "miles")
  29350. },
  29351. ]
  29352. ))
  29353. characterMakers.push(() => makeCharacter(
  29354. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29355. {
  29356. front: {
  29357. height: math.unit(6 + 2 / 12, "feet"),
  29358. weight: math.unit(150, "lb"),
  29359. name: "Front",
  29360. image: {
  29361. source: "./media/characters/lira/front.svg",
  29362. extra: 1727 / 1605,
  29363. bottom: 26 / 1753
  29364. }
  29365. },
  29366. back: {
  29367. height: math.unit(6 + 2 / 12, "feet"),
  29368. weight: math.unit(150, "lb"),
  29369. name: "Back",
  29370. image: {
  29371. source: "./media/characters/lira/back.svg",
  29372. extra: 1713/1621,
  29373. bottom: 20/1733
  29374. }
  29375. },
  29376. hand: {
  29377. height: math.unit(0.75, "feet"),
  29378. name: "Hand",
  29379. image: {
  29380. source: "./media/characters/lira/hand.svg"
  29381. }
  29382. },
  29383. maw: {
  29384. height: math.unit(0.65, "feet"),
  29385. name: "Maw",
  29386. image: {
  29387. source: "./media/characters/lira/maw.svg"
  29388. }
  29389. },
  29390. pawDigi: {
  29391. height: math.unit(1.6, "feet"),
  29392. name: "Paw Digi",
  29393. image: {
  29394. source: "./media/characters/lira/paw-digi.svg"
  29395. }
  29396. },
  29397. pawPlanti: {
  29398. height: math.unit(1.4, "feet"),
  29399. name: "Paw Planti",
  29400. image: {
  29401. source: "./media/characters/lira/paw-planti.svg"
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(6 + 2 / 12, "feet"),
  29409. default: true
  29410. },
  29411. {
  29412. name: "Macro",
  29413. height: math.unit(100, "feet")
  29414. },
  29415. {
  29416. name: "Macro²",
  29417. height: math.unit(1600, "feet")
  29418. },
  29419. {
  29420. name: "Planetary",
  29421. height: math.unit(20, "earths")
  29422. },
  29423. ]
  29424. ))
  29425. characterMakers.push(() => makeCharacter(
  29426. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29427. {
  29428. front: {
  29429. height: math.unit(6, "feet"),
  29430. weight: math.unit(150, "lb"),
  29431. name: "Front",
  29432. image: {
  29433. source: "./media/characters/hadjet/front.svg",
  29434. extra: 1480 / 1346,
  29435. bottom: 26 / 1506
  29436. }
  29437. },
  29438. frontNsfw: {
  29439. height: math.unit(6, "feet"),
  29440. weight: math.unit(150, "lb"),
  29441. name: "Front (NSFW)",
  29442. image: {
  29443. source: "./media/characters/hadjet/front-nsfw.svg",
  29444. extra: 1440 / 1358,
  29445. bottom: 52 / 1492
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Macro",
  29452. height: math.unit(10, "stories"),
  29453. default: true
  29454. },
  29455. {
  29456. name: "Megamacro",
  29457. height: math.unit(1.5, "miles")
  29458. },
  29459. {
  29460. name: "Megamacro+",
  29461. height: math.unit(5, "miles")
  29462. },
  29463. ]
  29464. ))
  29465. characterMakers.push(() => makeCharacter(
  29466. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29467. {
  29468. side: {
  29469. height: math.unit(106, "feet"),
  29470. weight: math.unit(500, "tonnes"),
  29471. name: "Side",
  29472. image: {
  29473. source: "./media/characters/kodran/side.svg",
  29474. extra: 553 / 480,
  29475. bottom: 33 / 586
  29476. }
  29477. },
  29478. front: {
  29479. height: math.unit(132, "feet"),
  29480. weight: math.unit(500, "tonnes"),
  29481. name: "Front",
  29482. image: {
  29483. source: "./media/characters/kodran/front.svg",
  29484. extra: 667 / 643,
  29485. bottom: 42 / 709
  29486. }
  29487. },
  29488. flying: {
  29489. height: math.unit(350, "feet"),
  29490. weight: math.unit(500, "tonnes"),
  29491. name: "Flying",
  29492. image: {
  29493. source: "./media/characters/kodran/flying.svg"
  29494. }
  29495. },
  29496. foot: {
  29497. height: math.unit(33, "feet"),
  29498. name: "Foot",
  29499. image: {
  29500. source: "./media/characters/kodran/foot.svg"
  29501. }
  29502. },
  29503. footFront: {
  29504. height: math.unit(19, "feet"),
  29505. name: "Foot (Front)",
  29506. image: {
  29507. source: "./media/characters/kodran/foot-front.svg",
  29508. extra: 261 / 261,
  29509. bottom: 91 / 352
  29510. }
  29511. },
  29512. headFront: {
  29513. height: math.unit(53, "feet"),
  29514. name: "Head (Front)",
  29515. image: {
  29516. source: "./media/characters/kodran/head-front.svg"
  29517. }
  29518. },
  29519. headSide: {
  29520. height: math.unit(65, "feet"),
  29521. name: "Head (Side)",
  29522. image: {
  29523. source: "./media/characters/kodran/head-side.svg"
  29524. }
  29525. },
  29526. throat: {
  29527. height: math.unit(79, "feet"),
  29528. name: "Throat",
  29529. image: {
  29530. source: "./media/characters/kodran/throat.svg"
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Large",
  29537. height: math.unit(106, "feet"),
  29538. default: true
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29544. {
  29545. side: {
  29546. height: math.unit(11, "feet"),
  29547. weight: math.unit(150, "lb"),
  29548. name: "Side",
  29549. image: {
  29550. source: "./media/characters/pyxaron/side.svg",
  29551. extra: 305 / 195,
  29552. bottom: 17 / 322
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Normal",
  29559. height: math.unit(11, "feet"),
  29560. default: true
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29566. {
  29567. front: {
  29568. height: math.unit(6, "feet"),
  29569. weight: math.unit(150, "lb"),
  29570. name: "Front",
  29571. image: {
  29572. source: "./media/characters/meep/front.svg",
  29573. extra: 88 / 80,
  29574. bottom: 6 / 94
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Fun Sized",
  29581. height: math.unit(2, "inches"),
  29582. default: true
  29583. },
  29584. {
  29585. name: "Friend Sized",
  29586. height: math.unit(8, "inches")
  29587. },
  29588. ]
  29589. ))
  29590. characterMakers.push(() => makeCharacter(
  29591. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29592. {
  29593. front: {
  29594. height: math.unit(15, "feet"),
  29595. weight: math.unit(2500, "lb"),
  29596. name: "Front",
  29597. image: {
  29598. source: "./media/characters/holly-rabbit/front.svg",
  29599. extra: 1433 / 1233,
  29600. bottom: 125 / 1558
  29601. }
  29602. },
  29603. dick: {
  29604. height: math.unit(4.6, "feet"),
  29605. name: "Dick",
  29606. image: {
  29607. source: "./media/characters/holly-rabbit/dick.svg"
  29608. }
  29609. },
  29610. },
  29611. [
  29612. {
  29613. name: "Normal",
  29614. height: math.unit(15, "feet"),
  29615. default: true
  29616. },
  29617. {
  29618. name: "Macro",
  29619. height: math.unit(250, "feet")
  29620. },
  29621. {
  29622. name: "Macro+",
  29623. height: math.unit(2500, "feet")
  29624. },
  29625. ]
  29626. ))
  29627. characterMakers.push(() => makeCharacter(
  29628. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29629. {
  29630. front: {
  29631. height: math.unit(3.02, "meters"),
  29632. weight: math.unit(500, "kg"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/drena/front.svg",
  29636. extra: 282 / 243,
  29637. bottom: 8 / 290
  29638. }
  29639. },
  29640. side: {
  29641. height: math.unit(3.02, "meters"),
  29642. weight: math.unit(500, "kg"),
  29643. name: "Side",
  29644. image: {
  29645. source: "./media/characters/drena/side.svg",
  29646. extra: 280 / 245,
  29647. bottom: 10 / 290
  29648. }
  29649. },
  29650. back: {
  29651. height: math.unit(3.02, "meters"),
  29652. weight: math.unit(500, "kg"),
  29653. name: "Back",
  29654. image: {
  29655. source: "./media/characters/drena/back.svg",
  29656. extra: 278 / 243,
  29657. bottom: 2 / 280
  29658. }
  29659. },
  29660. foot: {
  29661. height: math.unit(0.75, "meters"),
  29662. name: "Foot",
  29663. image: {
  29664. source: "./media/characters/drena/foot.svg"
  29665. }
  29666. },
  29667. maw: {
  29668. height: math.unit(0.82, "meters"),
  29669. name: "Maw",
  29670. image: {
  29671. source: "./media/characters/drena/maw.svg"
  29672. }
  29673. },
  29674. eating: {
  29675. height: math.unit(0.75, "meters"),
  29676. name: "Eating",
  29677. image: {
  29678. source: "./media/characters/drena/eating.svg"
  29679. }
  29680. },
  29681. rump: {
  29682. height: math.unit(0.93, "meters"),
  29683. name: "Rump",
  29684. image: {
  29685. source: "./media/characters/drena/rump.svg"
  29686. }
  29687. },
  29688. },
  29689. [
  29690. {
  29691. name: "Normal",
  29692. height: math.unit(3.02, "meters"),
  29693. default: true
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29699. {
  29700. front: {
  29701. height: math.unit(6 + 4 / 12, "feet"),
  29702. weight: math.unit(250, "lb"),
  29703. name: "Front",
  29704. image: {
  29705. source: "./media/characters/remmyzilla/front.svg",
  29706. extra: 4033 / 3588,
  29707. bottom: 123 / 4156
  29708. }
  29709. },
  29710. back: {
  29711. height: math.unit(6 + 4 / 12, "feet"),
  29712. weight: math.unit(250, "lb"),
  29713. name: "Back",
  29714. image: {
  29715. source: "./media/characters/remmyzilla/back.svg",
  29716. extra: 2687 / 2555,
  29717. bottom: 48 / 2735
  29718. }
  29719. },
  29720. paw: {
  29721. height: math.unit(1.73, "feet"),
  29722. name: "Paw",
  29723. image: {
  29724. source: "./media/characters/remmyzilla/paw.svg"
  29725. },
  29726. extraAttributes: {
  29727. "toeSize": {
  29728. name: "Toe Size",
  29729. power: 2,
  29730. type: "area",
  29731. base: math.unit(0.0035, "m^2")
  29732. },
  29733. "padSize": {
  29734. name: "Pad Size",
  29735. power: 2,
  29736. type: "area",
  29737. base: math.unit(0.015, "m^2")
  29738. },
  29739. "pawsize": {
  29740. name: "Paw Size",
  29741. power: 2,
  29742. type: "area",
  29743. base: math.unit(0.072, "m^2")
  29744. },
  29745. }
  29746. },
  29747. maw: {
  29748. height: math.unit(1.73, "feet"),
  29749. name: "Maw",
  29750. image: {
  29751. source: "./media/characters/remmyzilla/maw.svg"
  29752. }
  29753. },
  29754. },
  29755. [
  29756. {
  29757. name: "Normal",
  29758. height: math.unit(6 + 4 / 12, "feet")
  29759. },
  29760. {
  29761. name: "Minimacro",
  29762. height: math.unit(12 + 8 / 12, "feet")
  29763. },
  29764. {
  29765. name: "Normal",
  29766. height: math.unit(640, "feet"),
  29767. default: true
  29768. },
  29769. {
  29770. name: "Megamacro",
  29771. height: math.unit(6400, "feet")
  29772. },
  29773. {
  29774. name: "Gigamacro",
  29775. height: math.unit(64000, "miles")
  29776. },
  29777. ]
  29778. ))
  29779. characterMakers.push(() => makeCharacter(
  29780. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29781. {
  29782. front: {
  29783. height: math.unit(2.5, "meters"),
  29784. weight: math.unit(300, "lb"),
  29785. name: "Front",
  29786. image: {
  29787. source: "./media/characters/lawrence/front.svg",
  29788. extra: 357 / 335,
  29789. bottom: 30 / 387
  29790. }
  29791. },
  29792. back: {
  29793. height: math.unit(2.5, "meters"),
  29794. weight: math.unit(300, "lb"),
  29795. name: "Back",
  29796. image: {
  29797. source: "./media/characters/lawrence/back.svg",
  29798. extra: 357 / 338,
  29799. bottom: 16 / 373
  29800. }
  29801. },
  29802. head: {
  29803. height: math.unit(0.9, "meter"),
  29804. name: "Head",
  29805. image: {
  29806. source: "./media/characters/lawrence/head.svg"
  29807. }
  29808. },
  29809. maw: {
  29810. height: math.unit(0.7, "meter"),
  29811. name: "Maw",
  29812. image: {
  29813. source: "./media/characters/lawrence/maw.svg"
  29814. }
  29815. },
  29816. footBottom: {
  29817. height: math.unit(0.5, "meter"),
  29818. name: "Foot (Bottom)",
  29819. image: {
  29820. source: "./media/characters/lawrence/foot-bottom.svg"
  29821. }
  29822. },
  29823. footTop: {
  29824. height: math.unit(0.5, "meter"),
  29825. name: "Foot (Top)",
  29826. image: {
  29827. source: "./media/characters/lawrence/foot-top.svg"
  29828. }
  29829. },
  29830. },
  29831. [
  29832. {
  29833. name: "Normal",
  29834. height: math.unit(2.5, "meters"),
  29835. default: true
  29836. },
  29837. {
  29838. name: "Macro",
  29839. height: math.unit(95, "meters")
  29840. },
  29841. {
  29842. name: "Megamacro",
  29843. height: math.unit(150, "km")
  29844. },
  29845. ]
  29846. ))
  29847. characterMakers.push(() => makeCharacter(
  29848. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29849. {
  29850. front: {
  29851. height: math.unit(4.2, "meters"),
  29852. name: "Front",
  29853. image: {
  29854. source: "./media/characters/sydney/front.svg",
  29855. extra: 1323 / 1277,
  29856. bottom: 111 / 1434
  29857. }
  29858. },
  29859. },
  29860. [
  29861. {
  29862. name: "Normal",
  29863. height: math.unit(4.2, "meters"),
  29864. default: true
  29865. },
  29866. ]
  29867. ))
  29868. characterMakers.push(() => makeCharacter(
  29869. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29870. {
  29871. back: {
  29872. height: math.unit(201, "feet"),
  29873. name: "Back",
  29874. image: {
  29875. source: "./media/characters/jessica/back.svg",
  29876. extra: 273 / 259,
  29877. bottom: 7 / 280
  29878. }
  29879. },
  29880. },
  29881. [
  29882. {
  29883. name: "Normal",
  29884. height: math.unit(201, "feet"),
  29885. default: true
  29886. },
  29887. {
  29888. name: "Megamacro",
  29889. height: math.unit(8, "miles")
  29890. },
  29891. ]
  29892. ))
  29893. characterMakers.push(() => makeCharacter(
  29894. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29895. {
  29896. side: {
  29897. height: math.unit(5.6, "m"),
  29898. weight: math.unit(8000, "kg"),
  29899. name: "Side",
  29900. image: {
  29901. source: "./media/characters/victoria/side.svg",
  29902. extra: 1542/1229,
  29903. bottom: 124/1666
  29904. }
  29905. },
  29906. maw: {
  29907. height: math.unit(7.14, "feet"),
  29908. name: "Maw",
  29909. image: {
  29910. source: "./media/characters/victoria/maw.svg"
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Normal",
  29917. height: math.unit(5.6, "m"),
  29918. default: true
  29919. },
  29920. ]
  29921. ))
  29922. characterMakers.push(() => makeCharacter(
  29923. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29924. {
  29925. front: {
  29926. height: math.unit(5 + 6 / 12, "feet"),
  29927. name: "Front",
  29928. image: {
  29929. source: "./media/characters/cat/front.svg",
  29930. extra: 1449/1295,
  29931. bottom: 34/1483
  29932. },
  29933. form: "cat",
  29934. default: true
  29935. },
  29936. back: {
  29937. height: math.unit(5 + 6 / 12, "feet"),
  29938. name: "Back",
  29939. image: {
  29940. source: "./media/characters/cat/back.svg",
  29941. extra: 1466/1301,
  29942. bottom: 19/1485
  29943. },
  29944. form: "cat"
  29945. },
  29946. taur: {
  29947. height: math.unit(7, "feet"),
  29948. name: "Taur",
  29949. image: {
  29950. source: "./media/characters/cat/taur.svg",
  29951. extra: 1389/1233,
  29952. bottom: 83/1472
  29953. },
  29954. form: "taur",
  29955. default: true
  29956. },
  29957. lucarioFront: {
  29958. height: math.unit(4, "feet"),
  29959. name: "Lucario (Front)",
  29960. image: {
  29961. source: "./media/characters/cat/lucario-front.svg",
  29962. extra: 1149/1019,
  29963. bottom: 84/1233
  29964. },
  29965. form: "lucario",
  29966. default: true
  29967. },
  29968. lucarioBack: {
  29969. height: math.unit(4, "feet"),
  29970. name: "Lucario (Back)",
  29971. image: {
  29972. source: "./media/characters/cat/lucario-back.svg",
  29973. extra: 1190/1059,
  29974. bottom: 33/1223
  29975. },
  29976. form: "lucario"
  29977. },
  29978. megaLucario: {
  29979. height: math.unit(4, "feet"),
  29980. name: "Mega Lucario",
  29981. image: {
  29982. source: "./media/characters/cat/mega-lucario.svg",
  29983. extra: 1515 / 1319,
  29984. bottom: 63 / 1578
  29985. },
  29986. form: "lucario"
  29987. },
  29988. nickit: {
  29989. height: math.unit(2, "feet"),
  29990. name: "Nickit",
  29991. image: {
  29992. source: "./media/characters/cat/nickit.svg",
  29993. extra: 1980 / 1585,
  29994. bottom: 102 / 2082
  29995. },
  29996. form: "nickit",
  29997. default: true
  29998. },
  29999. lopunnyFront: {
  30000. height: math.unit(5, "feet"),
  30001. name: "Lopunny (Front)",
  30002. image: {
  30003. source: "./media/characters/cat/lopunny-front.svg",
  30004. extra: 1782 / 1469,
  30005. bottom: 38 / 1820
  30006. },
  30007. form: "lopunny",
  30008. default: true
  30009. },
  30010. lopunnyBack: {
  30011. height: math.unit(5, "feet"),
  30012. name: "Lopunny (Back)",
  30013. image: {
  30014. source: "./media/characters/cat/lopunny-back.svg",
  30015. extra: 1660 / 1490,
  30016. bottom: 25 / 1685
  30017. },
  30018. form: "lopunny"
  30019. },
  30020. },
  30021. [
  30022. {
  30023. name: "Really small",
  30024. height: math.unit(1, "nm")
  30025. },
  30026. {
  30027. name: "Micro",
  30028. height: math.unit(5, "inches")
  30029. },
  30030. {
  30031. name: "Normal",
  30032. height: math.unit(5 + 6 / 12, "feet"),
  30033. default: true
  30034. },
  30035. {
  30036. name: "Macro",
  30037. height: math.unit(50, "feet")
  30038. },
  30039. {
  30040. name: "Macro+",
  30041. height: math.unit(150, "feet")
  30042. },
  30043. {
  30044. name: "Megamacro",
  30045. height: math.unit(100, "miles")
  30046. },
  30047. ]
  30048. ))
  30049. characterMakers.push(() => makeCharacter(
  30050. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30051. {
  30052. front: {
  30053. height: math.unit(63.4, "meters"),
  30054. weight: math.unit(3.28349e+6, "kilograms"),
  30055. name: "Front",
  30056. image: {
  30057. source: "./media/characters/kirina-violet/front.svg",
  30058. extra: 2812 / 2725,
  30059. bottom: 0 / 2812
  30060. }
  30061. },
  30062. back: {
  30063. height: math.unit(63.4, "meters"),
  30064. weight: math.unit(3.28349e+6, "kilograms"),
  30065. name: "Back",
  30066. image: {
  30067. source: "./media/characters/kirina-violet/back.svg",
  30068. extra: 2812 / 2725,
  30069. bottom: 0 / 2812
  30070. }
  30071. },
  30072. mouth: {
  30073. height: math.unit(4.35, "meters"),
  30074. name: "Mouth",
  30075. image: {
  30076. source: "./media/characters/kirina-violet/mouth.svg"
  30077. }
  30078. },
  30079. paw: {
  30080. height: math.unit(5.6, "meters"),
  30081. name: "Paw",
  30082. image: {
  30083. source: "./media/characters/kirina-violet/paw.svg"
  30084. }
  30085. },
  30086. tail: {
  30087. height: math.unit(18, "meters"),
  30088. name: "Tail",
  30089. image: {
  30090. source: "./media/characters/kirina-violet/tail.svg"
  30091. }
  30092. },
  30093. },
  30094. [
  30095. {
  30096. name: "Macro",
  30097. height: math.unit(63.4, "meters"),
  30098. default: true
  30099. },
  30100. ]
  30101. ))
  30102. characterMakers.push(() => makeCharacter(
  30103. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30104. {
  30105. front: {
  30106. height: math.unit(75, "feet"),
  30107. name: "Front",
  30108. image: {
  30109. source: "./media/characters/cat-gigachu/front.svg",
  30110. extra: 1239/1027,
  30111. bottom: 32/1271
  30112. }
  30113. },
  30114. back: {
  30115. height: math.unit(75, "feet"),
  30116. name: "Back",
  30117. image: {
  30118. source: "./media/characters/cat-gigachu/back.svg",
  30119. extra: 1229/1030,
  30120. bottom: 9/1238
  30121. }
  30122. },
  30123. },
  30124. [
  30125. {
  30126. name: "Dynamax",
  30127. height: math.unit(75, "feet"),
  30128. default: true
  30129. },
  30130. ]
  30131. ))
  30132. characterMakers.push(() => makeCharacter(
  30133. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30134. {
  30135. front: {
  30136. height: math.unit(6, "feet"),
  30137. weight: math.unit(150, "lb"),
  30138. name: "Front",
  30139. image: {
  30140. source: "./media/characters/sfaiyan/front.svg",
  30141. extra: 999 / 978,
  30142. bottom: 5 / 1004
  30143. }
  30144. },
  30145. },
  30146. [
  30147. {
  30148. name: "Normal",
  30149. height: math.unit(1.82, "meters")
  30150. },
  30151. {
  30152. name: "Giant",
  30153. height: math.unit(2.27, "km"),
  30154. default: true
  30155. },
  30156. ]
  30157. ))
  30158. characterMakers.push(() => makeCharacter(
  30159. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30160. {
  30161. front: {
  30162. height: math.unit(179, "cm"),
  30163. weight: math.unit(100, "kg"),
  30164. name: "Front",
  30165. image: {
  30166. source: "./media/characters/raunehkeli/front.svg",
  30167. extra: 1934 / 1926,
  30168. bottom: 0 / 1934
  30169. }
  30170. },
  30171. },
  30172. [
  30173. {
  30174. name: "Normal",
  30175. height: math.unit(179, "cm")
  30176. },
  30177. {
  30178. name: "Maximum",
  30179. height: math.unit(575, "meters"),
  30180. default: true
  30181. },
  30182. ]
  30183. ))
  30184. characterMakers.push(() => makeCharacter(
  30185. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30186. {
  30187. front: {
  30188. height: math.unit(6, "feet"),
  30189. weight: math.unit(150, "lb"),
  30190. name: "Front",
  30191. image: {
  30192. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30193. extra: 2625 / 2518,
  30194. bottom: 60 / 2685
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(6 + 2 / 12, "feet")
  30202. },
  30203. {
  30204. name: "Macro",
  30205. height: math.unit(1180, "feet"),
  30206. default: true
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30212. {
  30213. front: {
  30214. height: math.unit(5 + 6 / 12, "feet"),
  30215. weight: math.unit(108, "lb"),
  30216. name: "Front",
  30217. image: {
  30218. source: "./media/characters/lilith-zott/front.svg",
  30219. extra: 2510 / 2238,
  30220. bottom: 100 / 2610
  30221. }
  30222. },
  30223. frontDressed: {
  30224. height: math.unit(5 + 6 / 12, "feet"),
  30225. weight: math.unit(108, "lb"),
  30226. name: "Front (Dressed)",
  30227. image: {
  30228. source: "./media/characters/lilith-zott/front-dressed.svg",
  30229. extra: 2510 / 2238,
  30230. bottom: 100 / 2610
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Normal",
  30237. height: math.unit(5 + 6 / 12, "feet")
  30238. },
  30239. {
  30240. name: "Macro",
  30241. height: math.unit(1030, "feet"),
  30242. default: true
  30243. },
  30244. ]
  30245. ))
  30246. characterMakers.push(() => makeCharacter(
  30247. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30248. {
  30249. front: {
  30250. height: math.unit(6, "feet"),
  30251. weight: math.unit(150, "lb"),
  30252. name: "Front",
  30253. image: {
  30254. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30255. extra: 2567 / 2435,
  30256. bottom: 39 / 2606
  30257. }
  30258. },
  30259. frontSuper: {
  30260. height: math.unit(6, "feet"),
  30261. name: "Front (Super)",
  30262. image: {
  30263. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30264. extra: 2567 / 2435,
  30265. bottom: 39 / 2606
  30266. }
  30267. },
  30268. },
  30269. [
  30270. {
  30271. name: "Normal",
  30272. height: math.unit(5 + 10 / 12, "feet")
  30273. },
  30274. {
  30275. name: "Macro",
  30276. height: math.unit(1100, "feet"),
  30277. default: true
  30278. },
  30279. ]
  30280. ))
  30281. characterMakers.push(() => makeCharacter(
  30282. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30283. {
  30284. front: {
  30285. height: math.unit(100, "miles"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/sona/front.svg",
  30289. extra: 2433 / 2201,
  30290. bottom: 53 / 2486
  30291. }
  30292. },
  30293. foot: {
  30294. height: math.unit(16.1, "miles"),
  30295. name: "Foot",
  30296. image: {
  30297. source: "./media/characters/sona/foot.svg"
  30298. }
  30299. },
  30300. },
  30301. [
  30302. {
  30303. name: "Macro",
  30304. height: math.unit(100, "miles"),
  30305. default: true
  30306. },
  30307. ]
  30308. ))
  30309. characterMakers.push(() => makeCharacter(
  30310. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30311. {
  30312. front: {
  30313. height: math.unit(6, "feet"),
  30314. weight: math.unit(150, "lb"),
  30315. name: "Front",
  30316. image: {
  30317. source: "./media/characters/bailey/front.svg",
  30318. extra: 1778 / 1724,
  30319. bottom: 30 / 1808
  30320. }
  30321. },
  30322. },
  30323. [
  30324. {
  30325. name: "Micro",
  30326. height: math.unit(4, "inches")
  30327. },
  30328. {
  30329. name: "Normal",
  30330. height: math.unit(5 + 5 / 12, "feet"),
  30331. default: true
  30332. },
  30333. {
  30334. name: "Macro",
  30335. height: math.unit(250, "feet")
  30336. },
  30337. {
  30338. name: "Megamacro",
  30339. height: math.unit(100, "miles")
  30340. },
  30341. ]
  30342. ))
  30343. characterMakers.push(() => makeCharacter(
  30344. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30345. {
  30346. front: {
  30347. height: math.unit(5 + 2 / 12, "feet"),
  30348. weight: math.unit(120, "lb"),
  30349. name: "Front",
  30350. image: {
  30351. source: "./media/characters/snaps/front.svg",
  30352. extra: 2370 / 2177,
  30353. bottom: 48 / 2418
  30354. }
  30355. },
  30356. back: {
  30357. height: math.unit(5 + 2 / 12, "feet"),
  30358. weight: math.unit(120, "lb"),
  30359. name: "Back",
  30360. image: {
  30361. source: "./media/characters/snaps/back.svg",
  30362. extra: 2408 / 2258,
  30363. bottom: 15 / 2423
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Micro",
  30370. height: math.unit(9, "inches")
  30371. },
  30372. {
  30373. name: "Normal",
  30374. height: math.unit(5 + 2 / 12, "feet"),
  30375. default: true
  30376. },
  30377. {
  30378. name: "Mini Macro",
  30379. height: math.unit(10, "feet")
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(1.8, "meters"),
  30388. weight: math.unit(85, "kg"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/azteck/front.svg",
  30392. extra: 2815 / 2625,
  30393. bottom: 89 / 2904
  30394. }
  30395. },
  30396. back: {
  30397. height: math.unit(1.8, "meters"),
  30398. weight: math.unit(85, "kg"),
  30399. name: "Back",
  30400. image: {
  30401. source: "./media/characters/azteck/back.svg",
  30402. extra: 2856 / 2648,
  30403. bottom: 85 / 2941
  30404. }
  30405. },
  30406. frontDressed: {
  30407. height: math.unit(1.8, "meters"),
  30408. weight: math.unit(85, "kg"),
  30409. name: "Front (Dressed)",
  30410. image: {
  30411. source: "./media/characters/azteck/front-dressed.svg",
  30412. extra: 2147 / 2003,
  30413. bottom: 68 / 2215
  30414. }
  30415. },
  30416. head: {
  30417. height: math.unit(0.47, "meters"),
  30418. weight: math.unit(85, "kg"),
  30419. name: "Head",
  30420. image: {
  30421. source: "./media/characters/azteck/head.svg"
  30422. }
  30423. },
  30424. },
  30425. [
  30426. {
  30427. name: "Bite sized",
  30428. height: math.unit(16, "cm")
  30429. },
  30430. {
  30431. name: "Normal",
  30432. height: math.unit(1.8, "meters"),
  30433. default: true
  30434. },
  30435. ]
  30436. ))
  30437. characterMakers.push(() => makeCharacter(
  30438. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30439. {
  30440. front: {
  30441. height: math.unit(6, "feet"),
  30442. weight: math.unit(150, "lb"),
  30443. name: "Front",
  30444. image: {
  30445. source: "./media/characters/pidge/front.svg",
  30446. extra: 1936/1820,
  30447. bottom: 0/1936
  30448. }
  30449. },
  30450. back: {
  30451. height: math.unit(6, "feet"),
  30452. weight: math.unit(150, "lb"),
  30453. name: "Back",
  30454. image: {
  30455. source: "./media/characters/pidge/back.svg",
  30456. extra: 1938/1843,
  30457. bottom: 0/1938
  30458. }
  30459. },
  30460. casual: {
  30461. height: math.unit(6, "feet"),
  30462. weight: math.unit(150, "lb"),
  30463. name: "Casual",
  30464. image: {
  30465. source: "./media/characters/pidge/casual.svg",
  30466. extra: 1936/1820,
  30467. bottom: 0/1936
  30468. }
  30469. },
  30470. tech: {
  30471. height: math.unit(6, "feet"),
  30472. weight: math.unit(150, "lb"),
  30473. name: "Tech",
  30474. image: {
  30475. source: "./media/characters/pidge/tech.svg",
  30476. extra: 1802/1682,
  30477. bottom: 0/1802
  30478. }
  30479. },
  30480. head: {
  30481. height: math.unit(1.61, "feet"),
  30482. name: "Head",
  30483. image: {
  30484. source: "./media/characters/pidge/head.svg"
  30485. }
  30486. },
  30487. collar: {
  30488. height: math.unit(0.82, "feet"),
  30489. name: "Collar",
  30490. image: {
  30491. source: "./media/characters/pidge/collar.svg"
  30492. }
  30493. },
  30494. },
  30495. [
  30496. {
  30497. name: "Macro",
  30498. height: math.unit(2, "mile"),
  30499. default: true
  30500. },
  30501. {
  30502. name: "PUPPY",
  30503. height: math.unit(20, "miles")
  30504. },
  30505. ]
  30506. ))
  30507. characterMakers.push(() => makeCharacter(
  30508. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30509. {
  30510. front: {
  30511. height: math.unit(6, "feet"),
  30512. weight: math.unit(150, "lb"),
  30513. name: "Front",
  30514. image: {
  30515. source: "./media/characters/en/front.svg",
  30516. extra: 1697 / 1563,
  30517. bottom: 103 / 1800
  30518. }
  30519. },
  30520. back: {
  30521. height: math.unit(6, "feet"),
  30522. weight: math.unit(150, "lb"),
  30523. name: "Back",
  30524. image: {
  30525. source: "./media/characters/en/back.svg",
  30526. extra: 1700 / 1570,
  30527. bottom: 51 / 1751
  30528. }
  30529. },
  30530. frontDressed: {
  30531. height: math.unit(6, "feet"),
  30532. weight: math.unit(150, "lb"),
  30533. name: "Front (Dressed)",
  30534. image: {
  30535. source: "./media/characters/en/front-dressed.svg",
  30536. extra: 1697 / 1563,
  30537. bottom: 103 / 1800
  30538. }
  30539. },
  30540. backDressed: {
  30541. height: math.unit(6, "feet"),
  30542. weight: math.unit(150, "lb"),
  30543. name: "Back (Dressed)",
  30544. image: {
  30545. source: "./media/characters/en/back-dressed.svg",
  30546. extra: 1700 / 1570,
  30547. bottom: 51 / 1751
  30548. }
  30549. },
  30550. },
  30551. [
  30552. {
  30553. name: "Macro",
  30554. height: math.unit(210, "feet"),
  30555. default: true
  30556. },
  30557. ]
  30558. ))
  30559. characterMakers.push(() => makeCharacter(
  30560. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30561. {
  30562. front: {
  30563. height: math.unit(6, "feet"),
  30564. weight: math.unit(150, "lb"),
  30565. name: "Front",
  30566. image: {
  30567. source: "./media/characters/haze-orris/front.svg",
  30568. extra: 3975 / 3525,
  30569. bottom: 137 / 4112
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Micro",
  30576. height: math.unit(150, "mm"),
  30577. default: true
  30578. },
  30579. ]
  30580. ))
  30581. characterMakers.push(() => makeCharacter(
  30582. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30583. {
  30584. front: {
  30585. height: math.unit(6, "feet"),
  30586. weight: math.unit(150, "lb"),
  30587. name: "Front",
  30588. image: {
  30589. source: "./media/characters/casselene-yaro/front.svg",
  30590. extra: 4721 / 4541,
  30591. bottom: 82 / 4803
  30592. }
  30593. },
  30594. back: {
  30595. height: math.unit(6, "feet"),
  30596. weight: math.unit(150, "lb"),
  30597. name: "Back",
  30598. image: {
  30599. source: "./media/characters/casselene-yaro/back.svg",
  30600. extra: 4569 / 4377,
  30601. bottom: 69 / 4638
  30602. }
  30603. },
  30604. dressed: {
  30605. height: math.unit(6, "feet"),
  30606. weight: math.unit(150, "lb"),
  30607. name: "Dressed",
  30608. image: {
  30609. source: "./media/characters/casselene-yaro/dressed.svg",
  30610. extra: 4721 / 4541,
  30611. bottom: 82 / 4803
  30612. }
  30613. },
  30614. maw: {
  30615. height: math.unit(1, "feet"),
  30616. name: "Maw",
  30617. image: {
  30618. source: "./media/characters/casselene-yaro/maw.svg"
  30619. }
  30620. },
  30621. },
  30622. [
  30623. {
  30624. name: "Macro",
  30625. height: math.unit(190, "feet"),
  30626. default: true
  30627. },
  30628. ]
  30629. ))
  30630. characterMakers.push(() => makeCharacter(
  30631. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30632. {
  30633. front: {
  30634. height: math.unit(10, "feet"),
  30635. weight: math.unit(15015, "lb"),
  30636. name: "Front",
  30637. image: {
  30638. source: "./media/characters/platine/front.svg",
  30639. extra: 1428/1353,
  30640. bottom: 31/1459
  30641. }
  30642. },
  30643. },
  30644. [
  30645. {
  30646. name: "Normal",
  30647. height: math.unit(10, "feet"),
  30648. default: true
  30649. },
  30650. {
  30651. name: "Macro",
  30652. height: math.unit(100, "feet")
  30653. },
  30654. {
  30655. name: "Megamacro",
  30656. height: math.unit(1000, "feet")
  30657. },
  30658. ]
  30659. ))
  30660. characterMakers.push(() => makeCharacter(
  30661. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30662. {
  30663. front: {
  30664. height: math.unit(15 + 5 / 12, "feet"),
  30665. weight: math.unit(4600, "lb"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/neapolitan-ananassa/front.svg",
  30669. extra: 2903 / 2736,
  30670. bottom: 0 / 2903
  30671. }
  30672. },
  30673. side: {
  30674. height: math.unit(15 + 5 / 12, "feet"),
  30675. weight: math.unit(4600, "lb"),
  30676. name: "Side",
  30677. image: {
  30678. source: "./media/characters/neapolitan-ananassa/side.svg",
  30679. extra: 2925 / 2719,
  30680. bottom: 0 / 2925
  30681. }
  30682. },
  30683. back: {
  30684. height: math.unit(15 + 5 / 12, "feet"),
  30685. weight: math.unit(4600, "lb"),
  30686. name: "Back",
  30687. image: {
  30688. source: "./media/characters/neapolitan-ananassa/back.svg",
  30689. extra: 2903 / 2736,
  30690. bottom: 0 / 2903
  30691. }
  30692. },
  30693. },
  30694. [
  30695. {
  30696. name: "Normal",
  30697. height: math.unit(15 + 5 / 12, "feet"),
  30698. default: true
  30699. },
  30700. {
  30701. name: "Post-Millenium",
  30702. height: math.unit(35 + 5 / 12, "feet")
  30703. },
  30704. {
  30705. name: "Post-Era",
  30706. height: math.unit(450 + 5 / 12, "feet")
  30707. },
  30708. ]
  30709. ))
  30710. characterMakers.push(() => makeCharacter(
  30711. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30712. {
  30713. front: {
  30714. height: math.unit(300, "meters"),
  30715. weight: math.unit(125000, "tonnes"),
  30716. name: "Front",
  30717. image: {
  30718. source: "./media/characters/pazuzu/front.svg",
  30719. extra: 877 / 794,
  30720. bottom: 47 / 924
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Macro",
  30727. height: math.unit(300, "meters"),
  30728. default: true
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30734. {
  30735. side: {
  30736. height: math.unit(10 + 7 / 12, "feet"),
  30737. weight: math.unit(2.5, "tons"),
  30738. name: "Side",
  30739. image: {
  30740. source: "./media/characters/aasha/side.svg",
  30741. extra: 1345 / 1245,
  30742. bottom: 111 / 1456
  30743. }
  30744. },
  30745. back: {
  30746. height: math.unit(10 + 7 / 12, "feet"),
  30747. weight: math.unit(2.5, "tons"),
  30748. name: "Back",
  30749. image: {
  30750. source: "./media/characters/aasha/back.svg",
  30751. extra: 1133 / 1057,
  30752. bottom: 257 / 1390
  30753. }
  30754. },
  30755. },
  30756. [
  30757. {
  30758. name: "Normal",
  30759. height: math.unit(10 + 7 / 12, "feet"),
  30760. default: true
  30761. },
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30766. {
  30767. front: {
  30768. height: math.unit(6 + 3 / 12, "feet"),
  30769. name: "Front",
  30770. image: {
  30771. source: "./media/characters/nevan/front.svg",
  30772. extra: 704 / 704,
  30773. bottom: 28 / 732
  30774. }
  30775. },
  30776. back: {
  30777. height: math.unit(6 + 3 / 12, "feet"),
  30778. name: "Back",
  30779. image: {
  30780. source: "./media/characters/nevan/back.svg",
  30781. extra: 714 / 714,
  30782. bottom: 21 / 735
  30783. }
  30784. },
  30785. frontFlaccid: {
  30786. height: math.unit(6 + 3 / 12, "feet"),
  30787. name: "Front (Flaccid)",
  30788. image: {
  30789. source: "./media/characters/nevan/front-flaccid.svg",
  30790. extra: 704 / 704,
  30791. bottom: 28 / 732
  30792. }
  30793. },
  30794. frontErect: {
  30795. height: math.unit(6 + 3 / 12, "feet"),
  30796. name: "Front (Erect)",
  30797. image: {
  30798. source: "./media/characters/nevan/front-erect.svg",
  30799. extra: 704 / 704,
  30800. bottom: 28 / 732
  30801. }
  30802. },
  30803. backFlaccid: {
  30804. height: math.unit(6 + 3 / 12, "feet"),
  30805. name: "Back (Flaccid)",
  30806. image: {
  30807. source: "./media/characters/nevan/back-flaccid.svg",
  30808. extra: 714 / 714,
  30809. bottom: 21 / 735
  30810. }
  30811. },
  30812. },
  30813. [
  30814. {
  30815. name: "Normal",
  30816. height: math.unit(6 + 3 / 12, "feet"),
  30817. default: true
  30818. },
  30819. ]
  30820. ))
  30821. characterMakers.push(() => makeCharacter(
  30822. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30823. {
  30824. front: {
  30825. height: math.unit(4, "feet"),
  30826. name: "Front",
  30827. image: {
  30828. source: "./media/characters/arhan/front.svg",
  30829. extra: 3368 / 3133,
  30830. bottom: 0 / 3368
  30831. }
  30832. },
  30833. side: {
  30834. height: math.unit(4, "feet"),
  30835. name: "Side",
  30836. image: {
  30837. source: "./media/characters/arhan/side.svg",
  30838. extra: 3347 / 3105,
  30839. bottom: 0 / 3347
  30840. }
  30841. },
  30842. tongue: {
  30843. height: math.unit(1.42, "feet"),
  30844. name: "Tongue",
  30845. image: {
  30846. source: "./media/characters/arhan/tongue.svg"
  30847. }
  30848. },
  30849. head: {
  30850. height: math.unit(0.85, "feet"),
  30851. name: "Head",
  30852. image: {
  30853. source: "./media/characters/arhan/head.svg"
  30854. }
  30855. },
  30856. },
  30857. [
  30858. {
  30859. name: "Normal",
  30860. height: math.unit(4, "feet"),
  30861. default: true
  30862. },
  30863. ]
  30864. ))
  30865. characterMakers.push(() => makeCharacter(
  30866. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30867. {
  30868. front: {
  30869. height: math.unit(5 + 7.5 / 12, "feet"),
  30870. weight: math.unit(120, "lb"),
  30871. name: "Front",
  30872. image: {
  30873. source: "./media/characters/digi-duncan/front.svg",
  30874. extra: 330 / 326,
  30875. bottom: 16 / 346
  30876. }
  30877. },
  30878. side: {
  30879. height: math.unit(5 + 7.5 / 12, "feet"),
  30880. weight: math.unit(120, "lb"),
  30881. name: "Side",
  30882. image: {
  30883. source: "./media/characters/digi-duncan/side.svg",
  30884. extra: 341 / 337,
  30885. bottom: 1 / 342
  30886. }
  30887. },
  30888. back: {
  30889. height: math.unit(5 + 7.5 / 12, "feet"),
  30890. weight: math.unit(120, "lb"),
  30891. name: "Back",
  30892. image: {
  30893. source: "./media/characters/digi-duncan/back.svg",
  30894. extra: 330 / 326,
  30895. bottom: 12 / 342
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "Speck",
  30902. height: math.unit(0.25, "mm")
  30903. },
  30904. {
  30905. name: "Micro",
  30906. height: math.unit(5, "mm")
  30907. },
  30908. {
  30909. name: "Tiny",
  30910. height: math.unit(0.5, "inches"),
  30911. default: true
  30912. },
  30913. {
  30914. name: "Human",
  30915. height: math.unit(5 + 7.5 / 12, "feet")
  30916. },
  30917. {
  30918. name: "Minigiant",
  30919. height: math.unit(8 + 5.25, "feet")
  30920. },
  30921. {
  30922. name: "Giant",
  30923. height: math.unit(2000, "feet")
  30924. },
  30925. {
  30926. name: "Mega",
  30927. height: math.unit(371.1, "miles")
  30928. },
  30929. ]
  30930. ))
  30931. characterMakers.push(() => makeCharacter(
  30932. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30933. {
  30934. front: {
  30935. height: math.unit(2, "meters"),
  30936. weight: math.unit(350, "kg"),
  30937. name: "Front",
  30938. image: {
  30939. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30940. extra: 898 / 838,
  30941. bottom: 9 / 907
  30942. }
  30943. },
  30944. },
  30945. [
  30946. {
  30947. name: "Micro",
  30948. height: math.unit(8, "meters")
  30949. },
  30950. {
  30951. name: "Normal",
  30952. height: math.unit(50, "meters"),
  30953. default: true
  30954. },
  30955. {
  30956. name: "Macro",
  30957. height: math.unit(500, "meters")
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30963. {
  30964. front: {
  30965. height: math.unit(6 + 6 / 12, "feet"),
  30966. name: "Front",
  30967. image: {
  30968. source: "./media/characters/khardesh/front.svg",
  30969. extra: 1788/1596,
  30970. bottom: 66/1854
  30971. }
  30972. },
  30973. back: {
  30974. height: math.unit(6 + 6 / 12, "feet"),
  30975. name: "Back",
  30976. image: {
  30977. source: "./media/characters/khardesh/back.svg",
  30978. extra: 1781/1584,
  30979. bottom: 68/1849
  30980. }
  30981. },
  30982. },
  30983. [
  30984. {
  30985. name: "Normal",
  30986. height: math.unit(6 + 6 / 12, "feet"),
  30987. default: true
  30988. },
  30989. {
  30990. name: "Normal+",
  30991. height: math.unit(4, "meters")
  30992. },
  30993. {
  30994. name: "Macro",
  30995. height: math.unit(50, "meters")
  30996. },
  30997. {
  30998. name: "Macro+",
  30999. height: math.unit(100, "meters")
  31000. },
  31001. {
  31002. name: "Megamacro",
  31003. height: math.unit(20, "km")
  31004. },
  31005. ]
  31006. ))
  31007. characterMakers.push(() => makeCharacter(
  31008. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31009. {
  31010. front: {
  31011. height: math.unit(6, "feet"),
  31012. weight: math.unit(150, "lb"),
  31013. name: "Front",
  31014. image: {
  31015. source: "./media/characters/kosho/front.svg",
  31016. extra: 1847 / 1847,
  31017. bottom: 86 / 1933
  31018. }
  31019. },
  31020. },
  31021. [
  31022. {
  31023. name: "Second-stage micro",
  31024. height: math.unit(0.5, "inches")
  31025. },
  31026. {
  31027. name: "First-stage micro",
  31028. height: math.unit(6, "inches")
  31029. },
  31030. {
  31031. name: "Normal",
  31032. height: math.unit(6, "feet"),
  31033. default: true
  31034. },
  31035. {
  31036. name: "First-stage macro",
  31037. height: math.unit(72, "feet")
  31038. },
  31039. {
  31040. name: "Second-stage macro",
  31041. height: math.unit(864, "feet")
  31042. },
  31043. ]
  31044. ))
  31045. characterMakers.push(() => makeCharacter(
  31046. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31047. {
  31048. normal: {
  31049. height: math.unit(4 + 6 / 12, "feet"),
  31050. name: "Normal",
  31051. image: {
  31052. source: "./media/characters/hydra/normal.svg",
  31053. extra: 2833 / 2634,
  31054. bottom: 68 / 2901
  31055. }
  31056. },
  31057. smol: {
  31058. height: math.unit(0.705, "inches"),
  31059. name: "Smol",
  31060. image: {
  31061. source: "./media/characters/hydra/smol.svg",
  31062. extra: 2715 / 2540,
  31063. bottom: 0 / 2715
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(4 + 6 / 12, "feet"),
  31071. default: true
  31072. }
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31077. {
  31078. front: {
  31079. height: math.unit(0.6, "cm"),
  31080. name: "Front",
  31081. image: {
  31082. source: "./media/characters/daz/front.svg",
  31083. extra: 1682 / 1164,
  31084. bottom: 42 / 1724
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "Normal",
  31091. height: math.unit(0.6, "cm"),
  31092. default: true
  31093. },
  31094. ]
  31095. ))
  31096. characterMakers.push(() => makeCharacter(
  31097. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31098. {
  31099. front: {
  31100. height: math.unit(6, "feet"),
  31101. weight: math.unit(235, "lb"),
  31102. name: "Front",
  31103. image: {
  31104. source: "./media/characters/theo-pangolin/front.svg",
  31105. extra: 1996 / 1969,
  31106. bottom: 115 / 2111
  31107. }
  31108. },
  31109. back: {
  31110. height: math.unit(6, "feet"),
  31111. weight: math.unit(235, "lb"),
  31112. name: "Back",
  31113. image: {
  31114. source: "./media/characters/theo-pangolin/back.svg",
  31115. extra: 1979 / 1979,
  31116. bottom: 40 / 2019
  31117. }
  31118. },
  31119. feral: {
  31120. height: math.unit(2, "feet"),
  31121. weight: math.unit(30, "lb"),
  31122. name: "Feral",
  31123. image: {
  31124. source: "./media/characters/theo-pangolin/feral.svg",
  31125. extra: 803 / 791,
  31126. bottom: 181 / 984
  31127. }
  31128. },
  31129. footFive: {
  31130. height: math.unit(1.43, "feet"),
  31131. name: "Foot (Five Toes)",
  31132. image: {
  31133. source: "./media/characters/theo-pangolin/foot-five.svg"
  31134. }
  31135. },
  31136. footFour: {
  31137. height: math.unit(1.43, "feet"),
  31138. name: "Foot (Four Toes)",
  31139. image: {
  31140. source: "./media/characters/theo-pangolin/foot-four.svg"
  31141. }
  31142. },
  31143. handFour: {
  31144. height: math.unit(0.81, "feet"),
  31145. name: "Hand (Four Fingers)",
  31146. image: {
  31147. source: "./media/characters/theo-pangolin/hand-four.svg"
  31148. }
  31149. },
  31150. handThree: {
  31151. height: math.unit(0.81, "feet"),
  31152. name: "Hand (Three Fingers)",
  31153. image: {
  31154. source: "./media/characters/theo-pangolin/hand-three.svg"
  31155. }
  31156. },
  31157. headFront: {
  31158. height: math.unit(1.37, "feet"),
  31159. name: "Head (Front)",
  31160. image: {
  31161. source: "./media/characters/theo-pangolin/head-front.svg"
  31162. }
  31163. },
  31164. headSide: {
  31165. height: math.unit(1.43, "feet"),
  31166. name: "Head (Side)",
  31167. image: {
  31168. source: "./media/characters/theo-pangolin/head-side.svg"
  31169. }
  31170. },
  31171. tongue: {
  31172. height: math.unit(2.29, "feet"),
  31173. name: "Tongue",
  31174. image: {
  31175. source: "./media/characters/theo-pangolin/tongue.svg"
  31176. }
  31177. },
  31178. },
  31179. [
  31180. {
  31181. name: "Normal",
  31182. height: math.unit(6, "feet")
  31183. },
  31184. {
  31185. name: "Macro",
  31186. height: math.unit(400, "feet"),
  31187. default: true
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(6, "inches"),
  31196. weight: math.unit(0.036, "kg"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/renée/front.svg",
  31200. extra: 900 / 886,
  31201. bottom: 8 / 908
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Nano",
  31208. height: math.unit(1, "nm")
  31209. },
  31210. {
  31211. name: "Micro",
  31212. height: math.unit(1, "mm")
  31213. },
  31214. {
  31215. name: "Normal",
  31216. height: math.unit(6, "inches")
  31217. },
  31218. {
  31219. name: "Macro",
  31220. height: math.unit(2000, "feet"),
  31221. default: true
  31222. },
  31223. {
  31224. name: "Megamacro",
  31225. height: math.unit(2, "km")
  31226. },
  31227. {
  31228. name: "Gigamacro",
  31229. height: math.unit(2000, "km")
  31230. },
  31231. {
  31232. name: "Teramacro",
  31233. height: math.unit(250000, "km")
  31234. },
  31235. ]
  31236. ))
  31237. characterMakers.push(() => makeCharacter(
  31238. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31239. {
  31240. front: {
  31241. height: math.unit(4, "meters"),
  31242. weight: math.unit(150, "kg"),
  31243. name: "Front",
  31244. image: {
  31245. source: "./media/characters/caledvwlch/front.svg",
  31246. extra: 1760 / 1551,
  31247. bottom: 28 / 1788
  31248. }
  31249. },
  31250. side: {
  31251. height: math.unit(4, "meters"),
  31252. weight: math.unit(150, "kg"),
  31253. name: "Side",
  31254. image: {
  31255. source: "./media/characters/caledvwlch/side.svg",
  31256. extra: 1605 / 1536,
  31257. bottom: 31 / 1636
  31258. }
  31259. },
  31260. back: {
  31261. height: math.unit(4, "meters"),
  31262. weight: math.unit(150, "kg"),
  31263. name: "Back",
  31264. image: {
  31265. source: "./media/characters/caledvwlch/back.svg",
  31266. extra: 1635 / 1565,
  31267. bottom: 27 / 1662
  31268. }
  31269. },
  31270. },
  31271. [
  31272. {
  31273. name: "\"Incognito\"",
  31274. height: math.unit(4, "meters")
  31275. },
  31276. {
  31277. name: "Small rampage",
  31278. height: math.unit(600, "meters")
  31279. },
  31280. {
  31281. name: "Mega",
  31282. height: math.unit(30, "km")
  31283. },
  31284. {
  31285. name: "Home-size",
  31286. height: math.unit(50, "km"),
  31287. default: true
  31288. },
  31289. {
  31290. name: "Giga",
  31291. height: math.unit(300, "km")
  31292. },
  31293. {
  31294. name: "Lounging",
  31295. height: math.unit(11000, "km")
  31296. },
  31297. {
  31298. name: "Planet snacking",
  31299. height: math.unit(2000000, "km")
  31300. },
  31301. ]
  31302. ))
  31303. characterMakers.push(() => makeCharacter(
  31304. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31305. {
  31306. front: {
  31307. height: math.unit(6, "feet"),
  31308. weight: math.unit(215, "lb"),
  31309. name: "Front",
  31310. image: {
  31311. source: "./media/characters/sapphire-svell/front.svg",
  31312. extra: 495 / 455,
  31313. bottom: 20 / 515
  31314. }
  31315. },
  31316. back: {
  31317. height: math.unit(6, "feet"),
  31318. weight: math.unit(216, "lb"),
  31319. name: "Back",
  31320. image: {
  31321. source: "./media/characters/sapphire-svell/back.svg",
  31322. extra: 497 / 477,
  31323. bottom: 7 / 504
  31324. }
  31325. },
  31326. maw: {
  31327. height: math.unit(1.57, "feet"),
  31328. name: "Maw",
  31329. image: {
  31330. source: "./media/characters/sapphire-svell/maw.svg"
  31331. }
  31332. },
  31333. foot: {
  31334. height: math.unit(1.07, "feet"),
  31335. name: "Foot",
  31336. image: {
  31337. source: "./media/characters/sapphire-svell/foot.svg"
  31338. }
  31339. },
  31340. toering: {
  31341. height: math.unit(1.7, "inch"),
  31342. name: "Toering",
  31343. image: {
  31344. source: "./media/characters/sapphire-svell/toering.svg"
  31345. }
  31346. },
  31347. },
  31348. [
  31349. {
  31350. name: "Normal",
  31351. height: math.unit(300, "feet"),
  31352. default: true
  31353. },
  31354. {
  31355. name: "Augmented",
  31356. height: math.unit(1250, "feet")
  31357. },
  31358. {
  31359. name: "Unleashed",
  31360. height: math.unit(3000, "feet")
  31361. },
  31362. ]
  31363. ))
  31364. characterMakers.push(() => makeCharacter(
  31365. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31366. {
  31367. side: {
  31368. height: math.unit(2 + 3 / 12, "feet"),
  31369. weight: math.unit(110, "lb"),
  31370. name: "Side",
  31371. image: {
  31372. source: "./media/characters/glitch-flux/side.svg",
  31373. extra: 997 / 805,
  31374. bottom: 20 / 1017
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Normal",
  31381. height: math.unit(2 + 3 / 12, "feet"),
  31382. default: true
  31383. },
  31384. ]
  31385. ))
  31386. characterMakers.push(() => makeCharacter(
  31387. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31388. {
  31389. front: {
  31390. height: math.unit(4, "meters"),
  31391. name: "Front",
  31392. image: {
  31393. source: "./media/characters/mid/front.svg",
  31394. extra: 507 / 476,
  31395. bottom: 17 / 524
  31396. }
  31397. },
  31398. back: {
  31399. height: math.unit(4, "meters"),
  31400. name: "Back",
  31401. image: {
  31402. source: "./media/characters/mid/back.svg",
  31403. extra: 519 / 487,
  31404. bottom: 7 / 526
  31405. }
  31406. },
  31407. stuck: {
  31408. height: math.unit(2.2, "meters"),
  31409. name: "Stuck",
  31410. image: {
  31411. source: "./media/characters/mid/stuck.svg",
  31412. extra: 1951 / 1869,
  31413. bottom: 88 / 2039
  31414. }
  31415. }
  31416. },
  31417. [
  31418. {
  31419. name: "Normal",
  31420. height: math.unit(4, "meters"),
  31421. default: true
  31422. },
  31423. {
  31424. name: "Big",
  31425. height: math.unit(10, "meters")
  31426. },
  31427. {
  31428. name: "Macro",
  31429. height: math.unit(800, "meters")
  31430. },
  31431. {
  31432. name: "Megamacro",
  31433. height: math.unit(100, "km")
  31434. },
  31435. {
  31436. name: "Overgrown",
  31437. height: math.unit(1, "parsec")
  31438. },
  31439. ]
  31440. ))
  31441. characterMakers.push(() => makeCharacter(
  31442. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31443. {
  31444. front: {
  31445. height: math.unit(2.5, "meters"),
  31446. weight: math.unit(225, "kg"),
  31447. name: "Front",
  31448. image: {
  31449. source: "./media/characters/iris/front.svg",
  31450. extra: 3348 / 3251,
  31451. bottom: 205 / 3553
  31452. }
  31453. },
  31454. maw: {
  31455. height: math.unit(0.56, "meter"),
  31456. name: "Maw",
  31457. image: {
  31458. source: "./media/characters/iris/maw.svg"
  31459. }
  31460. },
  31461. },
  31462. [
  31463. {
  31464. name: "Mewter cat",
  31465. height: math.unit(1.2, "meters")
  31466. },
  31467. {
  31468. name: "Minimacro",
  31469. height: math.unit(2.5, "meters"),
  31470. default: true
  31471. },
  31472. {
  31473. name: "Macro",
  31474. height: math.unit(180, "meters")
  31475. },
  31476. {
  31477. name: "Megamacro",
  31478. height: math.unit(2746, "meters")
  31479. },
  31480. ]
  31481. ))
  31482. characterMakers.push(() => makeCharacter(
  31483. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31484. {
  31485. front: {
  31486. height: math.unit(6, "feet"),
  31487. weight: math.unit(135, "lb"),
  31488. name: "Front",
  31489. image: {
  31490. source: "./media/characters/axel/front.svg",
  31491. extra: 908 / 908,
  31492. bottom: 58 / 966
  31493. }
  31494. },
  31495. side: {
  31496. height: math.unit(6, "feet"),
  31497. weight: math.unit(135, "lb"),
  31498. name: "Side",
  31499. image: {
  31500. source: "./media/characters/axel/side.svg",
  31501. extra: 958 / 958,
  31502. bottom: 11 / 969
  31503. }
  31504. },
  31505. back: {
  31506. height: math.unit(6, "feet"),
  31507. weight: math.unit(135, "lb"),
  31508. name: "Back",
  31509. image: {
  31510. source: "./media/characters/axel/back.svg",
  31511. extra: 887 / 887,
  31512. bottom: 34 / 921
  31513. }
  31514. },
  31515. head: {
  31516. height: math.unit(1.07, "feet"),
  31517. name: "Head",
  31518. image: {
  31519. source: "./media/characters/axel/head.svg"
  31520. }
  31521. },
  31522. beak: {
  31523. height: math.unit(1.4, "feet"),
  31524. name: "Beak",
  31525. image: {
  31526. source: "./media/characters/axel/beak.svg"
  31527. }
  31528. },
  31529. beakSide: {
  31530. height: math.unit(1.4, "feet"),
  31531. name: "Beak Side",
  31532. image: {
  31533. source: "./media/characters/axel/beak-side.svg"
  31534. }
  31535. },
  31536. sheath: {
  31537. height: math.unit(0.5, "feet"),
  31538. name: "Sheath",
  31539. image: {
  31540. source: "./media/characters/axel/sheath.svg"
  31541. }
  31542. },
  31543. dick: {
  31544. height: math.unit(0.98, "feet"),
  31545. name: "Dick",
  31546. image: {
  31547. source: "./media/characters/axel/dick.svg"
  31548. }
  31549. },
  31550. },
  31551. [
  31552. {
  31553. name: "Macro",
  31554. height: math.unit(68, "meters"),
  31555. default: true
  31556. },
  31557. ]
  31558. ))
  31559. characterMakers.push(() => makeCharacter(
  31560. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31561. {
  31562. front: {
  31563. height: math.unit(3.5, "meters"),
  31564. weight: math.unit(1200, "kg"),
  31565. name: "Front",
  31566. image: {
  31567. source: "./media/characters/joanna/front.svg",
  31568. extra: 1596 / 1488,
  31569. bottom: 29 / 1625
  31570. }
  31571. },
  31572. back: {
  31573. height: math.unit(3.5, "meters"),
  31574. weight: math.unit(1200, "kg"),
  31575. name: "Back",
  31576. image: {
  31577. source: "./media/characters/joanna/back.svg",
  31578. extra: 1594 / 1495,
  31579. bottom: 26 / 1620
  31580. }
  31581. },
  31582. frontShorts: {
  31583. height: math.unit(3.5, "meters"),
  31584. weight: math.unit(1200, "kg"),
  31585. name: "Front (Shorts)",
  31586. image: {
  31587. source: "./media/characters/joanna/front-shorts.svg",
  31588. extra: 1596 / 1488,
  31589. bottom: 29 / 1625
  31590. }
  31591. },
  31592. frontBiker: {
  31593. height: math.unit(3.5, "meters"),
  31594. weight: math.unit(1200, "kg"),
  31595. name: "Front (Biker)",
  31596. image: {
  31597. source: "./media/characters/joanna/front-biker.svg",
  31598. extra: 1596 / 1488,
  31599. bottom: 29 / 1625
  31600. }
  31601. },
  31602. backBiker: {
  31603. height: math.unit(3.5, "meters"),
  31604. weight: math.unit(1200, "kg"),
  31605. name: "Back (Biker)",
  31606. image: {
  31607. source: "./media/characters/joanna/back-biker.svg",
  31608. extra: 1594 / 1495,
  31609. bottom: 88 / 1682
  31610. }
  31611. },
  31612. bikeLeft: {
  31613. height: math.unit(2.4, "meters"),
  31614. weight: math.unit(1600, "kg"),
  31615. name: "Bike (Left)",
  31616. image: {
  31617. source: "./media/characters/joanna/bike-left.svg",
  31618. extra: 720 / 720,
  31619. bottom: 8 / 728
  31620. }
  31621. },
  31622. bikeRight: {
  31623. height: math.unit(2.4, "meters"),
  31624. weight: math.unit(1600, "kg"),
  31625. name: "Bike (Right)",
  31626. image: {
  31627. source: "./media/characters/joanna/bike-right.svg",
  31628. extra: 720 / 720,
  31629. bottom: 8 / 728
  31630. }
  31631. },
  31632. },
  31633. [
  31634. {
  31635. name: "Incognito",
  31636. height: math.unit(3.5, "meters")
  31637. },
  31638. {
  31639. name: "Casual Big",
  31640. height: math.unit(200, "meters")
  31641. },
  31642. {
  31643. name: "Macro",
  31644. height: math.unit(600, "meters")
  31645. },
  31646. {
  31647. name: "Original",
  31648. height: math.unit(20, "km"),
  31649. default: true
  31650. },
  31651. {
  31652. name: "Giga",
  31653. height: math.unit(400, "km")
  31654. },
  31655. {
  31656. name: "Lounging",
  31657. height: math.unit(1500, "km")
  31658. },
  31659. {
  31660. name: "Planetary",
  31661. height: math.unit(200000, "km")
  31662. },
  31663. ]
  31664. ))
  31665. characterMakers.push(() => makeCharacter(
  31666. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31667. {
  31668. front: {
  31669. height: math.unit(6, "feet"),
  31670. weight: math.unit(150, "lb"),
  31671. name: "Front",
  31672. image: {
  31673. source: "./media/characters/hugo-sigil/front.svg",
  31674. extra: 522 / 500,
  31675. bottom: 2 / 524
  31676. }
  31677. },
  31678. back: {
  31679. height: math.unit(6, "feet"),
  31680. weight: math.unit(150, "lb"),
  31681. name: "Back",
  31682. image: {
  31683. source: "./media/characters/hugo-sigil/back.svg",
  31684. extra: 519 / 495,
  31685. bottom: 5 / 524
  31686. }
  31687. },
  31688. maw: {
  31689. height: math.unit(1.4, "feet"),
  31690. weight: math.unit(150, "lb"),
  31691. name: "Maw",
  31692. image: {
  31693. source: "./media/characters/hugo-sigil/maw.svg"
  31694. }
  31695. },
  31696. feet: {
  31697. height: math.unit(1.56, "feet"),
  31698. weight: math.unit(150, "lb"),
  31699. name: "Feet",
  31700. image: {
  31701. source: "./media/characters/hugo-sigil/feet.svg",
  31702. extra: 177 / 177,
  31703. bottom: 12 / 189
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Normal",
  31710. height: math.unit(6, "feet")
  31711. },
  31712. {
  31713. name: "Macro",
  31714. height: math.unit(200, "feet"),
  31715. default: true
  31716. },
  31717. ]
  31718. ))
  31719. characterMakers.push(() => makeCharacter(
  31720. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31721. {
  31722. front: {
  31723. height: math.unit(6, "feet"),
  31724. weight: math.unit(150, "lb"),
  31725. name: "Front",
  31726. image: {
  31727. source: "./media/characters/peri/front.svg",
  31728. extra: 2354 / 2233,
  31729. bottom: 49 / 2403
  31730. }
  31731. },
  31732. },
  31733. [
  31734. {
  31735. name: "Really Small",
  31736. height: math.unit(1, "nm")
  31737. },
  31738. {
  31739. name: "Micro",
  31740. height: math.unit(4, "inches")
  31741. },
  31742. {
  31743. name: "Normal",
  31744. height: math.unit(7, "inches"),
  31745. default: true
  31746. },
  31747. {
  31748. name: "Macro",
  31749. height: math.unit(400, "feet")
  31750. },
  31751. {
  31752. name: "Megamacro",
  31753. height: math.unit(100, "miles")
  31754. },
  31755. ]
  31756. ))
  31757. characterMakers.push(() => makeCharacter(
  31758. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31759. {
  31760. frontSlim: {
  31761. height: math.unit(7, "feet"),
  31762. name: "Front (Slim)",
  31763. image: {
  31764. source: "./media/characters/issilora/front-slim.svg",
  31765. extra: 529 / 449,
  31766. bottom: 53 / 582
  31767. }
  31768. },
  31769. sideSlim: {
  31770. height: math.unit(7, "feet"),
  31771. name: "Side (Slim)",
  31772. image: {
  31773. source: "./media/characters/issilora/side-slim.svg",
  31774. extra: 570 / 480,
  31775. bottom: 30 / 600
  31776. }
  31777. },
  31778. backSlim: {
  31779. height: math.unit(7, "feet"),
  31780. name: "Back (Slim)",
  31781. image: {
  31782. source: "./media/characters/issilora/back-slim.svg",
  31783. extra: 537 / 455,
  31784. bottom: 46 / 583
  31785. }
  31786. },
  31787. frontBuff: {
  31788. height: math.unit(7, "feet"),
  31789. name: "Front (Buff)",
  31790. image: {
  31791. source: "./media/characters/issilora/front-buff.svg",
  31792. extra: 2310 / 2035,
  31793. bottom: 335 / 2645
  31794. }
  31795. },
  31796. head: {
  31797. height: math.unit(1.94, "feet"),
  31798. name: "Head",
  31799. image: {
  31800. source: "./media/characters/issilora/head.svg"
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Minimum",
  31807. height: math.unit(7, "feet")
  31808. },
  31809. {
  31810. name: "Comfortable",
  31811. height: math.unit(17, "feet")
  31812. },
  31813. {
  31814. name: "Fun Size",
  31815. height: math.unit(47, "feet")
  31816. },
  31817. {
  31818. name: "Natural Macro",
  31819. height: math.unit(137, "feet"),
  31820. default: true
  31821. },
  31822. {
  31823. name: "Maximum Kaiju",
  31824. height: math.unit(397, "feet")
  31825. },
  31826. ]
  31827. ))
  31828. characterMakers.push(() => makeCharacter(
  31829. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31830. {
  31831. front: {
  31832. height: math.unit(50 + 9/12, "feet"),
  31833. weight: math.unit(32.8, "tons"),
  31834. name: "Front",
  31835. image: {
  31836. source: "./media/characters/irb'iiritaahn/front.svg",
  31837. extra: 1878/1826,
  31838. bottom: 326/2204
  31839. }
  31840. },
  31841. back: {
  31842. height: math.unit(50 + 9/12, "feet"),
  31843. weight: math.unit(32.8, "tons"),
  31844. name: "Back",
  31845. image: {
  31846. source: "./media/characters/irb'iiritaahn/back.svg",
  31847. extra: 2052/2018,
  31848. bottom: 152/2204
  31849. }
  31850. },
  31851. head: {
  31852. height: math.unit(12.86, "feet"),
  31853. name: "Head",
  31854. image: {
  31855. source: "./media/characters/irb'iiritaahn/head.svg"
  31856. }
  31857. },
  31858. maw: {
  31859. height: math.unit(9.66, "feet"),
  31860. name: "Maw",
  31861. image: {
  31862. source: "./media/characters/irb'iiritaahn/maw.svg"
  31863. }
  31864. },
  31865. frontDick: {
  31866. height: math.unit(8.78461, "feet"),
  31867. name: "Front Dick",
  31868. image: {
  31869. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31870. }
  31871. },
  31872. rearDick: {
  31873. height: math.unit(8.78461, "feet"),
  31874. name: "Rear Dick",
  31875. image: {
  31876. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31877. }
  31878. },
  31879. rearDickUnfolded: {
  31880. height: math.unit(8.78, "feet"),
  31881. name: "Rear Dick (Unfolded)",
  31882. image: {
  31883. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31884. }
  31885. },
  31886. wings: {
  31887. height: math.unit(43, "feet"),
  31888. name: "Wings",
  31889. image: {
  31890. source: "./media/characters/irb'iiritaahn/wings.svg"
  31891. }
  31892. },
  31893. },
  31894. [
  31895. {
  31896. name: "Macro",
  31897. height: math.unit(50 + 9/12, "feet"),
  31898. default: true
  31899. },
  31900. ]
  31901. ))
  31902. characterMakers.push(() => makeCharacter(
  31903. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31904. {
  31905. front: {
  31906. height: math.unit(205, "cm"),
  31907. weight: math.unit(102, "kg"),
  31908. name: "Front",
  31909. image: {
  31910. source: "./media/characters/irbisgreif/front.svg",
  31911. extra: 785/706,
  31912. bottom: 13/798
  31913. }
  31914. },
  31915. back: {
  31916. height: math.unit(205, "cm"),
  31917. weight: math.unit(102, "kg"),
  31918. name: "Back",
  31919. image: {
  31920. source: "./media/characters/irbisgreif/back.svg",
  31921. extra: 713/701,
  31922. bottom: 26/739
  31923. }
  31924. },
  31925. frontDressed: {
  31926. height: math.unit(216, "cm"),
  31927. weight: math.unit(102, "kg"),
  31928. name: "Front-dressed",
  31929. image: {
  31930. source: "./media/characters/irbisgreif/front-dressed.svg",
  31931. extra: 902/776,
  31932. bottom: 14/916
  31933. }
  31934. },
  31935. sideDressed: {
  31936. height: math.unit(195, "cm"),
  31937. weight: math.unit(102, "kg"),
  31938. name: "Side-dressed",
  31939. image: {
  31940. source: "./media/characters/irbisgreif/side-dressed.svg",
  31941. extra: 788/688,
  31942. bottom: 21/809
  31943. }
  31944. },
  31945. backDressed: {
  31946. height: math.unit(216, "cm"),
  31947. weight: math.unit(102, "kg"),
  31948. name: "Back-dressed",
  31949. image: {
  31950. source: "./media/characters/irbisgreif/back-dressed.svg",
  31951. extra: 901/783,
  31952. bottom: 10/911
  31953. }
  31954. },
  31955. dick: {
  31956. height: math.unit(0.49, "feet"),
  31957. name: "Dick",
  31958. image: {
  31959. source: "./media/characters/irbisgreif/dick.svg"
  31960. }
  31961. },
  31962. wingTop: {
  31963. height: math.unit(1.93 , "feet"),
  31964. name: "Wing-top",
  31965. image: {
  31966. source: "./media/characters/irbisgreif/wing-top.svg"
  31967. }
  31968. },
  31969. wingBottom: {
  31970. height: math.unit(1.93 , "feet"),
  31971. name: "Wing-bottom",
  31972. image: {
  31973. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31974. }
  31975. },
  31976. },
  31977. [
  31978. {
  31979. name: "Normal",
  31980. height: math.unit(216, "cm"),
  31981. default: true
  31982. },
  31983. ]
  31984. ))
  31985. characterMakers.push(() => makeCharacter(
  31986. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31987. {
  31988. front: {
  31989. height: math.unit(6, "feet"),
  31990. weight: math.unit(150, "lb"),
  31991. name: "Front",
  31992. image: {
  31993. source: "./media/characters/pride/front.svg",
  31994. extra: 1299/1230,
  31995. bottom: 18/1317
  31996. }
  31997. },
  31998. },
  31999. [
  32000. {
  32001. name: "Normal",
  32002. height: math.unit(7, "feet")
  32003. },
  32004. {
  32005. name: "Mini-macro",
  32006. height: math.unit(11, "feet")
  32007. },
  32008. {
  32009. name: "Macro",
  32010. height: math.unit(15, "meters"),
  32011. default: true
  32012. },
  32013. {
  32014. name: "Macro+",
  32015. height: math.unit(40, "meters")
  32016. },
  32017. ]
  32018. ))
  32019. characterMakers.push(() => makeCharacter(
  32020. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32021. {
  32022. front: {
  32023. height: math.unit(4 + 2 / 12, "feet"),
  32024. weight: math.unit(95, "lb"),
  32025. name: "Front",
  32026. image: {
  32027. source: "./media/characters/vaelophis-nyx/front.svg",
  32028. extra: 2532/2330,
  32029. bottom: 0/2532
  32030. }
  32031. },
  32032. back: {
  32033. height: math.unit(4 + 2 / 12, "feet"),
  32034. weight: math.unit(95, "lb"),
  32035. name: "Back",
  32036. image: {
  32037. source: "./media/characters/vaelophis-nyx/back.svg",
  32038. extra: 2484/2361,
  32039. bottom: 0/2484
  32040. }
  32041. },
  32042. feralSide: {
  32043. height: math.unit(2 + 1/12, "feet"),
  32044. weight: math.unit(20, "lb"),
  32045. name: "Feral (Side)",
  32046. image: {
  32047. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32048. extra: 1721/1581,
  32049. bottom: 70/1791
  32050. }
  32051. },
  32052. feralLazing: {
  32053. height: math.unit(1.08, "feet"),
  32054. weight: math.unit(20, "lb"),
  32055. name: "Feral (Lazing)",
  32056. image: {
  32057. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32058. extra: 822/822,
  32059. bottom: 248/1070
  32060. }
  32061. },
  32062. ear: {
  32063. height: math.unit(0.416, "feet"),
  32064. name: "Ear",
  32065. image: {
  32066. source: "./media/characters/vaelophis-nyx/ear.svg"
  32067. }
  32068. },
  32069. eye: {
  32070. height: math.unit(0.0748, "feet"),
  32071. name: "Eye",
  32072. image: {
  32073. source: "./media/characters/vaelophis-nyx/eye.svg"
  32074. }
  32075. },
  32076. mouth: {
  32077. height: math.unit(0.378, "feet"),
  32078. name: "Mouth",
  32079. image: {
  32080. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32081. }
  32082. },
  32083. spade: {
  32084. height: math.unit(0.55, "feet"),
  32085. name: "Spade",
  32086. image: {
  32087. source: "./media/characters/vaelophis-nyx/spade.svg"
  32088. }
  32089. },
  32090. },
  32091. [
  32092. {
  32093. name: "Normal",
  32094. height: math.unit(4 + 2/12, "feet"),
  32095. default: true
  32096. },
  32097. ]
  32098. ))
  32099. characterMakers.push(() => makeCharacter(
  32100. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32101. {
  32102. front: {
  32103. height: math.unit(7, "feet"),
  32104. weight: math.unit(231, "lb"),
  32105. name: "Front",
  32106. image: {
  32107. source: "./media/characters/flux/front.svg",
  32108. extra: 919/871,
  32109. bottom: 0/919
  32110. }
  32111. },
  32112. back: {
  32113. height: math.unit(7, "feet"),
  32114. weight: math.unit(231, "lb"),
  32115. name: "Back",
  32116. image: {
  32117. source: "./media/characters/flux/back.svg",
  32118. extra: 1040/992,
  32119. bottom: 0/1040
  32120. }
  32121. },
  32122. frontDressed: {
  32123. height: math.unit(7, "feet"),
  32124. weight: math.unit(231, "lb"),
  32125. name: "Front (Dressed)",
  32126. image: {
  32127. source: "./media/characters/flux/front-dressed.svg",
  32128. extra: 919/871,
  32129. bottom: 0/919
  32130. }
  32131. },
  32132. feralSide: {
  32133. height: math.unit(5, "feet"),
  32134. weight: math.unit(150, "lb"),
  32135. name: "Feral (Side)",
  32136. image: {
  32137. source: "./media/characters/flux/feral-side.svg",
  32138. extra: 598/528,
  32139. bottom: 28/626
  32140. }
  32141. },
  32142. head: {
  32143. height: math.unit(1.585, "feet"),
  32144. name: "Head",
  32145. image: {
  32146. source: "./media/characters/flux/head.svg"
  32147. }
  32148. },
  32149. headSide: {
  32150. height: math.unit(1.74, "feet"),
  32151. name: "Head (Side)",
  32152. image: {
  32153. source: "./media/characters/flux/head-side.svg"
  32154. }
  32155. },
  32156. headSideFire: {
  32157. height: math.unit(1.76, "feet"),
  32158. name: "Head (Side, Fire)",
  32159. image: {
  32160. source: "./media/characters/flux/head-side-fire.svg"
  32161. }
  32162. },
  32163. },
  32164. [
  32165. {
  32166. name: "Normal",
  32167. height: math.unit(7, "feet"),
  32168. default: true
  32169. },
  32170. ]
  32171. ))
  32172. characterMakers.push(() => makeCharacter(
  32173. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32174. {
  32175. front: {
  32176. height: math.unit(9, "feet"),
  32177. weight: math.unit(1012, "lb"),
  32178. name: "Front",
  32179. image: {
  32180. source: "./media/characters/ulfra-lupae/front.svg",
  32181. extra: 1083/1011,
  32182. bottom: 67/1150
  32183. }
  32184. },
  32185. },
  32186. [
  32187. {
  32188. name: "Micro",
  32189. height: math.unit(6, "inches")
  32190. },
  32191. {
  32192. name: "Socializing",
  32193. height: math.unit(6 + 5/12, "feet")
  32194. },
  32195. {
  32196. name: "Normal",
  32197. height: math.unit(9, "feet"),
  32198. default: true
  32199. },
  32200. {
  32201. name: "Macro",
  32202. height: math.unit(150, "feet")
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32208. {
  32209. front: {
  32210. height: math.unit(5 + 2/12, "feet"),
  32211. weight: math.unit(120, "lb"),
  32212. name: "Front",
  32213. image: {
  32214. source: "./media/characters/timber/front.svg",
  32215. extra: 2814/2705,
  32216. bottom: 181/2995
  32217. }
  32218. },
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(5 + 2/12, "feet"),
  32224. default: true
  32225. },
  32226. ]
  32227. ))
  32228. characterMakers.push(() => makeCharacter(
  32229. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32230. {
  32231. front: {
  32232. height: math.unit(9, "feet"),
  32233. name: "Front",
  32234. image: {
  32235. source: "./media/characters/nicki/front.svg",
  32236. extra: 1240/990,
  32237. bottom: 45/1285
  32238. },
  32239. form: "anthro",
  32240. default: true
  32241. },
  32242. side: {
  32243. height: math.unit(9, "feet"),
  32244. name: "Side",
  32245. image: {
  32246. source: "./media/characters/nicki/side.svg",
  32247. extra: 1047/973,
  32248. bottom: 61/1108
  32249. },
  32250. form: "anthro"
  32251. },
  32252. back: {
  32253. height: math.unit(9, "feet"),
  32254. name: "Back",
  32255. image: {
  32256. source: "./media/characters/nicki/back.svg",
  32257. extra: 1006/965,
  32258. bottom: 39/1045
  32259. },
  32260. form: "anthro"
  32261. },
  32262. taur: {
  32263. height: math.unit(15, "feet"),
  32264. name: "Taur",
  32265. image: {
  32266. source: "./media/characters/nicki/taur.svg",
  32267. extra: 1592/1347,
  32268. bottom: 0/1592
  32269. },
  32270. form: "taur",
  32271. default: true
  32272. },
  32273. },
  32274. [
  32275. {
  32276. name: "Normal",
  32277. height: math.unit(9, "feet"),
  32278. form: "anthro",
  32279. default: true
  32280. },
  32281. {
  32282. name: "Normal",
  32283. height: math.unit(15, "feet"),
  32284. form: "taur",
  32285. default: true
  32286. }
  32287. ],
  32288. {
  32289. "anthro": {
  32290. name: "Anthro",
  32291. default: true
  32292. },
  32293. "taur": {
  32294. name: "Taur"
  32295. }
  32296. }
  32297. ))
  32298. characterMakers.push(() => makeCharacter(
  32299. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32300. {
  32301. front: {
  32302. height: math.unit(7 + 10/12, "feet"),
  32303. weight: math.unit(3.5, "tons"),
  32304. name: "Front",
  32305. image: {
  32306. source: "./media/characters/lee/front.svg",
  32307. extra: 1773/1615,
  32308. bottom: 86/1859
  32309. }
  32310. },
  32311. hand: {
  32312. height: math.unit(1.78, "feet"),
  32313. name: "Hand",
  32314. image: {
  32315. source: "./media/characters/lee/hand.svg"
  32316. }
  32317. },
  32318. maw: {
  32319. height: math.unit(1.18, "feet"),
  32320. name: "Maw",
  32321. image: {
  32322. source: "./media/characters/lee/maw.svg"
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Normal",
  32329. height: math.unit(7 + 10/12, "feet"),
  32330. default: true
  32331. },
  32332. ]
  32333. ))
  32334. characterMakers.push(() => makeCharacter(
  32335. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32336. {
  32337. front: {
  32338. height: math.unit(9, "feet"),
  32339. name: "Front",
  32340. image: {
  32341. source: "./media/characters/guti/front.svg",
  32342. extra: 4551/4355,
  32343. bottom: 123/4674
  32344. }
  32345. },
  32346. tongue: {
  32347. height: math.unit(1, "feet"),
  32348. name: "Tongue",
  32349. image: {
  32350. source: "./media/characters/guti/tongue.svg"
  32351. }
  32352. },
  32353. paw: {
  32354. height: math.unit(1.18, "feet"),
  32355. name: "Paw",
  32356. image: {
  32357. source: "./media/characters/guti/paw.svg"
  32358. }
  32359. },
  32360. },
  32361. [
  32362. {
  32363. name: "Normal",
  32364. height: math.unit(9, "feet"),
  32365. default: true
  32366. },
  32367. ]
  32368. ))
  32369. characterMakers.push(() => makeCharacter(
  32370. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32371. {
  32372. side: {
  32373. height: math.unit(5, "meters"),
  32374. name: "Side",
  32375. image: {
  32376. source: "./media/characters/vesper/side.svg",
  32377. extra: 1605/1518,
  32378. bottom: 0/1605
  32379. }
  32380. },
  32381. },
  32382. [
  32383. {
  32384. name: "Small",
  32385. height: math.unit(5, "meters")
  32386. },
  32387. {
  32388. name: "Sage",
  32389. height: math.unit(100, "meters"),
  32390. default: true
  32391. },
  32392. {
  32393. name: "Fun Size",
  32394. height: math.unit(600, "meters")
  32395. },
  32396. {
  32397. name: "Goddess",
  32398. height: math.unit(20000, "km")
  32399. },
  32400. {
  32401. name: "Maximum",
  32402. height: math.unit(5, "galaxies")
  32403. },
  32404. ]
  32405. ))
  32406. characterMakers.push(() => makeCharacter(
  32407. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32408. {
  32409. front: {
  32410. height: math.unit(6 + 3/12, "feet"),
  32411. weight: math.unit(190, "lb"),
  32412. name: "Front",
  32413. image: {
  32414. source: "./media/characters/gawain/front.svg",
  32415. extra: 2222/2139,
  32416. bottom: 90/2312
  32417. }
  32418. },
  32419. back: {
  32420. height: math.unit(6 + 3/12, "feet"),
  32421. weight: math.unit(190, "lb"),
  32422. name: "Back",
  32423. image: {
  32424. source: "./media/characters/gawain/back.svg",
  32425. extra: 2199/2111,
  32426. bottom: 73/2272
  32427. }
  32428. },
  32429. },
  32430. [
  32431. {
  32432. name: "Normal",
  32433. height: math.unit(6 + 3/12, "feet"),
  32434. default: true
  32435. },
  32436. ]
  32437. ))
  32438. characterMakers.push(() => makeCharacter(
  32439. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32440. {
  32441. side: {
  32442. height: math.unit(3.5, "meters"),
  32443. weight: math.unit(16000, "lb"),
  32444. name: "Side",
  32445. image: {
  32446. source: "./media/characters/dascalti/side.svg",
  32447. extra: 392/273,
  32448. bottom: 47/439
  32449. }
  32450. },
  32451. breath: {
  32452. height: math.unit(7.4, "feet"),
  32453. name: "Breath",
  32454. image: {
  32455. source: "./media/characters/dascalti/breath.svg"
  32456. }
  32457. },
  32458. fed: {
  32459. height: math.unit(3.6, "meters"),
  32460. weight: math.unit(16000, "lb"),
  32461. name: "Fed",
  32462. image: {
  32463. source: "./media/characters/dascalti/fed.svg",
  32464. extra: 1419/820,
  32465. bottom: 95/1514
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Normal",
  32472. height: math.unit(3.5, "meters"),
  32473. default: true
  32474. },
  32475. ]
  32476. ))
  32477. characterMakers.push(() => makeCharacter(
  32478. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32479. {
  32480. front: {
  32481. height: math.unit(3 + 5/12, "feet"),
  32482. name: "Front",
  32483. image: {
  32484. source: "./media/characters/mauve/front.svg",
  32485. extra: 1126/1033,
  32486. bottom: 65/1191
  32487. }
  32488. },
  32489. side: {
  32490. height: math.unit(3 + 5/12, "feet"),
  32491. name: "Side",
  32492. image: {
  32493. source: "./media/characters/mauve/side.svg",
  32494. extra: 1089/1001,
  32495. bottom: 29/1118
  32496. }
  32497. },
  32498. back: {
  32499. height: math.unit(3 + 5/12, "feet"),
  32500. name: "Back",
  32501. image: {
  32502. source: "./media/characters/mauve/back.svg",
  32503. extra: 1173/1053,
  32504. bottom: 109/1282
  32505. }
  32506. },
  32507. },
  32508. [
  32509. {
  32510. name: "Normal",
  32511. height: math.unit(3 + 5/12, "feet"),
  32512. default: true
  32513. },
  32514. ]
  32515. ))
  32516. characterMakers.push(() => makeCharacter(
  32517. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32518. {
  32519. front: {
  32520. height: math.unit(6 + 3/12, "feet"),
  32521. weight: math.unit(430, "lb"),
  32522. name: "Front",
  32523. image: {
  32524. source: "./media/characters/carlos/front.svg",
  32525. extra: 1964/1913,
  32526. bottom: 70/2034
  32527. }
  32528. },
  32529. },
  32530. [
  32531. {
  32532. name: "Normal",
  32533. height: math.unit(6 + 3/12, "feet"),
  32534. default: true
  32535. },
  32536. ]
  32537. ))
  32538. characterMakers.push(() => makeCharacter(
  32539. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32540. {
  32541. back: {
  32542. height: math.unit(5 + 10/12, "feet"),
  32543. weight: math.unit(200, "lb"),
  32544. name: "Back",
  32545. image: {
  32546. source: "./media/characters/jax/back.svg",
  32547. extra: 764/739,
  32548. bottom: 25/789
  32549. }
  32550. },
  32551. },
  32552. [
  32553. {
  32554. name: "Normal",
  32555. height: math.unit(5 + 10/12, "feet"),
  32556. default: true
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32562. {
  32563. front: {
  32564. height: math.unit(8, "feet"),
  32565. weight: math.unit(250, "lb"),
  32566. name: "Front",
  32567. image: {
  32568. source: "./media/characters/eikthynir/front.svg",
  32569. extra: 1332/1166,
  32570. bottom: 82/1414
  32571. }
  32572. },
  32573. back: {
  32574. height: math.unit(8, "feet"),
  32575. weight: math.unit(250, "lb"),
  32576. name: "Back",
  32577. image: {
  32578. source: "./media/characters/eikthynir/back.svg",
  32579. extra: 1342/1190,
  32580. bottom: 19/1361
  32581. }
  32582. },
  32583. dick: {
  32584. height: math.unit(2.35, "feet"),
  32585. name: "Dick",
  32586. image: {
  32587. source: "./media/characters/eikthynir/dick.svg"
  32588. }
  32589. },
  32590. },
  32591. [
  32592. {
  32593. name: "Normal",
  32594. height: math.unit(8, "feet"),
  32595. default: true
  32596. },
  32597. ]
  32598. ))
  32599. characterMakers.push(() => makeCharacter(
  32600. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32601. {
  32602. front: {
  32603. height: math.unit(99, "meters"),
  32604. weight: math.unit(13000, "tons"),
  32605. name: "Front",
  32606. image: {
  32607. source: "./media/characters/zlmos/front.svg",
  32608. extra: 2202/1992,
  32609. bottom: 315/2517
  32610. }
  32611. },
  32612. },
  32613. [
  32614. {
  32615. name: "Macro",
  32616. height: math.unit(99, "meters"),
  32617. default: true
  32618. },
  32619. ]
  32620. ))
  32621. characterMakers.push(() => makeCharacter(
  32622. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32623. {
  32624. front: {
  32625. height: math.unit(6 + 5/12, "feet"),
  32626. name: "Front",
  32627. image: {
  32628. source: "./media/characters/purri/front.svg",
  32629. extra: 1698/1610,
  32630. bottom: 32/1730
  32631. }
  32632. },
  32633. frontAlt: {
  32634. height: math.unit(6 + 5/12, "feet"),
  32635. name: "Front (Alt)",
  32636. image: {
  32637. source: "./media/characters/purri/front-alt.svg",
  32638. extra: 450/420,
  32639. bottom: 26/476
  32640. }
  32641. },
  32642. boots: {
  32643. height: math.unit(5.5, "feet"),
  32644. name: "Boots",
  32645. image: {
  32646. source: "./media/characters/purri/boots.svg",
  32647. extra: 905/853,
  32648. bottom: 18/923
  32649. }
  32650. },
  32651. lying: {
  32652. height: math.unit(2, "feet"),
  32653. name: "Lying",
  32654. image: {
  32655. source: "./media/characters/purri/lying.svg",
  32656. extra: 940/843,
  32657. bottom: 146/1086
  32658. }
  32659. },
  32660. devious: {
  32661. height: math.unit(1.77, "feet"),
  32662. name: "Devious",
  32663. image: {
  32664. source: "./media/characters/purri/devious.svg",
  32665. extra: 1440/1155,
  32666. bottom: 147/1587
  32667. }
  32668. },
  32669. bean: {
  32670. height: math.unit(1.94, "feet"),
  32671. name: "Bean",
  32672. image: {
  32673. source: "./media/characters/purri/bean.svg"
  32674. }
  32675. },
  32676. },
  32677. [
  32678. {
  32679. name: "Micro",
  32680. height: math.unit(1, "mm")
  32681. },
  32682. {
  32683. name: "Normal",
  32684. height: math.unit(6 + 5/12, "feet"),
  32685. default: true
  32686. },
  32687. {
  32688. name: "Macro :3c",
  32689. height: math.unit(2, "miles")
  32690. },
  32691. ]
  32692. ))
  32693. characterMakers.push(() => makeCharacter(
  32694. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32695. {
  32696. front: {
  32697. height: math.unit(6 + 2/12, "feet"),
  32698. weight: math.unit(250, "lb"),
  32699. name: "Front",
  32700. image: {
  32701. source: "./media/characters/moonlight/front.svg",
  32702. extra: 1044/908,
  32703. bottom: 56/1100
  32704. }
  32705. },
  32706. feral: {
  32707. height: math.unit(3 + 1/12, "feet"),
  32708. weight: math.unit(50, "kg"),
  32709. name: "Feral",
  32710. image: {
  32711. source: "./media/characters/moonlight/feral.svg",
  32712. extra: 3705/2791,
  32713. bottom: 145/3850
  32714. }
  32715. },
  32716. paw: {
  32717. height: math.unit(1, "feet"),
  32718. name: "Paw",
  32719. image: {
  32720. source: "./media/characters/moonlight/paw.svg"
  32721. }
  32722. },
  32723. paws: {
  32724. height: math.unit(0.98, "feet"),
  32725. name: "Paws",
  32726. image: {
  32727. source: "./media/characters/moonlight/paws.svg",
  32728. extra: 939/939,
  32729. bottom: 50/989
  32730. }
  32731. },
  32732. mouth: {
  32733. height: math.unit(0.48, "feet"),
  32734. name: "Mouth",
  32735. image: {
  32736. source: "./media/characters/moonlight/mouth.svg"
  32737. }
  32738. },
  32739. dick: {
  32740. height: math.unit(1.46, "feet"),
  32741. name: "Dick",
  32742. image: {
  32743. source: "./media/characters/moonlight/dick.svg"
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(6 + 2/12, "feet"),
  32751. default: true
  32752. },
  32753. {
  32754. name: "Macro",
  32755. height: math.unit(300, "feet")
  32756. },
  32757. {
  32758. name: "Macro+",
  32759. height: math.unit(1, "mile")
  32760. },
  32761. {
  32762. name: "Mt. Moon",
  32763. height: math.unit(5, "miles")
  32764. },
  32765. {
  32766. name: "Megamacro",
  32767. height: math.unit(15, "miles")
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32773. {
  32774. back: {
  32775. height: math.unit(6, "feet"),
  32776. weight: math.unit(150, "lb"),
  32777. name: "Back",
  32778. image: {
  32779. source: "./media/characters/sylen/back.svg",
  32780. extra: 1335/1273,
  32781. bottom: 107/1442
  32782. }
  32783. },
  32784. },
  32785. [
  32786. {
  32787. name: "Normal",
  32788. height: math.unit(5 + 5/12, "feet")
  32789. },
  32790. {
  32791. name: "Megamacro",
  32792. height: math.unit(3, "miles"),
  32793. default: true
  32794. },
  32795. ]
  32796. ))
  32797. characterMakers.push(() => makeCharacter(
  32798. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32799. {
  32800. front: {
  32801. height: math.unit(6, "feet"),
  32802. weight: math.unit(190, "lb"),
  32803. name: "Front",
  32804. image: {
  32805. source: "./media/characters/huttser/front.svg",
  32806. extra: 1152/1058,
  32807. bottom: 23/1175
  32808. }
  32809. },
  32810. side: {
  32811. height: math.unit(6, "feet"),
  32812. weight: math.unit(190, "lb"),
  32813. name: "Side",
  32814. image: {
  32815. source: "./media/characters/huttser/side.svg",
  32816. extra: 1174/1065,
  32817. bottom: 18/1192
  32818. }
  32819. },
  32820. back: {
  32821. height: math.unit(6, "feet"),
  32822. weight: math.unit(190, "lb"),
  32823. name: "Back",
  32824. image: {
  32825. source: "./media/characters/huttser/back.svg",
  32826. extra: 1158/1056,
  32827. bottom: 12/1170
  32828. }
  32829. },
  32830. },
  32831. [
  32832. ]
  32833. ))
  32834. characterMakers.push(() => makeCharacter(
  32835. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32836. {
  32837. side: {
  32838. height: math.unit(12 + 9/12, "feet"),
  32839. weight: math.unit(15000, "lb"),
  32840. name: "Side",
  32841. image: {
  32842. source: "./media/characters/faan/side.svg",
  32843. extra: 2747/2697,
  32844. bottom: 0/2747
  32845. }
  32846. },
  32847. front: {
  32848. height: math.unit(12 + 9/12, "feet"),
  32849. weight: math.unit(15000, "lb"),
  32850. name: "Front",
  32851. image: {
  32852. source: "./media/characters/faan/front.svg",
  32853. extra: 607/571,
  32854. bottom: 24/631
  32855. }
  32856. },
  32857. head: {
  32858. height: math.unit(2.85, "feet"),
  32859. name: "Head",
  32860. image: {
  32861. source: "./media/characters/faan/head.svg"
  32862. }
  32863. },
  32864. headAlt: {
  32865. height: math.unit(3.13, "feet"),
  32866. name: "Head-alt",
  32867. image: {
  32868. source: "./media/characters/faan/head-alt.svg"
  32869. }
  32870. },
  32871. },
  32872. [
  32873. {
  32874. name: "Normal",
  32875. height: math.unit(12 + 9/12, "feet"),
  32876. default: true
  32877. },
  32878. ]
  32879. ))
  32880. characterMakers.push(() => makeCharacter(
  32881. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32882. {
  32883. front: {
  32884. height: math.unit(6, "feet"),
  32885. weight: math.unit(300, "lb"),
  32886. name: "Front",
  32887. image: {
  32888. source: "./media/characters/tanio/front.svg",
  32889. extra: 711/673,
  32890. bottom: 25/736
  32891. }
  32892. },
  32893. },
  32894. [
  32895. {
  32896. name: "Normal",
  32897. height: math.unit(6, "feet"),
  32898. default: true
  32899. },
  32900. ]
  32901. ))
  32902. characterMakers.push(() => makeCharacter(
  32903. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32904. {
  32905. front: {
  32906. height: math.unit(3, "inches"),
  32907. name: "Front",
  32908. image: {
  32909. source: "./media/characters/noboru/front.svg",
  32910. extra: 1039/932,
  32911. bottom: 18/1057
  32912. }
  32913. },
  32914. },
  32915. [
  32916. {
  32917. name: "Micro",
  32918. height: math.unit(3, "inches"),
  32919. default: true
  32920. },
  32921. ]
  32922. ))
  32923. characterMakers.push(() => makeCharacter(
  32924. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32925. {
  32926. front: {
  32927. height: math.unit(1.85, "meters"),
  32928. weight: math.unit(80, "kg"),
  32929. name: "Front",
  32930. image: {
  32931. source: "./media/characters/daniel-barrett/front.svg",
  32932. extra: 355/337,
  32933. bottom: 9/364
  32934. }
  32935. },
  32936. },
  32937. [
  32938. {
  32939. name: "Pico",
  32940. height: math.unit(0.0433, "mm")
  32941. },
  32942. {
  32943. name: "Nano",
  32944. height: math.unit(1.5, "mm")
  32945. },
  32946. {
  32947. name: "Micro",
  32948. height: math.unit(5.3, "cm"),
  32949. default: true
  32950. },
  32951. {
  32952. name: "Normal",
  32953. height: math.unit(1.85, "meters")
  32954. },
  32955. {
  32956. name: "Macro",
  32957. height: math.unit(64.7, "meters")
  32958. },
  32959. {
  32960. name: "Megamacro",
  32961. height: math.unit(2.26, "km")
  32962. },
  32963. {
  32964. name: "Gigamacro",
  32965. height: math.unit(79, "km")
  32966. },
  32967. {
  32968. name: "Teramacro",
  32969. height: math.unit(2765, "km")
  32970. },
  32971. {
  32972. name: "Petamacro",
  32973. height: math.unit(96678, "km")
  32974. },
  32975. ]
  32976. ))
  32977. characterMakers.push(() => makeCharacter(
  32978. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32979. {
  32980. front: {
  32981. height: math.unit(30, "meters"),
  32982. weight: math.unit(400, "tons"),
  32983. name: "Front",
  32984. image: {
  32985. source: "./media/characters/zeel/front.svg",
  32986. extra: 2599/2599,
  32987. bottom: 226/2825
  32988. }
  32989. },
  32990. },
  32991. [
  32992. {
  32993. name: "Macro",
  32994. height: math.unit(30, "meters"),
  32995. default: true
  32996. },
  32997. ]
  32998. ))
  32999. characterMakers.push(() => makeCharacter(
  33000. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33001. {
  33002. front: {
  33003. height: math.unit(6 + 7/12, "feet"),
  33004. weight: math.unit(210, "lb"),
  33005. name: "Front",
  33006. image: {
  33007. source: "./media/characters/tarn/front.svg",
  33008. extra: 3517/3220,
  33009. bottom: 91/3608
  33010. }
  33011. },
  33012. back: {
  33013. height: math.unit(6 + 7/12, "feet"),
  33014. weight: math.unit(210, "lb"),
  33015. name: "Back",
  33016. image: {
  33017. source: "./media/characters/tarn/back.svg",
  33018. extra: 3566/3241,
  33019. bottom: 34/3600
  33020. }
  33021. },
  33022. dick: {
  33023. height: math.unit(1.65, "feet"),
  33024. name: "Dick",
  33025. image: {
  33026. source: "./media/characters/tarn/dick.svg"
  33027. }
  33028. },
  33029. paw: {
  33030. height: math.unit(1.80, "feet"),
  33031. name: "Paw",
  33032. image: {
  33033. source: "./media/characters/tarn/paw.svg"
  33034. }
  33035. },
  33036. tongue: {
  33037. height: math.unit(0.97, "feet"),
  33038. name: "Tongue",
  33039. image: {
  33040. source: "./media/characters/tarn/tongue.svg"
  33041. }
  33042. },
  33043. },
  33044. [
  33045. {
  33046. name: "Micro",
  33047. height: math.unit(4, "inches")
  33048. },
  33049. {
  33050. name: "Normal",
  33051. height: math.unit(6 + 7/12, "feet"),
  33052. default: true
  33053. },
  33054. {
  33055. name: "Macro",
  33056. height: math.unit(300, "feet")
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33062. {
  33063. front: {
  33064. height: math.unit(5 + 7/12, "feet"),
  33065. weight: math.unit(80, "kg"),
  33066. name: "Front",
  33067. image: {
  33068. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33069. extra: 3023/2865,
  33070. bottom: 33/3056
  33071. }
  33072. },
  33073. back: {
  33074. height: math.unit(5 + 7/12, "feet"),
  33075. weight: math.unit(80, "kg"),
  33076. name: "Back",
  33077. image: {
  33078. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33079. extra: 3020/2886,
  33080. bottom: 30/3050
  33081. }
  33082. },
  33083. dick: {
  33084. height: math.unit(0.98, "feet"),
  33085. name: "Dick",
  33086. image: {
  33087. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33088. }
  33089. },
  33090. anatomy: {
  33091. height: math.unit(2.86, "feet"),
  33092. name: "Anatomy",
  33093. image: {
  33094. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33095. }
  33096. },
  33097. },
  33098. [
  33099. {
  33100. name: "Really Small",
  33101. height: math.unit(2, "inches")
  33102. },
  33103. {
  33104. name: "Micro",
  33105. height: math.unit(5.583, "inches")
  33106. },
  33107. {
  33108. name: "Normal",
  33109. height: math.unit(5 + 7/12, "feet"),
  33110. default: true
  33111. },
  33112. {
  33113. name: "Macro",
  33114. height: math.unit(67, "feet")
  33115. },
  33116. {
  33117. name: "Megamacro",
  33118. height: math.unit(134, "feet")
  33119. },
  33120. ]
  33121. ))
  33122. characterMakers.push(() => makeCharacter(
  33123. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33124. {
  33125. front: {
  33126. height: math.unit(9, "feet"),
  33127. weight: math.unit(120, "lb"),
  33128. name: "Front",
  33129. image: {
  33130. source: "./media/characters/sally/front.svg",
  33131. extra: 1506/1349,
  33132. bottom: 66/1572
  33133. }
  33134. },
  33135. },
  33136. [
  33137. {
  33138. name: "Normal",
  33139. height: math.unit(9, "feet"),
  33140. default: true
  33141. },
  33142. ]
  33143. ))
  33144. characterMakers.push(() => makeCharacter(
  33145. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33146. {
  33147. front: {
  33148. height: math.unit(8, "feet"),
  33149. weight: math.unit(900, "lb"),
  33150. name: "Front",
  33151. image: {
  33152. source: "./media/characters/owen/front.svg",
  33153. extra: 1761/1657,
  33154. bottom: 74/1835
  33155. }
  33156. },
  33157. side: {
  33158. height: math.unit(8, "feet"),
  33159. weight: math.unit(900, "lb"),
  33160. name: "Side",
  33161. image: {
  33162. source: "./media/characters/owen/side.svg",
  33163. extra: 1797/1734,
  33164. bottom: 30/1827
  33165. }
  33166. },
  33167. back: {
  33168. height: math.unit(8, "feet"),
  33169. weight: math.unit(900, "lb"),
  33170. name: "Back",
  33171. image: {
  33172. source: "./media/characters/owen/back.svg",
  33173. extra: 1796/1706,
  33174. bottom: 59/1855
  33175. }
  33176. },
  33177. maw: {
  33178. height: math.unit(1.76, "feet"),
  33179. name: "Maw",
  33180. image: {
  33181. source: "./media/characters/owen/maw.svg"
  33182. }
  33183. },
  33184. },
  33185. [
  33186. {
  33187. name: "Normal",
  33188. height: math.unit(8, "feet"),
  33189. default: true
  33190. },
  33191. ]
  33192. ))
  33193. characterMakers.push(() => makeCharacter(
  33194. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33195. {
  33196. front: {
  33197. height: math.unit(4, "feet"),
  33198. weight: math.unit(400, "lb"),
  33199. name: "Front",
  33200. image: {
  33201. source: "./media/characters/ryth/front.svg",
  33202. extra: 1920/1748,
  33203. bottom: 42/1962
  33204. }
  33205. },
  33206. back: {
  33207. height: math.unit(4, "feet"),
  33208. weight: math.unit(400, "lb"),
  33209. name: "Back",
  33210. image: {
  33211. source: "./media/characters/ryth/back.svg",
  33212. extra: 1897/1690,
  33213. bottom: 89/1986
  33214. }
  33215. },
  33216. mouth: {
  33217. height: math.unit(1.39, "feet"),
  33218. name: "Mouth",
  33219. image: {
  33220. source: "./media/characters/ryth/mouth.svg"
  33221. }
  33222. },
  33223. tailmaw: {
  33224. height: math.unit(1.23, "feet"),
  33225. name: "Tailmaw",
  33226. image: {
  33227. source: "./media/characters/ryth/tailmaw.svg"
  33228. }
  33229. },
  33230. goia: {
  33231. height: math.unit(4, "meters"),
  33232. weight: math.unit(10800, "lb"),
  33233. name: "Goia",
  33234. image: {
  33235. source: "./media/characters/ryth/goia.svg",
  33236. extra: 745/640,
  33237. bottom: 107/852
  33238. }
  33239. },
  33240. goiaFront: {
  33241. height: math.unit(4, "meters"),
  33242. weight: math.unit(10800, "lb"),
  33243. name: "Goia (Front)",
  33244. image: {
  33245. source: "./media/characters/ryth/goia-front.svg",
  33246. extra: 750/586,
  33247. bottom: 114/864
  33248. }
  33249. },
  33250. goiaMaw: {
  33251. height: math.unit(5.55, "feet"),
  33252. name: "Goia Maw",
  33253. image: {
  33254. source: "./media/characters/ryth/goia-maw.svg"
  33255. }
  33256. },
  33257. goiaForepaw: {
  33258. height: math.unit(3.5, "feet"),
  33259. name: "Goia Forepaw",
  33260. image: {
  33261. source: "./media/characters/ryth/goia-forepaw.svg"
  33262. }
  33263. },
  33264. goiaHindpaw: {
  33265. height: math.unit(5.55, "feet"),
  33266. name: "Goia Hindpaw",
  33267. image: {
  33268. source: "./media/characters/ryth/goia-hindpaw.svg"
  33269. }
  33270. },
  33271. },
  33272. [
  33273. {
  33274. name: "Normal",
  33275. height: math.unit(4, "feet"),
  33276. default: true
  33277. },
  33278. ]
  33279. ))
  33280. characterMakers.push(() => makeCharacter(
  33281. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33282. {
  33283. front: {
  33284. height: math.unit(7, "feet"),
  33285. weight: math.unit(180, "lb"),
  33286. name: "Front",
  33287. image: {
  33288. source: "./media/characters/necrolance/front.svg",
  33289. extra: 1062/947,
  33290. bottom: 41/1103
  33291. }
  33292. },
  33293. back: {
  33294. height: math.unit(7, "feet"),
  33295. weight: math.unit(180, "lb"),
  33296. name: "Back",
  33297. image: {
  33298. source: "./media/characters/necrolance/back.svg",
  33299. extra: 1045/984,
  33300. bottom: 14/1059
  33301. }
  33302. },
  33303. wing: {
  33304. height: math.unit(2.67, "feet"),
  33305. name: "Wing",
  33306. image: {
  33307. source: "./media/characters/necrolance/wing.svg"
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Normal",
  33314. height: math.unit(7, "feet"),
  33315. default: true
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33321. {
  33322. front: {
  33323. height: math.unit(76, "meters"),
  33324. weight: math.unit(30000, "tons"),
  33325. name: "Front",
  33326. image: {
  33327. source: "./media/characters/tyler/front.svg",
  33328. extra: 1640/1640,
  33329. bottom: 114/1754
  33330. }
  33331. },
  33332. },
  33333. [
  33334. {
  33335. name: "Macro",
  33336. height: math.unit(76, "meters"),
  33337. default: true
  33338. },
  33339. ]
  33340. ))
  33341. characterMakers.push(() => makeCharacter(
  33342. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33343. {
  33344. front: {
  33345. height: math.unit(4 + 11/12, "feet"),
  33346. weight: math.unit(132, "lb"),
  33347. name: "Front",
  33348. image: {
  33349. source: "./media/characters/icey/front.svg",
  33350. extra: 2750/2550,
  33351. bottom: 33/2783
  33352. }
  33353. },
  33354. back: {
  33355. height: math.unit(4 + 11/12, "feet"),
  33356. weight: math.unit(132, "lb"),
  33357. name: "Back",
  33358. image: {
  33359. source: "./media/characters/icey/back.svg",
  33360. extra: 2624/2481,
  33361. bottom: 35/2659
  33362. }
  33363. },
  33364. },
  33365. [
  33366. {
  33367. name: "Normal",
  33368. height: math.unit(4 + 11/12, "feet"),
  33369. default: true
  33370. },
  33371. ]
  33372. ))
  33373. characterMakers.push(() => makeCharacter(
  33374. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33375. {
  33376. front: {
  33377. height: math.unit(100, "feet"),
  33378. weight: math.unit(0, "lb"),
  33379. name: "Front",
  33380. image: {
  33381. source: "./media/characters/smile/front.svg",
  33382. extra: 2983/2912,
  33383. bottom: 162/3145
  33384. }
  33385. },
  33386. back: {
  33387. height: math.unit(100, "feet"),
  33388. weight: math.unit(0, "lb"),
  33389. name: "Back",
  33390. image: {
  33391. source: "./media/characters/smile/back.svg",
  33392. extra: 3143/3031,
  33393. bottom: 91/3234
  33394. }
  33395. },
  33396. head: {
  33397. height: math.unit(26.3, "feet"),
  33398. weight: math.unit(0, "lb"),
  33399. name: "Head",
  33400. image: {
  33401. source: "./media/characters/smile/head.svg"
  33402. }
  33403. },
  33404. collar: {
  33405. height: math.unit(5.3, "feet"),
  33406. weight: math.unit(0, "lb"),
  33407. name: "Collar",
  33408. image: {
  33409. source: "./media/characters/smile/collar.svg"
  33410. }
  33411. },
  33412. },
  33413. [
  33414. {
  33415. name: "Macro",
  33416. height: math.unit(100, "feet"),
  33417. default: true
  33418. },
  33419. ]
  33420. ))
  33421. characterMakers.push(() => makeCharacter(
  33422. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33423. {
  33424. dragon: {
  33425. height: math.unit(26, "feet"),
  33426. weight: math.unit(36, "tons"),
  33427. name: "Dragon",
  33428. image: {
  33429. source: "./media/characters/arimphae/dragon.svg",
  33430. extra: 1574/983,
  33431. bottom: 357/1931
  33432. }
  33433. },
  33434. drake: {
  33435. height: math.unit(9, "feet"),
  33436. weight: math.unit(1.5, "tons"),
  33437. name: "Drake",
  33438. image: {
  33439. source: "./media/characters/arimphae/drake.svg",
  33440. extra: 1120/925,
  33441. bottom: 435/1555
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "Small",
  33448. height: math.unit(26*5/9, "feet")
  33449. },
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(26, "feet"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(8 + 9/12, "feet"),
  33462. name: "Front",
  33463. image: {
  33464. source: "./media/characters/xander/front.svg",
  33465. extra: 1237/974,
  33466. bottom: 94/1331
  33467. }
  33468. },
  33469. },
  33470. [
  33471. {
  33472. name: "Normal",
  33473. height: math.unit(8 + 9/12, "feet"),
  33474. default: true
  33475. },
  33476. {
  33477. name: "Gaze Grabber",
  33478. height: math.unit(13 + 8/12, "feet")
  33479. },
  33480. {
  33481. name: "Jaw Dropper",
  33482. height: math.unit(27, "feet")
  33483. },
  33484. {
  33485. name: "Show Stopper",
  33486. height: math.unit(136, "feet")
  33487. },
  33488. {
  33489. name: "Superstar",
  33490. height: math.unit(1.9e6, "miles")
  33491. },
  33492. ]
  33493. ))
  33494. characterMakers.push(() => makeCharacter(
  33495. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33496. {
  33497. side: {
  33498. height: math.unit(2100, "feet"),
  33499. name: "Side",
  33500. image: {
  33501. source: "./media/characters/osiris/side.svg",
  33502. extra: 1105/939,
  33503. bottom: 167/1272
  33504. }
  33505. },
  33506. },
  33507. [
  33508. {
  33509. name: "Macro",
  33510. height: math.unit(2100, "feet"),
  33511. default: true
  33512. },
  33513. ]
  33514. ))
  33515. characterMakers.push(() => makeCharacter(
  33516. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33517. {
  33518. front: {
  33519. height: math.unit(6 + 8/12, "feet"),
  33520. weight: math.unit(225, "lb"),
  33521. name: "Front",
  33522. image: {
  33523. source: "./media/characters/rhys-londe/front.svg",
  33524. extra: 2258/2141,
  33525. bottom: 188/2446
  33526. }
  33527. },
  33528. back: {
  33529. height: math.unit(6 + 8/12, "feet"),
  33530. weight: math.unit(225, "lb"),
  33531. name: "Back",
  33532. image: {
  33533. source: "./media/characters/rhys-londe/back.svg",
  33534. extra: 2237/2137,
  33535. bottom: 63/2300
  33536. }
  33537. },
  33538. frontNsfw: {
  33539. height: math.unit(6 + 8/12, "feet"),
  33540. weight: math.unit(225, "lb"),
  33541. name: "Front (NSFW)",
  33542. image: {
  33543. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33544. extra: 2258/2141,
  33545. bottom: 188/2446
  33546. }
  33547. },
  33548. backNsfw: {
  33549. height: math.unit(6 + 8/12, "feet"),
  33550. weight: math.unit(225, "lb"),
  33551. name: "Back (NSFW)",
  33552. image: {
  33553. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33554. extra: 2237/2137,
  33555. bottom: 63/2300
  33556. }
  33557. },
  33558. dick: {
  33559. height: math.unit(30, "inches"),
  33560. name: "Dick",
  33561. image: {
  33562. source: "./media/characters/rhys-londe/dick.svg"
  33563. }
  33564. },
  33565. maw: {
  33566. height: math.unit(1.6, "feet"),
  33567. name: "Maw",
  33568. image: {
  33569. source: "./media/characters/rhys-londe/maw.svg"
  33570. }
  33571. },
  33572. },
  33573. [
  33574. {
  33575. name: "Normal",
  33576. height: math.unit(6 + 8/12, "feet"),
  33577. default: true
  33578. },
  33579. ]
  33580. ))
  33581. characterMakers.push(() => makeCharacter(
  33582. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33583. {
  33584. front: {
  33585. height: math.unit(3 + 10/12, "feet"),
  33586. weight: math.unit(90, "lb"),
  33587. name: "Front",
  33588. image: {
  33589. source: "./media/characters/taivas-ensim/front.svg",
  33590. extra: 1327/1216,
  33591. bottom: 96/1423
  33592. }
  33593. },
  33594. back: {
  33595. height: math.unit(3 + 10/12, "feet"),
  33596. weight: math.unit(90, "lb"),
  33597. name: "Back",
  33598. image: {
  33599. source: "./media/characters/taivas-ensim/back.svg",
  33600. extra: 1355/1247,
  33601. bottom: 11/1366
  33602. }
  33603. },
  33604. frontNsfw: {
  33605. height: math.unit(3 + 10/12, "feet"),
  33606. weight: math.unit(90, "lb"),
  33607. name: "Front (NSFW)",
  33608. image: {
  33609. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33610. extra: 1327/1216,
  33611. bottom: 96/1423
  33612. }
  33613. },
  33614. backNsfw: {
  33615. height: math.unit(3 + 10/12, "feet"),
  33616. weight: math.unit(90, "lb"),
  33617. name: "Back (NSFW)",
  33618. image: {
  33619. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33620. extra: 1355/1247,
  33621. bottom: 11/1366
  33622. }
  33623. },
  33624. },
  33625. [
  33626. {
  33627. name: "Normal",
  33628. height: math.unit(3 + 10/12, "feet"),
  33629. default: true
  33630. },
  33631. ]
  33632. ))
  33633. characterMakers.push(() => makeCharacter(
  33634. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33635. {
  33636. front: {
  33637. height: math.unit(9 + 6/12, "feet"),
  33638. weight: math.unit(940, "lb"),
  33639. name: "Front",
  33640. image: {
  33641. source: "./media/characters/byliss/front.svg",
  33642. extra: 1327/1290,
  33643. bottom: 82/1409
  33644. }
  33645. },
  33646. back: {
  33647. height: math.unit(9 + 6/12, "feet"),
  33648. weight: math.unit(940, "lb"),
  33649. name: "Back",
  33650. image: {
  33651. source: "./media/characters/byliss/back.svg",
  33652. extra: 1376/1349,
  33653. bottom: 9/1385
  33654. }
  33655. },
  33656. frontNsfw: {
  33657. height: math.unit(9 + 6/12, "feet"),
  33658. weight: math.unit(940, "lb"),
  33659. name: "Front (NSFW)",
  33660. image: {
  33661. source: "./media/characters/byliss/front-nsfw.svg",
  33662. extra: 1327/1290,
  33663. bottom: 82/1409
  33664. }
  33665. },
  33666. backNsfw: {
  33667. height: math.unit(9 + 6/12, "feet"),
  33668. weight: math.unit(940, "lb"),
  33669. name: "Back (NSFW)",
  33670. image: {
  33671. source: "./media/characters/byliss/back-nsfw.svg",
  33672. extra: 1376/1349,
  33673. bottom: 9/1385
  33674. }
  33675. },
  33676. },
  33677. [
  33678. {
  33679. name: "Normal",
  33680. height: math.unit(9 + 6/12, "feet"),
  33681. default: true
  33682. },
  33683. ]
  33684. ))
  33685. characterMakers.push(() => makeCharacter(
  33686. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33687. {
  33688. front: {
  33689. height: math.unit(5 + 2/12, "feet"),
  33690. weight: math.unit(200, "lb"),
  33691. name: "Front",
  33692. image: {
  33693. source: "./media/characters/noraly/front.svg",
  33694. extra: 4985/4773,
  33695. bottom: 150/5135
  33696. }
  33697. },
  33698. full: {
  33699. height: math.unit(5 + 2/12, "feet"),
  33700. weight: math.unit(164, "lb"),
  33701. name: "Full",
  33702. image: {
  33703. source: "./media/characters/noraly/full.svg",
  33704. extra: 1114/1059,
  33705. bottom: 35/1149
  33706. }
  33707. },
  33708. fuller: {
  33709. height: math.unit(5 + 2/12, "feet"),
  33710. weight: math.unit(230, "lb"),
  33711. name: "Fuller",
  33712. image: {
  33713. source: "./media/characters/noraly/fuller.svg",
  33714. extra: 1114/1059,
  33715. bottom: 35/1149
  33716. }
  33717. },
  33718. fullest: {
  33719. height: math.unit(5 + 2/12, "feet"),
  33720. weight: math.unit(300, "lb"),
  33721. name: "Fullest",
  33722. image: {
  33723. source: "./media/characters/noraly/fullest.svg",
  33724. extra: 1114/1059,
  33725. bottom: 35/1149
  33726. }
  33727. },
  33728. },
  33729. [
  33730. {
  33731. name: "Normal",
  33732. height: math.unit(5 + 2/12, "feet"),
  33733. default: true
  33734. },
  33735. ]
  33736. ))
  33737. characterMakers.push(() => makeCharacter(
  33738. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33739. {
  33740. front: {
  33741. height: math.unit(5 + 2/12, "feet"),
  33742. weight: math.unit(210, "lb"),
  33743. name: "Front",
  33744. image: {
  33745. source: "./media/characters/pera/front.svg",
  33746. extra: 1560/1531,
  33747. bottom: 165/1725
  33748. }
  33749. },
  33750. back: {
  33751. height: math.unit(5 + 2/12, "feet"),
  33752. weight: math.unit(210, "lb"),
  33753. name: "Back",
  33754. image: {
  33755. source: "./media/characters/pera/back.svg",
  33756. extra: 1523/1493,
  33757. bottom: 152/1675
  33758. }
  33759. },
  33760. dick: {
  33761. height: math.unit(2.4, "feet"),
  33762. name: "Dick",
  33763. image: {
  33764. source: "./media/characters/pera/dick.svg"
  33765. }
  33766. },
  33767. },
  33768. [
  33769. {
  33770. name: "Normal",
  33771. height: math.unit(5 + 2/12, "feet"),
  33772. default: true
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33778. {
  33779. front: {
  33780. height: math.unit(12, "feet"),
  33781. weight: math.unit(3200, "lb"),
  33782. name: "Front",
  33783. image: {
  33784. source: "./media/characters/julian/front.svg",
  33785. extra: 2962/2701,
  33786. bottom: 184/3146
  33787. }
  33788. },
  33789. maw: {
  33790. height: math.unit(5.35, "feet"),
  33791. name: "Maw",
  33792. image: {
  33793. source: "./media/characters/julian/maw.svg"
  33794. }
  33795. },
  33796. paw: {
  33797. height: math.unit(3.07, "feet"),
  33798. name: "Paw",
  33799. image: {
  33800. source: "./media/characters/julian/paw.svg"
  33801. }
  33802. },
  33803. },
  33804. [
  33805. {
  33806. name: "Default",
  33807. height: math.unit(12, "feet"),
  33808. default: true
  33809. },
  33810. {
  33811. name: "Big",
  33812. height: math.unit(50, "feet")
  33813. },
  33814. {
  33815. name: "Really Big",
  33816. height: math.unit(1, "mile")
  33817. },
  33818. {
  33819. name: "Extremely Big",
  33820. height: math.unit(100, "miles")
  33821. },
  33822. {
  33823. name: "Planet Hugger",
  33824. height: math.unit(200, "megameters")
  33825. },
  33826. {
  33827. name: "Unreasonably Big",
  33828. height: math.unit(1e300, "meters")
  33829. },
  33830. ]
  33831. ))
  33832. characterMakers.push(() => makeCharacter(
  33833. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33834. {
  33835. solgooleo: {
  33836. height: math.unit(4, "meters"),
  33837. weight: math.unit(6000*1.5, "kg"),
  33838. volume: math.unit(6000, "liters"),
  33839. name: "Solgooleo",
  33840. image: {
  33841. source: "./media/characters/pi/solgooleo.svg",
  33842. extra: 388/331,
  33843. bottom: 29/417
  33844. }
  33845. },
  33846. },
  33847. [
  33848. {
  33849. name: "Normal",
  33850. height: math.unit(4, "meters"),
  33851. default: true
  33852. },
  33853. ]
  33854. ))
  33855. characterMakers.push(() => makeCharacter(
  33856. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33857. {
  33858. front: {
  33859. height: math.unit(8, "feet"),
  33860. weight: math.unit(4, "tons"),
  33861. name: "Front",
  33862. image: {
  33863. source: "./media/characters/shaun/front.svg",
  33864. extra: 503/495,
  33865. bottom: 20/523
  33866. }
  33867. },
  33868. back: {
  33869. height: math.unit(8, "feet"),
  33870. weight: math.unit(4, "tons"),
  33871. name: "Back",
  33872. image: {
  33873. source: "./media/characters/shaun/back.svg",
  33874. extra: 487/480,
  33875. bottom: 20/507
  33876. }
  33877. },
  33878. },
  33879. [
  33880. {
  33881. name: "Lorg",
  33882. height: math.unit(8, "feet"),
  33883. default: true
  33884. },
  33885. ]
  33886. ))
  33887. characterMakers.push(() => makeCharacter(
  33888. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33889. {
  33890. frontAnthro: {
  33891. height: math.unit(7, "feet"),
  33892. name: "Front",
  33893. image: {
  33894. source: "./media/characters/sini/front-anthro.svg",
  33895. extra: 726/678,
  33896. bottom: 35/761
  33897. },
  33898. form: "anthro",
  33899. default: true
  33900. },
  33901. backAnthro: {
  33902. height: math.unit(7, "feet"),
  33903. name: "Back",
  33904. image: {
  33905. source: "./media/characters/sini/back-anthro.svg",
  33906. extra: 743/701,
  33907. bottom: 12/755
  33908. },
  33909. form: "anthro",
  33910. },
  33911. frontAnthroNsfw: {
  33912. height: math.unit(7, "feet"),
  33913. name: "Front (NSFW)",
  33914. image: {
  33915. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33916. extra: 726/678,
  33917. bottom: 35/761
  33918. },
  33919. form: "anthro"
  33920. },
  33921. backAnthroNsfw: {
  33922. height: math.unit(7, "feet"),
  33923. name: "Back (NSFW)",
  33924. image: {
  33925. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33926. extra: 743/701,
  33927. bottom: 12/755
  33928. },
  33929. form: "anthro",
  33930. },
  33931. mawAnthro: {
  33932. height: math.unit(2.14, "feet"),
  33933. name: "Maw",
  33934. image: {
  33935. source: "./media/characters/sini/maw-anthro.svg"
  33936. },
  33937. form: "anthro"
  33938. },
  33939. dick: {
  33940. height: math.unit(1.45, "feet"),
  33941. name: "Dick",
  33942. image: {
  33943. source: "./media/characters/sini/dick-anthro.svg"
  33944. },
  33945. form: "anthro"
  33946. },
  33947. feral: {
  33948. height: math.unit(16, "feet"),
  33949. name: "Feral",
  33950. image: {
  33951. source: "./media/characters/sini/feral.svg",
  33952. extra: 814/605,
  33953. bottom: 11/825
  33954. },
  33955. form: "feral",
  33956. default: true
  33957. },
  33958. feralNsfw: {
  33959. height: math.unit(16, "feet"),
  33960. name: "Feral (NSFW)",
  33961. image: {
  33962. source: "./media/characters/sini/feral-nsfw.svg",
  33963. extra: 814/605,
  33964. bottom: 11/825
  33965. },
  33966. form: "feral"
  33967. },
  33968. mawFeral: {
  33969. height: math.unit(5.66, "feet"),
  33970. name: "Maw",
  33971. image: {
  33972. source: "./media/characters/sini/maw-feral.svg"
  33973. },
  33974. form: "feral",
  33975. },
  33976. pawFeral: {
  33977. height: math.unit(5.17, "feet"),
  33978. name: "Paw",
  33979. image: {
  33980. source: "./media/characters/sini/paw-feral.svg"
  33981. },
  33982. form: "feral",
  33983. },
  33984. rumpFeral: {
  33985. height: math.unit(13.11, "feet"),
  33986. name: "Rump",
  33987. image: {
  33988. source: "./media/characters/sini/rump-feral.svg"
  33989. },
  33990. form: "feral",
  33991. },
  33992. dickFeral: {
  33993. height: math.unit(1, "feet"),
  33994. name: "Dick",
  33995. image: {
  33996. source: "./media/characters/sini/dick-feral.svg"
  33997. },
  33998. form: "feral",
  33999. },
  34000. eyeFeral: {
  34001. height: math.unit(1.23, "feet"),
  34002. name: "Eye",
  34003. image: {
  34004. source: "./media/characters/sini/eye-feral.svg"
  34005. },
  34006. form: "feral",
  34007. },
  34008. },
  34009. [
  34010. {
  34011. name: "Normal",
  34012. height: math.unit(7, "feet"),
  34013. default: true,
  34014. form: "anthro"
  34015. },
  34016. {
  34017. name: "Normal",
  34018. height: math.unit(16, "feet"),
  34019. default: true,
  34020. form: "feral"
  34021. },
  34022. ],
  34023. {
  34024. "anthro": {
  34025. name: "Anthro",
  34026. default: true
  34027. },
  34028. "feral": {
  34029. name: "Feral",
  34030. }
  34031. }
  34032. ))
  34033. characterMakers.push(() => makeCharacter(
  34034. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34035. {
  34036. side: {
  34037. height: math.unit(47.2, "meters"),
  34038. weight: math.unit(10000, "tons"),
  34039. name: "Side",
  34040. image: {
  34041. source: "./media/characters/raylldo/side.svg",
  34042. extra: 2363/642,
  34043. bottom: 221/2584
  34044. }
  34045. },
  34046. top: {
  34047. height: math.unit(240, "meters"),
  34048. weight: math.unit(10000, "tons"),
  34049. name: "Top",
  34050. image: {
  34051. source: "./media/characters/raylldo/top.svg"
  34052. }
  34053. },
  34054. bottom: {
  34055. height: math.unit(240, "meters"),
  34056. weight: math.unit(10000, "tons"),
  34057. name: "Bottom",
  34058. image: {
  34059. source: "./media/characters/raylldo/bottom.svg"
  34060. }
  34061. },
  34062. head: {
  34063. height: math.unit(38.6, "meters"),
  34064. name: "Head",
  34065. image: {
  34066. source: "./media/characters/raylldo/head.svg",
  34067. extra: 1335/1112,
  34068. bottom: 0/1335
  34069. }
  34070. },
  34071. maw: {
  34072. height: math.unit(16.37, "meters"),
  34073. name: "Maw",
  34074. image: {
  34075. source: "./media/characters/raylldo/maw.svg",
  34076. extra: 883/660,
  34077. bottom: 0/883
  34078. },
  34079. extraAttributes: {
  34080. preyCapacity: {
  34081. name: "Capacity",
  34082. power: 3,
  34083. type: "volume",
  34084. base: math.unit(1000, "people")
  34085. },
  34086. tongueSize: {
  34087. name: "Tongue Size",
  34088. power: 2,
  34089. type: "area",
  34090. base: math.unit(21, "m^2")
  34091. }
  34092. }
  34093. },
  34094. forepaw: {
  34095. height: math.unit(18, "meters"),
  34096. name: "Forepaw",
  34097. image: {
  34098. source: "./media/characters/raylldo/forepaw.svg"
  34099. }
  34100. },
  34101. hindpaw: {
  34102. height: math.unit(23, "meters"),
  34103. name: "Hindpaw",
  34104. image: {
  34105. source: "./media/characters/raylldo/hindpaw.svg"
  34106. }
  34107. },
  34108. genitals: {
  34109. height: math.unit(42, "meters"),
  34110. name: "Genitals",
  34111. image: {
  34112. source: "./media/characters/raylldo/genitals.svg"
  34113. }
  34114. },
  34115. },
  34116. [
  34117. {
  34118. name: "Normal",
  34119. height: math.unit(47.2, "meters"),
  34120. default: true
  34121. },
  34122. ]
  34123. ))
  34124. characterMakers.push(() => makeCharacter(
  34125. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34126. {
  34127. anthroFront: {
  34128. height: math.unit(9, "feet"),
  34129. weight: math.unit(600, "lb"),
  34130. name: "Anthro (Front)",
  34131. image: {
  34132. source: "./media/characters/glint/anthro-front.svg",
  34133. extra: 1097/1018,
  34134. bottom: 28/1125
  34135. }
  34136. },
  34137. anthroBack: {
  34138. height: math.unit(9, "feet"),
  34139. weight: math.unit(600, "lb"),
  34140. name: "Anthro (Back)",
  34141. image: {
  34142. source: "./media/characters/glint/anthro-back.svg",
  34143. extra: 1154/997,
  34144. bottom: 36/1190
  34145. }
  34146. },
  34147. feral: {
  34148. height: math.unit(11, "feet"),
  34149. weight: math.unit(50000, "lb"),
  34150. name: "Feral",
  34151. image: {
  34152. source: "./media/characters/glint/feral.svg",
  34153. extra: 3035/1585,
  34154. bottom: 1169/4204
  34155. }
  34156. },
  34157. dickAnthro: {
  34158. height: math.unit(0.7, "meters"),
  34159. name: "Dick (Anthro)",
  34160. image: {
  34161. source: "./media/characters/glint/dick-anthro.svg"
  34162. }
  34163. },
  34164. dickFeral: {
  34165. height: math.unit(2.65, "meters"),
  34166. name: "Dick (Feral)",
  34167. image: {
  34168. source: "./media/characters/glint/dick-feral.svg"
  34169. }
  34170. },
  34171. slitHidden: {
  34172. height: math.unit(5.85, "meters"),
  34173. name: "Slit (Hidden)",
  34174. image: {
  34175. source: "./media/characters/glint/slit-hidden.svg"
  34176. }
  34177. },
  34178. slitErect: {
  34179. height: math.unit(5.85, "meters"),
  34180. name: "Slit (Erect)",
  34181. image: {
  34182. source: "./media/characters/glint/slit-erect.svg"
  34183. }
  34184. },
  34185. mawAnthro: {
  34186. height: math.unit(0.63, "meters"),
  34187. name: "Maw (Anthro)",
  34188. image: {
  34189. source: "./media/characters/glint/maw.svg"
  34190. }
  34191. },
  34192. mawFeral: {
  34193. height: math.unit(2.89, "meters"),
  34194. name: "Maw (Feral)",
  34195. image: {
  34196. source: "./media/characters/glint/maw.svg"
  34197. }
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "Normal",
  34203. height: math.unit(9, "feet"),
  34204. default: true
  34205. },
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34210. {
  34211. side: {
  34212. height: math.unit(15, "feet"),
  34213. weight: math.unit(5000, "kg"),
  34214. name: "Side",
  34215. image: {
  34216. source: "./media/characters/kairne/side.svg",
  34217. extra: 979/811,
  34218. bottom: 13/992
  34219. }
  34220. },
  34221. front: {
  34222. height: math.unit(15, "feet"),
  34223. weight: math.unit(5000, "kg"),
  34224. name: "Front",
  34225. image: {
  34226. source: "./media/characters/kairne/front.svg",
  34227. extra: 908/814,
  34228. bottom: 26/934
  34229. }
  34230. },
  34231. sideNsfw: {
  34232. height: math.unit(15, "feet"),
  34233. weight: math.unit(5000, "kg"),
  34234. name: "Side (NSFW)",
  34235. image: {
  34236. source: "./media/characters/kairne/side-nsfw.svg",
  34237. extra: 979/811,
  34238. bottom: 13/992
  34239. }
  34240. },
  34241. frontNsfw: {
  34242. height: math.unit(15, "feet"),
  34243. weight: math.unit(5000, "kg"),
  34244. name: "Front (NSFW)",
  34245. image: {
  34246. source: "./media/characters/kairne/front-nsfw.svg",
  34247. extra: 908/814,
  34248. bottom: 26/934
  34249. }
  34250. },
  34251. dickCaged: {
  34252. height: math.unit(0.65, "meters"),
  34253. name: "Dick-caged",
  34254. image: {
  34255. source: "./media/characters/kairne/dick-caged.svg"
  34256. }
  34257. },
  34258. dick: {
  34259. height: math.unit(0.79, "meters"),
  34260. name: "Dick",
  34261. image: {
  34262. source: "./media/characters/kairne/dick.svg"
  34263. }
  34264. },
  34265. genitals: {
  34266. height: math.unit(1.29, "meters"),
  34267. name: "Genitals",
  34268. image: {
  34269. source: "./media/characters/kairne/genitals.svg"
  34270. }
  34271. },
  34272. maw: {
  34273. height: math.unit(1.73, "meters"),
  34274. name: "Maw",
  34275. image: {
  34276. source: "./media/characters/kairne/maw.svg"
  34277. }
  34278. },
  34279. },
  34280. [
  34281. {
  34282. name: "Normal",
  34283. height: math.unit(15, "feet"),
  34284. default: true
  34285. },
  34286. ]
  34287. ))
  34288. characterMakers.push(() => makeCharacter(
  34289. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34290. {
  34291. front: {
  34292. height: math.unit(5 + 8/12, "feet"),
  34293. weight: math.unit(139, "lb"),
  34294. name: "Front",
  34295. image: {
  34296. source: "./media/characters/biscuit-jackal/front.svg",
  34297. extra: 2106/1961,
  34298. bottom: 58/2164
  34299. }
  34300. },
  34301. back: {
  34302. height: math.unit(5 + 8/12, "feet"),
  34303. weight: math.unit(139, "lb"),
  34304. name: "Back",
  34305. image: {
  34306. source: "./media/characters/biscuit-jackal/back.svg",
  34307. extra: 2132/1976,
  34308. bottom: 57/2189
  34309. }
  34310. },
  34311. werejackal: {
  34312. height: math.unit(6 + 3/12, "feet"),
  34313. weight: math.unit(188, "lb"),
  34314. name: "Werejackal",
  34315. image: {
  34316. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34317. extra: 2373/2178,
  34318. bottom: 53/2426
  34319. }
  34320. },
  34321. },
  34322. [
  34323. {
  34324. name: "Normal",
  34325. height: math.unit(5 + 8/12, "feet"),
  34326. default: true
  34327. },
  34328. ]
  34329. ))
  34330. characterMakers.push(() => makeCharacter(
  34331. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34332. {
  34333. front: {
  34334. height: math.unit(140, "cm"),
  34335. weight: math.unit(45, "kg"),
  34336. name: "Front",
  34337. image: {
  34338. source: "./media/characters/tayra-white/front.svg",
  34339. extra: 2229/2192,
  34340. bottom: 75/2304
  34341. }
  34342. },
  34343. },
  34344. [
  34345. {
  34346. name: "Normal",
  34347. height: math.unit(140, "cm"),
  34348. default: true
  34349. },
  34350. ]
  34351. ))
  34352. characterMakers.push(() => makeCharacter(
  34353. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34354. {
  34355. front: {
  34356. height: math.unit(4 + 5/12, "feet"),
  34357. name: "Front",
  34358. image: {
  34359. source: "./media/characters/scoop/front.svg",
  34360. extra: 1257/1136,
  34361. bottom: 69/1326
  34362. }
  34363. },
  34364. back: {
  34365. height: math.unit(4 + 5/12, "feet"),
  34366. name: "Back",
  34367. image: {
  34368. source: "./media/characters/scoop/back.svg",
  34369. extra: 1321/1152,
  34370. bottom: 32/1353
  34371. }
  34372. },
  34373. maw: {
  34374. height: math.unit(0.68, "feet"),
  34375. name: "Maw",
  34376. image: {
  34377. source: "./media/characters/scoop/maw.svg"
  34378. }
  34379. },
  34380. },
  34381. [
  34382. {
  34383. name: "Really Small",
  34384. height: math.unit(1, "mm")
  34385. },
  34386. {
  34387. name: "Micro",
  34388. height: math.unit(1, "inch")
  34389. },
  34390. {
  34391. name: "Normal",
  34392. height: math.unit(4 + 5/12, "feet"),
  34393. default: true
  34394. },
  34395. {
  34396. name: "Macro",
  34397. height: math.unit(200, "feet")
  34398. },
  34399. {
  34400. name: "Megamacro",
  34401. height: math.unit(3240, "feet")
  34402. },
  34403. {
  34404. name: "Teramacro",
  34405. height: math.unit(2500, "miles")
  34406. },
  34407. ]
  34408. ))
  34409. characterMakers.push(() => makeCharacter(
  34410. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34411. {
  34412. front: {
  34413. height: math.unit(15 + 7/12, "feet"),
  34414. weight: math.unit(1150, "tons"),
  34415. name: "Front",
  34416. image: {
  34417. source: "./media/characters/saphinara/front.svg",
  34418. extra: 1837/1643,
  34419. bottom: 84/1921
  34420. },
  34421. form: "normal",
  34422. default: true
  34423. },
  34424. side: {
  34425. height: math.unit(15 + 7/12, "feet"),
  34426. weight: math.unit(1150, "tons"),
  34427. name: "Side",
  34428. image: {
  34429. source: "./media/characters/saphinara/side.svg",
  34430. extra: 605/547,
  34431. bottom: 6/611
  34432. },
  34433. form: "normal"
  34434. },
  34435. back: {
  34436. height: math.unit(15 + 7/12, "feet"),
  34437. weight: math.unit(1150, "tons"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/saphinara/back.svg",
  34441. extra: 591/531,
  34442. bottom: 13/604
  34443. },
  34444. form: "normal"
  34445. },
  34446. frontTail: {
  34447. height: math.unit(15 + 7/12, "feet"),
  34448. weight: math.unit(1150, "tons"),
  34449. name: "Front (Full Tail)",
  34450. image: {
  34451. source: "./media/characters/saphinara/front-tail.svg",
  34452. extra: 2256/1630,
  34453. bottom: 261/2517
  34454. },
  34455. form: "normal"
  34456. },
  34457. insides: {
  34458. height: math.unit(11.92, "feet"),
  34459. name: "Insides",
  34460. image: {
  34461. source: "./media/characters/saphinara/insides.svg"
  34462. },
  34463. form: "normal"
  34464. },
  34465. head: {
  34466. height: math.unit(4.17, "feet"),
  34467. name: "Head",
  34468. image: {
  34469. source: "./media/characters/saphinara/head.svg"
  34470. },
  34471. form: "normal"
  34472. },
  34473. tongue: {
  34474. height: math.unit(4.60, "feet"),
  34475. name: "Tongue",
  34476. image: {
  34477. source: "./media/characters/saphinara/tongue.svg"
  34478. },
  34479. form: "normal"
  34480. },
  34481. headEnraged: {
  34482. height: math.unit(5.55, "feet"),
  34483. name: "Head (Enraged)",
  34484. image: {
  34485. source: "./media/characters/saphinara/head-enraged.svg"
  34486. },
  34487. form: "normal"
  34488. },
  34489. wings: {
  34490. height: math.unit(11.95, "feet"),
  34491. name: "Wings",
  34492. image: {
  34493. source: "./media/characters/saphinara/wings.svg"
  34494. },
  34495. form: "normal"
  34496. },
  34497. feathers: {
  34498. height: math.unit(8.92, "feet"),
  34499. name: "Feathers",
  34500. image: {
  34501. source: "./media/characters/saphinara/feathers.svg"
  34502. },
  34503. form: "normal"
  34504. },
  34505. shackles: {
  34506. height: math.unit(2, "feet"),
  34507. name: "Shackles",
  34508. image: {
  34509. source: "./media/characters/saphinara/shackles.svg"
  34510. },
  34511. form: "normal"
  34512. },
  34513. eyes: {
  34514. height: math.unit(1.331, "feet"),
  34515. name: "Eyes",
  34516. image: {
  34517. source: "./media/characters/saphinara/eyes.svg"
  34518. },
  34519. form: "normal"
  34520. },
  34521. eyesEnraged: {
  34522. height: math.unit(1.331, "feet"),
  34523. name: "Eyes (Enraged)",
  34524. image: {
  34525. source: "./media/characters/saphinara/eyes-enraged.svg"
  34526. },
  34527. form: "normal"
  34528. },
  34529. trueFormSide: {
  34530. height: math.unit(200, "feet"),
  34531. weight: math.unit(1e7, "tons"),
  34532. name: "Side",
  34533. image: {
  34534. source: "./media/characters/saphinara/true-form-side.svg",
  34535. extra: 1399/770,
  34536. bottom: 97/1496
  34537. },
  34538. form: "true-form",
  34539. default: true
  34540. },
  34541. trueFormMaw: {
  34542. height: math.unit(71.5, "feet"),
  34543. name: "Maw",
  34544. image: {
  34545. source: "./media/characters/saphinara/true-form-maw.svg",
  34546. extra: 2302/1453,
  34547. bottom: 0/2302
  34548. },
  34549. form: "true-form"
  34550. },
  34551. meowberusSide: {
  34552. height: math.unit(75, "feet"),
  34553. weight: math.unit(180000, "kg"),
  34554. preyCapacity: math.unit(50000, "people"),
  34555. name: "Side",
  34556. image: {
  34557. source: "./media/characters/saphinara/meowberus-side.svg",
  34558. extra: 1400/711,
  34559. bottom: 126/1526
  34560. },
  34561. form: "meowberus",
  34562. extraAttributes: {
  34563. "pawArea": {
  34564. name: "Paw Size",
  34565. power: 2,
  34566. type: "area",
  34567. base: math.unit(35, "m^2")
  34568. }
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Normal",
  34575. height: math.unit(15 + 7/12, "feet"),
  34576. default: true,
  34577. form: "normal"
  34578. },
  34579. {
  34580. name: "Angry",
  34581. height: math.unit(30 + 6/12, "feet"),
  34582. form: "normal"
  34583. },
  34584. {
  34585. name: "Enraged",
  34586. height: math.unit(102 + 1/12, "feet"),
  34587. form: "normal"
  34588. },
  34589. {
  34590. name: "True",
  34591. height: math.unit(200, "feet"),
  34592. default: true,
  34593. form: "true-form"
  34594. },
  34595. {
  34596. name: "Normal",
  34597. height: math.unit(75, "feet"),
  34598. default: true,
  34599. form: "meowberus"
  34600. },
  34601. ],
  34602. {
  34603. "normal": {
  34604. name: "Normal",
  34605. default: true
  34606. },
  34607. "true-form": {
  34608. name: "True Form"
  34609. },
  34610. "meowberus": {
  34611. name: "Meowberus",
  34612. },
  34613. }
  34614. ))
  34615. characterMakers.push(() => makeCharacter(
  34616. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34617. {
  34618. front: {
  34619. height: math.unit(6 + 8/12, "feet"),
  34620. weight: math.unit(300, "lb"),
  34621. name: "Front",
  34622. image: {
  34623. source: "./media/characters/jrain/front.svg",
  34624. extra: 3039/2865,
  34625. bottom: 399/3438
  34626. }
  34627. },
  34628. back: {
  34629. height: math.unit(6 + 8/12, "feet"),
  34630. weight: math.unit(300, "lb"),
  34631. name: "Back",
  34632. image: {
  34633. source: "./media/characters/jrain/back.svg",
  34634. extra: 3089/2938,
  34635. bottom: 172/3261
  34636. }
  34637. },
  34638. head: {
  34639. height: math.unit(2.14, "feet"),
  34640. name: "Head",
  34641. image: {
  34642. source: "./media/characters/jrain/head.svg"
  34643. }
  34644. },
  34645. maw: {
  34646. height: math.unit(1.77, "feet"),
  34647. name: "Maw",
  34648. image: {
  34649. source: "./media/characters/jrain/maw.svg"
  34650. }
  34651. },
  34652. leftHand: {
  34653. height: math.unit(1.1, "feet"),
  34654. name: "Left Hand",
  34655. image: {
  34656. source: "./media/characters/jrain/left-hand.svg"
  34657. }
  34658. },
  34659. rightHand: {
  34660. height: math.unit(1.1, "feet"),
  34661. name: "Right Hand",
  34662. image: {
  34663. source: "./media/characters/jrain/right-hand.svg"
  34664. }
  34665. },
  34666. eye: {
  34667. height: math.unit(0.35, "feet"),
  34668. name: "Eye",
  34669. image: {
  34670. source: "./media/characters/jrain/eye.svg"
  34671. }
  34672. },
  34673. },
  34674. [
  34675. {
  34676. name: "Normal",
  34677. height: math.unit(6 + 8/12, "feet"),
  34678. default: true
  34679. },
  34680. {
  34681. name: "Casually Large",
  34682. height: math.unit(25, "feet")
  34683. },
  34684. {
  34685. name: "Giant",
  34686. height: math.unit(100, "feet")
  34687. },
  34688. {
  34689. name: "Kaiju",
  34690. height: math.unit(300, "feet")
  34691. },
  34692. ]
  34693. ))
  34694. characterMakers.push(() => makeCharacter(
  34695. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34696. {
  34697. dragon: {
  34698. height: math.unit(5, "meters"),
  34699. name: "Dragon",
  34700. image: {
  34701. source: "./media/characters/sabrina/dragon.svg",
  34702. extra: 3670 / 2365,
  34703. bottom: 333 / 4003
  34704. }
  34705. },
  34706. gryphon: {
  34707. height: math.unit(3, "meters"),
  34708. name: "Gryphon",
  34709. image: {
  34710. source: "./media/characters/sabrina/gryphon.svg",
  34711. extra: 1576 / 945,
  34712. bottom: 71 / 1647
  34713. }
  34714. },
  34715. snake: {
  34716. height: math.unit(12, "meters"),
  34717. name: "Snake",
  34718. image: {
  34719. source: "./media/characters/sabrina/snake.svg",
  34720. extra: 1758 / 1320,
  34721. bottom: 186 / 1944
  34722. }
  34723. },
  34724. collar: {
  34725. height: math.unit(1.86, "meters"),
  34726. name: "Collar",
  34727. image: {
  34728. source: "./media/characters/sabrina/collar.svg"
  34729. }
  34730. },
  34731. eye: {
  34732. height: math.unit(0.53, "meters"),
  34733. name: "Eye",
  34734. image: {
  34735. source: "./media/characters/sabrina/eye.svg"
  34736. }
  34737. },
  34738. foot: {
  34739. height: math.unit(1.86, "meters"),
  34740. name: "Foot",
  34741. image: {
  34742. source: "./media/characters/sabrina/foot.svg"
  34743. }
  34744. },
  34745. hand: {
  34746. height: math.unit(1.32, "meters"),
  34747. name: "Hand",
  34748. image: {
  34749. source: "./media/characters/sabrina/hand.svg"
  34750. }
  34751. },
  34752. head: {
  34753. height: math.unit(2.44, "meters"),
  34754. name: "Head",
  34755. image: {
  34756. source: "./media/characters/sabrina/head.svg"
  34757. }
  34758. },
  34759. headAngry: {
  34760. height: math.unit(2.44, "meters"),
  34761. name: "Head (Angry))",
  34762. image: {
  34763. source: "./media/characters/sabrina/head-angry.svg"
  34764. }
  34765. },
  34766. maw: {
  34767. height: math.unit(1.65, "meters"),
  34768. name: "Maw",
  34769. image: {
  34770. source: "./media/characters/sabrina/maw.svg"
  34771. }
  34772. },
  34773. spikes: {
  34774. height: math.unit(1.69, "meters"),
  34775. name: "Spikes",
  34776. image: {
  34777. source: "./media/characters/sabrina/spikes.svg"
  34778. }
  34779. },
  34780. stomach: {
  34781. height: math.unit(1.15, "meters"),
  34782. name: "Stomach",
  34783. image: {
  34784. source: "./media/characters/sabrina/stomach.svg"
  34785. }
  34786. },
  34787. tongue: {
  34788. height: math.unit(1.27, "meters"),
  34789. name: "Tongue",
  34790. image: {
  34791. source: "./media/characters/sabrina/tongue.svg"
  34792. }
  34793. },
  34794. wingDorsal: {
  34795. height: math.unit(4.85, "meters"),
  34796. name: "Wing (Dorsal)",
  34797. image: {
  34798. source: "./media/characters/sabrina/wing-dorsal.svg"
  34799. }
  34800. },
  34801. wingVentral: {
  34802. height: math.unit(4.85, "meters"),
  34803. name: "Wing (Ventral)",
  34804. image: {
  34805. source: "./media/characters/sabrina/wing-ventral.svg"
  34806. }
  34807. },
  34808. },
  34809. [
  34810. {
  34811. name: "Normal",
  34812. height: math.unit(5, "meters"),
  34813. default: true
  34814. },
  34815. ]
  34816. ))
  34817. characterMakers.push(() => makeCharacter(
  34818. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34819. {
  34820. frontMaid: {
  34821. height: math.unit(5 + 5/12, "feet"),
  34822. weight: math.unit(130, "lb"),
  34823. name: "Front (Maid)",
  34824. image: {
  34825. source: "./media/characters/midnight-tales/front-maid.svg",
  34826. extra: 489/454,
  34827. bottom: 61/550
  34828. }
  34829. },
  34830. frontFormal: {
  34831. height: math.unit(5 + 5/12, "feet"),
  34832. weight: math.unit(130, "lb"),
  34833. name: "Front (Formal)",
  34834. image: {
  34835. source: "./media/characters/midnight-tales/front-formal.svg",
  34836. extra: 489/454,
  34837. bottom: 61/550
  34838. }
  34839. },
  34840. back: {
  34841. height: math.unit(5 + 5/12, "feet"),
  34842. weight: math.unit(130, "lb"),
  34843. name: "Back",
  34844. image: {
  34845. source: "./media/characters/midnight-tales/back.svg",
  34846. extra: 498/456,
  34847. bottom: 33/531
  34848. }
  34849. },
  34850. frontBeast: {
  34851. height: math.unit(40, "feet"),
  34852. weight: math.unit(64000, "lb"),
  34853. name: "Front (Beast)",
  34854. image: {
  34855. source: "./media/characters/midnight-tales/front-beast.svg",
  34856. extra: 927/860,
  34857. bottom: 53/980
  34858. }
  34859. },
  34860. backBeast: {
  34861. height: math.unit(40, "feet"),
  34862. weight: math.unit(64000, "lb"),
  34863. name: "Back (Beast)",
  34864. image: {
  34865. source: "./media/characters/midnight-tales/back-beast.svg",
  34866. extra: 929/855,
  34867. bottom: 16/945
  34868. }
  34869. },
  34870. footBeast: {
  34871. height: math.unit(6.7, "feet"),
  34872. name: "Foot (Beast)",
  34873. image: {
  34874. source: "./media/characters/midnight-tales/foot-beast.svg"
  34875. }
  34876. },
  34877. headBeast: {
  34878. height: math.unit(8, "feet"),
  34879. name: "Head (Beast)",
  34880. image: {
  34881. source: "./media/characters/midnight-tales/head-beast.svg"
  34882. }
  34883. },
  34884. },
  34885. [
  34886. {
  34887. name: "Normal",
  34888. height: math.unit(5 + 5 / 12, "feet"),
  34889. default: true
  34890. },
  34891. {
  34892. name: "Macro",
  34893. height: math.unit(25, "feet")
  34894. },
  34895. ]
  34896. ))
  34897. characterMakers.push(() => makeCharacter(
  34898. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34899. {
  34900. front: {
  34901. height: math.unit(5 + 10/12, "feet"),
  34902. name: "Front",
  34903. image: {
  34904. source: "./media/characters/argon/front.svg",
  34905. extra: 2009/1935,
  34906. bottom: 118/2127
  34907. }
  34908. },
  34909. back: {
  34910. height: math.unit(5 + 10/12, "feet"),
  34911. name: "Back",
  34912. image: {
  34913. source: "./media/characters/argon/back.svg",
  34914. extra: 2047/1992,
  34915. bottom: 20/2067
  34916. }
  34917. },
  34918. frontDressed: {
  34919. height: math.unit(5 + 10/12, "feet"),
  34920. name: "Front (Dressed)",
  34921. image: {
  34922. source: "./media/characters/argon/front-dressed.svg",
  34923. extra: 2009/1935,
  34924. bottom: 118/2127
  34925. }
  34926. },
  34927. },
  34928. [
  34929. {
  34930. name: "Normal",
  34931. height: math.unit(5 + 10/12, "feet"),
  34932. default: true
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34938. {
  34939. front: {
  34940. height: math.unit(8 + 6/12, "feet"),
  34941. weight: math.unit(1150, "lb"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/kichi/front.svg",
  34945. extra: 1267/1164,
  34946. bottom: 61/1328
  34947. }
  34948. },
  34949. back: {
  34950. height: math.unit(8 + 6/12, "feet"),
  34951. weight: math.unit(1150, "lb"),
  34952. name: "Back",
  34953. image: {
  34954. source: "./media/characters/kichi/back.svg",
  34955. extra: 1273/1166,
  34956. bottom: 33/1306
  34957. }
  34958. },
  34959. },
  34960. [
  34961. {
  34962. name: "Normal",
  34963. height: math.unit(8 + 6/12, "feet"),
  34964. default: true
  34965. },
  34966. ]
  34967. ))
  34968. characterMakers.push(() => makeCharacter(
  34969. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34970. {
  34971. front: {
  34972. height: math.unit(6, "feet"),
  34973. weight: math.unit(210, "lb"),
  34974. name: "Front",
  34975. image: {
  34976. source: "./media/characters/manetel-greyscale/front.svg",
  34977. extra: 350/312,
  34978. bottom: 8/358
  34979. }
  34980. },
  34981. },
  34982. [
  34983. {
  34984. name: "Micro",
  34985. height: math.unit(2, "inches")
  34986. },
  34987. {
  34988. name: "Normal",
  34989. height: math.unit(6, "feet"),
  34990. default: true
  34991. },
  34992. {
  34993. name: "Minimacro",
  34994. height: math.unit(17, "feet")
  34995. },
  34996. {
  34997. name: "Macro",
  34998. height: math.unit(117, "feet")
  34999. },
  35000. ]
  35001. ))
  35002. characterMakers.push(() => makeCharacter(
  35003. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35004. {
  35005. side: {
  35006. height: math.unit(5 + 1/12, "feet"),
  35007. weight: math.unit(418, "lb"),
  35008. name: "Side",
  35009. image: {
  35010. source: "./media/characters/softpurr/side.svg",
  35011. extra: 1993/1945,
  35012. bottom: 134/2127
  35013. }
  35014. },
  35015. front: {
  35016. height: math.unit(5 + 1/12, "feet"),
  35017. weight: math.unit(418, "lb"),
  35018. name: "Front",
  35019. image: {
  35020. source: "./media/characters/softpurr/front.svg",
  35021. extra: 1950/1856,
  35022. bottom: 174/2124
  35023. }
  35024. },
  35025. paw: {
  35026. height: math.unit(1, "feet"),
  35027. name: "Paw",
  35028. image: {
  35029. source: "./media/characters/softpurr/paw.svg"
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(5 + 1/12, "feet"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35043. {
  35044. front: {
  35045. height: math.unit(260, "meters"),
  35046. name: "Front",
  35047. image: {
  35048. source: "./media/characters/anahita/front.svg",
  35049. extra: 665/635,
  35050. bottom: 89/754
  35051. }
  35052. },
  35053. },
  35054. [
  35055. {
  35056. name: "Macro",
  35057. height: math.unit(260, "meters"),
  35058. default: true
  35059. },
  35060. ]
  35061. ))
  35062. characterMakers.push(() => makeCharacter(
  35063. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35064. {
  35065. front: {
  35066. height: math.unit(4 + 10/12, "feet"),
  35067. weight: math.unit(160, "lb"),
  35068. name: "Front",
  35069. image: {
  35070. source: "./media/characters/chip-mouse/front.svg",
  35071. extra: 3528/3408,
  35072. bottom: 0/3528
  35073. }
  35074. },
  35075. frontNsfw: {
  35076. height: math.unit(4 + 10/12, "feet"),
  35077. weight: math.unit(160, "lb"),
  35078. name: "Front (NSFW)",
  35079. image: {
  35080. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35081. extra: 3528/3408,
  35082. bottom: 0/3528
  35083. }
  35084. },
  35085. },
  35086. [
  35087. {
  35088. name: "Normal",
  35089. height: math.unit(4 + 10/12, "feet"),
  35090. default: true
  35091. },
  35092. ]
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35096. {
  35097. side: {
  35098. height: math.unit(10, "feet"),
  35099. weight: math.unit(14000, "lb"),
  35100. name: "Side",
  35101. image: {
  35102. source: "./media/characters/kremm/side.svg",
  35103. extra: 1390/1053,
  35104. bottom: 90/1480
  35105. }
  35106. },
  35107. gut: {
  35108. height: math.unit(5.8, "feet"),
  35109. name: "Gut",
  35110. image: {
  35111. source: "./media/characters/kremm/gut.svg"
  35112. }
  35113. },
  35114. ass: {
  35115. height: math.unit(6.1, "feet"),
  35116. name: "Ass",
  35117. image: {
  35118. source: "./media/characters/kremm/ass.svg"
  35119. }
  35120. },
  35121. jaws: {
  35122. height: math.unit(2.2, "feet"),
  35123. name: "Jaws",
  35124. image: {
  35125. source: "./media/characters/kremm/jaws.svg"
  35126. }
  35127. },
  35128. dick: {
  35129. height: math.unit(4.26, "feet"),
  35130. name: "Dick",
  35131. image: {
  35132. source: "./media/characters/kremm/dick.svg"
  35133. }
  35134. },
  35135. },
  35136. [
  35137. {
  35138. name: "Normal",
  35139. height: math.unit(10, "feet"),
  35140. default: true
  35141. },
  35142. ]
  35143. ))
  35144. characterMakers.push(() => makeCharacter(
  35145. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35146. {
  35147. front: {
  35148. height: math.unit(30, "stories"),
  35149. name: "Front",
  35150. image: {
  35151. source: "./media/characters/kai/front.svg",
  35152. extra: 1892/1718,
  35153. bottom: 162/2054
  35154. }
  35155. },
  35156. },
  35157. [
  35158. {
  35159. name: "Macro",
  35160. height: math.unit(30, "stories"),
  35161. default: true
  35162. },
  35163. ]
  35164. ))
  35165. characterMakers.push(() => makeCharacter(
  35166. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35167. {
  35168. front: {
  35169. height: math.unit(6 + 4/12, "feet"),
  35170. weight: math.unit(145, "lb"),
  35171. name: "Front",
  35172. image: {
  35173. source: "./media/characters/sykes/front.svg",
  35174. extra: 1321 / 1187,
  35175. bottom: 66 / 1387
  35176. }
  35177. },
  35178. back: {
  35179. height: math.unit(6 + 4/12, "feet"),
  35180. weight: math.unit(145, "lb"),
  35181. name: "Back",
  35182. image: {
  35183. source: "./media/characters/sykes/back.svg",
  35184. extra: 1326/1181,
  35185. bottom: 31/1357
  35186. }
  35187. },
  35188. traditionalOutfit: {
  35189. height: math.unit(6 + 4/12, "feet"),
  35190. weight: math.unit(145, "lb"),
  35191. name: "Traditional Outfit",
  35192. image: {
  35193. source: "./media/characters/sykes/traditional-outfit.svg",
  35194. extra: 1321 / 1187,
  35195. bottom: 66 / 1387
  35196. }
  35197. },
  35198. adventureOutfit: {
  35199. height: math.unit(6 + 4/12, "feet"),
  35200. weight: math.unit(145, "lb"),
  35201. name: "Adventure Outfit",
  35202. image: {
  35203. source: "./media/characters/sykes/adventure-outfit.svg",
  35204. extra: 1321 / 1187,
  35205. bottom: 66 / 1387
  35206. }
  35207. },
  35208. handLeft: {
  35209. height: math.unit(0.9, "feet"),
  35210. name: "Hand (Left)",
  35211. image: {
  35212. source: "./media/characters/sykes/hand-left.svg"
  35213. }
  35214. },
  35215. handRight: {
  35216. height: math.unit(0.839, "feet"),
  35217. name: "Hand (Right)",
  35218. image: {
  35219. source: "./media/characters/sykes/hand-right.svg"
  35220. }
  35221. },
  35222. leftFoot: {
  35223. height: math.unit(1.2, "feet"),
  35224. name: "Foot (Left)",
  35225. image: {
  35226. source: "./media/characters/sykes/foot-left.svg"
  35227. }
  35228. },
  35229. rightFoot: {
  35230. height: math.unit(1.2, "feet"),
  35231. name: "Foot (Right)",
  35232. image: {
  35233. source: "./media/characters/sykes/foot-right.svg"
  35234. }
  35235. },
  35236. maw: {
  35237. height: math.unit(1.93, "feet"),
  35238. name: "Maw",
  35239. image: {
  35240. source: "./media/characters/sykes/maw.svg"
  35241. }
  35242. },
  35243. teeth: {
  35244. height: math.unit(0.51, "feet"),
  35245. name: "Teeth",
  35246. image: {
  35247. source: "./media/characters/sykes/teeth.svg"
  35248. }
  35249. },
  35250. tongue: {
  35251. height: math.unit(2.13, "feet"),
  35252. name: "Tongue",
  35253. image: {
  35254. source: "./media/characters/sykes/tongue.svg"
  35255. }
  35256. },
  35257. uvula: {
  35258. height: math.unit(0.16, "feet"),
  35259. name: "Uvula",
  35260. image: {
  35261. source: "./media/characters/sykes/uvula.svg"
  35262. }
  35263. },
  35264. collar: {
  35265. height: math.unit(0.287, "feet"),
  35266. name: "Collar",
  35267. image: {
  35268. source: "./media/characters/sykes/collar.svg"
  35269. }
  35270. },
  35271. tail: {
  35272. height: math.unit(3.8, "feet"),
  35273. name: "Tail",
  35274. image: {
  35275. source: "./media/characters/sykes/tail.svg"
  35276. }
  35277. },
  35278. },
  35279. [
  35280. {
  35281. name: "Shrunken",
  35282. height: math.unit(5, "inches")
  35283. },
  35284. {
  35285. name: "Normal",
  35286. height: math.unit(6 + 4 / 12, "feet"),
  35287. default: true
  35288. },
  35289. {
  35290. name: "Big",
  35291. height: math.unit(15, "feet")
  35292. },
  35293. ]
  35294. ))
  35295. characterMakers.push(() => makeCharacter(
  35296. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35297. {
  35298. front: {
  35299. height: math.unit(5 + 8/12, "feet"),
  35300. weight: math.unit(190, "lb"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/oven-otter/front.svg",
  35304. extra: 1809/1740,
  35305. bottom: 181/1990
  35306. }
  35307. },
  35308. back: {
  35309. height: math.unit(5 + 8/12, "feet"),
  35310. weight: math.unit(190, "lb"),
  35311. name: "Back",
  35312. image: {
  35313. source: "./media/characters/oven-otter/back.svg",
  35314. extra: 1709/1635,
  35315. bottom: 118/1827
  35316. }
  35317. },
  35318. hand: {
  35319. height: math.unit(1.07, "feet"),
  35320. name: "Hand",
  35321. image: {
  35322. source: "./media/characters/oven-otter/hand.svg"
  35323. }
  35324. },
  35325. beans: {
  35326. height: math.unit(1.74, "feet"),
  35327. name: "Beans",
  35328. image: {
  35329. source: "./media/characters/oven-otter/beans.svg"
  35330. }
  35331. },
  35332. },
  35333. [
  35334. {
  35335. name: "Micro",
  35336. height: math.unit(0.5, "inches")
  35337. },
  35338. {
  35339. name: "Normal",
  35340. height: math.unit(5 + 8/12, "feet"),
  35341. default: true
  35342. },
  35343. {
  35344. name: "Macro",
  35345. height: math.unit(250, "feet")
  35346. },
  35347. {
  35348. name: "Really High",
  35349. height: math.unit(420, "feet")
  35350. },
  35351. ]
  35352. ))
  35353. characterMakers.push(() => makeCharacter(
  35354. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35355. {
  35356. front: {
  35357. height: math.unit(5, "meters"),
  35358. weight: math.unit(292000000000000, "kg"),
  35359. name: "Front",
  35360. image: {
  35361. source: "./media/characters/devourer/front.svg",
  35362. extra: 1800/1733,
  35363. bottom: 211/2011
  35364. }
  35365. },
  35366. maw: {
  35367. height: math.unit(1.1, "meter"),
  35368. name: "Maw",
  35369. image: {
  35370. source: "./media/characters/devourer/maw.svg"
  35371. }
  35372. },
  35373. },
  35374. [
  35375. {
  35376. name: "Small",
  35377. height: math.unit(3, "meters")
  35378. },
  35379. {
  35380. name: "Large",
  35381. height: math.unit(5, "meters"),
  35382. default: true
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35388. {
  35389. front: {
  35390. height: math.unit(6, "feet"),
  35391. weight: math.unit(400, "lb"),
  35392. name: "Front",
  35393. image: {
  35394. source: "./media/characters/ellarby/front.svg",
  35395. extra: 1909/1763,
  35396. bottom: 80/1989
  35397. }
  35398. },
  35399. back: {
  35400. height: math.unit(6, "feet"),
  35401. weight: math.unit(400, "lb"),
  35402. name: "Back",
  35403. image: {
  35404. source: "./media/characters/ellarby/back.svg",
  35405. extra: 1914/1784,
  35406. bottom: 172/2086
  35407. }
  35408. },
  35409. },
  35410. [
  35411. {
  35412. name: "Mischief",
  35413. height: math.unit(18, "inches")
  35414. },
  35415. {
  35416. name: "Trouble",
  35417. height: math.unit(12, "feet")
  35418. },
  35419. {
  35420. name: "Havoc",
  35421. height: math.unit(200, "feet"),
  35422. default: true
  35423. },
  35424. {
  35425. name: "Pandemonium",
  35426. height: math.unit(1, "mile")
  35427. },
  35428. {
  35429. name: "Catastrophe",
  35430. height: math.unit(100, "miles")
  35431. },
  35432. ]
  35433. ))
  35434. characterMakers.push(() => makeCharacter(
  35435. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35436. {
  35437. front: {
  35438. height: math.unit(4.7, "meters"),
  35439. weight: math.unit(6500, "kg"),
  35440. name: "Front",
  35441. image: {
  35442. source: "./media/characters/vex/front.svg",
  35443. extra: 1288/1140,
  35444. bottom: 100/1388
  35445. }
  35446. },
  35447. },
  35448. [
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(4.7, "meters"),
  35452. default: true
  35453. },
  35454. ]
  35455. ))
  35456. characterMakers.push(() => makeCharacter(
  35457. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35458. {
  35459. normal: {
  35460. height: math.unit(6, "feet"),
  35461. weight: math.unit(350, "lb"),
  35462. name: "Normal",
  35463. image: {
  35464. source: "./media/characters/teshy/normal.svg",
  35465. extra: 1795/1735,
  35466. bottom: 16/1811
  35467. }
  35468. },
  35469. monsterFront: {
  35470. height: math.unit(12, "feet"),
  35471. weight: math.unit(4700, "lb"),
  35472. name: "Monster (Front)",
  35473. image: {
  35474. source: "./media/characters/teshy/monster-front.svg",
  35475. extra: 2042/2034,
  35476. bottom: 128/2170
  35477. }
  35478. },
  35479. monsterSide: {
  35480. height: math.unit(12, "feet"),
  35481. weight: math.unit(4700, "lb"),
  35482. name: "Monster (Side)",
  35483. image: {
  35484. source: "./media/characters/teshy/monster-side.svg",
  35485. extra: 2067/2056,
  35486. bottom: 70/2137
  35487. }
  35488. },
  35489. monsterBack: {
  35490. height: math.unit(12, "feet"),
  35491. weight: math.unit(4700, "lb"),
  35492. name: "Monster (Back)",
  35493. image: {
  35494. source: "./media/characters/teshy/monster-back.svg",
  35495. extra: 1921/1914,
  35496. bottom: 171/2092
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Normal",
  35503. height: math.unit(6, "feet"),
  35504. default: true
  35505. },
  35506. ]
  35507. ))
  35508. characterMakers.push(() => makeCharacter(
  35509. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35510. {
  35511. front: {
  35512. height: math.unit(6, "feet"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/ramey/front.svg",
  35516. extra: 790/787,
  35517. bottom: 27/817
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(6, "feet"),
  35525. default: true
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35531. {
  35532. front: {
  35533. height: math.unit(5 + 5/12, "feet"),
  35534. weight: math.unit(120, "lb"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/phirae/front.svg",
  35538. extra: 2491/2436,
  35539. bottom: 38/2529
  35540. }
  35541. },
  35542. },
  35543. [
  35544. {
  35545. name: "Normal",
  35546. height: math.unit(5 + 5/12, "feet"),
  35547. default: true
  35548. },
  35549. ]
  35550. ))
  35551. characterMakers.push(() => makeCharacter(
  35552. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35553. {
  35554. front: {
  35555. height: math.unit(5 + 3/12, "feet"),
  35556. name: "Front",
  35557. image: {
  35558. source: "./media/characters/stagglas/front.svg",
  35559. extra: 962/882,
  35560. bottom: 53/1015
  35561. }
  35562. },
  35563. feral: {
  35564. height: math.unit(335, "cm"),
  35565. name: "Feral",
  35566. image: {
  35567. source: "./media/characters/stagglas/feral.svg",
  35568. extra: 1732/1090,
  35569. bottom: 48/1780
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(5 + 3/12, "feet"),
  35577. default: true
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(5 + 4/12, "feet"),
  35586. weight: math.unit(145, "lb"),
  35587. name: "Front",
  35588. image: {
  35589. source: "./media/characters/starra/front.svg",
  35590. extra: 1790/1691,
  35591. bottom: 91/1881
  35592. }
  35593. },
  35594. },
  35595. [
  35596. {
  35597. name: "Normal",
  35598. height: math.unit(5 + 4/12, "feet"),
  35599. default: true
  35600. },
  35601. ]
  35602. ))
  35603. characterMakers.push(() => makeCharacter(
  35604. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35605. {
  35606. front: {
  35607. height: math.unit(2.2, "meters"),
  35608. name: "Front",
  35609. image: {
  35610. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35611. extra: 1194/1005,
  35612. bottom: 25/1219
  35613. }
  35614. },
  35615. },
  35616. [
  35617. {
  35618. name: "Normal",
  35619. height: math.unit(2.2, "meters"),
  35620. default: true
  35621. },
  35622. ]
  35623. ))
  35624. characterMakers.push(() => makeCharacter(
  35625. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35626. {
  35627. side: {
  35628. height: math.unit(8 + 2/12, "feet"),
  35629. weight: math.unit(1240, "lb"),
  35630. name: "Side",
  35631. image: {
  35632. source: "./media/characters/mika-valentine/side.svg",
  35633. extra: 2670/2501,
  35634. bottom: 250/2920
  35635. }
  35636. },
  35637. },
  35638. [
  35639. {
  35640. name: "Normal",
  35641. height: math.unit(8 + 2/12, "feet"),
  35642. default: true
  35643. },
  35644. ]
  35645. ))
  35646. characterMakers.push(() => makeCharacter(
  35647. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35648. {
  35649. front: {
  35650. height: math.unit(7 + 2/12, "feet"),
  35651. name: "Front",
  35652. image: {
  35653. source: "./media/characters/xoltol/front.svg",
  35654. extra: 2212/2124,
  35655. bottom: 84/2296
  35656. }
  35657. },
  35658. side: {
  35659. height: math.unit(7 + 2/12, "feet"),
  35660. name: "Side",
  35661. image: {
  35662. source: "./media/characters/xoltol/side.svg",
  35663. extra: 2273/2197,
  35664. bottom: 26/2299
  35665. }
  35666. },
  35667. hand: {
  35668. height: math.unit(2.5, "feet"),
  35669. name: "Hand",
  35670. image: {
  35671. source: "./media/characters/xoltol/hand.svg"
  35672. }
  35673. },
  35674. },
  35675. [
  35676. {
  35677. name: "Small-ish",
  35678. height: math.unit(5 + 11/12, "feet")
  35679. },
  35680. {
  35681. name: "Normal",
  35682. height: math.unit(7 + 2/12, "feet")
  35683. },
  35684. {
  35685. name: "\"Macro\"",
  35686. height: math.unit(14 + 9/12, "feet"),
  35687. default: true
  35688. },
  35689. {
  35690. name: "Alternate Height",
  35691. height: math.unit(20, "feet")
  35692. },
  35693. {
  35694. name: "Actually Macro",
  35695. height: math.unit(100, "feet")
  35696. },
  35697. ]
  35698. ))
  35699. characterMakers.push(() => makeCharacter(
  35700. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35701. {
  35702. front: {
  35703. height: math.unit(5 + 2/12, "feet"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/kotetsu-redwood/front.svg",
  35707. extra: 1053/942,
  35708. bottom: 60/1113
  35709. }
  35710. },
  35711. },
  35712. [
  35713. {
  35714. name: "Normal",
  35715. height: math.unit(5 + 2/12, "feet"),
  35716. default: true
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(2.4, "meters"),
  35725. weight: math.unit(125, "kg"),
  35726. name: "Front",
  35727. image: {
  35728. source: "./media/characters/lilith/front.svg",
  35729. extra: 1590/1513,
  35730. bottom: 203/1793
  35731. }
  35732. },
  35733. },
  35734. [
  35735. {
  35736. name: "Humanoid",
  35737. height: math.unit(2.4, "meters")
  35738. },
  35739. {
  35740. name: "Normal",
  35741. height: math.unit(6, "meters"),
  35742. default: true
  35743. },
  35744. {
  35745. name: "Largest",
  35746. height: math.unit(55, "meters")
  35747. },
  35748. ]
  35749. ))
  35750. characterMakers.push(() => makeCharacter(
  35751. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35752. {
  35753. front: {
  35754. height: math.unit(8 + 4/12, "feet"),
  35755. weight: math.unit(535, "lb"),
  35756. name: "Front",
  35757. image: {
  35758. source: "./media/characters/beh'kah-bolger/front.svg",
  35759. extra: 1660/1603,
  35760. bottom: 37/1697
  35761. }
  35762. },
  35763. },
  35764. [
  35765. {
  35766. name: "Normal",
  35767. height: math.unit(8 + 4/12, "feet"),
  35768. default: true
  35769. },
  35770. {
  35771. name: "Kaiju",
  35772. height: math.unit(250, "feet")
  35773. },
  35774. {
  35775. name: "Still Growing",
  35776. height: math.unit(10, "miles")
  35777. },
  35778. {
  35779. name: "Continental",
  35780. height: math.unit(5000, "miles")
  35781. },
  35782. {
  35783. name: "Final Form",
  35784. height: math.unit(2500000, "miles")
  35785. },
  35786. ]
  35787. ))
  35788. characterMakers.push(() => makeCharacter(
  35789. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35790. {
  35791. front: {
  35792. height: math.unit(7 + 2/12, "feet"),
  35793. weight: math.unit(230, "kg"),
  35794. name: "Front",
  35795. image: {
  35796. source: "./media/characters/tatyana-milewska/front.svg",
  35797. extra: 1199/1150,
  35798. bottom: 86/1285
  35799. }
  35800. },
  35801. },
  35802. [
  35803. {
  35804. name: "Normal",
  35805. height: math.unit(7 + 2/12, "feet"),
  35806. default: true
  35807. },
  35808. {
  35809. name: "Big",
  35810. height: math.unit(12, "feet")
  35811. },
  35812. {
  35813. name: "Minimacro",
  35814. height: math.unit(20, "feet")
  35815. },
  35816. {
  35817. name: "Macro",
  35818. height: math.unit(120, "feet")
  35819. },
  35820. ]
  35821. ))
  35822. characterMakers.push(() => makeCharacter(
  35823. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35824. {
  35825. front: {
  35826. height: math.unit(7 + 8/12, "feet"),
  35827. weight: math.unit(152, "kg"),
  35828. name: "Front",
  35829. image: {
  35830. source: "./media/characters/helen-arri/front.svg",
  35831. extra: 440/423,
  35832. bottom: 14/454
  35833. }
  35834. },
  35835. back: {
  35836. height: math.unit(7 + 8/12, "feet"),
  35837. weight: math.unit(152, "kg"),
  35838. name: "Back",
  35839. image: {
  35840. source: "./media/characters/helen-arri/back.svg",
  35841. extra: 443/426,
  35842. bottom: 8/451
  35843. }
  35844. },
  35845. },
  35846. [
  35847. {
  35848. name: "Normal",
  35849. height: math.unit(7 + 8/12, "feet"),
  35850. default: true
  35851. },
  35852. {
  35853. name: "Big",
  35854. height: math.unit(14, "feet")
  35855. },
  35856. {
  35857. name: "Minimacro",
  35858. height: math.unit(24, "feet")
  35859. },
  35860. {
  35861. name: "Macro",
  35862. height: math.unit(140, "feet")
  35863. },
  35864. ]
  35865. ))
  35866. characterMakers.push(() => makeCharacter(
  35867. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35868. {
  35869. front: {
  35870. height: math.unit(6, "meters"),
  35871. name: "Front",
  35872. image: {
  35873. source: "./media/characters/ehanu-rehu/front.svg",
  35874. extra: 1800/1800,
  35875. bottom: 59/1859
  35876. }
  35877. },
  35878. },
  35879. [
  35880. {
  35881. name: "Normal",
  35882. height: math.unit(6, "meters"),
  35883. default: true
  35884. },
  35885. ]
  35886. ))
  35887. characterMakers.push(() => makeCharacter(
  35888. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35889. {
  35890. front: {
  35891. height: math.unit(7 + 3/12, "feet"),
  35892. name: "Front",
  35893. image: {
  35894. source: "./media/characters/renholder/front.svg",
  35895. extra: 3096/2960,
  35896. bottom: 250/3346
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Normal Bat",
  35903. height: math.unit(7 + 3/12, "feet"),
  35904. default: true
  35905. },
  35906. {
  35907. name: "Slightly Tall Bat",
  35908. height: math.unit(100, "feet")
  35909. },
  35910. {
  35911. name: "Big Bat",
  35912. height: math.unit(1000, "feet")
  35913. },
  35914. {
  35915. name: "City-Sized Bat",
  35916. height: math.unit(200000, "feet")
  35917. },
  35918. {
  35919. name: "Bigger Bat",
  35920. height: math.unit(10000, "miles")
  35921. },
  35922. {
  35923. name: "Solar Sized Bat",
  35924. height: math.unit(100, "AU")
  35925. },
  35926. {
  35927. name: "Galactic Bat",
  35928. height: math.unit(200000, "lightyears")
  35929. },
  35930. {
  35931. name: "Universally Known Bat",
  35932. height: math.unit(1, "universe")
  35933. },
  35934. ]
  35935. ))
  35936. characterMakers.push(() => makeCharacter(
  35937. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35938. {
  35939. front: {
  35940. height: math.unit(6 + 11/12, "feet"),
  35941. weight: math.unit(250, "lb"),
  35942. name: "Front",
  35943. image: {
  35944. source: "./media/characters/cookiecat/front.svg",
  35945. extra: 893/827,
  35946. bottom: 14/907
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Micro",
  35953. height: math.unit(3, "inches")
  35954. },
  35955. {
  35956. name: "Normal",
  35957. height: math.unit(6 + 11/12, "feet"),
  35958. default: true
  35959. },
  35960. {
  35961. name: "Macro",
  35962. height: math.unit(100, "feet")
  35963. },
  35964. {
  35965. name: "Macro+",
  35966. height: math.unit(404, "feet")
  35967. },
  35968. {
  35969. name: "Megamacro",
  35970. height: math.unit(165, "miles")
  35971. },
  35972. {
  35973. name: "Planetary",
  35974. height: math.unit(4600, "miles")
  35975. },
  35976. ]
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35980. {
  35981. front: {
  35982. height: math.unit(10 + 3/12, "feet"),
  35983. weight: math.unit(1500, "lb"),
  35984. name: "Front",
  35985. image: {
  35986. source: "./media/characters/tux-kusanagi/front.svg",
  35987. extra: 944/840,
  35988. bottom: 39/983
  35989. }
  35990. },
  35991. back: {
  35992. height: math.unit(10 + 3/12, "feet"),
  35993. weight: math.unit(1500, "lb"),
  35994. name: "Back",
  35995. image: {
  35996. source: "./media/characters/tux-kusanagi/back.svg",
  35997. extra: 941/842,
  35998. bottom: 28/969
  35999. }
  36000. },
  36001. rump: {
  36002. height: math.unit(5.25, "feet"),
  36003. name: "Rump",
  36004. image: {
  36005. source: "./media/characters/tux-kusanagi/rump.svg"
  36006. }
  36007. },
  36008. beak: {
  36009. height: math.unit(1.54, "feet"),
  36010. name: "Beak",
  36011. image: {
  36012. source: "./media/characters/tux-kusanagi/beak.svg"
  36013. }
  36014. },
  36015. },
  36016. [
  36017. {
  36018. name: "Normal",
  36019. height: math.unit(10 + 3/12, "feet"),
  36020. default: true
  36021. },
  36022. ]
  36023. ))
  36024. characterMakers.push(() => makeCharacter(
  36025. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36026. {
  36027. front: {
  36028. height: math.unit(58, "feet"),
  36029. weight: math.unit(200, "tons"),
  36030. name: "Front",
  36031. image: {
  36032. source: "./media/characters/uzarmazari/front.svg",
  36033. extra: 1575/1455,
  36034. bottom: 152/1727
  36035. }
  36036. },
  36037. back: {
  36038. height: math.unit(58, "feet"),
  36039. weight: math.unit(200, "tons"),
  36040. name: "Back",
  36041. image: {
  36042. source: "./media/characters/uzarmazari/back.svg",
  36043. extra: 1585/1510,
  36044. bottom: 157/1742
  36045. }
  36046. },
  36047. head: {
  36048. height: math.unit(26, "feet"),
  36049. name: "Head",
  36050. image: {
  36051. source: "./media/characters/uzarmazari/head.svg"
  36052. }
  36053. },
  36054. },
  36055. [
  36056. {
  36057. name: "Normal",
  36058. height: math.unit(58, "feet"),
  36059. default: true
  36060. },
  36061. ]
  36062. ))
  36063. characterMakers.push(() => makeCharacter(
  36064. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36065. {
  36066. side: {
  36067. height: math.unit(15, "feet"),
  36068. name: "Side",
  36069. image: {
  36070. source: "./media/characters/akitu/side.svg",
  36071. extra: 1421/1321,
  36072. bottom: 157/1578
  36073. }
  36074. },
  36075. front: {
  36076. height: math.unit(15, "feet"),
  36077. name: "Front",
  36078. image: {
  36079. source: "./media/characters/akitu/front.svg",
  36080. extra: 1435/1326,
  36081. bottom: 232/1667
  36082. }
  36083. },
  36084. },
  36085. [
  36086. {
  36087. name: "Normal",
  36088. height: math.unit(15, "feet"),
  36089. default: true
  36090. },
  36091. ]
  36092. ))
  36093. characterMakers.push(() => makeCharacter(
  36094. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36095. {
  36096. front: {
  36097. height: math.unit(10 + 8/12, "feet"),
  36098. name: "Front",
  36099. image: {
  36100. source: "./media/characters/azalie-croixland/front.svg",
  36101. extra: 1972/1856,
  36102. bottom: 31/2003
  36103. }
  36104. },
  36105. },
  36106. [
  36107. {
  36108. name: "Original Height",
  36109. height: math.unit(5 + 4/12, "feet")
  36110. },
  36111. {
  36112. name: "Normal Height",
  36113. height: math.unit(10 + 8/12, "feet"),
  36114. default: true
  36115. },
  36116. ]
  36117. ))
  36118. characterMakers.push(() => makeCharacter(
  36119. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36120. {
  36121. side: {
  36122. height: math.unit(7 + 1/12, "feet"),
  36123. weight: math.unit(245, "lb"),
  36124. name: "Side",
  36125. image: {
  36126. source: "./media/characters/kavus-kazian/side.svg",
  36127. extra: 349/342,
  36128. bottom: 15/364
  36129. }
  36130. },
  36131. },
  36132. [
  36133. {
  36134. name: "Normal",
  36135. height: math.unit(7 + 1/12, "feet"),
  36136. default: true
  36137. },
  36138. ]
  36139. ))
  36140. characterMakers.push(() => makeCharacter(
  36141. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36142. {
  36143. normalFront: {
  36144. height: math.unit(5 + 11/12, "feet"),
  36145. name: "Front",
  36146. image: {
  36147. source: "./media/characters/moonlight-rose/normal-front.svg",
  36148. extra: 1980/1825,
  36149. bottom: 18/1998
  36150. },
  36151. form: "normal",
  36152. default: true
  36153. },
  36154. normalBack: {
  36155. height: math.unit(5 + 11/12, "feet"),
  36156. name: "Back",
  36157. image: {
  36158. source: "./media/characters/moonlight-rose/normal-back.svg",
  36159. extra: 2010/1839,
  36160. bottom: 10/2020
  36161. },
  36162. form: "normal"
  36163. },
  36164. demonFront: {
  36165. height: math.unit(1.5, "earths"),
  36166. name: "Front",
  36167. image: {
  36168. source: "./media/characters/moonlight-rose/demon.svg",
  36169. extra: 1400/1294,
  36170. bottom: 45/1445
  36171. },
  36172. form: "demon",
  36173. default: true
  36174. },
  36175. terraFront: {
  36176. height: math.unit(1.5, "earths"),
  36177. name: "Front",
  36178. image: {
  36179. source: "./media/characters/moonlight-rose/terra.svg"
  36180. },
  36181. form: "terra",
  36182. default: true
  36183. },
  36184. jupiterFront: {
  36185. height: math.unit(69911*2, "km"),
  36186. name: "Front",
  36187. image: {
  36188. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36189. extra: 1367/1286,
  36190. bottom: 55/1422
  36191. },
  36192. form: "jupiter",
  36193. default: true
  36194. },
  36195. neptuneFront: {
  36196. height: math.unit(24622*2, "feet"),
  36197. name: "Front",
  36198. image: {
  36199. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36200. extra: 1851/1712,
  36201. bottom: 0/1851
  36202. },
  36203. form: "neptune",
  36204. default: true
  36205. },
  36206. },
  36207. [
  36208. {
  36209. name: "\"Natural\" Height",
  36210. height: math.unit(5 + 11/12, "feet"),
  36211. form: "normal"
  36212. },
  36213. {
  36214. name: "Smallest comfortable size",
  36215. height: math.unit(40, "meters"),
  36216. form: "normal"
  36217. },
  36218. {
  36219. name: "Common size",
  36220. height: math.unit(50, "km"),
  36221. form: "normal",
  36222. default: true
  36223. },
  36224. {
  36225. name: "Normal",
  36226. height: math.unit(1.5, "earths"),
  36227. form: "demon",
  36228. default: true
  36229. },
  36230. {
  36231. name: "Universal",
  36232. height: math.unit(15, "universes"),
  36233. form: "demon"
  36234. },
  36235. {
  36236. name: "Earth",
  36237. height: math.unit(1.5, "earths"),
  36238. form: "terra",
  36239. default: true
  36240. },
  36241. {
  36242. name: "Super Earth",
  36243. height: math.unit(67.5, "earths"),
  36244. form: "terra"
  36245. },
  36246. {
  36247. name: "Doesn't fit in a solar system...",
  36248. height: math.unit(1, "galaxy"),
  36249. form: "terra"
  36250. },
  36251. {
  36252. name: "Saturn",
  36253. height: math.unit(58232*2, "km"),
  36254. form: "jupiter"
  36255. },
  36256. {
  36257. name: "Jupiter",
  36258. height: math.unit(69911*2, "km"),
  36259. form: "jupiter",
  36260. default: true
  36261. },
  36262. {
  36263. name: "HD 100546 b",
  36264. height: math.unit(482938, "km"),
  36265. form: "jupiter"
  36266. },
  36267. {
  36268. name: "Enceladus",
  36269. height: math.unit(513*2, "km"),
  36270. form: "neptune"
  36271. },
  36272. {
  36273. name: "Europe",
  36274. height: math.unit(1560*2, "km"),
  36275. form: "neptune"
  36276. },
  36277. {
  36278. name: "Neptune",
  36279. height: math.unit(24622*2, "km"),
  36280. form: "neptune",
  36281. default: true
  36282. },
  36283. {
  36284. name: "CoRoT-9b",
  36285. height: math.unit(75067*2, "km"),
  36286. form: "neptune"
  36287. },
  36288. ],
  36289. {
  36290. "normal": {
  36291. name: "Normal",
  36292. default: true
  36293. },
  36294. "demon": {
  36295. name: "Demon"
  36296. },
  36297. "terra": {
  36298. name: "Terra"
  36299. },
  36300. "jupiter": {
  36301. name: "Jupiter"
  36302. },
  36303. "neptune": {
  36304. name: "Neptune"
  36305. }
  36306. }
  36307. ))
  36308. characterMakers.push(() => makeCharacter(
  36309. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36310. {
  36311. front: {
  36312. height: math.unit(16, "feet"),
  36313. weight: math.unit(610, "kg"),
  36314. name: "Front",
  36315. image: {
  36316. source: "./media/characters/huckle/front.svg",
  36317. extra: 1731/1625,
  36318. bottom: 33/1764
  36319. }
  36320. },
  36321. back: {
  36322. height: math.unit(16, "feet"),
  36323. weight: math.unit(610, "kg"),
  36324. name: "Back",
  36325. image: {
  36326. source: "./media/characters/huckle/back.svg",
  36327. extra: 1738/1651,
  36328. bottom: 37/1775
  36329. }
  36330. },
  36331. laughing: {
  36332. height: math.unit(3.75, "feet"),
  36333. name: "Laughing",
  36334. image: {
  36335. source: "./media/characters/huckle/laughing.svg"
  36336. }
  36337. },
  36338. angry: {
  36339. height: math.unit(4.15, "feet"),
  36340. name: "Angry",
  36341. image: {
  36342. source: "./media/characters/huckle/angry.svg"
  36343. }
  36344. },
  36345. },
  36346. [
  36347. {
  36348. name: "Normal",
  36349. height: math.unit(16, "feet"),
  36350. default: true
  36351. },
  36352. {
  36353. name: "Mini Macro",
  36354. height: math.unit(463, "feet")
  36355. },
  36356. {
  36357. name: "Macro",
  36358. height: math.unit(1680, "meters")
  36359. },
  36360. {
  36361. name: "Mega Macro",
  36362. height: math.unit(175, "km")
  36363. },
  36364. {
  36365. name: "Terra Macro",
  36366. height: math.unit(32, "gigameters")
  36367. },
  36368. {
  36369. name: "Multiverse+",
  36370. height: math.unit(2.56e23, "yottameters")
  36371. },
  36372. ]
  36373. ))
  36374. characterMakers.push(() => makeCharacter(
  36375. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36376. {
  36377. front: {
  36378. height: math.unit(6 + 9/12, "feet"),
  36379. weight: math.unit(280, "lb"),
  36380. name: "Front",
  36381. image: {
  36382. source: "./media/characters/candy/front.svg",
  36383. extra: 234/217,
  36384. bottom: 11/245
  36385. }
  36386. },
  36387. },
  36388. [
  36389. {
  36390. name: "Really Small",
  36391. height: math.unit(0.1, "nm")
  36392. },
  36393. {
  36394. name: "Micro",
  36395. height: math.unit(2, "inches")
  36396. },
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(6 + 9/12, "feet"),
  36400. default: true
  36401. },
  36402. {
  36403. name: "Small Macro",
  36404. height: math.unit(69, "feet")
  36405. },
  36406. {
  36407. name: "Macro",
  36408. height: math.unit(160, "feet")
  36409. },
  36410. {
  36411. name: "Megamacro",
  36412. height: math.unit(22000, "miles")
  36413. },
  36414. {
  36415. name: "Gigamacro",
  36416. height: math.unit(50000, "miles")
  36417. },
  36418. ]
  36419. ))
  36420. characterMakers.push(() => makeCharacter(
  36421. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36422. {
  36423. front: {
  36424. height: math.unit(4, "feet"),
  36425. weight: math.unit(90, "lb"),
  36426. name: "Front",
  36427. image: {
  36428. source: "./media/characters/joey-mcdonald/front.svg",
  36429. extra: 1059/852,
  36430. bottom: 33/1092
  36431. }
  36432. },
  36433. back: {
  36434. height: math.unit(4, "feet"),
  36435. weight: math.unit(90, "lb"),
  36436. name: "Back",
  36437. image: {
  36438. source: "./media/characters/joey-mcdonald/back.svg",
  36439. extra: 1077/879,
  36440. bottom: 5/1082
  36441. }
  36442. },
  36443. frontKobold: {
  36444. height: math.unit(4, "feet"),
  36445. weight: math.unit(100, "lb"),
  36446. name: "Front-kobold",
  36447. image: {
  36448. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36449. extra: 1480/1367,
  36450. bottom: 0/1480
  36451. }
  36452. },
  36453. backKobold: {
  36454. height: math.unit(4, "feet"),
  36455. weight: math.unit(100, "lb"),
  36456. name: "Back-kobold",
  36457. image: {
  36458. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36459. extra: 1449/1361,
  36460. bottom: 0/1449
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(4, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36474. {
  36475. front: {
  36476. height: math.unit(12 + 6/12, "feet"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/kass-lockheed/front.svg",
  36480. extra: 354/343,
  36481. bottom: 9/363
  36482. }
  36483. },
  36484. back: {
  36485. height: math.unit(12 + 6/12, "feet"),
  36486. name: "Back",
  36487. image: {
  36488. source: "./media/characters/kass-lockheed/back.svg",
  36489. extra: 364/352,
  36490. bottom: 3/367
  36491. }
  36492. },
  36493. dick: {
  36494. height: math.unit(3.12, "feet"),
  36495. name: "Dick",
  36496. image: {
  36497. source: "./media/characters/kass-lockheed/dick.svg"
  36498. }
  36499. },
  36500. head: {
  36501. height: math.unit(2.6, "feet"),
  36502. name: "Head",
  36503. image: {
  36504. source: "./media/characters/kass-lockheed/head.svg"
  36505. }
  36506. },
  36507. bleh: {
  36508. height: math.unit(2.85, "feet"),
  36509. name: "Bleh",
  36510. image: {
  36511. source: "./media/characters/kass-lockheed/bleh.svg"
  36512. }
  36513. },
  36514. smug: {
  36515. height: math.unit(2.85, "feet"),
  36516. name: "Smug",
  36517. image: {
  36518. source: "./media/characters/kass-lockheed/smug.svg"
  36519. }
  36520. },
  36521. },
  36522. [
  36523. {
  36524. name: "Normal",
  36525. height: math.unit(12 + 6/12, "feet"),
  36526. default: true
  36527. },
  36528. ]
  36529. ))
  36530. characterMakers.push(() => makeCharacter(
  36531. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36532. {
  36533. front: {
  36534. height: math.unit(6 + 2/12, "feet"),
  36535. name: "Front",
  36536. image: {
  36537. source: "./media/characters/taylor/front.svg",
  36538. extra: 639/495,
  36539. bottom: 12/651
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(6 + 2/12, "feet"),
  36547. default: true
  36548. },
  36549. {
  36550. name: "Big",
  36551. height: math.unit(15, "feet")
  36552. },
  36553. {
  36554. name: "Lorg",
  36555. height: math.unit(80, "feet")
  36556. },
  36557. {
  36558. name: "Too Lorg",
  36559. height: math.unit(120, "feet")
  36560. },
  36561. ]
  36562. ))
  36563. characterMakers.push(() => makeCharacter(
  36564. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36565. {
  36566. front: {
  36567. height: math.unit(15, "feet"),
  36568. name: "Front",
  36569. image: {
  36570. source: "./media/characters/kaizer/front.svg",
  36571. extra: 1612/1436,
  36572. bottom: 43/1655
  36573. }
  36574. },
  36575. },
  36576. [
  36577. {
  36578. name: "Normal",
  36579. height: math.unit(15, "feet"),
  36580. default: true
  36581. },
  36582. ]
  36583. ))
  36584. characterMakers.push(() => makeCharacter(
  36585. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36586. {
  36587. front: {
  36588. height: math.unit(2, "feet"),
  36589. weight: math.unit(30, "lb"),
  36590. name: "Front",
  36591. image: {
  36592. source: "./media/characters/sandy/front.svg",
  36593. extra: 1439/1307,
  36594. bottom: 194/1633
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(2, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36608. {
  36609. front: {
  36610. height: math.unit(3, "feet"),
  36611. name: "Front",
  36612. image: {
  36613. source: "./media/characters/mellvi/front.svg",
  36614. extra: 1831/1630,
  36615. bottom: 58/1889
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(3, "feet"),
  36623. default: true
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36629. {
  36630. front: {
  36631. height: math.unit(5 + 11/12, "feet"),
  36632. weight: math.unit(200, "lb"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/shirou/front.svg",
  36636. extra: 2491/2383,
  36637. bottom: 189/2680
  36638. }
  36639. },
  36640. back: {
  36641. height: math.unit(5 + 11/12, "feet"),
  36642. weight: math.unit(200, "lb"),
  36643. name: "Back",
  36644. image: {
  36645. source: "./media/characters/shirou/back.svg",
  36646. extra: 2554/2450,
  36647. bottom: 76/2630
  36648. }
  36649. },
  36650. },
  36651. [
  36652. {
  36653. name: "Normal",
  36654. height: math.unit(5 + 11/12, "feet"),
  36655. default: true
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(6 + 3/12, "feet"),
  36664. weight: math.unit(177, "lb"),
  36665. name: "Front",
  36666. image: {
  36667. source: "./media/characters/noryu/front.svg",
  36668. extra: 973/885,
  36669. bottom: 10/983
  36670. }
  36671. },
  36672. },
  36673. [
  36674. {
  36675. name: "Normal",
  36676. height: math.unit(6 + 3/12, "feet"),
  36677. default: true
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36683. {
  36684. front: {
  36685. height: math.unit(5 + 6/12, "feet"),
  36686. weight: math.unit(170, "lb"),
  36687. name: "Front",
  36688. image: {
  36689. source: "./media/characters/mevolas-rubenido/front.svg",
  36690. extra: 2109/1901,
  36691. bottom: 96/2205
  36692. }
  36693. },
  36694. },
  36695. [
  36696. {
  36697. name: "Normal",
  36698. height: math.unit(5 + 6/12, "feet"),
  36699. default: true
  36700. },
  36701. ]
  36702. ))
  36703. characterMakers.push(() => makeCharacter(
  36704. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36705. {
  36706. front: {
  36707. height: math.unit(100, "feet"),
  36708. name: "Front",
  36709. image: {
  36710. source: "./media/characters/dee/front.svg",
  36711. extra: 2153/2036,
  36712. bottom: 59/2212
  36713. }
  36714. },
  36715. back: {
  36716. height: math.unit(100, "feet"),
  36717. name: "Back",
  36718. image: {
  36719. source: "./media/characters/dee/back.svg",
  36720. extra: 2183/2058,
  36721. bottom: 75/2258
  36722. }
  36723. },
  36724. foot: {
  36725. height: math.unit(19.43, "feet"),
  36726. name: "Foot",
  36727. image: {
  36728. source: "./media/characters/dee/foot.svg"
  36729. }
  36730. },
  36731. hoof: {
  36732. height: math.unit(20.6, "feet"),
  36733. name: "Hoof",
  36734. image: {
  36735. source: "./media/characters/dee/hoof.svg"
  36736. }
  36737. },
  36738. },
  36739. [
  36740. {
  36741. name: "Macro",
  36742. height: math.unit(100, "feet"),
  36743. default: true
  36744. },
  36745. ]
  36746. ))
  36747. characterMakers.push(() => makeCharacter(
  36748. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36749. {
  36750. front: {
  36751. height: math.unit(5 + 6/12, "feet"),
  36752. name: "Front",
  36753. image: {
  36754. source: "./media/characters/teh/front.svg",
  36755. extra: 1002/847,
  36756. bottom: 62/1064
  36757. }
  36758. },
  36759. },
  36760. [
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(5 + 6/12, "feet"),
  36764. default: true
  36765. },
  36766. ]
  36767. ))
  36768. characterMakers.push(() => makeCharacter(
  36769. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36770. {
  36771. side: {
  36772. height: math.unit(6 + 1/12, "feet"),
  36773. weight: math.unit(204, "lb"),
  36774. name: "Side",
  36775. image: {
  36776. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36777. extra: 974/775,
  36778. bottom: 169/1143
  36779. }
  36780. },
  36781. sitting: {
  36782. height: math.unit(6 + 2/12, "feet"),
  36783. weight: math.unit(204, "lb"),
  36784. name: "Sitting",
  36785. image: {
  36786. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36787. extra: 1175/964,
  36788. bottom: 378/1553
  36789. }
  36790. },
  36791. },
  36792. [
  36793. {
  36794. name: "Normal",
  36795. height: math.unit(6 + 1/12, "feet"),
  36796. default: true
  36797. },
  36798. ]
  36799. ))
  36800. characterMakers.push(() => makeCharacter(
  36801. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36802. {
  36803. front: {
  36804. height: math.unit(6, "inches"),
  36805. name: "Front",
  36806. image: {
  36807. source: "./media/characters/tululi/front.svg",
  36808. extra: 1997/1876,
  36809. bottom: 20/2017
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Normal",
  36816. height: math.unit(6, "inches"),
  36817. default: true
  36818. },
  36819. ]
  36820. ))
  36821. characterMakers.push(() => makeCharacter(
  36822. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36823. {
  36824. front: {
  36825. height: math.unit(4 + 1/12, "feet"),
  36826. name: "Front",
  36827. image: {
  36828. source: "./media/characters/star/front.svg",
  36829. extra: 1493/1189,
  36830. bottom: 48/1541
  36831. }
  36832. },
  36833. },
  36834. [
  36835. {
  36836. name: "Normal",
  36837. height: math.unit(4 + 1/12, "feet"),
  36838. default: true
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(6 + 3/12, "feet"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/comet/front.svg",
  36850. extra: 1681/1462,
  36851. bottom: 26/1707
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Normal",
  36858. height: math.unit(6 + 3/12, "feet"),
  36859. default: true
  36860. },
  36861. ]
  36862. ))
  36863. characterMakers.push(() => makeCharacter(
  36864. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36865. {
  36866. front: {
  36867. height: math.unit(950, "feet"),
  36868. name: "Front",
  36869. image: {
  36870. source: "./media/characters/vortex/front.svg",
  36871. extra: 1497/1434,
  36872. bottom: 56/1553
  36873. }
  36874. },
  36875. maw: {
  36876. height: math.unit(285, "feet"),
  36877. name: "Maw",
  36878. image: {
  36879. source: "./media/characters/vortex/maw.svg"
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Macro",
  36886. height: math.unit(950, "feet"),
  36887. default: true
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36893. {
  36894. front: {
  36895. height: math.unit(600, "feet"),
  36896. weight: math.unit(0.02, "grams"),
  36897. name: "Front",
  36898. image: {
  36899. source: "./media/characters/doodle/front.svg",
  36900. extra: 1578/1413,
  36901. bottom: 37/1615
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Macro",
  36908. height: math.unit(600, "feet"),
  36909. default: true
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36915. {
  36916. front: {
  36917. height: math.unit(6 + 6/12, "feet"),
  36918. name: "Front",
  36919. image: {
  36920. source: "./media/characters/jai/front.svg",
  36921. extra: 1645/1534,
  36922. bottom: 115/1760
  36923. }
  36924. },
  36925. },
  36926. [
  36927. {
  36928. name: "Normal",
  36929. height: math.unit(6 + 6/12, "feet"),
  36930. default: true
  36931. },
  36932. ]
  36933. ))
  36934. characterMakers.push(() => makeCharacter(
  36935. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36936. {
  36937. front: {
  36938. height: math.unit(6 + 8/12, "feet"),
  36939. name: "Front",
  36940. image: {
  36941. source: "./media/characters/pixel/front.svg",
  36942. extra: 1900/1735,
  36943. bottom: 63/1963
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(6 + 8/12, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36957. {
  36958. back: {
  36959. height: math.unit(4 + 1/12, "feet"),
  36960. weight: math.unit(75, "lb"),
  36961. name: "Back",
  36962. image: {
  36963. source: "./media/characters/rhett/back.svg",
  36964. extra: 930/878,
  36965. bottom: 25/955
  36966. }
  36967. },
  36968. front: {
  36969. height: math.unit(4 + 1/12, "feet"),
  36970. weight: math.unit(75, "lb"),
  36971. name: "Front",
  36972. image: {
  36973. source: "./media/characters/rhett/front.svg",
  36974. extra: 1682/1586,
  36975. bottom: 92/1774
  36976. }
  36977. },
  36978. },
  36979. [
  36980. {
  36981. name: "Micro",
  36982. height: math.unit(8, "inches")
  36983. },
  36984. {
  36985. name: "Tiny",
  36986. height: math.unit(2, "feet")
  36987. },
  36988. {
  36989. name: "Normal",
  36990. height: math.unit(4 + 1/12, "feet"),
  36991. default: true
  36992. },
  36993. ]
  36994. ))
  36995. characterMakers.push(() => makeCharacter(
  36996. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36997. {
  36998. front: {
  36999. height: math.unit(3 + 3/12, "feet"),
  37000. name: "Front",
  37001. image: {
  37002. source: "./media/characters/penny/front.svg",
  37003. extra: 1406/1311,
  37004. bottom: 26/1432
  37005. }
  37006. },
  37007. },
  37008. [
  37009. {
  37010. name: "Normal",
  37011. height: math.unit(3 + 3/12, "feet"),
  37012. default: true
  37013. },
  37014. ]
  37015. ))
  37016. characterMakers.push(() => makeCharacter(
  37017. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37018. {
  37019. front: {
  37020. height: math.unit(4 + 11/12, "feet"),
  37021. name: "Front",
  37022. image: {
  37023. source: "./media/characters/monty/front.svg",
  37024. extra: 1479/1209,
  37025. bottom: 0/1479
  37026. }
  37027. },
  37028. },
  37029. [
  37030. {
  37031. name: "Normal",
  37032. height: math.unit(4 + 11/12, "feet"),
  37033. default: true
  37034. },
  37035. ]
  37036. ))
  37037. characterMakers.push(() => makeCharacter(
  37038. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37039. {
  37040. front: {
  37041. height: math.unit(8 + 4/12, "feet"),
  37042. name: "Front",
  37043. image: {
  37044. source: "./media/characters/sterling/front.svg",
  37045. extra: 1420/1236,
  37046. bottom: 27/1447
  37047. }
  37048. },
  37049. },
  37050. [
  37051. {
  37052. name: "Normal",
  37053. height: math.unit(8 + 4/12, "feet"),
  37054. default: true
  37055. },
  37056. ]
  37057. ))
  37058. characterMakers.push(() => makeCharacter(
  37059. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37060. {
  37061. front: {
  37062. height: math.unit(15, "feet"),
  37063. name: "Front",
  37064. image: {
  37065. source: "./media/characters/marble/front.svg",
  37066. extra: 973/937,
  37067. bottom: 32/1005
  37068. }
  37069. },
  37070. },
  37071. [
  37072. {
  37073. name: "Normal",
  37074. height: math.unit(15, "feet"),
  37075. default: true
  37076. },
  37077. ]
  37078. ))
  37079. characterMakers.push(() => makeCharacter(
  37080. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37081. {
  37082. front: {
  37083. height: math.unit(3, "inches"),
  37084. name: "Front",
  37085. image: {
  37086. source: "./media/characters/powder/front.svg",
  37087. extra: 1504/1334,
  37088. bottom: 518/2022
  37089. }
  37090. },
  37091. },
  37092. [
  37093. {
  37094. name: "Normal",
  37095. height: math.unit(3, "inches"),
  37096. default: true
  37097. },
  37098. ]
  37099. ))
  37100. characterMakers.push(() => makeCharacter(
  37101. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37102. {
  37103. front: {
  37104. height: math.unit(4 + 5/12, "feet"),
  37105. name: "Front",
  37106. image: {
  37107. source: "./media/characters/joey-raccoon/front.svg",
  37108. extra: 1273/1197,
  37109. bottom: 0/1273
  37110. }
  37111. },
  37112. },
  37113. [
  37114. {
  37115. name: "Normal",
  37116. height: math.unit(4 + 5/12, "feet"),
  37117. default: true
  37118. },
  37119. ]
  37120. ))
  37121. characterMakers.push(() => makeCharacter(
  37122. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37123. {
  37124. front: {
  37125. height: math.unit(8 + 4/12, "feet"),
  37126. name: "Front",
  37127. image: {
  37128. source: "./media/characters/vick/front.svg",
  37129. extra: 2187/2118,
  37130. bottom: 47/2234
  37131. }
  37132. },
  37133. },
  37134. [
  37135. {
  37136. name: "Normal",
  37137. height: math.unit(8 + 4/12, "feet"),
  37138. default: true
  37139. },
  37140. ]
  37141. ))
  37142. characterMakers.push(() => makeCharacter(
  37143. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37144. {
  37145. front: {
  37146. height: math.unit(5 + 5/12, "feet"),
  37147. name: "Front",
  37148. image: {
  37149. source: "./media/characters/mitsy/front.svg",
  37150. extra: 1842/1695,
  37151. bottom: 0/1842
  37152. }
  37153. },
  37154. },
  37155. [
  37156. {
  37157. name: "Normal",
  37158. height: math.unit(5 + 5/12, "feet"),
  37159. default: true
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37165. {
  37166. front: {
  37167. height: math.unit(6 + 3/12, "feet"),
  37168. name: "Front",
  37169. image: {
  37170. source: "./media/characters/silvy/front.svg",
  37171. extra: 1995/1836,
  37172. bottom: 225/2220
  37173. }
  37174. },
  37175. },
  37176. [
  37177. {
  37178. name: "Normal",
  37179. height: math.unit(6 + 3/12, "feet"),
  37180. default: true
  37181. },
  37182. ]
  37183. ))
  37184. characterMakers.push(() => makeCharacter(
  37185. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37186. {
  37187. front: {
  37188. height: math.unit(3 + 8/12, "feet"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/rodney/front.svg",
  37192. extra: 1956/1747,
  37193. bottom: 31/1987
  37194. }
  37195. },
  37196. frontDressed: {
  37197. height: math.unit(2.9, "feet"),
  37198. name: "Front (Dressed)",
  37199. image: {
  37200. source: "./media/characters/rodney/front-dressed.svg",
  37201. extra: 1382/1241,
  37202. bottom: 385/1767
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "Normal",
  37209. height: math.unit(3 + 8/12, "feet"),
  37210. default: true
  37211. },
  37212. ]
  37213. ))
  37214. characterMakers.push(() => makeCharacter(
  37215. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37216. {
  37217. front: {
  37218. height: math.unit(5 + 9/12, "feet"),
  37219. weight: math.unit(194, "lbs"),
  37220. name: "Front",
  37221. image: {
  37222. source: "./media/characters/zakail-sudekai/front.svg",
  37223. extra: 2696/2533,
  37224. bottom: 248/2944
  37225. }
  37226. },
  37227. maw: {
  37228. height: math.unit(1.35, "feet"),
  37229. name: "Maw",
  37230. image: {
  37231. source: "./media/characters/zakail-sudekai/maw.svg"
  37232. }
  37233. },
  37234. },
  37235. [
  37236. {
  37237. name: "Normal",
  37238. height: math.unit(5 + 9/12, "feet"),
  37239. default: true
  37240. },
  37241. ]
  37242. ))
  37243. characterMakers.push(() => makeCharacter(
  37244. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37245. {
  37246. front: {
  37247. height: math.unit(8 + 4/12, "feet"),
  37248. weight: math.unit(1200, "lb"),
  37249. name: "Front",
  37250. image: {
  37251. source: "./media/characters/eleanor/front.svg",
  37252. extra: 1226/1192,
  37253. bottom: 52/1278
  37254. }
  37255. },
  37256. back: {
  37257. height: math.unit(8 + 4/12, "feet"),
  37258. weight: math.unit(1200, "lb"),
  37259. name: "Back",
  37260. image: {
  37261. source: "./media/characters/eleanor/back.svg",
  37262. extra: 1242/1184,
  37263. bottom: 60/1302
  37264. }
  37265. },
  37266. head: {
  37267. height: math.unit(2.62, "feet"),
  37268. name: "Head",
  37269. image: {
  37270. source: "./media/characters/eleanor/head.svg"
  37271. }
  37272. },
  37273. },
  37274. [
  37275. {
  37276. name: "Normal",
  37277. height: math.unit(8 + 4/12, "feet"),
  37278. default: true
  37279. },
  37280. ]
  37281. ))
  37282. characterMakers.push(() => makeCharacter(
  37283. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37284. {
  37285. front: {
  37286. height: math.unit(8 + 4/12, "feet"),
  37287. weight: math.unit(750, "lb"),
  37288. name: "Front",
  37289. image: {
  37290. source: "./media/characters/tanya/front.svg",
  37291. extra: 1749/1615,
  37292. bottom: 33/1782
  37293. }
  37294. },
  37295. },
  37296. [
  37297. {
  37298. name: "Normal",
  37299. height: math.unit(8 + 4/12, "feet"),
  37300. default: true
  37301. },
  37302. ]
  37303. ))
  37304. characterMakers.push(() => makeCharacter(
  37305. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37306. {
  37307. front: {
  37308. height: math.unit(5, "feet"),
  37309. weight: math.unit(225, "lb"),
  37310. name: "Front",
  37311. image: {
  37312. source: "./media/characters/cindy/front.svg",
  37313. extra: 1320/1250,
  37314. bottom: 42/1362
  37315. }
  37316. },
  37317. frontDressed: {
  37318. height: math.unit(5, "feet"),
  37319. weight: math.unit(225, "lb"),
  37320. name: "Front (Dressed)",
  37321. image: {
  37322. source: "./media/characters/cindy/front-dressed.svg",
  37323. extra: 1320/1250,
  37324. bottom: 42/1362
  37325. }
  37326. },
  37327. back: {
  37328. height: math.unit(5, "feet"),
  37329. weight: math.unit(225, "lb"),
  37330. name: "Back",
  37331. image: {
  37332. source: "./media/characters/cindy/back.svg",
  37333. extra: 1384/1346,
  37334. bottom: 14/1398
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Normal",
  37341. height: math.unit(5, "feet"),
  37342. default: true
  37343. },
  37344. ]
  37345. ))
  37346. characterMakers.push(() => makeCharacter(
  37347. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37348. {
  37349. front: {
  37350. height: math.unit(6 + 9/12, "feet"),
  37351. weight: math.unit(440, "lb"),
  37352. name: "Front",
  37353. image: {
  37354. source: "./media/characters/wilbur-owen/front.svg",
  37355. extra: 1575/1448,
  37356. bottom: 72/1647
  37357. }
  37358. },
  37359. back: {
  37360. height: math.unit(6 + 9/12, "feet"),
  37361. weight: math.unit(440, "lb"),
  37362. name: "Back",
  37363. image: {
  37364. source: "./media/characters/wilbur-owen/back.svg",
  37365. extra: 1578/1445,
  37366. bottom: 36/1614
  37367. }
  37368. },
  37369. },
  37370. [
  37371. {
  37372. name: "Normal",
  37373. height: math.unit(6 + 9/12, "feet"),
  37374. default: true
  37375. },
  37376. ]
  37377. ))
  37378. characterMakers.push(() => makeCharacter(
  37379. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37380. {
  37381. front: {
  37382. height: math.unit(6 + 5/12, "feet"),
  37383. weight: math.unit(650, "lb"),
  37384. name: "Front",
  37385. image: {
  37386. source: "./media/characters/keegan/front.svg",
  37387. extra: 2387/2198,
  37388. bottom: 33/2420
  37389. }
  37390. },
  37391. side: {
  37392. height: math.unit(6 + 5/12, "feet"),
  37393. weight: math.unit(650, "lb"),
  37394. name: "Side",
  37395. image: {
  37396. source: "./media/characters/keegan/side.svg",
  37397. extra: 2390/2202,
  37398. bottom: 47/2437
  37399. }
  37400. },
  37401. back: {
  37402. height: math.unit(6 + 5/12, "feet"),
  37403. weight: math.unit(650, "lb"),
  37404. name: "Back",
  37405. image: {
  37406. source: "./media/characters/keegan/back.svg",
  37407. extra: 2418/2268,
  37408. bottom: 15/2433
  37409. }
  37410. },
  37411. frontSfw: {
  37412. height: math.unit(6 + 5/12, "feet"),
  37413. weight: math.unit(650, "lb"),
  37414. name: "Front (SFW)",
  37415. image: {
  37416. source: "./media/characters/keegan/front-sfw.svg",
  37417. extra: 2387/2198,
  37418. bottom: 33/2420
  37419. }
  37420. },
  37421. beans: {
  37422. height: math.unit(1.85, "feet"),
  37423. name: "Beans",
  37424. image: {
  37425. source: "./media/characters/keegan/beans.svg"
  37426. }
  37427. },
  37428. },
  37429. [
  37430. {
  37431. name: "Normal",
  37432. height: math.unit(6 + 5/12, "feet"),
  37433. default: true
  37434. },
  37435. ]
  37436. ))
  37437. characterMakers.push(() => makeCharacter(
  37438. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37439. {
  37440. front: {
  37441. height: math.unit(9, "feet"),
  37442. name: "Front",
  37443. image: {
  37444. source: "./media/characters/colton/front.svg",
  37445. extra: 1589/1326,
  37446. bottom: 139/1728
  37447. }
  37448. },
  37449. },
  37450. [
  37451. {
  37452. name: "Normal",
  37453. height: math.unit(9, "feet"),
  37454. default: true
  37455. },
  37456. ]
  37457. ))
  37458. characterMakers.push(() => makeCharacter(
  37459. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37460. {
  37461. front: {
  37462. height: math.unit(2 + 9/12, "feet"),
  37463. name: "Front",
  37464. image: {
  37465. source: "./media/characters/bora/front.svg",
  37466. extra: 1265/1250,
  37467. bottom: 24/1289
  37468. }
  37469. },
  37470. },
  37471. [
  37472. {
  37473. name: "Normal",
  37474. height: math.unit(2 + 9/12, "feet"),
  37475. default: true
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37481. {
  37482. front: {
  37483. height: math.unit(8, "feet"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/myu-myu/front.svg",
  37487. extra: 1949/1857,
  37488. bottom: 90/2039
  37489. }
  37490. },
  37491. },
  37492. [
  37493. {
  37494. name: "Normal",
  37495. height: math.unit(8, "feet"),
  37496. default: true
  37497. },
  37498. {
  37499. name: "Big",
  37500. height: math.unit(15, "feet")
  37501. },
  37502. {
  37503. name: "BIG",
  37504. height: math.unit(25, "feet")
  37505. },
  37506. ]
  37507. ))
  37508. characterMakers.push(() => makeCharacter(
  37509. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37510. {
  37511. side: {
  37512. height: math.unit(7 + 5/12, "feet"),
  37513. weight: math.unit(2800, "lb"),
  37514. name: "Side",
  37515. image: {
  37516. source: "./media/characters/haloren/side.svg",
  37517. extra: 1793/409,
  37518. bottom: 59/1852
  37519. }
  37520. },
  37521. frontPaw: {
  37522. height: math.unit(2.36, "feet"),
  37523. name: "Front paw",
  37524. image: {
  37525. source: "./media/characters/haloren/front-paw.svg"
  37526. }
  37527. },
  37528. hindPaw: {
  37529. height: math.unit(3.18, "feet"),
  37530. name: "Hind paw",
  37531. image: {
  37532. source: "./media/characters/haloren/hind-paw.svg"
  37533. }
  37534. },
  37535. maw: {
  37536. height: math.unit(5.05, "feet"),
  37537. name: "Maw",
  37538. image: {
  37539. source: "./media/characters/haloren/maw.svg"
  37540. }
  37541. },
  37542. dick: {
  37543. height: math.unit(2.90, "feet"),
  37544. name: "Dick",
  37545. image: {
  37546. source: "./media/characters/haloren/dick.svg"
  37547. }
  37548. },
  37549. },
  37550. [
  37551. {
  37552. name: "Normal",
  37553. height: math.unit(7 + 5/12, "feet"),
  37554. default: true
  37555. },
  37556. {
  37557. name: "Enhanced",
  37558. height: math.unit(14 + 3/12, "feet")
  37559. },
  37560. ]
  37561. ))
  37562. characterMakers.push(() => makeCharacter(
  37563. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37564. {
  37565. front: {
  37566. height: math.unit(171, "cm"),
  37567. name: "Front",
  37568. image: {
  37569. source: "./media/characters/kimmy/front.svg",
  37570. extra: 1491/1435,
  37571. bottom: 53/1544
  37572. }
  37573. },
  37574. },
  37575. [
  37576. {
  37577. name: "Small",
  37578. height: math.unit(9, "cm")
  37579. },
  37580. {
  37581. name: "Normal",
  37582. height: math.unit(171, "cm"),
  37583. default: true
  37584. },
  37585. ]
  37586. ))
  37587. characterMakers.push(() => makeCharacter(
  37588. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37589. {
  37590. front: {
  37591. height: math.unit(8, "feet"),
  37592. weight: math.unit(300, "lb"),
  37593. name: "Front",
  37594. image: {
  37595. source: "./media/characters/galeboomer/front.svg",
  37596. extra: 4651/4415,
  37597. bottom: 162/4813
  37598. }
  37599. },
  37600. back: {
  37601. height: math.unit(8, "feet"),
  37602. weight: math.unit(300, "lb"),
  37603. name: "Back",
  37604. image: {
  37605. source: "./media/characters/galeboomer/back.svg",
  37606. extra: 4544/4314,
  37607. bottom: 16/4560
  37608. }
  37609. },
  37610. frontAlt: {
  37611. height: math.unit(8, "feet"),
  37612. weight: math.unit(300, "lb"),
  37613. name: "Front (Alt)",
  37614. image: {
  37615. source: "./media/characters/galeboomer/front-alt.svg",
  37616. extra: 4458/4228,
  37617. bottom: 68/4526
  37618. }
  37619. },
  37620. maw: {
  37621. height: math.unit(1.2, "feet"),
  37622. name: "Maw",
  37623. image: {
  37624. source: "./media/characters/galeboomer/maw.svg"
  37625. }
  37626. },
  37627. },
  37628. [
  37629. {
  37630. name: "Normal",
  37631. height: math.unit(8, "feet"),
  37632. default: true
  37633. },
  37634. ]
  37635. ))
  37636. characterMakers.push(() => makeCharacter(
  37637. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37638. {
  37639. front: {
  37640. height: math.unit(5 + 9/12, "feet"),
  37641. weight: math.unit(120, "lb"),
  37642. name: "Front",
  37643. image: {
  37644. source: "./media/characters/chyr/front.svg",
  37645. extra: 1323/1254,
  37646. bottom: 63/1386
  37647. }
  37648. },
  37649. back: {
  37650. height: math.unit(5 + 9/12, "feet"),
  37651. weight: math.unit(120, "lb"),
  37652. name: "Back",
  37653. image: {
  37654. source: "./media/characters/chyr/back.svg",
  37655. extra: 1323/1252,
  37656. bottom: 48/1371
  37657. }
  37658. },
  37659. },
  37660. [
  37661. {
  37662. name: "Normal",
  37663. height: math.unit(5 + 9/12, "feet"),
  37664. default: true
  37665. },
  37666. ]
  37667. ))
  37668. characterMakers.push(() => makeCharacter(
  37669. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37670. {
  37671. front: {
  37672. height: math.unit(7, "feet"),
  37673. weight: math.unit(310, "lb"),
  37674. name: "Front",
  37675. image: {
  37676. source: "./media/characters/solarus/front.svg",
  37677. extra: 2415/2021,
  37678. bottom: 103/2518
  37679. }
  37680. },
  37681. back: {
  37682. height: math.unit(7, "feet"),
  37683. weight: math.unit(310, "lb"),
  37684. name: "Back",
  37685. image: {
  37686. source: "./media/characters/solarus/back.svg",
  37687. extra: 2463/2089,
  37688. bottom: 79/2542
  37689. }
  37690. },
  37691. },
  37692. [
  37693. {
  37694. name: "Normal",
  37695. height: math.unit(7, "feet"),
  37696. default: true
  37697. },
  37698. ]
  37699. ))
  37700. characterMakers.push(() => makeCharacter(
  37701. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37702. {
  37703. front: {
  37704. height: math.unit(16, "feet"),
  37705. name: "Front",
  37706. image: {
  37707. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37708. extra: 1844/1780,
  37709. bottom: 58/1902
  37710. }
  37711. },
  37712. winterCoat: {
  37713. height: math.unit(16, "feet"),
  37714. name: "Winter Coat",
  37715. image: {
  37716. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37717. extra: 1807/1775,
  37718. bottom: 69/1876
  37719. }
  37720. },
  37721. },
  37722. [
  37723. {
  37724. name: "Normal",
  37725. height: math.unit(16, "feet"),
  37726. default: true
  37727. },
  37728. {
  37729. name: "Chicago Size",
  37730. height: math.unit(560, "feet")
  37731. },
  37732. ]
  37733. ))
  37734. characterMakers.push(() => makeCharacter(
  37735. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37736. {
  37737. front: {
  37738. height: math.unit(11 + 6/12, "feet"),
  37739. weight: math.unit(1366, "lb"),
  37740. name: "Front",
  37741. image: {
  37742. source: "./media/characters/lexor/front.svg",
  37743. extra: 1560/1481,
  37744. bottom: 211/1771
  37745. }
  37746. },
  37747. back: {
  37748. height: math.unit(11 + 6/12, "feet"),
  37749. weight: math.unit(1366, "lb"),
  37750. name: "Back",
  37751. image: {
  37752. source: "./media/characters/lexor/back.svg",
  37753. extra: 1614/1533,
  37754. bottom: 76/1690
  37755. }
  37756. },
  37757. maw: {
  37758. height: math.unit(3, "feet"),
  37759. name: "Maw",
  37760. image: {
  37761. source: "./media/characters/lexor/maw.svg"
  37762. }
  37763. },
  37764. dick: {
  37765. height: math.unit(2.59, "feet"),
  37766. name: "Dick",
  37767. image: {
  37768. source: "./media/characters/lexor/dick.svg"
  37769. }
  37770. },
  37771. },
  37772. [
  37773. {
  37774. name: "Normal",
  37775. height: math.unit(11 + 6/12, "feet"),
  37776. default: true
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(5 + 8/12, "feet"),
  37785. name: "Front",
  37786. image: {
  37787. source: "./media/characters/magnum/front.svg",
  37788. extra: 942/855,
  37789. bottom: 26/968
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Normal",
  37796. height: math.unit(5 + 8/12, "feet"),
  37797. default: true
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(18 + 4/12, "feet"),
  37806. weight: math.unit(1500, "kg"),
  37807. name: "Front",
  37808. image: {
  37809. source: "./media/characters/solas-sharpsman/front.svg",
  37810. extra: 1698/1589,
  37811. bottom: 0/1698
  37812. }
  37813. },
  37814. },
  37815. [
  37816. {
  37817. name: "Normal",
  37818. height: math.unit(18 + 4/12, "feet"),
  37819. default: true
  37820. },
  37821. ]
  37822. ))
  37823. characterMakers.push(() => makeCharacter(
  37824. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37825. {
  37826. front: {
  37827. height: math.unit(5 + 5/12, "feet"),
  37828. weight: math.unit(180, "lb"),
  37829. name: "Front",
  37830. image: {
  37831. source: "./media/characters/october/front.svg",
  37832. extra: 1800/1650,
  37833. bottom: 0/1800
  37834. }
  37835. },
  37836. frontNsfw: {
  37837. height: math.unit(5 + 5/12, "feet"),
  37838. weight: math.unit(180, "lb"),
  37839. name: "Front (NSFW)",
  37840. image: {
  37841. source: "./media/characters/october/front-nsfw.svg",
  37842. extra: 1392/1307,
  37843. bottom: 42/1434
  37844. }
  37845. },
  37846. },
  37847. [
  37848. {
  37849. name: "Normal",
  37850. height: math.unit(5 + 5/12, "feet"),
  37851. default: true
  37852. },
  37853. ]
  37854. ))
  37855. characterMakers.push(() => makeCharacter(
  37856. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37857. {
  37858. front: {
  37859. height: math.unit(8 + 6/12, "feet"),
  37860. name: "Front",
  37861. image: {
  37862. source: "./media/characters/essynkardi/front.svg",
  37863. extra: 1914/1846,
  37864. bottom: 22/1936
  37865. }
  37866. },
  37867. },
  37868. [
  37869. {
  37870. name: "Normal",
  37871. height: math.unit(8 + 6/12, "feet"),
  37872. default: true
  37873. },
  37874. ]
  37875. ))
  37876. characterMakers.push(() => makeCharacter(
  37877. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37878. {
  37879. front: {
  37880. height: math.unit(6 + 6/12, "feet"),
  37881. weight: math.unit(7, "lb"),
  37882. name: "Front",
  37883. image: {
  37884. source: "./media/characters/icky/front.svg",
  37885. extra: 813/782,
  37886. bottom: 66/879
  37887. }
  37888. },
  37889. back: {
  37890. height: math.unit(6 + 6/12, "feet"),
  37891. weight: math.unit(7, "lb"),
  37892. name: "Back",
  37893. image: {
  37894. source: "./media/characters/icky/back.svg",
  37895. extra: 754/735,
  37896. bottom: 56/810
  37897. }
  37898. },
  37899. },
  37900. [
  37901. {
  37902. name: "Normal",
  37903. height: math.unit(6 + 6/12, "feet"),
  37904. default: true
  37905. },
  37906. ]
  37907. ))
  37908. characterMakers.push(() => makeCharacter(
  37909. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37910. {
  37911. front: {
  37912. height: math.unit(15, "feet"),
  37913. name: "Front",
  37914. image: {
  37915. source: "./media/characters/rojas/front.svg",
  37916. extra: 1462/1408,
  37917. bottom: 95/1557
  37918. }
  37919. },
  37920. back: {
  37921. height: math.unit(15, "feet"),
  37922. name: "Back",
  37923. image: {
  37924. source: "./media/characters/rojas/back.svg",
  37925. extra: 1023/954,
  37926. bottom: 28/1051
  37927. }
  37928. },
  37929. },
  37930. [
  37931. {
  37932. name: "Normal",
  37933. height: math.unit(15, "feet"),
  37934. default: true
  37935. },
  37936. ]
  37937. ))
  37938. characterMakers.push(() => makeCharacter(
  37939. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37940. {
  37941. frontHuman: {
  37942. height: math.unit(5 + 7/12, "feet"),
  37943. name: "Front (Human)",
  37944. image: {
  37945. source: "./media/characters/alek-dryagan/front-human.svg",
  37946. extra: 1687/1667,
  37947. bottom: 69/1756
  37948. }
  37949. },
  37950. backHuman: {
  37951. height: math.unit(5 + 7/12, "feet"),
  37952. name: "Back (Human)",
  37953. image: {
  37954. source: "./media/characters/alek-dryagan/back-human.svg",
  37955. extra: 1670/1649,
  37956. bottom: 65/1735
  37957. }
  37958. },
  37959. frontDemi: {
  37960. height: math.unit(65, "feet"),
  37961. name: "Front (Demi)",
  37962. image: {
  37963. source: "./media/characters/alek-dryagan/front-demi.svg",
  37964. extra: 1669/1642,
  37965. bottom: 49/1718
  37966. }
  37967. },
  37968. backDemi: {
  37969. height: math.unit(65, "feet"),
  37970. name: "Back (Demi)",
  37971. image: {
  37972. source: "./media/characters/alek-dryagan/back-demi.svg",
  37973. extra: 1658/1637,
  37974. bottom: 40/1698
  37975. }
  37976. },
  37977. mawHuman: {
  37978. height: math.unit(0.3, "feet"),
  37979. name: "Maw (Human)",
  37980. image: {
  37981. source: "./media/characters/alek-dryagan/maw-human.svg"
  37982. }
  37983. },
  37984. mawDemi: {
  37985. height: math.unit(3.8, "feet"),
  37986. name: "Maw (Demi)",
  37987. image: {
  37988. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(5 + 7/12, "feet"),
  37996. default: true
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38002. {
  38003. frontHuman: {
  38004. height: math.unit(5 + 2/12, "feet"),
  38005. name: "Front (Human)",
  38006. image: {
  38007. source: "./media/characters/gen/front-human.svg",
  38008. extra: 1627/1538,
  38009. bottom: 71/1698
  38010. }
  38011. },
  38012. backHuman: {
  38013. height: math.unit(5 + 2/12, "feet"),
  38014. name: "Back (Human)",
  38015. image: {
  38016. source: "./media/characters/gen/back-human.svg",
  38017. extra: 1638/1548,
  38018. bottom: 69/1707
  38019. }
  38020. },
  38021. frontDemi: {
  38022. height: math.unit(5 + 2/12, "feet"),
  38023. name: "Front (Demi)",
  38024. image: {
  38025. source: "./media/characters/gen/front-demi.svg",
  38026. extra: 1627/1538,
  38027. bottom: 71/1698
  38028. }
  38029. },
  38030. backDemi: {
  38031. height: math.unit(5 + 2/12, "feet"),
  38032. name: "Back (Demi)",
  38033. image: {
  38034. source: "./media/characters/gen/back-demi.svg",
  38035. extra: 1638/1548,
  38036. bottom: 69/1707
  38037. }
  38038. },
  38039. },
  38040. [
  38041. {
  38042. name: "Normal",
  38043. height: math.unit(5 + 2/12, "feet"),
  38044. default: true
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38050. {
  38051. frontImp: {
  38052. height: math.unit(1 + 11/12, "feet"),
  38053. name: "Front (Imp)",
  38054. image: {
  38055. source: "./media/characters/max-kobold/front-imp.svg",
  38056. extra: 1238/1134,
  38057. bottom: 81/1319
  38058. }
  38059. },
  38060. backImp: {
  38061. height: math.unit(1 + 11/12, "feet"),
  38062. name: "Back (Imp)",
  38063. image: {
  38064. source: "./media/characters/max-kobold/back-imp.svg",
  38065. extra: 1334/1175,
  38066. bottom: 34/1368
  38067. }
  38068. },
  38069. frontDemi: {
  38070. height: math.unit(5 + 9/12, "feet"),
  38071. name: "Front (Demi)",
  38072. image: {
  38073. source: "./media/characters/max-kobold/front-demi.svg",
  38074. extra: 1715/1685,
  38075. bottom: 54/1769
  38076. }
  38077. },
  38078. backDemi: {
  38079. height: math.unit(5 + 9/12, "feet"),
  38080. name: "Back (Demi)",
  38081. image: {
  38082. source: "./media/characters/max-kobold/back-demi.svg",
  38083. extra: 1752/1729,
  38084. bottom: 41/1793
  38085. }
  38086. },
  38087. handImp: {
  38088. height: math.unit(0.45, "feet"),
  38089. name: "Hand (Imp)",
  38090. image: {
  38091. source: "./media/characters/max-kobold/hand.svg"
  38092. }
  38093. },
  38094. pawImp: {
  38095. height: math.unit(0.46, "feet"),
  38096. name: "Paw (Imp)",
  38097. image: {
  38098. source: "./media/characters/max-kobold/paw.svg"
  38099. }
  38100. },
  38101. handDemi: {
  38102. height: math.unit(0.80, "feet"),
  38103. name: "Hand (Demi)",
  38104. image: {
  38105. source: "./media/characters/max-kobold/hand.svg"
  38106. }
  38107. },
  38108. pawDemi: {
  38109. height: math.unit(1.1, "feet"),
  38110. name: "Paw (Demi)",
  38111. image: {
  38112. source: "./media/characters/max-kobold/paw.svg"
  38113. }
  38114. },
  38115. headImp: {
  38116. height: math.unit(1.33, "feet"),
  38117. name: "Head (Imp)",
  38118. image: {
  38119. source: "./media/characters/max-kobold/head-imp.svg"
  38120. }
  38121. },
  38122. mawImp: {
  38123. height: math.unit(0.75, "feet"),
  38124. name: "Maw (Imp)",
  38125. image: {
  38126. source: "./media/characters/max-kobold/maw-imp.svg"
  38127. }
  38128. },
  38129. mawDemi: {
  38130. height: math.unit(0.42, "feet"),
  38131. name: "Maw (Demi)",
  38132. image: {
  38133. source: "./media/characters/max-kobold/maw-demi.svg"
  38134. }
  38135. },
  38136. },
  38137. [
  38138. {
  38139. name: "Normal",
  38140. height: math.unit(1 + 11/12, "feet"),
  38141. default: true
  38142. },
  38143. ]
  38144. ))
  38145. characterMakers.push(() => makeCharacter(
  38146. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38147. {
  38148. front: {
  38149. height: math.unit(7 + 5/12, "feet"),
  38150. name: "Front",
  38151. image: {
  38152. source: "./media/characters/carbon/front.svg",
  38153. extra: 1754/1689,
  38154. bottom: 65/1819
  38155. }
  38156. },
  38157. back: {
  38158. height: math.unit(7 + 5/12, "feet"),
  38159. name: "Back",
  38160. image: {
  38161. source: "./media/characters/carbon/back.svg",
  38162. extra: 1762/1695,
  38163. bottom: 24/1786
  38164. }
  38165. },
  38166. frontGigantamax: {
  38167. height: math.unit(150, "feet"),
  38168. name: "Front (Gigantamax)",
  38169. image: {
  38170. source: "./media/characters/carbon/front-gigantamax.svg",
  38171. extra: 1826/1669,
  38172. bottom: 59/1885
  38173. }
  38174. },
  38175. backGigantamax: {
  38176. height: math.unit(150, "feet"),
  38177. name: "Back (Gigantamax)",
  38178. image: {
  38179. source: "./media/characters/carbon/back-gigantamax.svg",
  38180. extra: 1796/1653,
  38181. bottom: 53/1849
  38182. }
  38183. },
  38184. maw: {
  38185. height: math.unit(0.48, "feet"),
  38186. name: "Maw",
  38187. image: {
  38188. source: "./media/characters/carbon/maw.svg"
  38189. }
  38190. },
  38191. mawGigantamax: {
  38192. height: math.unit(7.5, "feet"),
  38193. name: "Maw (Gigantamax)",
  38194. image: {
  38195. source: "./media/characters/carbon/maw-gigantamax.svg"
  38196. }
  38197. },
  38198. },
  38199. [
  38200. {
  38201. name: "Normal",
  38202. height: math.unit(7 + 5/12, "feet"),
  38203. default: true
  38204. },
  38205. ]
  38206. ))
  38207. characterMakers.push(() => makeCharacter(
  38208. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38209. {
  38210. front: {
  38211. height: math.unit(6, "feet"),
  38212. name: "Front",
  38213. image: {
  38214. source: "./media/characters/maverick/front.svg",
  38215. extra: 1672/1661,
  38216. bottom: 85/1757
  38217. }
  38218. },
  38219. back: {
  38220. height: math.unit(6, "feet"),
  38221. name: "Back",
  38222. image: {
  38223. source: "./media/characters/maverick/back.svg",
  38224. extra: 1642/1631,
  38225. bottom: 38/1680
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(6, "feet"),
  38233. default: true
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(15, "feet"),
  38242. weight: math.unit(615, "lb"),
  38243. name: "Front",
  38244. image: {
  38245. source: "./media/characters/grockle/front.svg",
  38246. extra: 1535/1427,
  38247. bottom: 56/1591
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(15, "feet"),
  38255. default: true
  38256. },
  38257. {
  38258. name: "Large",
  38259. height: math.unit(150, "feet")
  38260. },
  38261. {
  38262. name: "Macro",
  38263. height: math.unit(1876, "feet")
  38264. },
  38265. {
  38266. name: "Mega Macro",
  38267. height: math.unit(121940, "feet")
  38268. },
  38269. {
  38270. name: "Giga Macro",
  38271. height: math.unit(750, "km")
  38272. },
  38273. {
  38274. name: "Tera Macro",
  38275. height: math.unit(750000, "km")
  38276. },
  38277. {
  38278. name: "Galactic",
  38279. height: math.unit(1.4e5, "km")
  38280. },
  38281. {
  38282. name: "Godlike",
  38283. height: math.unit(9.8e280, "galaxies")
  38284. },
  38285. ]
  38286. ))
  38287. characterMakers.push(() => makeCharacter(
  38288. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38289. {
  38290. front: {
  38291. height: math.unit(11, "meters"),
  38292. weight: math.unit(20, "tonnes"),
  38293. name: "Front",
  38294. image: {
  38295. source: "./media/characters/alistair/front.svg",
  38296. extra: 1265/1009,
  38297. bottom: 93/1358
  38298. }
  38299. },
  38300. },
  38301. [
  38302. {
  38303. name: "Normal",
  38304. height: math.unit(11, "meters"),
  38305. default: true
  38306. },
  38307. ]
  38308. ))
  38309. characterMakers.push(() => makeCharacter(
  38310. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38311. {
  38312. front: {
  38313. height: math.unit(5 + 8/12, "feet"),
  38314. name: "Front",
  38315. image: {
  38316. source: "./media/characters/haruka/front.svg",
  38317. extra: 2012/1952,
  38318. bottom: 0/2012
  38319. }
  38320. },
  38321. },
  38322. [
  38323. {
  38324. name: "Normal",
  38325. height: math.unit(5 + 8/12, "feet"),
  38326. default: true
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38332. {
  38333. back: {
  38334. height: math.unit(9, "feet"),
  38335. name: "Back",
  38336. image: {
  38337. source: "./media/characters/vivian-sylveon/back.svg",
  38338. extra: 1853/1714,
  38339. bottom: 0/1853
  38340. }
  38341. },
  38342. },
  38343. [
  38344. {
  38345. name: "Normal",
  38346. height: math.unit(9, "feet"),
  38347. default: true
  38348. },
  38349. {
  38350. name: "Macro",
  38351. height: math.unit(500, "feet")
  38352. },
  38353. {
  38354. name: "Megamacro",
  38355. height: math.unit(600, "miles")
  38356. },
  38357. {
  38358. name: "Gigamacro",
  38359. height: math.unit(30000, "miles")
  38360. },
  38361. ]
  38362. ))
  38363. characterMakers.push(() => makeCharacter(
  38364. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38365. {
  38366. anthro: {
  38367. height: math.unit(5 + 10/12, "feet"),
  38368. weight: math.unit(100, "lb"),
  38369. name: "Anthro",
  38370. image: {
  38371. source: "./media/characters/daiki/anthro.svg",
  38372. extra: 1115/1027,
  38373. bottom: 69/1184
  38374. }
  38375. },
  38376. feral: {
  38377. height: math.unit(200, "feet"),
  38378. name: "Feral",
  38379. image: {
  38380. source: "./media/characters/daiki/feral.svg",
  38381. extra: 1256/313,
  38382. bottom: 39/1295
  38383. }
  38384. },
  38385. feralHead: {
  38386. height: math.unit(171, "feet"),
  38387. name: "Feral Head",
  38388. image: {
  38389. source: "./media/characters/daiki/feral-head.svg"
  38390. }
  38391. },
  38392. manaDragon: {
  38393. height: math.unit(170, "meters"),
  38394. name: "Mana-dragon",
  38395. image: {
  38396. source: "./media/characters/daiki/mana-dragon.svg",
  38397. extra: 763/420,
  38398. bottom: 97/860
  38399. }
  38400. },
  38401. },
  38402. [
  38403. {
  38404. name: "Normal",
  38405. height: math.unit(5 + 10/12, "feet"),
  38406. default: true
  38407. },
  38408. ]
  38409. ))
  38410. characterMakers.push(() => makeCharacter(
  38411. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38412. {
  38413. fullyEquippedFront: {
  38414. height: math.unit(3 + 1/12, "feet"),
  38415. weight: math.unit(24, "lb"),
  38416. name: "Fully Equipped (Front)",
  38417. image: {
  38418. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38419. extra: 687/605,
  38420. bottom: 18/705
  38421. }
  38422. },
  38423. fullyEquippedBack: {
  38424. height: math.unit(3 + 1/12, "feet"),
  38425. weight: math.unit(24, "lb"),
  38426. name: "Fully Equipped (Back)",
  38427. image: {
  38428. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38429. extra: 689/590,
  38430. bottom: 18/707
  38431. }
  38432. },
  38433. dailyWear: {
  38434. height: math.unit(3 + 1/12, "feet"),
  38435. weight: math.unit(24, "lb"),
  38436. name: "Daily Wear",
  38437. image: {
  38438. source: "./media/characters/tea-spot/daily-wear.svg",
  38439. extra: 701/620,
  38440. bottom: 21/722
  38441. }
  38442. },
  38443. maidWork: {
  38444. height: math.unit(3 + 1/12, "feet"),
  38445. weight: math.unit(24, "lb"),
  38446. name: "Maid Work",
  38447. image: {
  38448. source: "./media/characters/tea-spot/maid-work.svg",
  38449. extra: 693/609,
  38450. bottom: 15/708
  38451. }
  38452. },
  38453. },
  38454. [
  38455. {
  38456. name: "Normal",
  38457. height: math.unit(3 + 1/12, "feet"),
  38458. default: true
  38459. },
  38460. ]
  38461. ))
  38462. characterMakers.push(() => makeCharacter(
  38463. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38464. {
  38465. front: {
  38466. height: math.unit(175, "cm"),
  38467. weight: math.unit(75, "kg"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/chee/front.svg",
  38471. extra: 1796/1740,
  38472. bottom: 40/1836
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Micro-Micro",
  38479. height: math.unit(1, "nm")
  38480. },
  38481. {
  38482. name: "Micro-erst",
  38483. height: math.unit(1, "micrometer")
  38484. },
  38485. {
  38486. name: "Micro-er",
  38487. height: math.unit(1, "cm")
  38488. },
  38489. {
  38490. name: "Normal",
  38491. height: math.unit(175, "cm"),
  38492. default: true
  38493. },
  38494. {
  38495. name: "Macro",
  38496. height: math.unit(100, "m")
  38497. },
  38498. {
  38499. name: "Macro-er",
  38500. height: math.unit(1, "km")
  38501. },
  38502. {
  38503. name: "Macro-erst",
  38504. height: math.unit(10, "km")
  38505. },
  38506. {
  38507. name: "Macro-Macro",
  38508. height: math.unit(100, "km")
  38509. },
  38510. ]
  38511. ))
  38512. characterMakers.push(() => makeCharacter(
  38513. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38514. {
  38515. front: {
  38516. height: math.unit(11 + 9/12, "feet"),
  38517. weight: math.unit(935, "lb"),
  38518. name: "Front",
  38519. image: {
  38520. source: "./media/characters/kingsley/front.svg",
  38521. extra: 1803/1674,
  38522. bottom: 127/1930
  38523. }
  38524. },
  38525. frontNude: {
  38526. height: math.unit(11 + 9/12, "feet"),
  38527. weight: math.unit(935, "lb"),
  38528. name: "Front (Nude)",
  38529. image: {
  38530. source: "./media/characters/kingsley/front-nude.svg",
  38531. extra: 1803/1674,
  38532. bottom: 127/1930
  38533. }
  38534. },
  38535. },
  38536. [
  38537. {
  38538. name: "Normal",
  38539. height: math.unit(11 + 9/12, "feet"),
  38540. default: true
  38541. },
  38542. ]
  38543. ))
  38544. characterMakers.push(() => makeCharacter(
  38545. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38546. {
  38547. side: {
  38548. height: math.unit(9, "feet"),
  38549. name: "Side",
  38550. image: {
  38551. source: "./media/characters/rymel/side.svg",
  38552. extra: 792/469,
  38553. bottom: 121/913
  38554. }
  38555. },
  38556. maw: {
  38557. height: math.unit(2.4, "meters"),
  38558. name: "Maw",
  38559. image: {
  38560. source: "./media/characters/rymel/maw.svg"
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "House Drake",
  38567. height: math.unit(2, "feet")
  38568. },
  38569. {
  38570. name: "Reduced",
  38571. height: math.unit(4.5, "feet")
  38572. },
  38573. {
  38574. name: "Normal",
  38575. height: math.unit(9, "feet"),
  38576. default: true
  38577. },
  38578. ]
  38579. ))
  38580. characterMakers.push(() => makeCharacter(
  38581. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38582. {
  38583. front: {
  38584. height: math.unit(1.74, "meters"),
  38585. weight: math.unit(55, "kg"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/rubus/front.svg",
  38589. extra: 1894/1742,
  38590. bottom: 44/1938
  38591. }
  38592. },
  38593. },
  38594. [
  38595. {
  38596. name: "Normal",
  38597. height: math.unit(1.74, "meters"),
  38598. default: true
  38599. },
  38600. ]
  38601. ))
  38602. characterMakers.push(() => makeCharacter(
  38603. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38604. {
  38605. front: {
  38606. height: math.unit(5 + 2/12, "feet"),
  38607. weight: math.unit(112, "lb"),
  38608. name: "Front",
  38609. image: {
  38610. source: "./media/characters/cassie-kingston/front.svg",
  38611. extra: 1438/1390,
  38612. bottom: 47/1485
  38613. }
  38614. },
  38615. },
  38616. [
  38617. {
  38618. name: "Normal",
  38619. height: math.unit(5 + 2/12, "feet"),
  38620. default: true
  38621. },
  38622. {
  38623. name: "Macro",
  38624. height: math.unit(128, "feet")
  38625. },
  38626. {
  38627. name: "Megamacro",
  38628. height: math.unit(2.56, "miles")
  38629. },
  38630. ]
  38631. ))
  38632. characterMakers.push(() => makeCharacter(
  38633. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38634. {
  38635. front: {
  38636. height: math.unit(7, "feet"),
  38637. name: "Front",
  38638. image: {
  38639. source: "./media/characters/fox/front.svg",
  38640. extra: 1798/1703,
  38641. bottom: 55/1853
  38642. }
  38643. },
  38644. back: {
  38645. height: math.unit(7, "feet"),
  38646. name: "Back",
  38647. image: {
  38648. source: "./media/characters/fox/back.svg",
  38649. extra: 1748/1649,
  38650. bottom: 32/1780
  38651. }
  38652. },
  38653. head: {
  38654. height: math.unit(1.95, "feet"),
  38655. name: "Head",
  38656. image: {
  38657. source: "./media/characters/fox/head.svg"
  38658. }
  38659. },
  38660. dick: {
  38661. height: math.unit(1.33, "feet"),
  38662. name: "Dick",
  38663. image: {
  38664. source: "./media/characters/fox/dick.svg"
  38665. }
  38666. },
  38667. foot: {
  38668. height: math.unit(1, "feet"),
  38669. name: "Foot",
  38670. image: {
  38671. source: "./media/characters/fox/foot.svg"
  38672. }
  38673. },
  38674. paw: {
  38675. height: math.unit(0.92, "feet"),
  38676. name: "Paw",
  38677. image: {
  38678. source: "./media/characters/fox/paw.svg"
  38679. }
  38680. },
  38681. },
  38682. [
  38683. {
  38684. name: "Small",
  38685. height: math.unit(3, "inches")
  38686. },
  38687. {
  38688. name: "\"Realistic\"",
  38689. height: math.unit(7, "feet")
  38690. },
  38691. {
  38692. name: "Normal",
  38693. height: math.unit(150, "feet"),
  38694. default: true
  38695. },
  38696. {
  38697. name: "BIG",
  38698. height: math.unit(1200, "feet")
  38699. },
  38700. {
  38701. name: "👀",
  38702. height: math.unit(5, "miles")
  38703. },
  38704. {
  38705. name: "👀👀👀",
  38706. height: math.unit(64, "miles")
  38707. },
  38708. ]
  38709. ))
  38710. characterMakers.push(() => makeCharacter(
  38711. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38712. {
  38713. front: {
  38714. height: math.unit(625, "feet"),
  38715. name: "Front",
  38716. image: {
  38717. source: "./media/characters/asonja-rossa/front.svg",
  38718. extra: 1833/1686,
  38719. bottom: 24/1857
  38720. }
  38721. },
  38722. back: {
  38723. height: math.unit(625, "feet"),
  38724. name: "Back",
  38725. image: {
  38726. source: "./media/characters/asonja-rossa/back.svg",
  38727. extra: 1852/1753,
  38728. bottom: 26/1878
  38729. }
  38730. },
  38731. },
  38732. [
  38733. {
  38734. name: "Macro",
  38735. height: math.unit(625, "feet"),
  38736. default: true
  38737. },
  38738. ]
  38739. ))
  38740. characterMakers.push(() => makeCharacter(
  38741. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38742. {
  38743. side: {
  38744. height: math.unit(8, "feet"),
  38745. name: "Side",
  38746. image: {
  38747. source: "./media/characters/rezukii/side.svg",
  38748. extra: 979/542,
  38749. bottom: 87/1066
  38750. }
  38751. },
  38752. sitting: {
  38753. height: math.unit(14.6, "feet"),
  38754. name: "Sitting",
  38755. image: {
  38756. source: "./media/characters/rezukii/sitting.svg",
  38757. extra: 1023/813,
  38758. bottom: 45/1068
  38759. }
  38760. },
  38761. },
  38762. [
  38763. {
  38764. name: "Tiny",
  38765. height: math.unit(2, "feet")
  38766. },
  38767. {
  38768. name: "Smol",
  38769. height: math.unit(4, "feet")
  38770. },
  38771. {
  38772. name: "Normal",
  38773. height: math.unit(8, "feet"),
  38774. default: true
  38775. },
  38776. {
  38777. name: "Big",
  38778. height: math.unit(12, "feet")
  38779. },
  38780. {
  38781. name: "Macro",
  38782. height: math.unit(30, "feet")
  38783. },
  38784. ]
  38785. ))
  38786. characterMakers.push(() => makeCharacter(
  38787. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38788. {
  38789. front: {
  38790. height: math.unit(14, "feet"),
  38791. weight: math.unit(9.5, "tonnes"),
  38792. name: "Front",
  38793. image: {
  38794. source: "./media/characters/dawnheart/front.svg",
  38795. extra: 2792/2675,
  38796. bottom: 64/2856
  38797. }
  38798. },
  38799. },
  38800. [
  38801. {
  38802. name: "Normal",
  38803. height: math.unit(14, "feet"),
  38804. default: true
  38805. },
  38806. ]
  38807. ))
  38808. characterMakers.push(() => makeCharacter(
  38809. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38810. {
  38811. front: {
  38812. height: math.unit(1.7, "m"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/gladi/front.svg",
  38816. extra: 1460/1362,
  38817. bottom: 19/1479
  38818. }
  38819. },
  38820. back: {
  38821. height: math.unit(1.7, "m"),
  38822. name: "Back",
  38823. image: {
  38824. source: "./media/characters/gladi/back.svg",
  38825. extra: 1459/1357,
  38826. bottom: 12/1471
  38827. }
  38828. },
  38829. feral: {
  38830. height: math.unit(2.05, "m"),
  38831. name: "Feral",
  38832. image: {
  38833. source: "./media/characters/gladi/feral.svg",
  38834. extra: 821/557,
  38835. bottom: 91/912
  38836. }
  38837. },
  38838. },
  38839. [
  38840. {
  38841. name: "Shortest",
  38842. height: math.unit(70, "cm")
  38843. },
  38844. {
  38845. name: "Normal",
  38846. height: math.unit(1.7, "m")
  38847. },
  38848. {
  38849. name: "Macro",
  38850. height: math.unit(10, "m"),
  38851. default: true
  38852. },
  38853. {
  38854. name: "Tallest",
  38855. height: math.unit(200, "m")
  38856. },
  38857. ]
  38858. ))
  38859. characterMakers.push(() => makeCharacter(
  38860. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38861. {
  38862. front: {
  38863. height: math.unit(5 + 7/12, "feet"),
  38864. weight: math.unit(2, "tons"),
  38865. name: "Front",
  38866. image: {
  38867. source: "./media/characters/erdno/front.svg",
  38868. extra: 1234/1129,
  38869. bottom: 35/1269
  38870. }
  38871. },
  38872. angled: {
  38873. height: math.unit(5 + 7/12, "feet"),
  38874. weight: math.unit(2, "tons"),
  38875. name: "Angled",
  38876. image: {
  38877. source: "./media/characters/erdno/angled.svg",
  38878. extra: 1185/1139,
  38879. bottom: 36/1221
  38880. }
  38881. },
  38882. side: {
  38883. height: math.unit(5 + 7/12, "feet"),
  38884. weight: math.unit(2, "tons"),
  38885. name: "Side",
  38886. image: {
  38887. source: "./media/characters/erdno/side.svg",
  38888. extra: 1191/1144,
  38889. bottom: 40/1231
  38890. }
  38891. },
  38892. back: {
  38893. height: math.unit(5 + 7/12, "feet"),
  38894. weight: math.unit(2, "tons"),
  38895. name: "Back",
  38896. image: {
  38897. source: "./media/characters/erdno/back.svg",
  38898. extra: 1202/1146,
  38899. bottom: 17/1219
  38900. }
  38901. },
  38902. frontNsfw: {
  38903. height: math.unit(5 + 7/12, "feet"),
  38904. weight: math.unit(2, "tons"),
  38905. name: "Front (NSFW)",
  38906. image: {
  38907. source: "./media/characters/erdno/front-nsfw.svg",
  38908. extra: 1234/1129,
  38909. bottom: 35/1269
  38910. }
  38911. },
  38912. angledNsfw: {
  38913. height: math.unit(5 + 7/12, "feet"),
  38914. weight: math.unit(2, "tons"),
  38915. name: "Angled (NSFW)",
  38916. image: {
  38917. source: "./media/characters/erdno/angled-nsfw.svg",
  38918. extra: 1185/1139,
  38919. bottom: 36/1221
  38920. }
  38921. },
  38922. sideNsfw: {
  38923. height: math.unit(5 + 7/12, "feet"),
  38924. weight: math.unit(2, "tons"),
  38925. name: "Side (NSFW)",
  38926. image: {
  38927. source: "./media/characters/erdno/side-nsfw.svg",
  38928. extra: 1191/1144,
  38929. bottom: 40/1231
  38930. }
  38931. },
  38932. backNsfw: {
  38933. height: math.unit(5 + 7/12, "feet"),
  38934. weight: math.unit(2, "tons"),
  38935. name: "Back (NSFW)",
  38936. image: {
  38937. source: "./media/characters/erdno/back-nsfw.svg",
  38938. extra: 1202/1146,
  38939. bottom: 17/1219
  38940. }
  38941. },
  38942. frontHyper: {
  38943. height: math.unit(5 + 7/12, "feet"),
  38944. weight: math.unit(2, "tons"),
  38945. name: "Front (Hyper)",
  38946. image: {
  38947. source: "./media/characters/erdno/front-hyper.svg",
  38948. extra: 1298/1136,
  38949. bottom: 35/1333
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Normal",
  38956. height: math.unit(5 + 7/12, "feet"),
  38957. default: true
  38958. },
  38959. {
  38960. name: "Big",
  38961. height: math.unit(5.7, "meters")
  38962. },
  38963. {
  38964. name: "Macro",
  38965. height: math.unit(5.7, "kilometers")
  38966. },
  38967. {
  38968. name: "Megamacro",
  38969. height: math.unit(5.7, "earths")
  38970. },
  38971. ]
  38972. ))
  38973. characterMakers.push(() => makeCharacter(
  38974. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38975. {
  38976. front: {
  38977. height: math.unit(5 + 10/12, "feet"),
  38978. weight: math.unit(150, "lb"),
  38979. name: "Front",
  38980. image: {
  38981. source: "./media/characters/jamie/front.svg",
  38982. extra: 1908/1768,
  38983. bottom: 19/1927
  38984. }
  38985. },
  38986. },
  38987. [
  38988. {
  38989. name: "Minimum",
  38990. height: math.unit(2, "cm")
  38991. },
  38992. {
  38993. name: "Micro",
  38994. height: math.unit(3, "inches")
  38995. },
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(5 + 10/12, "feet"),
  38999. default: true
  39000. },
  39001. {
  39002. name: "Macro",
  39003. height: math.unit(150, "feet")
  39004. },
  39005. {
  39006. name: "Megamacro",
  39007. height: math.unit(10000, "m")
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39013. {
  39014. front: {
  39015. height: math.unit(2, "meters"),
  39016. weight: math.unit(100, "kg"),
  39017. name: "Front",
  39018. image: {
  39019. source: "./media/characters/shiron/front.svg",
  39020. extra: 2103/1985,
  39021. bottom: 98/2201
  39022. }
  39023. },
  39024. back: {
  39025. height: math.unit(2, "meters"),
  39026. weight: math.unit(100, "kg"),
  39027. name: "Back",
  39028. image: {
  39029. source: "./media/characters/shiron/back.svg",
  39030. extra: 2110/2015,
  39031. bottom: 89/2199
  39032. }
  39033. },
  39034. hand: {
  39035. height: math.unit(0.96, "feet"),
  39036. name: "Hand",
  39037. image: {
  39038. source: "./media/characters/shiron/hand.svg"
  39039. }
  39040. },
  39041. foot: {
  39042. height: math.unit(1.464, "feet"),
  39043. name: "Foot",
  39044. image: {
  39045. source: "./media/characters/shiron/foot.svg"
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(2, "meters")
  39053. },
  39054. {
  39055. name: "Macro",
  39056. height: math.unit(500, "meters"),
  39057. default: true
  39058. },
  39059. {
  39060. name: "Megamacro",
  39061. height: math.unit(20, "km")
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(6, "feet"),
  39070. name: "Front",
  39071. image: {
  39072. source: "./media/characters/sam/front.svg",
  39073. extra: 849/826,
  39074. bottom: 19/868
  39075. }
  39076. },
  39077. },
  39078. [
  39079. {
  39080. name: "Normal",
  39081. height: math.unit(6, "feet"),
  39082. default: true
  39083. },
  39084. ]
  39085. ))
  39086. characterMakers.push(() => makeCharacter(
  39087. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39088. {
  39089. front: {
  39090. height: math.unit(8 + 4/12, "feet"),
  39091. weight: math.unit(122, "kg"),
  39092. name: "Front",
  39093. image: {
  39094. source: "./media/characters/namori-kurogawa/front.svg",
  39095. extra: 1894/1576,
  39096. bottom: 34/1928
  39097. }
  39098. },
  39099. },
  39100. [
  39101. {
  39102. name: "Normal",
  39103. height: math.unit(8 + 4/12, "feet"),
  39104. default: true
  39105. },
  39106. ]
  39107. ))
  39108. characterMakers.push(() => makeCharacter(
  39109. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39110. {
  39111. front: {
  39112. height: math.unit(9, "feet"),
  39113. weight: math.unit(621, "lb"),
  39114. name: "Front",
  39115. image: {
  39116. source: "./media/characters/unmru/front.svg",
  39117. extra: 1853/1747,
  39118. bottom: 73/1926
  39119. }
  39120. },
  39121. side: {
  39122. height: math.unit(9, "feet"),
  39123. weight: math.unit(621, "lb"),
  39124. name: "Side",
  39125. image: {
  39126. source: "./media/characters/unmru/side.svg",
  39127. extra: 1781/1671,
  39128. bottom: 127/1908
  39129. }
  39130. },
  39131. back: {
  39132. height: math.unit(9, "feet"),
  39133. weight: math.unit(621, "lb"),
  39134. name: "Back",
  39135. image: {
  39136. source: "./media/characters/unmru/back.svg",
  39137. extra: 1894/1765,
  39138. bottom: 75/1969
  39139. }
  39140. },
  39141. dick: {
  39142. height: math.unit(3, "feet"),
  39143. weight: math.unit(35, "lb"),
  39144. name: "Dick",
  39145. image: {
  39146. source: "./media/characters/unmru/dick.svg"
  39147. }
  39148. },
  39149. },
  39150. [
  39151. {
  39152. name: "Normal",
  39153. height: math.unit(9, "feet")
  39154. },
  39155. {
  39156. name: "Natural",
  39157. height: math.unit(27, "feet"),
  39158. default: true
  39159. },
  39160. {
  39161. name: "Giant",
  39162. height: math.unit(90, "feet")
  39163. },
  39164. {
  39165. name: "Kaiju",
  39166. height: math.unit(270, "feet")
  39167. },
  39168. {
  39169. name: "Macro",
  39170. height: math.unit(900, "feet")
  39171. },
  39172. {
  39173. name: "Macro+",
  39174. height: math.unit(2700, "feet")
  39175. },
  39176. {
  39177. name: "Megamacro",
  39178. height: math.unit(9000, "feet")
  39179. },
  39180. {
  39181. name: "City-Crushing",
  39182. height: math.unit(27000, "feet")
  39183. },
  39184. {
  39185. name: "Mountain-Mashing",
  39186. height: math.unit(90000, "feet")
  39187. },
  39188. {
  39189. name: "Earth-Eclipsing",
  39190. height: math.unit(2.7e8, "feet")
  39191. },
  39192. {
  39193. name: "Sol-Swallowing",
  39194. height: math.unit(9e10, "feet")
  39195. },
  39196. {
  39197. name: "Majoris-Munching",
  39198. height: math.unit(2.7e13, "feet")
  39199. },
  39200. ]
  39201. ))
  39202. characterMakers.push(() => makeCharacter(
  39203. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39204. {
  39205. front: {
  39206. height: math.unit(1, "inch"),
  39207. name: "Front",
  39208. image: {
  39209. source: "./media/characters/squeaks-mouse/front.svg",
  39210. extra: 352/308,
  39211. bottom: 25/377
  39212. }
  39213. },
  39214. },
  39215. [
  39216. {
  39217. name: "Micro",
  39218. height: math.unit(1, "inch"),
  39219. default: true
  39220. },
  39221. ]
  39222. ))
  39223. characterMakers.push(() => makeCharacter(
  39224. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39225. {
  39226. side: {
  39227. height: math.unit(35, "feet"),
  39228. name: "Side",
  39229. image: {
  39230. source: "./media/characters/sayko/side.svg",
  39231. extra: 1697/1021,
  39232. bottom: 82/1779
  39233. }
  39234. },
  39235. head: {
  39236. height: math.unit(16, "feet"),
  39237. name: "Head",
  39238. image: {
  39239. source: "./media/characters/sayko/head.svg"
  39240. }
  39241. },
  39242. forepaw: {
  39243. height: math.unit(7.85, "feet"),
  39244. name: "Forepaw",
  39245. image: {
  39246. source: "./media/characters/sayko/forepaw.svg"
  39247. }
  39248. },
  39249. hindpaw: {
  39250. height: math.unit(8.8, "feet"),
  39251. name: "Hindpaw",
  39252. image: {
  39253. source: "./media/characters/sayko/hindpaw.svg"
  39254. }
  39255. },
  39256. },
  39257. [
  39258. {
  39259. name: "Normal",
  39260. height: math.unit(35, "feet"),
  39261. default: true
  39262. },
  39263. {
  39264. name: "Colossus",
  39265. height: math.unit(100, "meters")
  39266. },
  39267. {
  39268. name: "\"Small\" Deity",
  39269. height: math.unit(1, "km")
  39270. },
  39271. {
  39272. name: "\"Large\" Deity",
  39273. height: math.unit(15, "km")
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39279. {
  39280. front: {
  39281. height: math.unit(6, "feet"),
  39282. weight: math.unit(250, "lb"),
  39283. name: "Front",
  39284. image: {
  39285. source: "./media/characters/mukiro/front.svg",
  39286. extra: 1368/1310,
  39287. bottom: 34/1402
  39288. }
  39289. },
  39290. },
  39291. [
  39292. {
  39293. name: "Normal",
  39294. height: math.unit(6, "feet"),
  39295. default: true
  39296. },
  39297. ]
  39298. ))
  39299. characterMakers.push(() => makeCharacter(
  39300. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39301. {
  39302. front: {
  39303. height: math.unit(12 + 4/12, "feet"),
  39304. name: "Front",
  39305. image: {
  39306. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39307. extra: 1346/1311,
  39308. bottom: 65/1411
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Base",
  39315. height: math.unit(12 + 4/12, "feet"),
  39316. default: true
  39317. },
  39318. {
  39319. name: "Macro",
  39320. height: math.unit(150, "feet")
  39321. },
  39322. {
  39323. name: "Mega",
  39324. height: math.unit(2, "miles")
  39325. },
  39326. {
  39327. name: "Demi God",
  39328. height: math.unit(4, "AU")
  39329. },
  39330. {
  39331. name: "God Size",
  39332. height: math.unit(1, "universe")
  39333. },
  39334. ]
  39335. ))
  39336. characterMakers.push(() => makeCharacter(
  39337. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39338. {
  39339. front: {
  39340. height: math.unit(3 + 3/12, "feet"),
  39341. weight: math.unit(88, "lb"),
  39342. name: "Front",
  39343. image: {
  39344. source: "./media/characters/trey/front.svg",
  39345. extra: 1815/1509,
  39346. bottom: 60/1875
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Normal",
  39353. height: math.unit(3 + 3/12, "feet"),
  39354. default: true
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39360. {
  39361. front: {
  39362. height: math.unit(4, "meters"),
  39363. name: "Front",
  39364. image: {
  39365. source: "./media/characters/adelonda/front.svg",
  39366. extra: 1077/982,
  39367. bottom: 39/1116
  39368. }
  39369. },
  39370. back: {
  39371. height: math.unit(4, "meters"),
  39372. name: "Back",
  39373. image: {
  39374. source: "./media/characters/adelonda/back.svg",
  39375. extra: 1105/1003,
  39376. bottom: 25/1130
  39377. }
  39378. },
  39379. feral: {
  39380. height: math.unit(40/1.5, "meters"),
  39381. name: "Feral",
  39382. image: {
  39383. source: "./media/characters/adelonda/feral.svg",
  39384. extra: 597/271,
  39385. bottom: 387/984
  39386. }
  39387. },
  39388. },
  39389. [
  39390. {
  39391. name: "Normal",
  39392. height: math.unit(4, "meters"),
  39393. default: true
  39394. },
  39395. ]
  39396. ))
  39397. characterMakers.push(() => makeCharacter(
  39398. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39399. {
  39400. front: {
  39401. height: math.unit(8 + 4/12, "feet"),
  39402. weight: math.unit(670, "lb"),
  39403. name: "Front",
  39404. image: {
  39405. source: "./media/characters/acadiel/front.svg",
  39406. extra: 1901/1595,
  39407. bottom: 142/2043
  39408. }
  39409. },
  39410. },
  39411. [
  39412. {
  39413. name: "Normal",
  39414. height: math.unit(8 + 4/12, "feet"),
  39415. default: true
  39416. },
  39417. {
  39418. name: "Macro",
  39419. height: math.unit(200, "feet")
  39420. },
  39421. ]
  39422. ))
  39423. characterMakers.push(() => makeCharacter(
  39424. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39425. {
  39426. front: {
  39427. height: math.unit(6 + 2/12, "feet"),
  39428. weight: math.unit(185, "lb"),
  39429. name: "Front",
  39430. image: {
  39431. source: "./media/characters/kayne-ein/front.svg",
  39432. extra: 1780/1560,
  39433. bottom: 81/1861
  39434. }
  39435. },
  39436. },
  39437. [
  39438. {
  39439. name: "Normal",
  39440. height: math.unit(6 + 2/12, "feet"),
  39441. default: true
  39442. },
  39443. {
  39444. name: "Transformation Stage",
  39445. height: math.unit(15, "feet")
  39446. },
  39447. {
  39448. name: "Macro",
  39449. height: math.unit(150, "feet")
  39450. },
  39451. {
  39452. name: "Earth's Shadow",
  39453. height: math.unit(6200, "miles")
  39454. },
  39455. {
  39456. name: "Universal Demon",
  39457. height: math.unit(28e9, "parsecs")
  39458. },
  39459. {
  39460. name: "Multiverse God",
  39461. height: math.unit(3, "multiverses")
  39462. },
  39463. ]
  39464. ))
  39465. characterMakers.push(() => makeCharacter(
  39466. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39467. {
  39468. front: {
  39469. height: math.unit(5 + 5/12, "feet"),
  39470. name: "Front",
  39471. image: {
  39472. source: "./media/characters/fawn/front.svg",
  39473. extra: 1873/1731,
  39474. bottom: 95/1968
  39475. }
  39476. },
  39477. back: {
  39478. height: math.unit(5 + 5/12, "feet"),
  39479. name: "Back",
  39480. image: {
  39481. source: "./media/characters/fawn/back.svg",
  39482. extra: 1813/1700,
  39483. bottom: 14/1827
  39484. }
  39485. },
  39486. hoof: {
  39487. height: math.unit(1.45, "feet"),
  39488. name: "Hoof",
  39489. image: {
  39490. source: "./media/characters/fawn/hoof.svg"
  39491. }
  39492. },
  39493. },
  39494. [
  39495. {
  39496. name: "Normal",
  39497. height: math.unit(5 + 5/12, "feet"),
  39498. default: true
  39499. },
  39500. ]
  39501. ))
  39502. characterMakers.push(() => makeCharacter(
  39503. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39504. {
  39505. front: {
  39506. height: math.unit(2 + 5/12, "feet"),
  39507. name: "Front",
  39508. image: {
  39509. source: "./media/characters/orion/front.svg",
  39510. extra: 1366/1304,
  39511. bottom: 43/1409
  39512. }
  39513. },
  39514. paw: {
  39515. height: math.unit(0.52, "feet"),
  39516. name: "Paw",
  39517. image: {
  39518. source: "./media/characters/orion/paw.svg"
  39519. }
  39520. },
  39521. },
  39522. [
  39523. {
  39524. name: "Normal",
  39525. height: math.unit(2 + 5/12, "feet"),
  39526. default: true
  39527. },
  39528. ]
  39529. ))
  39530. characterMakers.push(() => makeCharacter(
  39531. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39532. {
  39533. front: {
  39534. height: math.unit(5 + 10/12, "feet"),
  39535. name: "Front",
  39536. image: {
  39537. source: "./media/characters/vera/front.svg",
  39538. extra: 1680/1575,
  39539. bottom: 49/1729
  39540. }
  39541. },
  39542. back: {
  39543. height: math.unit(5 + 10/12, "feet"),
  39544. name: "Back",
  39545. image: {
  39546. source: "./media/characters/vera/back.svg",
  39547. extra: 1700/1588,
  39548. bottom: 18/1718
  39549. }
  39550. },
  39551. arcanine: {
  39552. height: math.unit(6 + 8/12, "feet"),
  39553. name: "Arcanine",
  39554. image: {
  39555. source: "./media/characters/vera/arcanine.svg",
  39556. extra: 1590/1511,
  39557. bottom: 71/1661
  39558. }
  39559. },
  39560. maw: {
  39561. height: math.unit(0.82, "feet"),
  39562. name: "Maw",
  39563. image: {
  39564. source: "./media/characters/vera/maw.svg"
  39565. }
  39566. },
  39567. mawArcanine: {
  39568. height: math.unit(0.97, "feet"),
  39569. name: "Maw (Arcanine)",
  39570. image: {
  39571. source: "./media/characters/vera/maw-arcanine.svg"
  39572. }
  39573. },
  39574. paw: {
  39575. height: math.unit(0.75, "feet"),
  39576. name: "Paw",
  39577. image: {
  39578. source: "./media/characters/vera/paw.svg"
  39579. }
  39580. },
  39581. pawprint: {
  39582. height: math.unit(0.52, "feet"),
  39583. name: "Pawprint",
  39584. image: {
  39585. source: "./media/characters/vera/pawprint.svg"
  39586. }
  39587. },
  39588. },
  39589. [
  39590. {
  39591. name: "Normal",
  39592. height: math.unit(5 + 10/12, "feet"),
  39593. default: true
  39594. },
  39595. {
  39596. name: "Macro",
  39597. height: math.unit(75, "feet")
  39598. },
  39599. ]
  39600. ))
  39601. characterMakers.push(() => makeCharacter(
  39602. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39603. {
  39604. front: {
  39605. height: math.unit(4, "feet"),
  39606. weight: math.unit(40, "lb"),
  39607. name: "Front",
  39608. image: {
  39609. source: "./media/characters/orvan-rabbit/front.svg",
  39610. extra: 1896/1642,
  39611. bottom: 29/1925
  39612. }
  39613. },
  39614. },
  39615. [
  39616. {
  39617. name: "Normal",
  39618. height: math.unit(4, "feet"),
  39619. default: true
  39620. },
  39621. ]
  39622. ))
  39623. characterMakers.push(() => makeCharacter(
  39624. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39625. {
  39626. front: {
  39627. height: math.unit(6, "feet"),
  39628. weight: math.unit(168, "lb"),
  39629. name: "Front",
  39630. image: {
  39631. source: "./media/characters/lisa/front.svg",
  39632. extra: 2065/1867,
  39633. bottom: 46/2111
  39634. }
  39635. },
  39636. back: {
  39637. height: math.unit(6, "feet"),
  39638. weight: math.unit(168, "lb"),
  39639. name: "Back",
  39640. image: {
  39641. source: "./media/characters/lisa/back.svg",
  39642. extra: 1982/1838,
  39643. bottom: 29/2011
  39644. }
  39645. },
  39646. maw: {
  39647. height: math.unit(0.81, "feet"),
  39648. name: "Maw",
  39649. image: {
  39650. source: "./media/characters/lisa/maw.svg"
  39651. }
  39652. },
  39653. paw: {
  39654. height: math.unit(0.9, "feet"),
  39655. name: "Paw",
  39656. image: {
  39657. source: "./media/characters/lisa/paw.svg"
  39658. }
  39659. },
  39660. caribousune: {
  39661. height: math.unit(7 + 2/12, "feet"),
  39662. weight: math.unit(268, "lb"),
  39663. name: "Caribousune",
  39664. image: {
  39665. source: "./media/characters/lisa/caribousune.svg",
  39666. extra: 1843/1633,
  39667. bottom: 29/1872
  39668. }
  39669. },
  39670. frontCaribousune: {
  39671. height: math.unit(7 + 2/12, "feet"),
  39672. weight: math.unit(268, "lb"),
  39673. name: "Front (Caribousune)",
  39674. image: {
  39675. source: "./media/characters/lisa/front-caribousune.svg",
  39676. extra: 1818/1638,
  39677. bottom: 52/1870
  39678. }
  39679. },
  39680. sideCaribousune: {
  39681. height: math.unit(7 + 2/12, "feet"),
  39682. weight: math.unit(268, "lb"),
  39683. name: "Side (Caribousune)",
  39684. image: {
  39685. source: "./media/characters/lisa/side-caribousune.svg",
  39686. extra: 1851/1635,
  39687. bottom: 16/1867
  39688. }
  39689. },
  39690. backCaribousune: {
  39691. height: math.unit(7 + 2/12, "feet"),
  39692. weight: math.unit(268, "lb"),
  39693. name: "Back (Caribousune)",
  39694. image: {
  39695. source: "./media/characters/lisa/back-caribousune.svg",
  39696. extra: 1801/1604,
  39697. bottom: 44/1845
  39698. }
  39699. },
  39700. caribou: {
  39701. height: math.unit(7 + 2/12, "feet"),
  39702. weight: math.unit(268, "lb"),
  39703. name: "Caribou",
  39704. image: {
  39705. source: "./media/characters/lisa/caribou.svg",
  39706. extra: 1843/1633,
  39707. bottom: 29/1872
  39708. }
  39709. },
  39710. frontCaribou: {
  39711. height: math.unit(7 + 2/12, "feet"),
  39712. weight: math.unit(268, "lb"),
  39713. name: "Front (Caribou)",
  39714. image: {
  39715. source: "./media/characters/lisa/front-caribou.svg",
  39716. extra: 1818/1638,
  39717. bottom: 52/1870
  39718. }
  39719. },
  39720. sideCaribou: {
  39721. height: math.unit(7 + 2/12, "feet"),
  39722. weight: math.unit(268, "lb"),
  39723. name: "Side (Caribou)",
  39724. image: {
  39725. source: "./media/characters/lisa/side-caribou.svg",
  39726. extra: 1851/1635,
  39727. bottom: 16/1867
  39728. }
  39729. },
  39730. backCaribou: {
  39731. height: math.unit(7 + 2/12, "feet"),
  39732. weight: math.unit(268, "lb"),
  39733. name: "Back (Caribou)",
  39734. image: {
  39735. source: "./media/characters/lisa/back-caribou.svg",
  39736. extra: 1801/1604,
  39737. bottom: 44/1845
  39738. }
  39739. },
  39740. mawCaribou: {
  39741. height: math.unit(1.45, "feet"),
  39742. name: "Maw (Caribou)",
  39743. image: {
  39744. source: "./media/characters/lisa/maw-caribou.svg"
  39745. }
  39746. },
  39747. mawCaribousune: {
  39748. height: math.unit(1.45, "feet"),
  39749. name: "Maw (Caribousune)",
  39750. image: {
  39751. source: "./media/characters/lisa/maw-caribousune.svg"
  39752. }
  39753. },
  39754. pawCaribousune: {
  39755. height: math.unit(1.61, "feet"),
  39756. name: "Paw (Caribou)",
  39757. image: {
  39758. source: "./media/characters/lisa/paw-caribousune.svg"
  39759. }
  39760. },
  39761. },
  39762. [
  39763. {
  39764. name: "Normal",
  39765. height: math.unit(6, "feet")
  39766. },
  39767. {
  39768. name: "God Size",
  39769. height: math.unit(72, "feet"),
  39770. default: true
  39771. },
  39772. {
  39773. name: "Towering",
  39774. height: math.unit(288, "feet")
  39775. },
  39776. {
  39777. name: "City Size",
  39778. height: math.unit(48384, "feet")
  39779. },
  39780. {
  39781. name: "Continental",
  39782. height: math.unit(4200, "miles")
  39783. },
  39784. {
  39785. name: "Planet Eater",
  39786. height: math.unit(42, "earths")
  39787. },
  39788. {
  39789. name: "Star Swallower",
  39790. height: math.unit(42, "solarradii")
  39791. },
  39792. {
  39793. name: "System Swallower",
  39794. height: math.unit(84000, "AU")
  39795. },
  39796. {
  39797. name: "Galaxy Gobbler",
  39798. height: math.unit(42, "galaxies")
  39799. },
  39800. {
  39801. name: "Universe Devourer",
  39802. height: math.unit(42, "universes")
  39803. },
  39804. {
  39805. name: "Multiverse Muncher",
  39806. height: math.unit(42, "multiverses")
  39807. },
  39808. ]
  39809. ))
  39810. characterMakers.push(() => makeCharacter(
  39811. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39812. {
  39813. front: {
  39814. height: math.unit(36, "feet"),
  39815. name: "Front",
  39816. image: {
  39817. source: "./media/characters/shadow-rat/front.svg",
  39818. extra: 1845/1758,
  39819. bottom: 83/1928
  39820. }
  39821. },
  39822. },
  39823. [
  39824. {
  39825. name: "Macro",
  39826. height: math.unit(36, "feet"),
  39827. default: true
  39828. },
  39829. ]
  39830. ))
  39831. characterMakers.push(() => makeCharacter(
  39832. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39833. {
  39834. side: {
  39835. height: math.unit(8, "feet"),
  39836. weight: math.unit(2630, "lb"),
  39837. name: "Side",
  39838. image: {
  39839. source: "./media/characters/torallia/side.svg",
  39840. extra: 2164/2021,
  39841. bottom: 371/2535
  39842. }
  39843. },
  39844. },
  39845. [
  39846. {
  39847. name: "Mortal Interaction",
  39848. height: math.unit(8, "feet")
  39849. },
  39850. {
  39851. name: "Natural",
  39852. height: math.unit(24, "feet"),
  39853. default: true
  39854. },
  39855. {
  39856. name: "Giant",
  39857. height: math.unit(80, "feet")
  39858. },
  39859. {
  39860. name: "Kaiju",
  39861. height: math.unit(240, "feet")
  39862. },
  39863. {
  39864. name: "Macro",
  39865. height: math.unit(800, "feet")
  39866. },
  39867. {
  39868. name: "Macro+",
  39869. height: math.unit(2400, "feet")
  39870. },
  39871. {
  39872. name: "Macro++",
  39873. height: math.unit(8000, "feet")
  39874. },
  39875. {
  39876. name: "City-Crushing",
  39877. height: math.unit(24000, "feet")
  39878. },
  39879. {
  39880. name: "Mountain-Mashing",
  39881. height: math.unit(80000, "feet")
  39882. },
  39883. {
  39884. name: "District Demolisher",
  39885. height: math.unit(240000, "feet")
  39886. },
  39887. {
  39888. name: "Tri-County Terror",
  39889. height: math.unit(800000, "feet")
  39890. },
  39891. {
  39892. name: "State Smasher",
  39893. height: math.unit(2.4e6, "feet")
  39894. },
  39895. {
  39896. name: "Nation Nemesis",
  39897. height: math.unit(8e6, "feet")
  39898. },
  39899. {
  39900. name: "Continent Cracker",
  39901. height: math.unit(2.4e7, "feet")
  39902. },
  39903. {
  39904. name: "Planet-Pillaging",
  39905. height: math.unit(8e7, "feet")
  39906. },
  39907. {
  39908. name: "Earth-Eclipsing",
  39909. height: math.unit(2.4e8, "feet")
  39910. },
  39911. {
  39912. name: "Jovian-Jostling",
  39913. height: math.unit(8e8, "feet")
  39914. },
  39915. {
  39916. name: "Gas Giant Gulper",
  39917. height: math.unit(2.4e9, "feet")
  39918. },
  39919. {
  39920. name: "Astral Annihilator",
  39921. height: math.unit(8e9, "feet")
  39922. },
  39923. {
  39924. name: "Celestial Conqueror",
  39925. height: math.unit(2.4e10, "feet")
  39926. },
  39927. {
  39928. name: "Sol-Swallowing",
  39929. height: math.unit(8e10, "feet")
  39930. },
  39931. {
  39932. name: "Hunter of the Heavens",
  39933. height: math.unit(2.4e13, "feet")
  39934. },
  39935. ]
  39936. ))
  39937. characterMakers.push(() => makeCharacter(
  39938. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39939. {
  39940. front: {
  39941. height: math.unit(6 + 8/12, "feet"),
  39942. weight: math.unit(250, "kilograms"),
  39943. volume: math.unit(28, "liters"),
  39944. name: "Front",
  39945. image: {
  39946. source: "./media/characters/rebecca-pawlson/front.svg",
  39947. extra: 1737/1596,
  39948. bottom: 107/1844
  39949. }
  39950. },
  39951. back: {
  39952. height: math.unit(6 + 8/12, "feet"),
  39953. weight: math.unit(250, "kilograms"),
  39954. volume: math.unit(28, "liters"),
  39955. name: "Back",
  39956. image: {
  39957. source: "./media/characters/rebecca-pawlson/back.svg",
  39958. extra: 1702/1523,
  39959. bottom: 86/1788
  39960. }
  39961. },
  39962. },
  39963. [
  39964. {
  39965. name: "Normal",
  39966. height: math.unit(6 + 8/12, "feet")
  39967. },
  39968. {
  39969. name: "Mini Macro",
  39970. height: math.unit(10, "feet"),
  39971. default: true
  39972. },
  39973. {
  39974. name: "Macro",
  39975. height: math.unit(100, "feet")
  39976. },
  39977. {
  39978. name: "Mega Macro",
  39979. height: math.unit(2500, "feet")
  39980. },
  39981. {
  39982. name: "Giga Macro",
  39983. height: math.unit(50, "miles")
  39984. },
  39985. ]
  39986. ))
  39987. characterMakers.push(() => makeCharacter(
  39988. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39989. {
  39990. front: {
  39991. height: math.unit(7 + 6/12, "feet"),
  39992. weight: math.unit(600, "lb"),
  39993. name: "Front",
  39994. image: {
  39995. source: "./media/characters/moxie-nova/front.svg",
  39996. extra: 1734/1652,
  39997. bottom: 41/1775
  39998. }
  39999. },
  40000. },
  40001. [
  40002. {
  40003. name: "Normal",
  40004. height: math.unit(7 + 6/12, "feet"),
  40005. default: true
  40006. },
  40007. ]
  40008. ))
  40009. characterMakers.push(() => makeCharacter(
  40010. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40011. {
  40012. goat: {
  40013. height: math.unit(4, "feet"),
  40014. weight: math.unit(180, "lb"),
  40015. name: "Goat",
  40016. image: {
  40017. source: "./media/characters/tiffany/goat.svg",
  40018. extra: 1845/1595,
  40019. bottom: 106/1951
  40020. }
  40021. },
  40022. front: {
  40023. height: math.unit(5, "feet"),
  40024. weight: math.unit(150, "lb"),
  40025. name: "Foxcoon",
  40026. image: {
  40027. source: "./media/characters/tiffany/foxcoon.svg",
  40028. extra: 1941/1845,
  40029. bottom: 58/1999
  40030. }
  40031. },
  40032. },
  40033. [
  40034. {
  40035. name: "Normal",
  40036. height: math.unit(5, "feet"),
  40037. default: true
  40038. },
  40039. ]
  40040. ))
  40041. characterMakers.push(() => makeCharacter(
  40042. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40043. {
  40044. front: {
  40045. height: math.unit(8, "feet"),
  40046. weight: math.unit(300, "lb"),
  40047. name: "Front",
  40048. image: {
  40049. source: "./media/characters/raxinath/front.svg",
  40050. extra: 1407/1309,
  40051. bottom: 39/1446
  40052. }
  40053. },
  40054. back: {
  40055. height: math.unit(8, "feet"),
  40056. weight: math.unit(300, "lb"),
  40057. name: "Back",
  40058. image: {
  40059. source: "./media/characters/raxinath/back.svg",
  40060. extra: 1405/1315,
  40061. bottom: 9/1414
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Speck",
  40068. height: math.unit(0.5, "nm")
  40069. },
  40070. {
  40071. name: "Micro",
  40072. height: math.unit(3, "inches")
  40073. },
  40074. {
  40075. name: "Kobold",
  40076. height: math.unit(3, "feet")
  40077. },
  40078. {
  40079. name: "Normal",
  40080. height: math.unit(8, "feet"),
  40081. default: true
  40082. },
  40083. {
  40084. name: "Giant",
  40085. height: math.unit(50, "feet")
  40086. },
  40087. {
  40088. name: "Macro",
  40089. height: math.unit(1000, "feet")
  40090. },
  40091. {
  40092. name: "Megamacro",
  40093. height: math.unit(1, "mile")
  40094. },
  40095. ]
  40096. ))
  40097. characterMakers.push(() => makeCharacter(
  40098. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40099. {
  40100. front: {
  40101. height: math.unit(10, "feet"),
  40102. weight: math.unit(1442, "lb"),
  40103. name: "Front",
  40104. image: {
  40105. source: "./media/characters/mal-dragon/front.svg",
  40106. extra: 1515/1444,
  40107. bottom: 113/1628
  40108. }
  40109. },
  40110. back: {
  40111. height: math.unit(10, "feet"),
  40112. weight: math.unit(1442, "lb"),
  40113. name: "Back",
  40114. image: {
  40115. source: "./media/characters/mal-dragon/back.svg",
  40116. extra: 1527/1434,
  40117. bottom: 25/1552
  40118. }
  40119. },
  40120. },
  40121. [
  40122. {
  40123. name: "Mortal Interaction",
  40124. height: math.unit(10, "feet"),
  40125. default: true
  40126. },
  40127. {
  40128. name: "Large",
  40129. height: math.unit(30, "feet")
  40130. },
  40131. {
  40132. name: "Kaiju",
  40133. height: math.unit(300, "feet")
  40134. },
  40135. {
  40136. name: "Megamacro",
  40137. height: math.unit(10000, "feet")
  40138. },
  40139. {
  40140. name: "Continent Cracker",
  40141. height: math.unit(30000000, "feet")
  40142. },
  40143. {
  40144. name: "Sol-Swallowing",
  40145. height: math.unit(1e11, "feet")
  40146. },
  40147. {
  40148. name: "Light Universal",
  40149. height: math.unit(5, "universes")
  40150. },
  40151. {
  40152. name: "Universe Atoms",
  40153. height: math.unit(1.829e9, "universes")
  40154. },
  40155. {
  40156. name: "Light Multiversal",
  40157. height: math.unit(5, "multiverses")
  40158. },
  40159. {
  40160. name: "Multiverse Atoms",
  40161. height: math.unit(1.829e9, "multiverses")
  40162. },
  40163. {
  40164. name: "Fabric of Time",
  40165. height: math.unit(1e262, "multiverses")
  40166. },
  40167. ]
  40168. ))
  40169. characterMakers.push(() => makeCharacter(
  40170. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40171. {
  40172. front: {
  40173. height: math.unit(9, "feet"),
  40174. weight: math.unit(1050, "lb"),
  40175. name: "Front",
  40176. image: {
  40177. source: "./media/characters/tabitha/front.svg",
  40178. extra: 2083/1994,
  40179. bottom: 68/2151
  40180. }
  40181. },
  40182. },
  40183. [
  40184. {
  40185. name: "Baseline",
  40186. height: math.unit(9, "feet"),
  40187. default: true
  40188. },
  40189. {
  40190. name: "Giant",
  40191. height: math.unit(90, "feet")
  40192. },
  40193. {
  40194. name: "Macro",
  40195. height: math.unit(900, "feet")
  40196. },
  40197. {
  40198. name: "Megamacro",
  40199. height: math.unit(9000, "feet")
  40200. },
  40201. {
  40202. name: "City-Crushing",
  40203. height: math.unit(27000, "feet")
  40204. },
  40205. {
  40206. name: "Mountain-Mashing",
  40207. height: math.unit(90000, "feet")
  40208. },
  40209. {
  40210. name: "Nation Nemesis",
  40211. height: math.unit(9e6, "feet")
  40212. },
  40213. {
  40214. name: "Continent Cracker",
  40215. height: math.unit(27e6, "feet")
  40216. },
  40217. {
  40218. name: "Earth-Eclipsing",
  40219. height: math.unit(2.7e8, "feet")
  40220. },
  40221. {
  40222. name: "Gas Giant Gulper",
  40223. height: math.unit(2.7e9, "feet")
  40224. },
  40225. {
  40226. name: "Sol-Swallowing",
  40227. height: math.unit(9e10, "feet")
  40228. },
  40229. {
  40230. name: "Galaxy Gulper",
  40231. height: math.unit(9, "galaxies")
  40232. },
  40233. {
  40234. name: "Cosmos Churner",
  40235. height: math.unit(9, "universes")
  40236. },
  40237. ]
  40238. ))
  40239. characterMakers.push(() => makeCharacter(
  40240. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40241. {
  40242. front: {
  40243. height: math.unit(160, "cm"),
  40244. weight: math.unit(55, "kg"),
  40245. name: "Front",
  40246. image: {
  40247. source: "./media/characters/tow/front.svg",
  40248. extra: 1751/1722,
  40249. bottom: 74/1825
  40250. }
  40251. },
  40252. },
  40253. [
  40254. {
  40255. name: "Norm",
  40256. height: math.unit(160, "cm")
  40257. },
  40258. {
  40259. name: "Casual",
  40260. height: math.unit(3200, "m"),
  40261. default: true
  40262. },
  40263. {
  40264. name: "Show-Off",
  40265. height: math.unit(160, "km")
  40266. },
  40267. ]
  40268. ))
  40269. characterMakers.push(() => makeCharacter(
  40270. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40271. {
  40272. front: {
  40273. height: math.unit(7 + 11/12, "feet"),
  40274. weight: math.unit(342.8, "lb"),
  40275. name: "Front",
  40276. image: {
  40277. source: "./media/characters/vivian-orca-dragon/front.svg",
  40278. extra: 1890/1865,
  40279. bottom: 28/1918
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Micro",
  40286. height: math.unit(5, "inches")
  40287. },
  40288. {
  40289. name: "Normal",
  40290. height: math.unit(7 + 11/12, "feet"),
  40291. default: true
  40292. },
  40293. {
  40294. name: "Macro",
  40295. height: math.unit(395 + 7/12, "feet")
  40296. },
  40297. ]
  40298. ))
  40299. characterMakers.push(() => makeCharacter(
  40300. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40301. {
  40302. side: {
  40303. height: math.unit(10, "feet"),
  40304. weight: math.unit(1442, "lb"),
  40305. name: "Side",
  40306. image: {
  40307. source: "./media/characters/lotherakon/side.svg",
  40308. extra: 1604/1497,
  40309. bottom: 89/1693
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Mortal Interaction",
  40316. height: math.unit(10, "feet")
  40317. },
  40318. {
  40319. name: "Large",
  40320. height: math.unit(30, "feet"),
  40321. default: true
  40322. },
  40323. {
  40324. name: "Giant",
  40325. height: math.unit(100, "feet")
  40326. },
  40327. {
  40328. name: "Kaiju",
  40329. height: math.unit(300, "feet")
  40330. },
  40331. {
  40332. name: "Macro",
  40333. height: math.unit(1000, "feet")
  40334. },
  40335. {
  40336. name: "Macro+",
  40337. height: math.unit(3000, "feet")
  40338. },
  40339. {
  40340. name: "Megamacro",
  40341. height: math.unit(10000, "feet")
  40342. },
  40343. {
  40344. name: "City-Crushing",
  40345. height: math.unit(30000, "feet")
  40346. },
  40347. {
  40348. name: "Continent Cracker",
  40349. height: math.unit(30e6, "feet")
  40350. },
  40351. {
  40352. name: "Earth Eclipsing",
  40353. height: math.unit(3e8, "feet")
  40354. },
  40355. {
  40356. name: "Gas Giant Gulper",
  40357. height: math.unit(3e9, "feet")
  40358. },
  40359. {
  40360. name: "Sol-Swallowing",
  40361. height: math.unit(1e11, "feet")
  40362. },
  40363. {
  40364. name: "System Swallower",
  40365. height: math.unit(3e14, "feet")
  40366. },
  40367. {
  40368. name: "Galaxy Gulper",
  40369. height: math.unit(10, "galaxies")
  40370. },
  40371. {
  40372. name: "Light Universal",
  40373. height: math.unit(5, "universes")
  40374. },
  40375. {
  40376. name: "Universe Palm",
  40377. height: math.unit(20, "universes")
  40378. },
  40379. {
  40380. name: "Light Multiversal",
  40381. height: math.unit(5, "multiverses")
  40382. },
  40383. {
  40384. name: "Multiverse Palm",
  40385. height: math.unit(20, "multiverses")
  40386. },
  40387. {
  40388. name: "Inferno Incarnate",
  40389. height: math.unit(1e7, "multiverses")
  40390. },
  40391. ]
  40392. ))
  40393. characterMakers.push(() => makeCharacter(
  40394. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40395. {
  40396. front: {
  40397. height: math.unit(8, "feet"),
  40398. weight: math.unit(1200, "lb"),
  40399. name: "Front",
  40400. image: {
  40401. source: "./media/characters/malithee/front.svg",
  40402. extra: 1675/1640,
  40403. bottom: 162/1837
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Mortal Interaction",
  40410. height: math.unit(8, "feet"),
  40411. default: true
  40412. },
  40413. {
  40414. name: "Large",
  40415. height: math.unit(24, "feet")
  40416. },
  40417. {
  40418. name: "Kaiju",
  40419. height: math.unit(240, "feet")
  40420. },
  40421. {
  40422. name: "Megamacro",
  40423. height: math.unit(8000, "feet")
  40424. },
  40425. {
  40426. name: "Continent Cracker",
  40427. height: math.unit(24e6, "feet")
  40428. },
  40429. {
  40430. name: "Earth-Eclipsing",
  40431. height: math.unit(2.4e8, "feet")
  40432. },
  40433. {
  40434. name: "Sol-Swallowing",
  40435. height: math.unit(8e10, "feet")
  40436. },
  40437. {
  40438. name: "Galaxy Gulper",
  40439. height: math.unit(8, "galaxies")
  40440. },
  40441. {
  40442. name: "Light Universal",
  40443. height: math.unit(4, "universes")
  40444. },
  40445. {
  40446. name: "Universe Atoms",
  40447. height: math.unit(1.829e9, "universes")
  40448. },
  40449. {
  40450. name: "Light Multiversal",
  40451. height: math.unit(4, "multiverses")
  40452. },
  40453. {
  40454. name: "Multiverse Atoms",
  40455. height: math.unit(1.829e9, "multiverses")
  40456. },
  40457. {
  40458. name: "Nigh-Omnipresence",
  40459. height: math.unit(8e261, "multiverses")
  40460. },
  40461. ]
  40462. ))
  40463. characterMakers.push(() => makeCharacter(
  40464. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40465. {
  40466. front: {
  40467. height: math.unit(10, "feet"),
  40468. weight: math.unit(1500, "lb"),
  40469. name: "Front",
  40470. image: {
  40471. source: "./media/characters/miles-thestia/front.svg",
  40472. extra: 1812/1727,
  40473. bottom: 86/1898
  40474. }
  40475. },
  40476. back: {
  40477. height: math.unit(10, "feet"),
  40478. weight: math.unit(1500, "lb"),
  40479. name: "Back",
  40480. image: {
  40481. source: "./media/characters/miles-thestia/back.svg",
  40482. extra: 1799/1690,
  40483. bottom: 47/1846
  40484. }
  40485. },
  40486. frontNsfw: {
  40487. height: math.unit(10, "feet"),
  40488. weight: math.unit(1500, "lb"),
  40489. name: "Front (NSFW)",
  40490. image: {
  40491. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40492. extra: 1812/1727,
  40493. bottom: 86/1898
  40494. }
  40495. },
  40496. },
  40497. [
  40498. {
  40499. name: "Mini-Macro",
  40500. height: math.unit(10, "feet"),
  40501. default: true
  40502. },
  40503. ]
  40504. ))
  40505. characterMakers.push(() => makeCharacter(
  40506. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40507. {
  40508. front: {
  40509. height: math.unit(25, "feet"),
  40510. name: "Front",
  40511. image: {
  40512. source: "./media/characters/titan-s-wulf/front.svg",
  40513. extra: 1560/1484,
  40514. bottom: 76/1636
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Smallest",
  40521. height: math.unit(25, "feet"),
  40522. default: true
  40523. },
  40524. {
  40525. name: "Normal",
  40526. height: math.unit(200, "feet")
  40527. },
  40528. {
  40529. name: "Macro",
  40530. height: math.unit(200000, "feet")
  40531. },
  40532. {
  40533. name: "Multiversal Original",
  40534. height: math.unit(10000, "multiverses")
  40535. },
  40536. ]
  40537. ))
  40538. characterMakers.push(() => makeCharacter(
  40539. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40540. {
  40541. front: {
  40542. height: math.unit(8, "feet"),
  40543. weight: math.unit(553, "lb"),
  40544. name: "Front",
  40545. image: {
  40546. source: "./media/characters/tawendeh/front.svg",
  40547. extra: 2365/2268,
  40548. bottom: 83/2448
  40549. }
  40550. },
  40551. frontClothed: {
  40552. height: math.unit(8, "feet"),
  40553. weight: math.unit(553, "lb"),
  40554. name: "Front (Clothed)",
  40555. image: {
  40556. source: "./media/characters/tawendeh/front-clothed.svg",
  40557. extra: 2365/2268,
  40558. bottom: 83/2448
  40559. }
  40560. },
  40561. back: {
  40562. height: math.unit(8, "feet"),
  40563. weight: math.unit(553, "lb"),
  40564. name: "Back",
  40565. image: {
  40566. source: "./media/characters/tawendeh/back.svg",
  40567. extra: 2397/2294,
  40568. bottom: 42/2439
  40569. }
  40570. },
  40571. },
  40572. [
  40573. {
  40574. name: "Mortal Interaction",
  40575. height: math.unit(8, "feet"),
  40576. default: true
  40577. },
  40578. {
  40579. name: "Giant",
  40580. height: math.unit(80, "feet")
  40581. },
  40582. {
  40583. name: "Macro",
  40584. height: math.unit(800, "feet")
  40585. },
  40586. {
  40587. name: "Megamacro",
  40588. height: math.unit(8000, "feet")
  40589. },
  40590. {
  40591. name: "City-Crushing",
  40592. height: math.unit(24000, "feet")
  40593. },
  40594. {
  40595. name: "Mountain-Mashing",
  40596. height: math.unit(80000, "feet")
  40597. },
  40598. {
  40599. name: "Nation Nemesis",
  40600. height: math.unit(8e6, "feet")
  40601. },
  40602. {
  40603. name: "Continent Cracker",
  40604. height: math.unit(24e6, "feet")
  40605. },
  40606. {
  40607. name: "Earth-Eclipsing",
  40608. height: math.unit(2.4e8, "feet")
  40609. },
  40610. {
  40611. name: "Gas Giant Gulper",
  40612. height: math.unit(2.4e9, "feet")
  40613. },
  40614. {
  40615. name: "Sol-Swallowing",
  40616. height: math.unit(8e10, "feet")
  40617. },
  40618. {
  40619. name: "Galaxy Gulper",
  40620. height: math.unit(8, "galaxies")
  40621. },
  40622. {
  40623. name: "Cosmos Churner",
  40624. height: math.unit(8, "universes")
  40625. },
  40626. {
  40627. name: "Omnipotent Otter",
  40628. height: math.unit(80, "universes")
  40629. },
  40630. ]
  40631. ))
  40632. characterMakers.push(() => makeCharacter(
  40633. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40634. {
  40635. front: {
  40636. height: math.unit(2.6, "meters"),
  40637. weight: math.unit(900, "kg"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/neesha/front.svg",
  40641. extra: 1803/1653,
  40642. bottom: 128/1931
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Normal",
  40649. height: math.unit(2.6, "meters"),
  40650. default: true
  40651. },
  40652. {
  40653. name: "Macro",
  40654. height: math.unit(50, "meters")
  40655. },
  40656. ]
  40657. ))
  40658. characterMakers.push(() => makeCharacter(
  40659. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40660. {
  40661. front: {
  40662. height: math.unit(5, "feet"),
  40663. weight: math.unit(185, "lb"),
  40664. name: "Front",
  40665. image: {
  40666. source: "./media/characters/kyera/front.svg",
  40667. extra: 1875/1790,
  40668. bottom: 96/1971
  40669. }
  40670. },
  40671. },
  40672. [
  40673. {
  40674. name: "Normal",
  40675. height: math.unit(5, "feet"),
  40676. default: true
  40677. },
  40678. ]
  40679. ))
  40680. characterMakers.push(() => makeCharacter(
  40681. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40682. {
  40683. front: {
  40684. height: math.unit(7 + 6/12, "feet"),
  40685. weight: math.unit(540, "lb"),
  40686. name: "Front",
  40687. image: {
  40688. source: "./media/characters/yuko/front.svg",
  40689. extra: 1282/1222,
  40690. bottom: 101/1383
  40691. }
  40692. },
  40693. frontClothed: {
  40694. height: math.unit(7 + 6/12, "feet"),
  40695. weight: math.unit(540, "lb"),
  40696. name: "Front (Clothed)",
  40697. image: {
  40698. source: "./media/characters/yuko/front-clothed.svg",
  40699. extra: 1282/1222,
  40700. bottom: 101/1383
  40701. }
  40702. },
  40703. },
  40704. [
  40705. {
  40706. name: "Normal",
  40707. height: math.unit(7 + 6/12, "feet"),
  40708. default: true
  40709. },
  40710. {
  40711. name: "Macro",
  40712. height: math.unit(26 + 9/12, "feet")
  40713. },
  40714. {
  40715. name: "Megamacro",
  40716. height: math.unit(300, "feet")
  40717. },
  40718. {
  40719. name: "Gigamacro",
  40720. height: math.unit(5000, "feet")
  40721. },
  40722. {
  40723. name: "Planetary",
  40724. height: math.unit(10000, "miles")
  40725. },
  40726. ]
  40727. ))
  40728. characterMakers.push(() => makeCharacter(
  40729. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40730. {
  40731. front: {
  40732. height: math.unit(8 + 2/12, "feet"),
  40733. weight: math.unit(600, "lb"),
  40734. name: "Front",
  40735. image: {
  40736. source: "./media/characters/deam-nitrel/front.svg",
  40737. extra: 1308/1234,
  40738. bottom: 125/1433
  40739. }
  40740. },
  40741. },
  40742. [
  40743. {
  40744. name: "Normal",
  40745. height: math.unit(8 + 2/12, "feet"),
  40746. default: true
  40747. },
  40748. ]
  40749. ))
  40750. characterMakers.push(() => makeCharacter(
  40751. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40752. {
  40753. front: {
  40754. height: math.unit(6.1, "feet"),
  40755. weight: math.unit(180, "lb"),
  40756. name: "Front",
  40757. image: {
  40758. source: "./media/characters/skyress/front.svg",
  40759. extra: 1045/915,
  40760. bottom: 28/1073
  40761. }
  40762. },
  40763. maw: {
  40764. height: math.unit(1, "feet"),
  40765. name: "Maw",
  40766. image: {
  40767. source: "./media/characters/skyress/maw.svg"
  40768. }
  40769. },
  40770. },
  40771. [
  40772. {
  40773. name: "Normal",
  40774. height: math.unit(6.1, "feet"),
  40775. default: true
  40776. },
  40777. {
  40778. name: "Macro",
  40779. height: math.unit(200, "feet")
  40780. },
  40781. ]
  40782. ))
  40783. characterMakers.push(() => makeCharacter(
  40784. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40785. {
  40786. front: {
  40787. height: math.unit(4 + 2/12, "feet"),
  40788. weight: math.unit(40, "kg"),
  40789. name: "Front",
  40790. image: {
  40791. source: "./media/characters/amethyst-jones/front.svg",
  40792. extra: 1220/1150,
  40793. bottom: 101/1321
  40794. }
  40795. },
  40796. },
  40797. [
  40798. {
  40799. name: "Normal",
  40800. height: math.unit(4 + 2/12, "feet"),
  40801. default: true
  40802. },
  40803. ]
  40804. ))
  40805. characterMakers.push(() => makeCharacter(
  40806. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40807. {
  40808. front: {
  40809. height: math.unit(1.7, "m"),
  40810. weight: math.unit(135, "lb"),
  40811. name: "Front",
  40812. image: {
  40813. source: "./media/characters/jade/front.svg",
  40814. extra: 1818/1767,
  40815. bottom: 32/1850
  40816. }
  40817. },
  40818. back: {
  40819. height: math.unit(1.7, "m"),
  40820. weight: math.unit(135, "lb"),
  40821. name: "Back",
  40822. image: {
  40823. source: "./media/characters/jade/back.svg",
  40824. extra: 1869/1809,
  40825. bottom: 35/1904
  40826. }
  40827. },
  40828. hand: {
  40829. height: math.unit(0.24, "m"),
  40830. name: "Hand",
  40831. image: {
  40832. source: "./media/characters/jade/hand.svg"
  40833. }
  40834. },
  40835. foot: {
  40836. height: math.unit(0.263, "m"),
  40837. name: "Foot",
  40838. image: {
  40839. source: "./media/characters/jade/foot.svg"
  40840. }
  40841. },
  40842. dick: {
  40843. height: math.unit(0.47, "m"),
  40844. name: "Dick",
  40845. image: {
  40846. source: "./media/characters/jade/dick.svg"
  40847. }
  40848. },
  40849. },
  40850. [
  40851. {
  40852. name: "Micro",
  40853. height: math.unit(22, "cm")
  40854. },
  40855. {
  40856. name: "Normal",
  40857. height: math.unit(1.7, "m"),
  40858. default: true
  40859. },
  40860. {
  40861. name: "Macro",
  40862. height: math.unit(152, "m")
  40863. },
  40864. ]
  40865. ))
  40866. characterMakers.push(() => makeCharacter(
  40867. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40868. {
  40869. front: {
  40870. height: math.unit(100, "miles"),
  40871. weight: math.unit(20000, "tons"),
  40872. name: "Front",
  40873. image: {
  40874. source: "./media/characters/cookie/front.svg",
  40875. extra: 1125/1070,
  40876. bottom: 30/1155
  40877. }
  40878. },
  40879. },
  40880. [
  40881. {
  40882. name: "Big",
  40883. height: math.unit(50, "feet")
  40884. },
  40885. {
  40886. name: "Macro",
  40887. height: math.unit(100, "miles"),
  40888. default: true
  40889. },
  40890. {
  40891. name: "Megamacro",
  40892. height: math.unit(90000, "miles")
  40893. },
  40894. ]
  40895. ))
  40896. characterMakers.push(() => makeCharacter(
  40897. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40898. {
  40899. front: {
  40900. height: math.unit(6, "feet"),
  40901. weight: math.unit(145, "lb"),
  40902. name: "Front",
  40903. image: {
  40904. source: "./media/characters/farzian/front.svg",
  40905. extra: 1902/1693,
  40906. bottom: 108/2010
  40907. }
  40908. },
  40909. },
  40910. [
  40911. {
  40912. name: "Macro",
  40913. height: math.unit(500, "feet"),
  40914. default: true
  40915. },
  40916. ]
  40917. ))
  40918. characterMakers.push(() => makeCharacter(
  40919. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40920. {
  40921. front: {
  40922. height: math.unit(3 + 6/12, "feet"),
  40923. weight: math.unit(50, "lb"),
  40924. name: "Front",
  40925. image: {
  40926. source: "./media/characters/kimberly-tilson/front.svg",
  40927. extra: 1400/1322,
  40928. bottom: 36/1436
  40929. }
  40930. },
  40931. back: {
  40932. height: math.unit(3 + 6/12, "feet"),
  40933. weight: math.unit(50, "lb"),
  40934. name: "Back",
  40935. image: {
  40936. source: "./media/characters/kimberly-tilson/back.svg",
  40937. extra: 1370/1307,
  40938. bottom: 20/1390
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Normal",
  40945. height: math.unit(3 + 6/12, "feet"),
  40946. default: true
  40947. },
  40948. ]
  40949. ))
  40950. characterMakers.push(() => makeCharacter(
  40951. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40952. {
  40953. front: {
  40954. height: math.unit(1148, "feet"),
  40955. weight: math.unit(34057, "lb"),
  40956. name: "Front",
  40957. image: {
  40958. source: "./media/characters/harthos/front.svg",
  40959. extra: 1391/1339,
  40960. bottom: 13/1404
  40961. }
  40962. },
  40963. },
  40964. [
  40965. {
  40966. name: "Macro",
  40967. height: math.unit(1148, "feet"),
  40968. default: true
  40969. },
  40970. ]
  40971. ))
  40972. characterMakers.push(() => makeCharacter(
  40973. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40974. {
  40975. front: {
  40976. height: math.unit(15, "feet"),
  40977. name: "Front",
  40978. image: {
  40979. source: "./media/characters/hypatia/front.svg",
  40980. extra: 1653/1591,
  40981. bottom: 79/1732
  40982. }
  40983. },
  40984. },
  40985. [
  40986. {
  40987. name: "Normal",
  40988. height: math.unit(15, "feet")
  40989. },
  40990. {
  40991. name: "Small",
  40992. height: math.unit(300, "feet")
  40993. },
  40994. {
  40995. name: "Macro",
  40996. height: math.unit(2500, "feet"),
  40997. default: true
  40998. },
  40999. {
  41000. name: "Mega Macro",
  41001. height: math.unit(1500, "miles")
  41002. },
  41003. {
  41004. name: "Giga Macro",
  41005. height: math.unit(1.5e6, "miles")
  41006. },
  41007. ]
  41008. ))
  41009. characterMakers.push(() => makeCharacter(
  41010. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41011. {
  41012. front: {
  41013. height: math.unit(6, "feet"),
  41014. weight: math.unit(200, "lb"),
  41015. name: "Front",
  41016. image: {
  41017. source: "./media/characters/wulver/front.svg",
  41018. extra: 1724/1632,
  41019. bottom: 130/1854
  41020. }
  41021. },
  41022. frontNsfw: {
  41023. height: math.unit(6, "feet"),
  41024. weight: math.unit(200, "lb"),
  41025. name: "Front (NSFW)",
  41026. image: {
  41027. source: "./media/characters/wulver/front-nsfw.svg",
  41028. extra: 1724/1632,
  41029. bottom: 130/1854
  41030. }
  41031. },
  41032. },
  41033. [
  41034. {
  41035. name: "Human-Sized",
  41036. height: math.unit(6, "feet")
  41037. },
  41038. {
  41039. name: "Normal",
  41040. height: math.unit(4, "meters"),
  41041. default: true
  41042. },
  41043. {
  41044. name: "Large",
  41045. height: math.unit(6, "m")
  41046. },
  41047. ]
  41048. ))
  41049. characterMakers.push(() => makeCharacter(
  41050. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41051. {
  41052. front: {
  41053. height: math.unit(7, "feet"),
  41054. name: "Front",
  41055. image: {
  41056. source: "./media/characters/maru/front.svg",
  41057. extra: 1595/1570,
  41058. bottom: 0/1595
  41059. }
  41060. },
  41061. },
  41062. [
  41063. {
  41064. name: "Normal",
  41065. height: math.unit(7, "feet"),
  41066. default: true
  41067. },
  41068. {
  41069. name: "Macro",
  41070. height: math.unit(700, "feet")
  41071. },
  41072. {
  41073. name: "Mega Macro",
  41074. height: math.unit(25, "miles")
  41075. },
  41076. ]
  41077. ))
  41078. characterMakers.push(() => makeCharacter(
  41079. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41080. {
  41081. front: {
  41082. height: math.unit(6, "feet"),
  41083. weight: math.unit(170, "lb"),
  41084. name: "Front",
  41085. image: {
  41086. source: "./media/characters/xenon/front.svg",
  41087. extra: 1376/1305,
  41088. bottom: 56/1432
  41089. }
  41090. },
  41091. back: {
  41092. height: math.unit(6, "feet"),
  41093. weight: math.unit(170, "lb"),
  41094. name: "Back",
  41095. image: {
  41096. source: "./media/characters/xenon/back.svg",
  41097. extra: 1328/1259,
  41098. bottom: 95/1423
  41099. }
  41100. },
  41101. maw: {
  41102. height: math.unit(0.52, "feet"),
  41103. name: "Maw",
  41104. image: {
  41105. source: "./media/characters/xenon/maw.svg"
  41106. }
  41107. },
  41108. hand: {
  41109. height: math.unit(0.82, "feet"),
  41110. name: "Hand",
  41111. image: {
  41112. source: "./media/characters/xenon/hand.svg"
  41113. }
  41114. },
  41115. foot: {
  41116. height: math.unit(1.13, "feet"),
  41117. name: "Foot",
  41118. image: {
  41119. source: "./media/characters/xenon/foot.svg"
  41120. }
  41121. },
  41122. },
  41123. [
  41124. {
  41125. name: "Micro",
  41126. height: math.unit(0.8, "inches")
  41127. },
  41128. {
  41129. name: "Normal",
  41130. height: math.unit(6, "feet")
  41131. },
  41132. {
  41133. name: "Macro",
  41134. height: math.unit(50, "feet"),
  41135. default: true
  41136. },
  41137. {
  41138. name: "Macro+",
  41139. height: math.unit(250, "feet")
  41140. },
  41141. {
  41142. name: "Megamacro",
  41143. height: math.unit(1500, "feet")
  41144. },
  41145. ]
  41146. ))
  41147. characterMakers.push(() => makeCharacter(
  41148. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41149. {
  41150. front: {
  41151. height: math.unit(7 + 5/12, "feet"),
  41152. name: "Front",
  41153. image: {
  41154. source: "./media/characters/zane/front.svg",
  41155. extra: 1260/1203,
  41156. bottom: 94/1354
  41157. }
  41158. },
  41159. back: {
  41160. height: math.unit(5.05, "feet"),
  41161. name: "Back",
  41162. image: {
  41163. source: "./media/characters/zane/back.svg",
  41164. extra: 893/829,
  41165. bottom: 30/923
  41166. }
  41167. },
  41168. werewolf: {
  41169. height: math.unit(11, "feet"),
  41170. name: "Werewolf",
  41171. image: {
  41172. source: "./media/characters/zane/werewolf.svg",
  41173. extra: 1383/1323,
  41174. bottom: 89/1472
  41175. }
  41176. },
  41177. foot: {
  41178. height: math.unit(1.46, "feet"),
  41179. name: "Foot",
  41180. image: {
  41181. source: "./media/characters/zane/foot.svg"
  41182. }
  41183. },
  41184. footFront: {
  41185. height: math.unit(0.784, "feet"),
  41186. name: "Foot (Front)",
  41187. image: {
  41188. source: "./media/characters/zane/foot-front.svg"
  41189. }
  41190. },
  41191. dick: {
  41192. height: math.unit(1.95, "feet"),
  41193. name: "Dick",
  41194. image: {
  41195. source: "./media/characters/zane/dick.svg"
  41196. }
  41197. },
  41198. dickWerewolf: {
  41199. height: math.unit(3.77, "feet"),
  41200. name: "Dick (Werewolf)",
  41201. image: {
  41202. source: "./media/characters/zane/dick.svg"
  41203. }
  41204. },
  41205. },
  41206. [
  41207. {
  41208. name: "Normal",
  41209. height: math.unit(7 + 5/12, "feet"),
  41210. default: true
  41211. },
  41212. ]
  41213. ))
  41214. characterMakers.push(() => makeCharacter(
  41215. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41216. {
  41217. front: {
  41218. height: math.unit(6 + 2/12, "feet"),
  41219. weight: math.unit(284, "lb"),
  41220. name: "Front",
  41221. image: {
  41222. source: "./media/characters/benni-desparque/front.svg",
  41223. extra: 1353/1126,
  41224. bottom: 69/1422
  41225. }
  41226. },
  41227. },
  41228. [
  41229. {
  41230. name: "Civilian",
  41231. height: math.unit(6 + 2/12, "feet")
  41232. },
  41233. {
  41234. name: "Normal",
  41235. height: math.unit(98, "feet"),
  41236. default: true
  41237. },
  41238. {
  41239. name: "Kaiju Fighter",
  41240. height: math.unit(268, "feet")
  41241. },
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41246. {
  41247. front: {
  41248. height: math.unit(5, "feet"),
  41249. weight: math.unit(105, "lb"),
  41250. name: "Front",
  41251. image: {
  41252. source: "./media/characters/maxine/front.svg",
  41253. extra: 1386/1250,
  41254. bottom: 71/1457
  41255. }
  41256. },
  41257. },
  41258. [
  41259. {
  41260. name: "Normal",
  41261. height: math.unit(5, "feet"),
  41262. default: true
  41263. },
  41264. ]
  41265. ))
  41266. characterMakers.push(() => makeCharacter(
  41267. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41268. {
  41269. front: {
  41270. height: math.unit(11 + 7/12, "feet"),
  41271. weight: math.unit(9576, "lb"),
  41272. name: "Front",
  41273. image: {
  41274. source: "./media/characters/scaly/front.svg",
  41275. extra: 888/867,
  41276. bottom: 36/924
  41277. }
  41278. },
  41279. },
  41280. [
  41281. {
  41282. name: "Normal",
  41283. height: math.unit(11 + 7/12, "feet"),
  41284. default: true
  41285. },
  41286. ]
  41287. ))
  41288. characterMakers.push(() => makeCharacter(
  41289. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41290. {
  41291. front: {
  41292. height: math.unit(6 + 3/12, "feet"),
  41293. name: "Front",
  41294. image: {
  41295. source: "./media/characters/saelria/front.svg",
  41296. extra: 1243/1138,
  41297. bottom: 46/1289
  41298. }
  41299. },
  41300. },
  41301. [
  41302. {
  41303. name: "Micro",
  41304. height: math.unit(6, "inches"),
  41305. },
  41306. {
  41307. name: "Normal",
  41308. height: math.unit(6 + 3/12, "feet"),
  41309. default: true
  41310. },
  41311. {
  41312. name: "Macro",
  41313. height: math.unit(25, "feet")
  41314. },
  41315. ]
  41316. ))
  41317. characterMakers.push(() => makeCharacter(
  41318. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41319. {
  41320. front: {
  41321. height: math.unit(80, "meters"),
  41322. weight: math.unit(7000, "tonnes"),
  41323. name: "Front",
  41324. image: {
  41325. source: "./media/characters/tef/front.svg",
  41326. extra: 2036/1991,
  41327. bottom: 54/2090
  41328. }
  41329. },
  41330. back: {
  41331. height: math.unit(80, "meters"),
  41332. weight: math.unit(7000, "tonnes"),
  41333. name: "Back",
  41334. image: {
  41335. source: "./media/characters/tef/back.svg",
  41336. extra: 2036/1991,
  41337. bottom: 54/2090
  41338. }
  41339. },
  41340. },
  41341. [
  41342. {
  41343. name: "Macro",
  41344. height: math.unit(80, "meters"),
  41345. default: true
  41346. },
  41347. ]
  41348. ))
  41349. characterMakers.push(() => makeCharacter(
  41350. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41351. {
  41352. front: {
  41353. height: math.unit(13, "feet"),
  41354. weight: math.unit(6, "tons"),
  41355. name: "Front",
  41356. image: {
  41357. source: "./media/characters/rover/front.svg",
  41358. extra: 1233/1156,
  41359. bottom: 50/1283
  41360. }
  41361. },
  41362. back: {
  41363. height: math.unit(13, "feet"),
  41364. weight: math.unit(6, "tons"),
  41365. name: "Back",
  41366. image: {
  41367. source: "./media/characters/rover/back.svg",
  41368. extra: 1327/1258,
  41369. bottom: 39/1366
  41370. }
  41371. },
  41372. },
  41373. [
  41374. {
  41375. name: "Normal",
  41376. height: math.unit(13, "feet"),
  41377. default: true
  41378. },
  41379. {
  41380. name: "Macro",
  41381. height: math.unit(1300, "feet")
  41382. },
  41383. {
  41384. name: "Megamacro",
  41385. height: math.unit(1300, "miles")
  41386. },
  41387. {
  41388. name: "Gigamacro",
  41389. height: math.unit(1300000, "miles")
  41390. },
  41391. ]
  41392. ))
  41393. characterMakers.push(() => makeCharacter(
  41394. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41395. {
  41396. front: {
  41397. height: math.unit(6, "feet"),
  41398. weight: math.unit(150, "lb"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/ariz/front.svg",
  41402. extra: 1401/1346,
  41403. bottom: 5/1406
  41404. }
  41405. },
  41406. },
  41407. [
  41408. {
  41409. name: "Normal",
  41410. height: math.unit(10, "feet"),
  41411. default: true
  41412. },
  41413. ]
  41414. ))
  41415. characterMakers.push(() => makeCharacter(
  41416. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41417. {
  41418. front: {
  41419. height: math.unit(6, "feet"),
  41420. weight: math.unit(140, "lb"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/sigrun/front.svg",
  41424. extra: 1418/1359,
  41425. bottom: 27/1445
  41426. }
  41427. },
  41428. },
  41429. [
  41430. {
  41431. name: "Macro",
  41432. height: math.unit(35, "feet"),
  41433. default: true
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Numin", 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/numin/front.svg",
  41446. extra: 1433/1388,
  41447. bottom: 12/1445
  41448. }
  41449. },
  41450. },
  41451. [
  41452. {
  41453. name: "Macro",
  41454. height: math.unit(21.5, "km"),
  41455. default: true
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41461. {
  41462. front: {
  41463. height: math.unit(6, "feet"),
  41464. weight: math.unit(463, "lb"),
  41465. name: "Front",
  41466. image: {
  41467. source: "./media/characters/melwa/front.svg",
  41468. extra: 1307/1248,
  41469. bottom: 93/1400
  41470. }
  41471. },
  41472. },
  41473. [
  41474. {
  41475. name: "Macro",
  41476. height: math.unit(50, "meters"),
  41477. default: true
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41483. {
  41484. front: {
  41485. height: math.unit(325, "feet"),
  41486. name: "Front",
  41487. image: {
  41488. source: "./media/characters/zorkaiju/front.svg",
  41489. extra: 1955/1814,
  41490. bottom: 40/1995
  41491. }
  41492. },
  41493. frontExtended: {
  41494. height: math.unit(325, "feet"),
  41495. name: "Front (Extended)",
  41496. image: {
  41497. source: "./media/characters/zorkaiju/front-extended.svg",
  41498. extra: 1955/1814,
  41499. bottom: 40/1995
  41500. }
  41501. },
  41502. side: {
  41503. height: math.unit(325, "feet"),
  41504. name: "Side",
  41505. image: {
  41506. source: "./media/characters/zorkaiju/side.svg",
  41507. extra: 1495/1396,
  41508. bottom: 17/1512
  41509. }
  41510. },
  41511. sideExtended: {
  41512. height: math.unit(325, "feet"),
  41513. name: "Side (Extended)",
  41514. image: {
  41515. source: "./media/characters/zorkaiju/side-extended.svg",
  41516. extra: 1495/1396,
  41517. bottom: 17/1512
  41518. }
  41519. },
  41520. back: {
  41521. height: math.unit(325, "feet"),
  41522. name: "Back",
  41523. image: {
  41524. source: "./media/characters/zorkaiju/back.svg",
  41525. extra: 1959/1821,
  41526. bottom: 31/1990
  41527. }
  41528. },
  41529. backExtended: {
  41530. height: math.unit(325, "feet"),
  41531. name: "Back (Extended)",
  41532. image: {
  41533. source: "./media/characters/zorkaiju/back-extended.svg",
  41534. extra: 1959/1821,
  41535. bottom: 31/1990
  41536. }
  41537. },
  41538. hand: {
  41539. height: math.unit(58.4, "feet"),
  41540. name: "Hand",
  41541. image: {
  41542. source: "./media/characters/zorkaiju/hand.svg"
  41543. }
  41544. },
  41545. handExtended: {
  41546. height: math.unit(61.4, "feet"),
  41547. name: "Hand (Extended)",
  41548. image: {
  41549. source: "./media/characters/zorkaiju/hand-extended.svg"
  41550. }
  41551. },
  41552. foot: {
  41553. height: math.unit(95, "feet"),
  41554. name: "Foot",
  41555. image: {
  41556. source: "./media/characters/zorkaiju/foot.svg"
  41557. }
  41558. },
  41559. leftArm: {
  41560. height: math.unit(59, "feet"),
  41561. name: "Left Arm",
  41562. image: {
  41563. source: "./media/characters/zorkaiju/left-arm.svg"
  41564. }
  41565. },
  41566. rightArm: {
  41567. height: math.unit(59, "feet"),
  41568. name: "Right Arm",
  41569. image: {
  41570. source: "./media/characters/zorkaiju/right-arm.svg"
  41571. }
  41572. },
  41573. tail: {
  41574. height: math.unit(104, "feet"),
  41575. name: "Tail",
  41576. image: {
  41577. source: "./media/characters/zorkaiju/tail.svg"
  41578. }
  41579. },
  41580. tailExtended: {
  41581. height: math.unit(104, "feet"),
  41582. name: "Tail (Extended)",
  41583. image: {
  41584. source: "./media/characters/zorkaiju/tail-extended.svg"
  41585. }
  41586. },
  41587. tailBottom: {
  41588. height: math.unit(104, "feet"),
  41589. name: "Tail Bottom",
  41590. image: {
  41591. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41592. }
  41593. },
  41594. crystal: {
  41595. height: math.unit(27.54, "feet"),
  41596. name: "Crystal",
  41597. image: {
  41598. source: "./media/characters/zorkaiju/crystal.svg"
  41599. }
  41600. },
  41601. },
  41602. [
  41603. {
  41604. name: "Kaiju",
  41605. height: math.unit(325, "feet"),
  41606. default: true
  41607. },
  41608. ]
  41609. ))
  41610. characterMakers.push(() => makeCharacter(
  41611. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41612. {
  41613. front: {
  41614. height: math.unit(6 + 1/12, "feet"),
  41615. weight: math.unit(115, "lb"),
  41616. name: "Front",
  41617. image: {
  41618. source: "./media/characters/bailey-belfry/front.svg",
  41619. extra: 1240/1121,
  41620. bottom: 101/1341
  41621. }
  41622. },
  41623. },
  41624. [
  41625. {
  41626. name: "Normal",
  41627. height: math.unit(6 + 1/12, "feet"),
  41628. default: true
  41629. },
  41630. ]
  41631. ))
  41632. characterMakers.push(() => makeCharacter(
  41633. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41634. {
  41635. side: {
  41636. height: math.unit(4, "meters"),
  41637. weight: math.unit(250, "kg"),
  41638. name: "Side",
  41639. image: {
  41640. source: "./media/characters/blacky/side.svg",
  41641. extra: 1027/919,
  41642. bottom: 43/1070
  41643. }
  41644. },
  41645. maw: {
  41646. height: math.unit(1, "meters"),
  41647. name: "Maw",
  41648. image: {
  41649. source: "./media/characters/blacky/maw.svg"
  41650. }
  41651. },
  41652. paw: {
  41653. height: math.unit(1, "meters"),
  41654. name: "Paw",
  41655. image: {
  41656. source: "./media/characters/blacky/paw.svg"
  41657. }
  41658. },
  41659. },
  41660. [
  41661. {
  41662. name: "Normal",
  41663. height: math.unit(4, "meters"),
  41664. default: true
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41670. {
  41671. front: {
  41672. height: math.unit(170, "cm"),
  41673. weight: math.unit(66, "kg"),
  41674. name: "Front",
  41675. image: {
  41676. source: "./media/characters/thux-ei/front.svg",
  41677. extra: 1109/1011,
  41678. bottom: 8/1117
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "Normal",
  41685. height: math.unit(170, "cm"),
  41686. default: true
  41687. },
  41688. ]
  41689. ))
  41690. characterMakers.push(() => makeCharacter(
  41691. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41692. {
  41693. front: {
  41694. height: math.unit(5, "feet"),
  41695. weight: math.unit(120, "lb"),
  41696. name: "Front",
  41697. image: {
  41698. source: "./media/characters/roxanne-voltaire/front.svg",
  41699. extra: 1901/1779,
  41700. bottom: 53/1954
  41701. }
  41702. },
  41703. },
  41704. [
  41705. {
  41706. name: "Normal",
  41707. height: math.unit(5, "feet"),
  41708. default: true
  41709. },
  41710. {
  41711. name: "Giant",
  41712. height: math.unit(50, "feet")
  41713. },
  41714. {
  41715. name: "Titan",
  41716. height: math.unit(500, "feet")
  41717. },
  41718. {
  41719. name: "Macro",
  41720. height: math.unit(5000, "feet")
  41721. },
  41722. {
  41723. name: "Megamacro",
  41724. height: math.unit(50000, "feet")
  41725. },
  41726. {
  41727. name: "Gigamacro",
  41728. height: math.unit(500000, "feet")
  41729. },
  41730. {
  41731. name: "Teramacro",
  41732. height: math.unit(5e6, "feet")
  41733. },
  41734. ]
  41735. ))
  41736. characterMakers.push(() => makeCharacter(
  41737. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41738. {
  41739. front: {
  41740. height: math.unit(6 + 2/12, "feet"),
  41741. name: "Front",
  41742. image: {
  41743. source: "./media/characters/squeaks/front.svg",
  41744. extra: 1823/1768,
  41745. bottom: 138/1961
  41746. }
  41747. },
  41748. },
  41749. [
  41750. {
  41751. name: "Micro",
  41752. height: math.unit(0.5, "inches")
  41753. },
  41754. {
  41755. name: "Normal",
  41756. height: math.unit(6 + 2/12, "feet"),
  41757. default: true
  41758. },
  41759. {
  41760. name: "Macro",
  41761. height: math.unit(600, "feet")
  41762. },
  41763. ]
  41764. ))
  41765. characterMakers.push(() => makeCharacter(
  41766. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41767. {
  41768. front: {
  41769. height: math.unit(1.72, "meters"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/archinger/front.svg",
  41773. extra: 1861/1675,
  41774. bottom: 125/1986
  41775. }
  41776. },
  41777. back: {
  41778. height: math.unit(1.72, "meters"),
  41779. name: "Back",
  41780. image: {
  41781. source: "./media/characters/archinger/back.svg",
  41782. extra: 1844/1701,
  41783. bottom: 104/1948
  41784. }
  41785. },
  41786. cock: {
  41787. height: math.unit(0.59, "feet"),
  41788. name: "Cock",
  41789. image: {
  41790. source: "./media/characters/archinger/cock.svg"
  41791. }
  41792. },
  41793. },
  41794. [
  41795. {
  41796. name: "Normal",
  41797. height: math.unit(1.72, "meters"),
  41798. default: true
  41799. },
  41800. {
  41801. name: "Macro",
  41802. height: math.unit(84, "meters")
  41803. },
  41804. {
  41805. name: "Macro+",
  41806. height: math.unit(112, "meters")
  41807. },
  41808. {
  41809. name: "Macro++",
  41810. height: math.unit(960, "meters")
  41811. },
  41812. {
  41813. name: "Macro+++",
  41814. height: math.unit(4, "km")
  41815. },
  41816. {
  41817. name: "Macro++++",
  41818. height: math.unit(48, "km")
  41819. },
  41820. {
  41821. name: "Macro+++++",
  41822. height: math.unit(4500, "km")
  41823. },
  41824. ]
  41825. ))
  41826. characterMakers.push(() => makeCharacter(
  41827. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41828. {
  41829. front: {
  41830. height: math.unit(5 + 5/12, "feet"),
  41831. name: "Front",
  41832. image: {
  41833. source: "./media/characters/alsnapz/front.svg",
  41834. extra: 1157/1065,
  41835. bottom: 42/1199
  41836. }
  41837. },
  41838. },
  41839. [
  41840. {
  41841. name: "Normal",
  41842. height: math.unit(5 + 5/12, "feet"),
  41843. default: true
  41844. },
  41845. ]
  41846. ))
  41847. characterMakers.push(() => makeCharacter(
  41848. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41849. {
  41850. side: {
  41851. height: math.unit(3.2, "earths"),
  41852. name: "Side",
  41853. image: {
  41854. source: "./media/characters/mag/side.svg",
  41855. extra: 1331/1008,
  41856. bottom: 52/1383
  41857. }
  41858. },
  41859. wing: {
  41860. height: math.unit(1.94, "earths"),
  41861. name: "Wing",
  41862. image: {
  41863. source: "./media/characters/mag/wing.svg"
  41864. }
  41865. },
  41866. dick: {
  41867. height: math.unit(1.8, "earths"),
  41868. name: "Dick",
  41869. image: {
  41870. source: "./media/characters/mag/dick.svg"
  41871. }
  41872. },
  41873. ass: {
  41874. height: math.unit(1.33, "earths"),
  41875. name: "Ass",
  41876. image: {
  41877. source: "./media/characters/mag/ass.svg"
  41878. }
  41879. },
  41880. head: {
  41881. height: math.unit(1.1, "earths"),
  41882. name: "Head",
  41883. image: {
  41884. source: "./media/characters/mag/head.svg"
  41885. }
  41886. },
  41887. maw: {
  41888. height: math.unit(1.62, "earths"),
  41889. name: "Maw",
  41890. image: {
  41891. source: "./media/characters/mag/maw.svg"
  41892. }
  41893. },
  41894. },
  41895. [
  41896. {
  41897. name: "Small",
  41898. height: math.unit(162, "feet")
  41899. },
  41900. {
  41901. name: "Normal",
  41902. height: math.unit(3.2, "earths"),
  41903. default: true
  41904. },
  41905. ]
  41906. ))
  41907. characterMakers.push(() => makeCharacter(
  41908. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41909. {
  41910. front: {
  41911. height: math.unit(512, "feet"),
  41912. weight: math.unit(63509, "tonnes"),
  41913. name: "Front",
  41914. image: {
  41915. source: "./media/characters/vorrel-harroc/front.svg",
  41916. extra: 1075/1063,
  41917. bottom: 62/1137
  41918. }
  41919. },
  41920. },
  41921. [
  41922. {
  41923. name: "Normal",
  41924. height: math.unit(10, "feet")
  41925. },
  41926. {
  41927. name: "Macro",
  41928. height: math.unit(512, "feet"),
  41929. default: true
  41930. },
  41931. {
  41932. name: "Megamacro",
  41933. height: math.unit(256, "miles")
  41934. },
  41935. {
  41936. name: "Gigamacro",
  41937. height: math.unit(4096, "miles")
  41938. },
  41939. ]
  41940. ))
  41941. characterMakers.push(() => makeCharacter(
  41942. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41943. {
  41944. side: {
  41945. height: math.unit(50, "feet"),
  41946. name: "Side",
  41947. image: {
  41948. source: "./media/characters/froimar/side.svg",
  41949. extra: 855/638,
  41950. bottom: 99/954
  41951. }
  41952. },
  41953. },
  41954. [
  41955. {
  41956. name: "Macro",
  41957. height: math.unit(50, "feet"),
  41958. default: true
  41959. },
  41960. ]
  41961. ))
  41962. characterMakers.push(() => makeCharacter(
  41963. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41964. {
  41965. front: {
  41966. height: math.unit(210, "miles"),
  41967. name: "Front",
  41968. image: {
  41969. source: "./media/characters/timothy/front.svg",
  41970. extra: 1007/943,
  41971. bottom: 62/1069
  41972. }
  41973. },
  41974. frontSkirt: {
  41975. height: math.unit(210, "miles"),
  41976. name: "Front (Skirt)",
  41977. image: {
  41978. source: "./media/characters/timothy/front-skirt.svg",
  41979. extra: 1007/943,
  41980. bottom: 62/1069
  41981. }
  41982. },
  41983. frontCoat: {
  41984. height: math.unit(210, "miles"),
  41985. name: "Front (Coat)",
  41986. image: {
  41987. source: "./media/characters/timothy/front-coat.svg",
  41988. extra: 1007/943,
  41989. bottom: 62/1069
  41990. }
  41991. },
  41992. },
  41993. [
  41994. {
  41995. name: "Macro",
  41996. height: math.unit(210, "miles"),
  41997. default: true
  41998. },
  41999. {
  42000. name: "Megamacro",
  42001. height: math.unit(210000, "miles")
  42002. },
  42003. ]
  42004. ))
  42005. characterMakers.push(() => makeCharacter(
  42006. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42007. {
  42008. front: {
  42009. height: math.unit(188, "feet"),
  42010. name: "Front",
  42011. image: {
  42012. source: "./media/characters/pyotr/front.svg",
  42013. extra: 1912/1826,
  42014. bottom: 18/1930
  42015. }
  42016. },
  42017. },
  42018. [
  42019. {
  42020. name: "Macro",
  42021. height: math.unit(188, "feet"),
  42022. default: true
  42023. },
  42024. {
  42025. name: "Megamacro",
  42026. height: math.unit(8, "miles")
  42027. },
  42028. ]
  42029. ))
  42030. characterMakers.push(() => makeCharacter(
  42031. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42032. {
  42033. side: {
  42034. height: math.unit(10, "feet"),
  42035. weight: math.unit(4500, "lb"),
  42036. name: "Side",
  42037. image: {
  42038. source: "./media/characters/ackart/side.svg",
  42039. extra: 1776/1668,
  42040. bottom: 116/1892
  42041. }
  42042. },
  42043. },
  42044. [
  42045. {
  42046. name: "Normal",
  42047. height: math.unit(10, "feet"),
  42048. default: true
  42049. },
  42050. ]
  42051. ))
  42052. characterMakers.push(() => makeCharacter(
  42053. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42054. {
  42055. side: {
  42056. height: math.unit(21, "feet"),
  42057. name: "Side",
  42058. image: {
  42059. source: "./media/characters/nolow/side.svg",
  42060. extra: 1484/1434,
  42061. bottom: 85/1569
  42062. }
  42063. },
  42064. sideErect: {
  42065. height: math.unit(21, "feet"),
  42066. name: "Side-erect",
  42067. image: {
  42068. source: "./media/characters/nolow/side-erect.svg",
  42069. extra: 1484/1434,
  42070. bottom: 85/1569
  42071. }
  42072. },
  42073. },
  42074. [
  42075. {
  42076. name: "Regular",
  42077. height: math.unit(12, "feet")
  42078. },
  42079. {
  42080. name: "Big Chee",
  42081. height: math.unit(21, "feet"),
  42082. default: true
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42088. {
  42089. front: {
  42090. height: math.unit(7, "feet"),
  42091. weight: math.unit(250, "lb"),
  42092. name: "Front",
  42093. image: {
  42094. source: "./media/characters/nines/front.svg",
  42095. extra: 1741/1607,
  42096. bottom: 41/1782
  42097. }
  42098. },
  42099. side: {
  42100. height: math.unit(7, "feet"),
  42101. weight: math.unit(250, "lb"),
  42102. name: "Side",
  42103. image: {
  42104. source: "./media/characters/nines/side.svg",
  42105. extra: 1854/1735,
  42106. bottom: 93/1947
  42107. }
  42108. },
  42109. back: {
  42110. height: math.unit(7, "feet"),
  42111. weight: math.unit(250, "lb"),
  42112. name: "Back",
  42113. image: {
  42114. source: "./media/characters/nines/back.svg",
  42115. extra: 1748/1615,
  42116. bottom: 20/1768
  42117. }
  42118. },
  42119. },
  42120. [
  42121. {
  42122. name: "Megamacro",
  42123. height: math.unit(99, "km"),
  42124. default: true
  42125. },
  42126. ]
  42127. ))
  42128. characterMakers.push(() => makeCharacter(
  42129. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42130. {
  42131. front: {
  42132. height: math.unit(5 + 10/12, "feet"),
  42133. weight: math.unit(210, "lb"),
  42134. name: "Front",
  42135. image: {
  42136. source: "./media/characters/zenith/front.svg",
  42137. extra: 1531/1452,
  42138. bottom: 198/1729
  42139. }
  42140. },
  42141. back: {
  42142. height: math.unit(5 + 10/12, "feet"),
  42143. weight: math.unit(210, "lb"),
  42144. name: "Back",
  42145. image: {
  42146. source: "./media/characters/zenith/back.svg",
  42147. extra: 1571/1487,
  42148. bottom: 75/1646
  42149. }
  42150. },
  42151. },
  42152. [
  42153. {
  42154. name: "Normal",
  42155. height: math.unit(5 + 10/12, "feet"),
  42156. default: true
  42157. }
  42158. ]
  42159. ))
  42160. characterMakers.push(() => makeCharacter(
  42161. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42162. {
  42163. front: {
  42164. height: math.unit(4, "feet"),
  42165. weight: math.unit(60, "lb"),
  42166. name: "Front",
  42167. image: {
  42168. source: "./media/characters/jasper/front.svg",
  42169. extra: 1450/1379,
  42170. bottom: 19/1469
  42171. }
  42172. },
  42173. },
  42174. [
  42175. {
  42176. name: "Normal",
  42177. height: math.unit(4, "feet"),
  42178. default: true
  42179. },
  42180. ]
  42181. ))
  42182. characterMakers.push(() => makeCharacter(
  42183. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42184. {
  42185. front: {
  42186. height: math.unit(6 + 5/12, "feet"),
  42187. weight: math.unit(290, "lb"),
  42188. name: "Front",
  42189. image: {
  42190. source: "./media/characters/tiberius-thyben/front.svg",
  42191. extra: 757/739,
  42192. bottom: 39/796
  42193. }
  42194. },
  42195. },
  42196. [
  42197. {
  42198. name: "Micro",
  42199. height: math.unit(1.5, "inches")
  42200. },
  42201. {
  42202. name: "Normal",
  42203. height: math.unit(6 + 5/12, "feet"),
  42204. default: true
  42205. },
  42206. {
  42207. name: "Macro",
  42208. height: math.unit(300, "feet")
  42209. },
  42210. ]
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42214. {
  42215. front: {
  42216. height: math.unit(5 + 6/12, "feet"),
  42217. weight: math.unit(60, "kg"),
  42218. name: "Front",
  42219. image: {
  42220. source: "./media/characters/sabre/front.svg",
  42221. extra: 738/671,
  42222. bottom: 27/765
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Teeny",
  42229. height: math.unit(2, "inches")
  42230. },
  42231. {
  42232. name: "Smol",
  42233. height: math.unit(8, "inches")
  42234. },
  42235. {
  42236. name: "Normal",
  42237. height: math.unit(5 + 6/12, "feet"),
  42238. default: true
  42239. },
  42240. {
  42241. name: "Mini-Macro",
  42242. height: math.unit(15, "feet")
  42243. },
  42244. {
  42245. name: "Macro",
  42246. height: math.unit(50, "feet")
  42247. },
  42248. ]
  42249. ))
  42250. characterMakers.push(() => makeCharacter(
  42251. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42252. {
  42253. front: {
  42254. height: math.unit(6 + 4/12, "feet"),
  42255. weight: math.unit(170, "lb"),
  42256. name: "Front",
  42257. image: {
  42258. source: "./media/characters/charlie/front.svg",
  42259. extra: 1348/1228,
  42260. bottom: 15/1363
  42261. }
  42262. },
  42263. },
  42264. [
  42265. {
  42266. name: "Macro",
  42267. height: math.unit(1700, "meters"),
  42268. default: true
  42269. },
  42270. {
  42271. name: "MegaMacro",
  42272. height: math.unit(20400, "meters")
  42273. },
  42274. ]
  42275. ))
  42276. characterMakers.push(() => makeCharacter(
  42277. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42278. {
  42279. front: {
  42280. height: math.unit(6 + 3/12, "feet"),
  42281. weight: math.unit(185, "lb"),
  42282. name: "Front",
  42283. image: {
  42284. source: "./media/characters/susan-grant/front.svg",
  42285. extra: 1351/1327,
  42286. bottom: 26/1377
  42287. }
  42288. },
  42289. },
  42290. [
  42291. {
  42292. name: "Normal",
  42293. height: math.unit(6 + 3/12, "feet"),
  42294. default: true
  42295. },
  42296. {
  42297. name: "Macro",
  42298. height: math.unit(225, "feet")
  42299. },
  42300. {
  42301. name: "Macro+",
  42302. height: math.unit(900, "feet")
  42303. },
  42304. {
  42305. name: "MegaMacro",
  42306. height: math.unit(14400, "feet")
  42307. },
  42308. ]
  42309. ))
  42310. characterMakers.push(() => makeCharacter(
  42311. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42312. {
  42313. front: {
  42314. height: math.unit(5 + 4/12, "feet"),
  42315. weight: math.unit(110, "lb"),
  42316. name: "Front",
  42317. image: {
  42318. source: "./media/characters/axel-isanov/front.svg",
  42319. extra: 1096/1065,
  42320. bottom: 13/1109
  42321. }
  42322. },
  42323. },
  42324. [
  42325. {
  42326. name: "Normal",
  42327. height: math.unit(5 + 4/12, "feet"),
  42328. default: true
  42329. },
  42330. ]
  42331. ))
  42332. characterMakers.push(() => makeCharacter(
  42333. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42334. {
  42335. front: {
  42336. height: math.unit(9, "feet"),
  42337. weight: math.unit(467, "lb"),
  42338. name: "Front",
  42339. image: {
  42340. source: "./media/characters/necahual/front.svg",
  42341. extra: 920/873,
  42342. bottom: 26/946
  42343. }
  42344. },
  42345. back: {
  42346. height: math.unit(9, "feet"),
  42347. weight: math.unit(467, "lb"),
  42348. name: "Back",
  42349. image: {
  42350. source: "./media/characters/necahual/back.svg",
  42351. extra: 930/884,
  42352. bottom: 16/946
  42353. }
  42354. },
  42355. frontUnderwear: {
  42356. height: math.unit(9, "feet"),
  42357. weight: math.unit(467, "lb"),
  42358. name: "Front (Underwear)",
  42359. image: {
  42360. source: "./media/characters/necahual/front-underwear.svg",
  42361. extra: 920/873,
  42362. bottom: 26/946
  42363. }
  42364. },
  42365. frontDressed: {
  42366. height: math.unit(9, "feet"),
  42367. weight: math.unit(467, "lb"),
  42368. name: "Front (Dressed)",
  42369. image: {
  42370. source: "./media/characters/necahual/front-dressed.svg",
  42371. extra: 920/873,
  42372. bottom: 26/946
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Comprsesed",
  42379. height: math.unit(9, "feet")
  42380. },
  42381. {
  42382. name: "Natural",
  42383. height: math.unit(15, "feet"),
  42384. default: true
  42385. },
  42386. {
  42387. name: "Boosted",
  42388. height: math.unit(50, "feet")
  42389. },
  42390. {
  42391. name: "Boosted+",
  42392. height: math.unit(150, "feet")
  42393. },
  42394. {
  42395. name: "Max",
  42396. height: math.unit(500, "feet")
  42397. },
  42398. ]
  42399. ))
  42400. characterMakers.push(() => makeCharacter(
  42401. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42402. {
  42403. front: {
  42404. height: math.unit(22 + 1/12, "feet"),
  42405. weight: math.unit(3200, "lb"),
  42406. name: "Front",
  42407. image: {
  42408. source: "./media/characters/theo-acacia/front.svg",
  42409. extra: 1796/1741,
  42410. bottom: 83/1879
  42411. }
  42412. },
  42413. frontUnderwear: {
  42414. height: math.unit(22 + 1/12, "feet"),
  42415. weight: math.unit(3200, "lb"),
  42416. name: "Front (Underwear)",
  42417. image: {
  42418. source: "./media/characters/theo-acacia/front-underwear.svg",
  42419. extra: 1796/1741,
  42420. bottom: 83/1879
  42421. }
  42422. },
  42423. frontNude: {
  42424. height: math.unit(22 + 1/12, "feet"),
  42425. weight: math.unit(3200, "lb"),
  42426. name: "Front (Nude)",
  42427. image: {
  42428. source: "./media/characters/theo-acacia/front-nude.svg",
  42429. extra: 1796/1741,
  42430. bottom: 83/1879
  42431. }
  42432. },
  42433. },
  42434. [
  42435. {
  42436. name: "Normal",
  42437. height: math.unit(22 + 1/12, "feet"),
  42438. default: true
  42439. },
  42440. ]
  42441. ))
  42442. characterMakers.push(() => makeCharacter(
  42443. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42444. {
  42445. front: {
  42446. height: math.unit(20, "feet"),
  42447. name: "Front",
  42448. image: {
  42449. source: "./media/characters/astra/front.svg",
  42450. extra: 1850/1714,
  42451. bottom: 106/1956
  42452. }
  42453. },
  42454. frontUndressed: {
  42455. height: math.unit(20, "feet"),
  42456. name: "Front (Undressed)",
  42457. image: {
  42458. source: "./media/characters/astra/front-undressed.svg",
  42459. extra: 1926/1749,
  42460. bottom: 0/1926
  42461. }
  42462. },
  42463. hand: {
  42464. height: math.unit(1.53, "feet"),
  42465. name: "Hand",
  42466. image: {
  42467. source: "./media/characters/astra/hand.svg"
  42468. }
  42469. },
  42470. paw: {
  42471. height: math.unit(1.53, "feet"),
  42472. name: "Paw",
  42473. image: {
  42474. source: "./media/characters/astra/paw.svg"
  42475. }
  42476. },
  42477. },
  42478. [
  42479. {
  42480. name: "Smallest",
  42481. height: math.unit(20, "feet")
  42482. },
  42483. {
  42484. name: "Normal",
  42485. height: math.unit(1e9, "miles"),
  42486. default: true
  42487. },
  42488. {
  42489. name: "Larger",
  42490. height: math.unit(5, "multiverses")
  42491. },
  42492. {
  42493. name: "Largest",
  42494. height: math.unit(1e9, "multiverses")
  42495. },
  42496. ]
  42497. ))
  42498. characterMakers.push(() => makeCharacter(
  42499. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42500. {
  42501. front: {
  42502. height: math.unit(8, "feet"),
  42503. name: "Front",
  42504. image: {
  42505. source: "./media/characters/breanna/front.svg",
  42506. extra: 1912/1632,
  42507. bottom: 33/1945
  42508. }
  42509. },
  42510. },
  42511. [
  42512. {
  42513. name: "Smallest",
  42514. height: math.unit(8, "feet")
  42515. },
  42516. {
  42517. name: "Normal",
  42518. height: math.unit(1, "mile"),
  42519. default: true
  42520. },
  42521. {
  42522. name: "Maximum",
  42523. height: math.unit(1500000000000, "lightyears")
  42524. },
  42525. ]
  42526. ))
  42527. characterMakers.push(() => makeCharacter(
  42528. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42529. {
  42530. front: {
  42531. height: math.unit(5 + 11/12, "feet"),
  42532. weight: math.unit(155, "lb"),
  42533. name: "Front",
  42534. image: {
  42535. source: "./media/characters/cai/front.svg",
  42536. extra: 1823/1702,
  42537. bottom: 32/1855
  42538. }
  42539. },
  42540. back: {
  42541. height: math.unit(5 + 11/12, "feet"),
  42542. weight: math.unit(155, "lb"),
  42543. name: "Back",
  42544. image: {
  42545. source: "./media/characters/cai/back.svg",
  42546. extra: 1809/1708,
  42547. bottom: 31/1840
  42548. }
  42549. },
  42550. },
  42551. [
  42552. {
  42553. name: "Normal",
  42554. height: math.unit(5 + 11/12, "feet"),
  42555. default: true
  42556. },
  42557. {
  42558. name: "Big",
  42559. height: math.unit(15, "feet")
  42560. },
  42561. {
  42562. name: "Macro",
  42563. height: math.unit(200, "feet")
  42564. },
  42565. ]
  42566. ))
  42567. characterMakers.push(() => makeCharacter(
  42568. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42569. {
  42570. front: {
  42571. height: math.unit(5 + 6/12, "feet"),
  42572. weight: math.unit(160, "lb"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42576. extra: 1227/1174,
  42577. bottom: 37/1264
  42578. }
  42579. },
  42580. },
  42581. [
  42582. {
  42583. name: "Macro",
  42584. height: math.unit(444, "meters"),
  42585. default: true
  42586. },
  42587. ]
  42588. ))
  42589. characterMakers.push(() => makeCharacter(
  42590. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42591. {
  42592. front: {
  42593. height: math.unit(18 + 7/12, "feet"),
  42594. name: "Front",
  42595. image: {
  42596. source: "./media/characters/rex/front.svg",
  42597. extra: 1941/1807,
  42598. bottom: 66/2007
  42599. }
  42600. },
  42601. back: {
  42602. height: math.unit(18 + 7/12, "feet"),
  42603. name: "Back",
  42604. image: {
  42605. source: "./media/characters/rex/back.svg",
  42606. extra: 1937/1822,
  42607. bottom: 42/1979
  42608. }
  42609. },
  42610. boot: {
  42611. height: math.unit(3.45, "feet"),
  42612. name: "Boot",
  42613. image: {
  42614. source: "./media/characters/rex/boot.svg"
  42615. }
  42616. },
  42617. paw: {
  42618. height: math.unit(4.17, "feet"),
  42619. name: "Paw",
  42620. image: {
  42621. source: "./media/characters/rex/paw.svg"
  42622. }
  42623. },
  42624. head: {
  42625. height: math.unit(6.728, "feet"),
  42626. name: "Head",
  42627. image: {
  42628. source: "./media/characters/rex/head.svg"
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Nano",
  42635. height: math.unit(18 + 7/12, "feet")
  42636. },
  42637. {
  42638. name: "Micro",
  42639. height: math.unit(1.5, "megameters")
  42640. },
  42641. {
  42642. name: "Normal",
  42643. height: math.unit(440, "megameters"),
  42644. default: true
  42645. },
  42646. {
  42647. name: "Macro",
  42648. height: math.unit(2.5, "gigameters")
  42649. },
  42650. {
  42651. name: "Gigamacro",
  42652. height: math.unit(2, "galaxies")
  42653. },
  42654. ]
  42655. ))
  42656. characterMakers.push(() => makeCharacter(
  42657. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42658. {
  42659. side: {
  42660. height: math.unit(32, "feet"),
  42661. weight: math.unit(250000, "lb"),
  42662. name: "Side",
  42663. image: {
  42664. source: "./media/characters/silverwing/side.svg",
  42665. extra: 1100/1019,
  42666. bottom: 204/1304
  42667. }
  42668. },
  42669. },
  42670. [
  42671. {
  42672. name: "Normal",
  42673. height: math.unit(32, "feet"),
  42674. default: true
  42675. },
  42676. ]
  42677. ))
  42678. characterMakers.push(() => makeCharacter(
  42679. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42680. {
  42681. front: {
  42682. height: math.unit(6 + 6/12, "feet"),
  42683. weight: math.unit(350, "lb"),
  42684. name: "Front",
  42685. image: {
  42686. source: "./media/characters/tristan-hawthorne/front.svg",
  42687. extra: 1159/1124,
  42688. bottom: 37/1196
  42689. },
  42690. form: "labrador",
  42691. default: true
  42692. },
  42693. skunkFront: {
  42694. height: math.unit(4 + 6/12, "feet"),
  42695. weight: math.unit(120, "lb"),
  42696. name: "Front",
  42697. image: {
  42698. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42699. extra: 1609/1551,
  42700. bottom: 169/1778
  42701. },
  42702. form: "skunk",
  42703. default: true
  42704. },
  42705. },
  42706. [
  42707. {
  42708. name: "Normal",
  42709. height: math.unit(6 + 6/12, "feet"),
  42710. form: "labrador",
  42711. default: true
  42712. },
  42713. {
  42714. name: "Normal",
  42715. height: math.unit(4 + 6/12, "feet"),
  42716. form: "skunk",
  42717. default: true
  42718. },
  42719. ],
  42720. {
  42721. "labrador": {
  42722. name: "Labrador",
  42723. default: true
  42724. },
  42725. "skunk": {
  42726. name: "Skunk"
  42727. }
  42728. }
  42729. ))
  42730. characterMakers.push(() => makeCharacter(
  42731. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42732. {
  42733. front: {
  42734. height: math.unit(5 + 11/12, "feet"),
  42735. weight: math.unit(190, "lb"),
  42736. name: "Front",
  42737. image: {
  42738. source: "./media/characters/mizu/front.svg",
  42739. extra: 1988/1788,
  42740. bottom: 14/2002
  42741. }
  42742. },
  42743. },
  42744. [
  42745. {
  42746. name: "Normal",
  42747. height: math.unit(5 + 11/12, "feet"),
  42748. default: true
  42749. },
  42750. ]
  42751. ))
  42752. characterMakers.push(() => makeCharacter(
  42753. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42754. {
  42755. front: {
  42756. height: math.unit(1.7, "feet"),
  42757. weight: math.unit(50, "lb"),
  42758. name: "Front",
  42759. image: {
  42760. source: "./media/characters/dechroma/front.svg",
  42761. extra: 1095/859,
  42762. bottom: 64/1159
  42763. }
  42764. },
  42765. },
  42766. [
  42767. {
  42768. name: "Normal",
  42769. height: math.unit(1.7, "feet"),
  42770. default: true
  42771. },
  42772. ]
  42773. ))
  42774. characterMakers.push(() => makeCharacter(
  42775. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42776. {
  42777. side: {
  42778. height: math.unit(30, "feet"),
  42779. name: "Side",
  42780. image: {
  42781. source: "./media/characters/veluren-thanazel/side.svg",
  42782. extra: 1611/633,
  42783. bottom: 118/1729
  42784. }
  42785. },
  42786. front: {
  42787. height: math.unit(30, "feet"),
  42788. name: "Front",
  42789. image: {
  42790. source: "./media/characters/veluren-thanazel/front.svg",
  42791. extra: 1486/636,
  42792. bottom: 238/1724
  42793. }
  42794. },
  42795. head: {
  42796. height: math.unit(21.4, "feet"),
  42797. name: "Head",
  42798. image: {
  42799. source: "./media/characters/veluren-thanazel/head.svg"
  42800. }
  42801. },
  42802. genitals: {
  42803. height: math.unit(19.4, "feet"),
  42804. name: "Genitals",
  42805. image: {
  42806. source: "./media/characters/veluren-thanazel/genitals.svg"
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Social",
  42813. height: math.unit(6, "feet")
  42814. },
  42815. {
  42816. name: "Play",
  42817. height: math.unit(12, "feet")
  42818. },
  42819. {
  42820. name: "True",
  42821. height: math.unit(30, "feet"),
  42822. default: true
  42823. },
  42824. ]
  42825. ))
  42826. characterMakers.push(() => makeCharacter(
  42827. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42828. {
  42829. front: {
  42830. height: math.unit(7 + 6/12, "feet"),
  42831. weight: math.unit(500, "kg"),
  42832. name: "Front",
  42833. image: {
  42834. source: "./media/characters/arcturas/front.svg",
  42835. extra: 1700/1500,
  42836. bottom: 145/1845
  42837. }
  42838. },
  42839. },
  42840. [
  42841. {
  42842. name: "Normal",
  42843. height: math.unit(7 + 6/12, "feet"),
  42844. default: true
  42845. },
  42846. ]
  42847. ))
  42848. characterMakers.push(() => makeCharacter(
  42849. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42850. {
  42851. side: {
  42852. height: math.unit(6, "feet"),
  42853. weight: math.unit(2, "tons"),
  42854. name: "Side",
  42855. image: {
  42856. source: "./media/characters/vitaen/side.svg",
  42857. extra: 1157/617,
  42858. bottom: 122/1279
  42859. }
  42860. },
  42861. },
  42862. [
  42863. {
  42864. name: "Normal",
  42865. height: math.unit(6, "feet"),
  42866. default: true
  42867. },
  42868. ]
  42869. ))
  42870. characterMakers.push(() => makeCharacter(
  42871. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42872. {
  42873. front: {
  42874. height: math.unit(19, "feet"),
  42875. name: "Front",
  42876. image: {
  42877. source: "./media/characters/fia-dreamweaver/front.svg",
  42878. extra: 1630/1504,
  42879. bottom: 25/1655
  42880. }
  42881. },
  42882. },
  42883. [
  42884. {
  42885. name: "Normal",
  42886. height: math.unit(19, "feet"),
  42887. default: true
  42888. },
  42889. ]
  42890. ))
  42891. characterMakers.push(() => makeCharacter(
  42892. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42893. {
  42894. front: {
  42895. height: math.unit(5 + 4/12, "feet"),
  42896. name: "Front",
  42897. image: {
  42898. source: "./media/characters/artan/front.svg",
  42899. extra: 1618/1535,
  42900. bottom: 46/1664
  42901. }
  42902. },
  42903. back: {
  42904. height: math.unit(5 + 4/12, "feet"),
  42905. name: "Back",
  42906. image: {
  42907. source: "./media/characters/artan/back.svg",
  42908. extra: 1618/1543,
  42909. bottom: 31/1649
  42910. }
  42911. },
  42912. },
  42913. [
  42914. {
  42915. name: "Normal",
  42916. height: math.unit(5 + 4/12, "feet"),
  42917. default: true
  42918. },
  42919. ]
  42920. ))
  42921. characterMakers.push(() => makeCharacter(
  42922. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42923. {
  42924. side: {
  42925. height: math.unit(182, "cm"),
  42926. weight: math.unit(1000, "lb"),
  42927. name: "Side",
  42928. image: {
  42929. source: "./media/characters/silver-dragon/side.svg",
  42930. extra: 710/287,
  42931. bottom: 88/798
  42932. }
  42933. },
  42934. },
  42935. [
  42936. {
  42937. name: "Normal",
  42938. height: math.unit(182, "cm"),
  42939. default: true
  42940. },
  42941. ]
  42942. ))
  42943. characterMakers.push(() => makeCharacter(
  42944. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42945. {
  42946. side: {
  42947. height: math.unit(6 + 6/12, "feet"),
  42948. weight: math.unit(1.5, "tons"),
  42949. name: "Side",
  42950. image: {
  42951. source: "./media/characters/zephyr/side.svg",
  42952. extra: 1433/586,
  42953. bottom: 109/1542
  42954. }
  42955. },
  42956. },
  42957. [
  42958. {
  42959. name: "Normal",
  42960. height: math.unit(6 + 6/12, "feet"),
  42961. default: true
  42962. },
  42963. ]
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42967. {
  42968. side: {
  42969. height: math.unit(1, "feet"),
  42970. name: "Side",
  42971. image: {
  42972. source: "./media/characters/vixye/side.svg",
  42973. extra: 632/541,
  42974. bottom: 0/632
  42975. }
  42976. },
  42977. },
  42978. [
  42979. {
  42980. name: "Normal",
  42981. height: math.unit(1, "feet"),
  42982. default: true
  42983. },
  42984. {
  42985. name: "True",
  42986. height: math.unit(1e15, "multiverses")
  42987. },
  42988. ]
  42989. ))
  42990. characterMakers.push(() => makeCharacter(
  42991. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42992. {
  42993. front: {
  42994. height: math.unit(8 + 2/12, "feet"),
  42995. weight: math.unit(650, "lb"),
  42996. name: "Front",
  42997. image: {
  42998. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42999. extra: 1174/1137,
  43000. bottom: 82/1256
  43001. }
  43002. },
  43003. back: {
  43004. height: math.unit(8 + 2/12, "feet"),
  43005. weight: math.unit(650, "lb"),
  43006. name: "Back",
  43007. image: {
  43008. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43009. extra: 1204/1157,
  43010. bottom: 46/1250
  43011. }
  43012. },
  43013. },
  43014. [
  43015. {
  43016. name: "Wildform",
  43017. height: math.unit(8 + 2/12, "feet"),
  43018. default: true
  43019. },
  43020. ]
  43021. ))
  43022. characterMakers.push(() => makeCharacter(
  43023. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43024. {
  43025. front: {
  43026. height: math.unit(18, "feet"),
  43027. name: "Front",
  43028. image: {
  43029. source: "./media/characters/cyphin/front.svg",
  43030. extra: 970/886,
  43031. bottom: 42/1012
  43032. }
  43033. },
  43034. back: {
  43035. height: math.unit(18, "feet"),
  43036. name: "Back",
  43037. image: {
  43038. source: "./media/characters/cyphin/back.svg",
  43039. extra: 1009/894,
  43040. bottom: 24/1033
  43041. }
  43042. },
  43043. head: {
  43044. height: math.unit(5.05, "feet"),
  43045. name: "Head",
  43046. image: {
  43047. source: "./media/characters/cyphin/head.svg"
  43048. }
  43049. },
  43050. tailbud: {
  43051. height: math.unit(5, "feet"),
  43052. name: "Tailbud",
  43053. image: {
  43054. source: "./media/characters/cyphin/tailbud.svg"
  43055. }
  43056. },
  43057. },
  43058. [
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43063. {
  43064. side: {
  43065. height: math.unit(10, "feet"),
  43066. weight: math.unit(6, "tons"),
  43067. name: "Side",
  43068. image: {
  43069. source: "./media/characters/raijin/side.svg",
  43070. extra: 1529/613,
  43071. bottom: 337/1866
  43072. }
  43073. },
  43074. },
  43075. [
  43076. {
  43077. name: "Normal",
  43078. height: math.unit(10, "feet"),
  43079. default: true
  43080. },
  43081. ]
  43082. ))
  43083. characterMakers.push(() => makeCharacter(
  43084. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43085. {
  43086. side: {
  43087. height: math.unit(9, "feet"),
  43088. name: "Side",
  43089. image: {
  43090. source: "./media/characters/nilghais/side.svg",
  43091. extra: 1047/744,
  43092. bottom: 91/1138
  43093. }
  43094. },
  43095. head: {
  43096. height: math.unit(3.14, "feet"),
  43097. name: "Head",
  43098. image: {
  43099. source: "./media/characters/nilghais/head.svg"
  43100. }
  43101. },
  43102. mouth: {
  43103. height: math.unit(4.6, "feet"),
  43104. name: "Mouth",
  43105. image: {
  43106. source: "./media/characters/nilghais/mouth.svg"
  43107. }
  43108. },
  43109. wings: {
  43110. height: math.unit(24, "feet"),
  43111. name: "Wings",
  43112. image: {
  43113. source: "./media/characters/nilghais/wings.svg"
  43114. }
  43115. },
  43116. ass: {
  43117. height: math.unit(6.12, "feet"),
  43118. name: "Ass",
  43119. image: {
  43120. source: "./media/characters/nilghais/ass.svg"
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Normal",
  43127. height: math.unit(9, "feet"),
  43128. default: true
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43134. {
  43135. regular: {
  43136. height: math.unit(16 + 2/12, "feet"),
  43137. weight: math.unit(2300, "lb"),
  43138. name: "Regular",
  43139. image: {
  43140. source: "./media/characters/zolgar/regular.svg",
  43141. extra: 1246/1004,
  43142. bottom: 124/1370
  43143. }
  43144. },
  43145. boxers: {
  43146. height: math.unit(16 + 2/12, "feet"),
  43147. weight: math.unit(2300, "lb"),
  43148. name: "Boxers",
  43149. image: {
  43150. source: "./media/characters/zolgar/boxers.svg",
  43151. extra: 1246/1004,
  43152. bottom: 124/1370
  43153. }
  43154. },
  43155. armored: {
  43156. height: math.unit(16 + 2/12, "feet"),
  43157. weight: math.unit(2300, "lb"),
  43158. name: "Armored",
  43159. image: {
  43160. source: "./media/characters/zolgar/armored.svg",
  43161. extra: 1246/1004,
  43162. bottom: 124/1370
  43163. }
  43164. },
  43165. goth: {
  43166. height: math.unit(16 + 2/12, "feet"),
  43167. weight: math.unit(2300, "lb"),
  43168. name: "Goth",
  43169. image: {
  43170. source: "./media/characters/zolgar/goth.svg",
  43171. extra: 1246/1004,
  43172. bottom: 124/1370
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Shrunken Down",
  43179. height: math.unit(9 + 2/12, "feet")
  43180. },
  43181. {
  43182. name: "Normal",
  43183. height: math.unit(16 + 2/12, "feet"),
  43184. default: true
  43185. },
  43186. ]
  43187. ))
  43188. characterMakers.push(() => makeCharacter(
  43189. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43190. {
  43191. front: {
  43192. height: math.unit(6, "feet"),
  43193. weight: math.unit(168, "lb"),
  43194. name: "Front",
  43195. image: {
  43196. source: "./media/characters/luca/front.svg",
  43197. extra: 841/667,
  43198. bottom: 102/943
  43199. }
  43200. },
  43201. },
  43202. [
  43203. {
  43204. name: "Normal",
  43205. height: math.unit(6, "feet"),
  43206. default: true
  43207. },
  43208. ]
  43209. ))
  43210. characterMakers.push(() => makeCharacter(
  43211. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43212. {
  43213. side: {
  43214. height: math.unit(7 + 3/12, "feet"),
  43215. weight: math.unit(312, "lb"),
  43216. name: "Side",
  43217. image: {
  43218. source: "./media/characters/zezo/side.svg",
  43219. extra: 1192/1067,
  43220. bottom: 63/1255
  43221. }
  43222. },
  43223. },
  43224. [
  43225. {
  43226. name: "Normal",
  43227. height: math.unit(7 + 3/12, "feet"),
  43228. default: true
  43229. },
  43230. ]
  43231. ))
  43232. characterMakers.push(() => makeCharacter(
  43233. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43234. {
  43235. front: {
  43236. height: math.unit(5 + 5/12, "feet"),
  43237. weight: math.unit(170, "lb"),
  43238. name: "Front",
  43239. image: {
  43240. source: "./media/characters/mayso/front.svg",
  43241. extra: 1215/1108,
  43242. bottom: 16/1231
  43243. }
  43244. },
  43245. },
  43246. [
  43247. {
  43248. name: "Normal",
  43249. height: math.unit(5 + 5/12, "feet"),
  43250. default: true
  43251. },
  43252. ]
  43253. ))
  43254. characterMakers.push(() => makeCharacter(
  43255. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43256. {
  43257. front: {
  43258. height: math.unit(4 + 3/12, "feet"),
  43259. weight: math.unit(80, "lb"),
  43260. name: "Front",
  43261. image: {
  43262. source: "./media/characters/hess/front.svg",
  43263. extra: 1200/1123,
  43264. bottom: 16/1216
  43265. }
  43266. },
  43267. },
  43268. [
  43269. {
  43270. name: "Normal",
  43271. height: math.unit(4 + 3/12, "feet"),
  43272. default: true
  43273. },
  43274. ]
  43275. ))
  43276. characterMakers.push(() => makeCharacter(
  43277. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43278. {
  43279. front: {
  43280. height: math.unit(1.9, "meters"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/ashgar/front.svg",
  43284. extra: 1177/1146,
  43285. bottom: 99/1276
  43286. }
  43287. },
  43288. back: {
  43289. height: math.unit(1.9, "meters"),
  43290. name: "Back",
  43291. image: {
  43292. source: "./media/characters/ashgar/back.svg",
  43293. extra: 1201/1183,
  43294. bottom: 53/1254
  43295. }
  43296. },
  43297. feral: {
  43298. height: math.unit(1.4, "meters"),
  43299. name: "Feral",
  43300. image: {
  43301. source: "./media/characters/ashgar/feral.svg",
  43302. extra: 370/345,
  43303. bottom: 45/415
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Normal",
  43310. height: math.unit(1.9, "meters"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43317. {
  43318. regular: {
  43319. height: math.unit(6, "feet"),
  43320. weight: math.unit(220, "lb"),
  43321. name: "Regular",
  43322. image: {
  43323. source: "./media/characters/phillip/regular.svg",
  43324. extra: 1373/1277,
  43325. bottom: 75/1448
  43326. }
  43327. },
  43328. dressed: {
  43329. height: math.unit(6, "feet"),
  43330. weight: math.unit(220, "lb"),
  43331. name: "Dressed",
  43332. image: {
  43333. source: "./media/characters/phillip/dressed.svg",
  43334. extra: 1373/1277,
  43335. bottom: 75/1448
  43336. }
  43337. },
  43338. paw: {
  43339. height: math.unit(1.44, "feet"),
  43340. name: "Paw",
  43341. image: {
  43342. source: "./media/characters/phillip/paw.svg"
  43343. }
  43344. },
  43345. },
  43346. [
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(6, "feet"),
  43350. default: true
  43351. },
  43352. ]
  43353. ))
  43354. characterMakers.push(() => makeCharacter(
  43355. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43356. {
  43357. side: {
  43358. height: math.unit(42, "feet"),
  43359. name: "Side",
  43360. image: {
  43361. source: "./media/characters/uvula/side.svg",
  43362. extra: 683/586,
  43363. bottom: 60/743
  43364. }
  43365. },
  43366. front: {
  43367. height: math.unit(42, "feet"),
  43368. name: "Front",
  43369. image: {
  43370. source: "./media/characters/uvula/front.svg",
  43371. extra: 705/613,
  43372. bottom: 54/759
  43373. }
  43374. },
  43375. maw: {
  43376. height: math.unit(23.5, "feet"),
  43377. name: "Maw",
  43378. image: {
  43379. source: "./media/characters/uvula/maw.svg"
  43380. }
  43381. },
  43382. },
  43383. [
  43384. {
  43385. name: "Original Size",
  43386. height: math.unit(14, "inches")
  43387. },
  43388. {
  43389. name: "Human Size",
  43390. height: math.unit(6, "feet")
  43391. },
  43392. {
  43393. name: "Big",
  43394. height: math.unit(42, "feet"),
  43395. default: true
  43396. },
  43397. {
  43398. name: "Bigger",
  43399. height: math.unit(100, "feet")
  43400. },
  43401. ]
  43402. ))
  43403. characterMakers.push(() => makeCharacter(
  43404. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43405. {
  43406. front: {
  43407. height: math.unit(5 + 11/12, "feet"),
  43408. name: "Front",
  43409. image: {
  43410. source: "./media/characters/lannah/front.svg",
  43411. extra: 1208/1113,
  43412. bottom: 97/1305
  43413. }
  43414. },
  43415. },
  43416. [
  43417. {
  43418. name: "Normal",
  43419. height: math.unit(5 + 11/12, "feet"),
  43420. default: true
  43421. },
  43422. ]
  43423. ))
  43424. characterMakers.push(() => makeCharacter(
  43425. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43426. {
  43427. front: {
  43428. height: math.unit(6 + 3/12, "feet"),
  43429. weight: math.unit(3.5, "tons"),
  43430. name: "Front",
  43431. image: {
  43432. source: "./media/characters/emberflame/front.svg",
  43433. extra: 1198/672,
  43434. bottom: 82/1280
  43435. }
  43436. },
  43437. side: {
  43438. height: math.unit(6 + 3/12, "feet"),
  43439. weight: math.unit(3.5, "tons"),
  43440. name: "Side",
  43441. image: {
  43442. source: "./media/characters/emberflame/side.svg",
  43443. extra: 938/527,
  43444. bottom: 56/994
  43445. }
  43446. },
  43447. },
  43448. [
  43449. {
  43450. name: "Normal",
  43451. height: math.unit(6 + 3/12, "feet"),
  43452. default: true
  43453. },
  43454. ]
  43455. ))
  43456. characterMakers.push(() => makeCharacter(
  43457. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43458. {
  43459. side: {
  43460. height: math.unit(17.5, "feet"),
  43461. weight: math.unit(35, "tons"),
  43462. name: "Side",
  43463. image: {
  43464. source: "./media/characters/sophie-ambrose/side.svg",
  43465. extra: 1573/1242,
  43466. bottom: 71/1644
  43467. }
  43468. },
  43469. maw: {
  43470. height: math.unit(7.4, "feet"),
  43471. name: "Maw",
  43472. image: {
  43473. source: "./media/characters/sophie-ambrose/maw.svg"
  43474. }
  43475. },
  43476. },
  43477. [
  43478. {
  43479. name: "Normal",
  43480. height: math.unit(17.5, "feet"),
  43481. default: true
  43482. },
  43483. ]
  43484. ))
  43485. characterMakers.push(() => makeCharacter(
  43486. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43487. {
  43488. front: {
  43489. height: math.unit(280, "feet"),
  43490. weight: math.unit(550, "tons"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/king-mugi/front.svg",
  43494. extra: 1102/947,
  43495. bottom: 104/1206
  43496. }
  43497. },
  43498. },
  43499. [
  43500. {
  43501. name: "King Mugi",
  43502. height: math.unit(280, "feet"),
  43503. default: true
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43509. {
  43510. front: {
  43511. height: math.unit(64, "meters"),
  43512. name: "Front",
  43513. image: {
  43514. source: "./media/characters/nova-fox/front.svg",
  43515. extra: 1310/1246,
  43516. bottom: 65/1375
  43517. }
  43518. },
  43519. },
  43520. [
  43521. {
  43522. name: "Macro",
  43523. height: math.unit(64, "meters"),
  43524. default: true
  43525. },
  43526. ]
  43527. ))
  43528. characterMakers.push(() => makeCharacter(
  43529. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43530. {
  43531. front: {
  43532. height: math.unit(6 + 3/12, "feet"),
  43533. weight: math.unit(170, "lb"),
  43534. name: "Front",
  43535. image: {
  43536. source: "./media/characters/sam-bat/front.svg",
  43537. extra: 1601/1411,
  43538. bottom: 125/1726
  43539. }
  43540. },
  43541. back: {
  43542. height: math.unit(6 + 3/12, "feet"),
  43543. weight: math.unit(170, "lb"),
  43544. name: "Back",
  43545. image: {
  43546. source: "./media/characters/sam-bat/back.svg",
  43547. extra: 1577/1405,
  43548. bottom: 58/1635
  43549. }
  43550. },
  43551. },
  43552. [
  43553. {
  43554. name: "Normal",
  43555. height: math.unit(6 + 3/12, "feet"),
  43556. default: true
  43557. },
  43558. ]
  43559. ))
  43560. characterMakers.push(() => makeCharacter(
  43561. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43562. {
  43563. front: {
  43564. height: math.unit(59, "feet"),
  43565. weight: math.unit(40000, "lb"),
  43566. name: "Front",
  43567. image: {
  43568. source: "./media/characters/inari/front.svg",
  43569. extra: 1884/1350,
  43570. bottom: 95/1979
  43571. }
  43572. },
  43573. },
  43574. [
  43575. {
  43576. name: "Gigantamax",
  43577. height: math.unit(59, "feet"),
  43578. default: true
  43579. },
  43580. ]
  43581. ))
  43582. characterMakers.push(() => makeCharacter(
  43583. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43584. {
  43585. front: {
  43586. height: math.unit(5 + 8/12, "feet"),
  43587. name: "Front",
  43588. image: {
  43589. source: "./media/characters/elizabeth/front.svg",
  43590. extra: 1395/1298,
  43591. bottom: 54/1449
  43592. }
  43593. },
  43594. mouth: {
  43595. height: math.unit(1.97, "feet"),
  43596. name: "Mouth",
  43597. image: {
  43598. source: "./media/characters/elizabeth/mouth.svg"
  43599. }
  43600. },
  43601. foot: {
  43602. height: math.unit(1.17, "feet"),
  43603. name: "Foot",
  43604. image: {
  43605. source: "./media/characters/elizabeth/foot.svg"
  43606. }
  43607. },
  43608. },
  43609. [
  43610. {
  43611. name: "Normal",
  43612. height: math.unit(5 + 8/12, "feet"),
  43613. default: true
  43614. },
  43615. {
  43616. name: "Minimacro",
  43617. height: math.unit(18, "feet")
  43618. },
  43619. {
  43620. name: "Macro",
  43621. height: math.unit(180, "feet")
  43622. },
  43623. ]
  43624. ))
  43625. characterMakers.push(() => makeCharacter(
  43626. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43627. {
  43628. front: {
  43629. height: math.unit(5 + 2/12, "feet"),
  43630. name: "Front",
  43631. image: {
  43632. source: "./media/characters/october-gossamer/front.svg",
  43633. extra: 505/454,
  43634. bottom: 7/512
  43635. }
  43636. },
  43637. back: {
  43638. height: math.unit(5 + 2/12, "feet"),
  43639. name: "Back",
  43640. image: {
  43641. source: "./media/characters/october-gossamer/back.svg",
  43642. extra: 501/454,
  43643. bottom: 11/512
  43644. }
  43645. },
  43646. },
  43647. [
  43648. {
  43649. name: "Normal",
  43650. height: math.unit(5 + 2/12, "feet"),
  43651. default: true
  43652. },
  43653. ]
  43654. ))
  43655. characterMakers.push(() => makeCharacter(
  43656. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43657. {
  43658. front: {
  43659. height: math.unit(5, "feet"),
  43660. name: "Front",
  43661. image: {
  43662. source: "./media/characters/epiglottis/front.svg",
  43663. extra: 923/849,
  43664. bottom: 17/940
  43665. }
  43666. },
  43667. },
  43668. [
  43669. {
  43670. name: "Original Size",
  43671. height: math.unit(10, "inches")
  43672. },
  43673. {
  43674. name: "Human Size",
  43675. height: math.unit(5, "feet"),
  43676. default: true
  43677. },
  43678. {
  43679. name: "Big",
  43680. height: math.unit(25, "feet")
  43681. },
  43682. {
  43683. name: "Bigger",
  43684. height: math.unit(50, "feet")
  43685. },
  43686. {
  43687. name: "oh lawd",
  43688. height: math.unit(75, "feet")
  43689. },
  43690. ]
  43691. ))
  43692. characterMakers.push(() => makeCharacter(
  43693. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43694. {
  43695. front: {
  43696. height: math.unit(2 + 4/12, "feet"),
  43697. weight: math.unit(60, "lb"),
  43698. name: "Front",
  43699. image: {
  43700. source: "./media/characters/lerm/front.svg",
  43701. extra: 796/790,
  43702. bottom: 79/875
  43703. }
  43704. },
  43705. },
  43706. [
  43707. {
  43708. name: "Normal",
  43709. height: math.unit(2 + 4/12, "feet"),
  43710. default: true
  43711. },
  43712. ]
  43713. ))
  43714. characterMakers.push(() => makeCharacter(
  43715. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43716. {
  43717. front: {
  43718. height: math.unit(5.5, "feet"),
  43719. weight: math.unit(130, "lb"),
  43720. name: "Front",
  43721. image: {
  43722. source: "./media/characters/xena-nebadon/front.svg",
  43723. extra: 1828/1730,
  43724. bottom: 79/1907
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Tiny Puppy",
  43731. height: math.unit(3, "inches")
  43732. },
  43733. {
  43734. name: "Normal",
  43735. height: math.unit(5.5, "feet"),
  43736. default: true
  43737. },
  43738. {
  43739. name: "Lotta Lady",
  43740. height: math.unit(12, "feet")
  43741. },
  43742. {
  43743. name: "Pretty Big",
  43744. height: math.unit(100, "feet")
  43745. },
  43746. {
  43747. name: "Big",
  43748. height: math.unit(500, "feet")
  43749. },
  43750. {
  43751. name: "Skyscraper Toys",
  43752. height: math.unit(2500, "feet")
  43753. },
  43754. {
  43755. name: "Plane Catcher",
  43756. height: math.unit(8, "miles")
  43757. },
  43758. {
  43759. name: "Planet Toys",
  43760. height: math.unit(15, "earths")
  43761. },
  43762. {
  43763. name: "Stardust",
  43764. height: math.unit(0.25, "galaxies")
  43765. },
  43766. {
  43767. name: "Snacks",
  43768. height: math.unit(70, "universes")
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43774. {
  43775. front: {
  43776. height: math.unit(1.6, "meters"),
  43777. weight: math.unit(60, "kg"),
  43778. name: "Front",
  43779. image: {
  43780. source: "./media/characters/bounty/front.svg",
  43781. extra: 1426/1308,
  43782. bottom: 15/1441
  43783. }
  43784. },
  43785. back: {
  43786. height: math.unit(1.6, "meters"),
  43787. weight: math.unit(60, "kg"),
  43788. name: "Back",
  43789. image: {
  43790. source: "./media/characters/bounty/back.svg",
  43791. extra: 1417/1307,
  43792. bottom: 8/1425
  43793. }
  43794. },
  43795. },
  43796. [
  43797. {
  43798. name: "Normal",
  43799. height: math.unit(1.6, "meters"),
  43800. default: true
  43801. },
  43802. {
  43803. name: "Macro",
  43804. height: math.unit(300, "meters")
  43805. },
  43806. ]
  43807. ))
  43808. characterMakers.push(() => makeCharacter(
  43809. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43810. {
  43811. front: {
  43812. height: math.unit(2 + 8/12, "feet"),
  43813. weight: math.unit(15, "lb"),
  43814. name: "Front",
  43815. image: {
  43816. source: "./media/characters/mochi/front.svg",
  43817. extra: 1022/852,
  43818. bottom: 435/1457
  43819. }
  43820. },
  43821. back: {
  43822. height: math.unit(2 + 8/12, "feet"),
  43823. weight: math.unit(15, "lb"),
  43824. name: "Back",
  43825. image: {
  43826. source: "./media/characters/mochi/back.svg",
  43827. extra: 1335/1119,
  43828. bottom: 39/1374
  43829. }
  43830. },
  43831. bird: {
  43832. height: math.unit(2 + 8/12, "feet"),
  43833. weight: math.unit(15, "lb"),
  43834. name: "Bird",
  43835. image: {
  43836. source: "./media/characters/mochi/bird.svg",
  43837. extra: 1251/1113,
  43838. bottom: 178/1429
  43839. }
  43840. },
  43841. kaiju: {
  43842. height: math.unit(154, "feet"),
  43843. weight: math.unit(1e7, "lb"),
  43844. name: "Kaiju",
  43845. image: {
  43846. source: "./media/characters/mochi/kaiju.svg",
  43847. extra: 460/324,
  43848. bottom: 40/500
  43849. }
  43850. },
  43851. head: {
  43852. height: math.unit(1.21, "feet"),
  43853. name: "Head",
  43854. image: {
  43855. source: "./media/characters/mochi/head.svg"
  43856. }
  43857. },
  43858. alternateTail: {
  43859. height: math.unit(2 + 8/12, "feet"),
  43860. weight: math.unit(45, "lb"),
  43861. name: "Alternate Tail",
  43862. image: {
  43863. source: "./media/characters/mochi/alternate-tail.svg",
  43864. extra: 139/76,
  43865. bottom: 45/184
  43866. }
  43867. },
  43868. },
  43869. [
  43870. {
  43871. name: "Micro",
  43872. height: math.unit(2, "inches")
  43873. },
  43874. {
  43875. name: "Normal",
  43876. height: math.unit(2 + 8/12, "feet"),
  43877. default: true
  43878. },
  43879. {
  43880. name: "Macro",
  43881. height: math.unit(106, "feet")
  43882. },
  43883. ]
  43884. ))
  43885. characterMakers.push(() => makeCharacter(
  43886. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43887. {
  43888. front: {
  43889. height: math.unit(5.67, "feet"),
  43890. weight: math.unit(135, "lb"),
  43891. name: "Front",
  43892. image: {
  43893. source: "./media/characters/sarel/front.svg",
  43894. extra: 865/788,
  43895. bottom: 97/962
  43896. }
  43897. },
  43898. back: {
  43899. height: math.unit(5.67, "feet"),
  43900. weight: math.unit(135, "lb"),
  43901. name: "Back",
  43902. image: {
  43903. source: "./media/characters/sarel/back.svg",
  43904. extra: 857/777,
  43905. bottom: 32/889
  43906. }
  43907. },
  43908. chozoan: {
  43909. height: math.unit(5.67, "feet"),
  43910. weight: math.unit(135, "lb"),
  43911. name: "Chozoan",
  43912. image: {
  43913. source: "./media/characters/sarel/chozoan.svg",
  43914. extra: 865/788,
  43915. bottom: 97/962
  43916. }
  43917. },
  43918. current: {
  43919. height: math.unit(5.67, "feet"),
  43920. weight: math.unit(135, "lb"),
  43921. name: "Current",
  43922. image: {
  43923. source: "./media/characters/sarel/current.svg",
  43924. extra: 865/788,
  43925. bottom: 97/962
  43926. }
  43927. },
  43928. head: {
  43929. height: math.unit(1.77, "feet"),
  43930. name: "Head",
  43931. image: {
  43932. source: "./media/characters/sarel/head.svg"
  43933. }
  43934. },
  43935. claws: {
  43936. height: math.unit(1.8, "feet"),
  43937. name: "Claws",
  43938. image: {
  43939. source: "./media/characters/sarel/claws.svg"
  43940. }
  43941. },
  43942. clawsAlt: {
  43943. height: math.unit(1.8, "feet"),
  43944. name: "Claws-alt",
  43945. image: {
  43946. source: "./media/characters/sarel/claws-alt.svg"
  43947. }
  43948. },
  43949. },
  43950. [
  43951. {
  43952. name: "Normal",
  43953. height: math.unit(5.67, "feet"),
  43954. default: true
  43955. },
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43960. {
  43961. front: {
  43962. height: math.unit(5500, "feet"),
  43963. name: "Front",
  43964. image: {
  43965. source: "./media/characters/alyonia/front.svg",
  43966. extra: 1200/1135,
  43967. bottom: 29/1229
  43968. }
  43969. },
  43970. back: {
  43971. height: math.unit(5500, "feet"),
  43972. name: "Back",
  43973. image: {
  43974. source: "./media/characters/alyonia/back.svg",
  43975. extra: 1205/1138,
  43976. bottom: 10/1215
  43977. }
  43978. },
  43979. },
  43980. [
  43981. {
  43982. name: "Small",
  43983. height: math.unit(10, "feet")
  43984. },
  43985. {
  43986. name: "Macro",
  43987. height: math.unit(500, "feet")
  43988. },
  43989. {
  43990. name: "Mega Macro",
  43991. height: math.unit(5500, "feet"),
  43992. default: true
  43993. },
  43994. {
  43995. name: "Mega Macro+",
  43996. height: math.unit(500000, "feet")
  43997. },
  43998. {
  43999. name: "Giga Macro",
  44000. height: math.unit(3000, "miles")
  44001. },
  44002. {
  44003. name: "Tera Macro",
  44004. height: math.unit(2.8e6, "miles")
  44005. },
  44006. {
  44007. name: "Galactic",
  44008. height: math.unit(120000, "lightyears")
  44009. },
  44010. ]
  44011. ))
  44012. characterMakers.push(() => makeCharacter(
  44013. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44014. {
  44015. werewolf: {
  44016. height: math.unit(8, "feet"),
  44017. weight: math.unit(425, "lb"),
  44018. name: "Werewolf",
  44019. image: {
  44020. source: "./media/characters/autumn/werewolf.svg",
  44021. extra: 2154/2031,
  44022. bottom: 160/2314
  44023. }
  44024. },
  44025. human: {
  44026. height: math.unit(5 + 8/12, "feet"),
  44027. weight: math.unit(150, "lb"),
  44028. name: "Human",
  44029. image: {
  44030. source: "./media/characters/autumn/human.svg",
  44031. extra: 1200/1149,
  44032. bottom: 30/1230
  44033. }
  44034. },
  44035. },
  44036. [
  44037. {
  44038. name: "Normal",
  44039. height: math.unit(8, "feet"),
  44040. default: true
  44041. },
  44042. ]
  44043. ))
  44044. characterMakers.push(() => makeCharacter(
  44045. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44046. {
  44047. front: {
  44048. height: math.unit(8 + 5/12, "feet"),
  44049. weight: math.unit(825, "lb"),
  44050. name: "Front",
  44051. image: {
  44052. source: "./media/characters/cobalt-charizard/front.svg",
  44053. extra: 1268/1155,
  44054. bottom: 122/1390
  44055. }
  44056. },
  44057. side: {
  44058. height: math.unit(8 + 5/12, "feet"),
  44059. weight: math.unit(825, "lb"),
  44060. name: "Side",
  44061. image: {
  44062. source: "./media/characters/cobalt-charizard/side.svg",
  44063. extra: 1348/1257,
  44064. bottom: 58/1406
  44065. }
  44066. },
  44067. gMax: {
  44068. height: math.unit(134 + 11/12, "feet"),
  44069. name: "G-Max",
  44070. image: {
  44071. source: "./media/characters/cobalt-charizard/g-max.svg",
  44072. extra: 1835/1541,
  44073. bottom: 151/1986
  44074. }
  44075. },
  44076. },
  44077. [
  44078. {
  44079. name: "Normal",
  44080. height: math.unit(8 + 5/12, "feet"),
  44081. default: true
  44082. },
  44083. ]
  44084. ))
  44085. characterMakers.push(() => makeCharacter(
  44086. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44087. {
  44088. front: {
  44089. height: math.unit(6 + 3/12, "feet"),
  44090. weight: math.unit(210, "lb"),
  44091. name: "Front",
  44092. image: {
  44093. source: "./media/characters/stella/front.svg",
  44094. extra: 3549/3335,
  44095. bottom: 51/3600
  44096. }
  44097. },
  44098. },
  44099. [
  44100. {
  44101. name: "Normal",
  44102. height: math.unit(6 + 3/12, "feet"),
  44103. default: true
  44104. },
  44105. ]
  44106. ))
  44107. characterMakers.push(() => makeCharacter(
  44108. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44109. {
  44110. front: {
  44111. height: math.unit(5, "feet"),
  44112. weight: math.unit(90, "lb"),
  44113. name: "Front",
  44114. image: {
  44115. source: "./media/characters/riley-bishop/front.svg",
  44116. extra: 1450/1428,
  44117. bottom: 152/1602
  44118. }
  44119. },
  44120. },
  44121. [
  44122. {
  44123. name: "Normal",
  44124. height: math.unit(5, "feet"),
  44125. default: true
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44131. {
  44132. side: {
  44133. height: math.unit(8 + 2/12, "feet"),
  44134. weight: math.unit(500, "kg"),
  44135. name: "Side",
  44136. image: {
  44137. source: "./media/characters/theo-arcanine/side.svg",
  44138. extra: 1342/1074,
  44139. bottom: 111/1453
  44140. }
  44141. },
  44142. },
  44143. [
  44144. {
  44145. name: "Normal",
  44146. height: math.unit(8 + 2/12, "feet"),
  44147. default: true
  44148. },
  44149. ]
  44150. ))
  44151. characterMakers.push(() => makeCharacter(
  44152. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44153. {
  44154. front: {
  44155. height: math.unit(4, "feet"),
  44156. name: "Front",
  44157. image: {
  44158. source: "./media/characters/kali/front.svg",
  44159. extra: 1921/1357,
  44160. bottom: 70/1991
  44161. }
  44162. },
  44163. },
  44164. [
  44165. {
  44166. name: "Normal",
  44167. height: math.unit(4, "feet"),
  44168. default: true
  44169. },
  44170. {
  44171. name: "Macro",
  44172. height: math.unit(32, "meters")
  44173. },
  44174. {
  44175. name: "Macro+",
  44176. height: math.unit(150, "meters")
  44177. },
  44178. {
  44179. name: "Megamacro",
  44180. height: math.unit(7500, "meters")
  44181. },
  44182. {
  44183. name: "Megamacro+",
  44184. height: math.unit(80, "kilometers")
  44185. },
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44190. {
  44191. side: {
  44192. height: math.unit(5 + 11/12, "feet"),
  44193. weight: math.unit(236, "lb"),
  44194. name: "Side",
  44195. image: {
  44196. source: "./media/characters/gapp/side.svg",
  44197. extra: 775/340,
  44198. bottom: 58/833
  44199. }
  44200. },
  44201. mouth: {
  44202. height: math.unit(2.98, "feet"),
  44203. name: "Mouth",
  44204. image: {
  44205. source: "./media/characters/gapp/mouth.svg"
  44206. }
  44207. },
  44208. },
  44209. [
  44210. {
  44211. name: "Normal",
  44212. height: math.unit(5 + 1/12, "feet"),
  44213. default: true
  44214. },
  44215. ]
  44216. ))
  44217. characterMakers.push(() => makeCharacter(
  44218. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44219. {
  44220. front: {
  44221. height: math.unit(6, "feet"),
  44222. name: "Front",
  44223. image: {
  44224. source: "./media/characters/persephone/front.svg",
  44225. extra: 1895/1717,
  44226. bottom: 96/1991
  44227. }
  44228. },
  44229. back: {
  44230. height: math.unit(6, "feet"),
  44231. name: "Back",
  44232. image: {
  44233. source: "./media/characters/persephone/back.svg",
  44234. extra: 1868/1679,
  44235. bottom: 26/1894
  44236. }
  44237. },
  44238. casual: {
  44239. height: math.unit(6, "feet"),
  44240. name: "Casual",
  44241. image: {
  44242. source: "./media/characters/persephone/casual.svg",
  44243. extra: 1713/1541,
  44244. bottom: 76/1789
  44245. }
  44246. },
  44247. },
  44248. [
  44249. {
  44250. name: "Human Size",
  44251. height: math.unit(6, "feet")
  44252. },
  44253. {
  44254. name: "Big Steppy",
  44255. height: math.unit(600, "meters"),
  44256. default: true
  44257. },
  44258. {
  44259. name: "Galaxy Brain",
  44260. height: math.unit(1, "zettameter")
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44266. {
  44267. front: {
  44268. height: math.unit(1.85, "meters"),
  44269. name: "Front",
  44270. image: {
  44271. source: "./media/characters/riley-foxthing/front.svg",
  44272. extra: 1495/1354,
  44273. bottom: 122/1617
  44274. }
  44275. },
  44276. frontAlt: {
  44277. height: math.unit(1.85, "meters"),
  44278. name: "Front (Alt)",
  44279. image: {
  44280. source: "./media/characters/riley-foxthing/front-alt.svg",
  44281. extra: 1572/1389,
  44282. bottom: 116/1688
  44283. }
  44284. },
  44285. },
  44286. [
  44287. {
  44288. name: "Normal Sized",
  44289. height: math.unit(1.85, "meters"),
  44290. default: true
  44291. },
  44292. {
  44293. name: "Quite Sizable",
  44294. height: math.unit(5, "meters")
  44295. },
  44296. {
  44297. name: "Rather Large",
  44298. height: math.unit(20, "meters")
  44299. },
  44300. {
  44301. name: "Macro",
  44302. height: math.unit(450, "meters")
  44303. },
  44304. {
  44305. name: "Giga",
  44306. height: math.unit(5, "km")
  44307. },
  44308. ]
  44309. ))
  44310. characterMakers.push(() => makeCharacter(
  44311. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44312. {
  44313. front: {
  44314. height: math.unit(6, "feet"),
  44315. weight: math.unit(200, "lb"),
  44316. name: "Front",
  44317. image: {
  44318. source: "./media/characters/blizzard/front.svg",
  44319. extra: 1136/990,
  44320. bottom: 136/1272
  44321. }
  44322. },
  44323. back: {
  44324. height: math.unit(6, "feet"),
  44325. weight: math.unit(200, "lb"),
  44326. name: "Back",
  44327. image: {
  44328. source: "./media/characters/blizzard/back.svg",
  44329. extra: 1175/1034,
  44330. bottom: 97/1272
  44331. }
  44332. },
  44333. sitting: {
  44334. height: math.unit(3.725, "feet"),
  44335. weight: math.unit(200, "lb"),
  44336. name: "Sitting",
  44337. image: {
  44338. source: "./media/characters/blizzard/sitting.svg",
  44339. extra: 581/485,
  44340. bottom: 90/671
  44341. }
  44342. },
  44343. frontWizard: {
  44344. height: math.unit(7.9, "feet"),
  44345. weight: math.unit(200, "lb"),
  44346. name: "Front (Wizard)",
  44347. image: {
  44348. source: "./media/characters/blizzard/front-wizard.svg"
  44349. }
  44350. },
  44351. backWizard: {
  44352. height: math.unit(7.9, "feet"),
  44353. weight: math.unit(200, "lb"),
  44354. name: "Back (Wizard)",
  44355. image: {
  44356. source: "./media/characters/blizzard/back-wizard.svg"
  44357. }
  44358. },
  44359. frontNsfw: {
  44360. height: math.unit(6, "feet"),
  44361. weight: math.unit(200, "lb"),
  44362. name: "Front (NSFW)",
  44363. image: {
  44364. source: "./media/characters/blizzard/front-nsfw.svg",
  44365. extra: 1136/990,
  44366. bottom: 136/1272
  44367. }
  44368. },
  44369. backNsfw: {
  44370. height: math.unit(6, "feet"),
  44371. weight: math.unit(200, "lb"),
  44372. name: "Back (NSFW)",
  44373. image: {
  44374. source: "./media/characters/blizzard/back-nsfw.svg",
  44375. extra: 1175/1034,
  44376. bottom: 97/1272
  44377. }
  44378. },
  44379. sittingNsfw: {
  44380. height: math.unit(3.725, "feet"),
  44381. weight: math.unit(200, "lb"),
  44382. name: "Sitting (NSFW)",
  44383. image: {
  44384. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44385. extra: 581/485,
  44386. bottom: 90/671
  44387. }
  44388. },
  44389. wizardFrontNsfw: {
  44390. height: math.unit(7.9, "feet"),
  44391. weight: math.unit(200, "lb"),
  44392. name: "Wizard (Front, NSFW)",
  44393. image: {
  44394. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44395. }
  44396. },
  44397. },
  44398. [
  44399. {
  44400. name: "Normal",
  44401. height: math.unit(6, "feet"),
  44402. default: true
  44403. },
  44404. ]
  44405. ))
  44406. characterMakers.push(() => makeCharacter(
  44407. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44408. {
  44409. front: {
  44410. height: math.unit(5 + 2/12, "feet"),
  44411. name: "Front",
  44412. image: {
  44413. source: "./media/characters/lumi/front.svg",
  44414. extra: 1328/1268,
  44415. bottom: 103/1431
  44416. }
  44417. },
  44418. back: {
  44419. height: math.unit(5 + 2/12, "feet"),
  44420. name: "Back",
  44421. image: {
  44422. source: "./media/characters/lumi/back.svg",
  44423. extra: 1381/1327,
  44424. bottom: 43/1424
  44425. }
  44426. },
  44427. },
  44428. [
  44429. {
  44430. name: "Normal",
  44431. height: math.unit(5 + 2/12, "feet"),
  44432. default: true
  44433. },
  44434. ]
  44435. ))
  44436. characterMakers.push(() => makeCharacter(
  44437. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44438. {
  44439. front: {
  44440. height: math.unit(5 + 9/12, "feet"),
  44441. name: "Front",
  44442. image: {
  44443. source: "./media/characters/aliya-cotton/front.svg",
  44444. extra: 577/564,
  44445. bottom: 29/606
  44446. }
  44447. },
  44448. },
  44449. [
  44450. {
  44451. name: "Normal",
  44452. height: math.unit(5 + 9/12, "feet"),
  44453. default: true
  44454. },
  44455. ]
  44456. ))
  44457. characterMakers.push(() => makeCharacter(
  44458. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44459. {
  44460. front: {
  44461. height: math.unit(2.7, "meters"),
  44462. weight: math.unit(25000, "lb"),
  44463. name: "Front",
  44464. image: {
  44465. source: "./media/characters/noah-luxray/front.svg",
  44466. extra: 1644/825,
  44467. bottom: 339/1983
  44468. }
  44469. },
  44470. side: {
  44471. height: math.unit(2.97, "meters"),
  44472. weight: math.unit(25000, "lb"),
  44473. name: "Side",
  44474. image: {
  44475. source: "./media/characters/noah-luxray/side.svg",
  44476. extra: 1319/650,
  44477. bottom: 163/1482
  44478. }
  44479. },
  44480. dick: {
  44481. height: math.unit(7.4, "feet"),
  44482. weight: math.unit(2500, "lb"),
  44483. name: "Dick",
  44484. image: {
  44485. source: "./media/characters/noah-luxray/dick.svg"
  44486. }
  44487. },
  44488. dickAlt: {
  44489. height: math.unit(10.83, "feet"),
  44490. weight: math.unit(2500, "lb"),
  44491. name: "Dick-alt",
  44492. image: {
  44493. source: "./media/characters/noah-luxray/dick-alt.svg"
  44494. }
  44495. },
  44496. },
  44497. [
  44498. {
  44499. name: "BIG",
  44500. height: math.unit(2.7, "meters"),
  44501. default: true
  44502. },
  44503. ]
  44504. ))
  44505. characterMakers.push(() => makeCharacter(
  44506. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44507. {
  44508. standing: {
  44509. height: math.unit(183, "cm"),
  44510. weight: math.unit(68, "kg"),
  44511. name: "Standing",
  44512. image: {
  44513. source: "./media/characters/arion/standing.svg",
  44514. extra: 1869/1807,
  44515. bottom: 93/1962
  44516. }
  44517. },
  44518. reclining: {
  44519. height: math.unit(70.5, "cm"),
  44520. weight: math.unit(68, "lb"),
  44521. name: "Reclining",
  44522. image: {
  44523. source: "./media/characters/arion/reclining.svg",
  44524. extra: 937/870,
  44525. bottom: 63/1000
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Colossus Size, Low",
  44532. height: math.unit(33, "meters"),
  44533. default: true
  44534. },
  44535. {
  44536. name: "Colossus Size, Mid",
  44537. height: math.unit(52, "meters")
  44538. },
  44539. {
  44540. name: "Colossus Size, High",
  44541. height: math.unit(60, "meters")
  44542. },
  44543. {
  44544. name: "Titan Size, Low",
  44545. height: math.unit(91, "meters"),
  44546. },
  44547. {
  44548. name: "Titan Size, Mid",
  44549. height: math.unit(122, "meters")
  44550. },
  44551. {
  44552. name: "Titan Size, High",
  44553. height: math.unit(162, "meters")
  44554. },
  44555. ]
  44556. ))
  44557. characterMakers.push(() => makeCharacter(
  44558. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44559. {
  44560. front: {
  44561. height: math.unit(53, "meters"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/stellar-marbey/front.svg",
  44565. extra: 1913/1805,
  44566. bottom: 92/2005
  44567. }
  44568. },
  44569. back: {
  44570. height: math.unit(53, "meters"),
  44571. name: "Back",
  44572. image: {
  44573. source: "./media/characters/stellar-marbey/back.svg",
  44574. extra: 1960/1851,
  44575. bottom: 28/1988
  44576. }
  44577. },
  44578. mouth: {
  44579. height: math.unit(3.5, "meters"),
  44580. name: "Mouth",
  44581. image: {
  44582. source: "./media/characters/stellar-marbey/mouth.svg"
  44583. }
  44584. },
  44585. },
  44586. [
  44587. {
  44588. name: "Macro",
  44589. height: math.unit(53, "meters"),
  44590. default: true
  44591. },
  44592. ]
  44593. ))
  44594. characterMakers.push(() => makeCharacter(
  44595. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44596. {
  44597. front: {
  44598. height: math.unit(8 + 1/12, "feet"),
  44599. weight: math.unit(233, "lb"),
  44600. name: "Front",
  44601. image: {
  44602. source: "./media/characters/matsu/front.svg",
  44603. extra: 832/772,
  44604. bottom: 40/872
  44605. }
  44606. },
  44607. back: {
  44608. height: math.unit(8 + 1/12, "feet"),
  44609. weight: math.unit(233, "lb"),
  44610. name: "Back",
  44611. image: {
  44612. source: "./media/characters/matsu/back.svg",
  44613. extra: 839/780,
  44614. bottom: 47/886
  44615. }
  44616. },
  44617. },
  44618. [
  44619. {
  44620. name: "Normal",
  44621. height: math.unit(8 + 1/12, "feet"),
  44622. default: true
  44623. },
  44624. ]
  44625. ))
  44626. characterMakers.push(() => makeCharacter(
  44627. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44628. {
  44629. front: {
  44630. height: math.unit(4, "feet"),
  44631. weight: math.unit(148, "lb"),
  44632. name: "Front",
  44633. image: {
  44634. source: "./media/characters/thiz/front.svg",
  44635. extra: 1913/1748,
  44636. bottom: 62/1975
  44637. }
  44638. },
  44639. },
  44640. [
  44641. {
  44642. name: "Normal",
  44643. height: math.unit(4, "feet"),
  44644. default: true
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(7 + 6/12, "feet"),
  44653. weight: math.unit(267, "lb"),
  44654. name: "Front",
  44655. image: {
  44656. source: "./media/characters/marcel/front.svg",
  44657. extra: 1221/1096,
  44658. bottom: 76/1297
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Normal",
  44665. height: math.unit(7 + 6/12, "feet"),
  44666. default: true
  44667. },
  44668. ]
  44669. ))
  44670. characterMakers.push(() => makeCharacter(
  44671. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44672. {
  44673. side: {
  44674. height: math.unit(42, "meters"),
  44675. name: "Side",
  44676. image: {
  44677. source: "./media/characters/flake/side.svg",
  44678. extra: 1525/1306,
  44679. bottom: 209/1734
  44680. }
  44681. },
  44682. },
  44683. [
  44684. {
  44685. name: "Normal",
  44686. height: math.unit(42, "meters"),
  44687. default: true
  44688. },
  44689. ]
  44690. ))
  44691. characterMakers.push(() => makeCharacter(
  44692. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44693. {
  44694. dressed: {
  44695. height: math.unit(6 + 4/12, "feet"),
  44696. weight: math.unit(520, "lb"),
  44697. name: "Dressed",
  44698. image: {
  44699. source: "./media/characters/someonne/dressed.svg",
  44700. extra: 1020/1010,
  44701. bottom: 178/1198
  44702. }
  44703. },
  44704. undressed: {
  44705. height: math.unit(6 + 4/12, "feet"),
  44706. weight: math.unit(520, "lb"),
  44707. name: "Undressed",
  44708. image: {
  44709. source: "./media/characters/someonne/undressed.svg",
  44710. extra: 1019/1014,
  44711. bottom: 169/1188
  44712. }
  44713. },
  44714. },
  44715. [
  44716. {
  44717. name: "Normal",
  44718. height: math.unit(6 + 4/12, "feet"),
  44719. default: true
  44720. },
  44721. ]
  44722. ))
  44723. characterMakers.push(() => makeCharacter(
  44724. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44725. {
  44726. front: {
  44727. height: math.unit(3, "feet"),
  44728. weight: math.unit(30, "lb"),
  44729. name: "Front",
  44730. image: {
  44731. source: "./media/characters/till/front.svg",
  44732. extra: 892/823,
  44733. bottom: 55/947
  44734. }
  44735. },
  44736. },
  44737. [
  44738. {
  44739. name: "Normal",
  44740. height: math.unit(3, "feet"),
  44741. default: true
  44742. },
  44743. ]
  44744. ))
  44745. characterMakers.push(() => makeCharacter(
  44746. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44747. {
  44748. front: {
  44749. height: math.unit(9 + 8/12, "feet"),
  44750. weight: math.unit(800, "lb"),
  44751. name: "Front",
  44752. image: {
  44753. source: "./media/characters/sydney-heki/front.svg",
  44754. extra: 1360/1300,
  44755. bottom: 22/1382
  44756. }
  44757. },
  44758. back: {
  44759. height: math.unit(9 + 8/12, "feet"),
  44760. weight: math.unit(800, "lb"),
  44761. name: "Back",
  44762. image: {
  44763. source: "./media/characters/sydney-heki/back.svg",
  44764. extra: 1356/1293,
  44765. bottom: 12/1368
  44766. }
  44767. },
  44768. frontDressed: {
  44769. height: math.unit(9 + 8/12, "feet"),
  44770. weight: math.unit(800, "lb"),
  44771. name: "Front-dressed",
  44772. image: {
  44773. source: "./media/characters/sydney-heki/front-dressed.svg",
  44774. extra: 1360/1300,
  44775. bottom: 22/1382
  44776. }
  44777. },
  44778. },
  44779. [
  44780. {
  44781. name: "Normal",
  44782. height: math.unit(9 + 8/12, "feet"),
  44783. default: true
  44784. },
  44785. {
  44786. name: "Macro",
  44787. height: math.unit(500, "feet")
  44788. },
  44789. {
  44790. name: "Megamacro",
  44791. height: math.unit(3.6, "miles")
  44792. },
  44793. ]
  44794. ))
  44795. characterMakers.push(() => makeCharacter(
  44796. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44797. {
  44798. front: {
  44799. height: math.unit(200, "cm"),
  44800. weight: math.unit(250, "lb"),
  44801. name: "Front",
  44802. image: {
  44803. source: "./media/characters/fowler-karlsson/front.svg",
  44804. extra: 897/845,
  44805. bottom: 123/1020
  44806. }
  44807. },
  44808. back: {
  44809. height: math.unit(200, "cm"),
  44810. weight: math.unit(250, "lb"),
  44811. name: "Back",
  44812. image: {
  44813. source: "./media/characters/fowler-karlsson/back.svg",
  44814. extra: 999/944,
  44815. bottom: 26/1025
  44816. }
  44817. },
  44818. dick: {
  44819. height: math.unit(1.92, "feet"),
  44820. weight: math.unit(150, "lb"),
  44821. name: "Dick",
  44822. image: {
  44823. source: "./media/characters/fowler-karlsson/dick.svg"
  44824. }
  44825. },
  44826. },
  44827. [
  44828. {
  44829. name: "Normal",
  44830. height: math.unit(200, "cm"),
  44831. default: true
  44832. },
  44833. {
  44834. name: "Smaller Macro",
  44835. height: math.unit(90, "m")
  44836. },
  44837. {
  44838. name: "Macro",
  44839. height: math.unit(150, "m")
  44840. },
  44841. {
  44842. name: "Bigger Macro",
  44843. height: math.unit(300, "m")
  44844. },
  44845. ]
  44846. ))
  44847. characterMakers.push(() => makeCharacter(
  44848. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44849. {
  44850. side: {
  44851. height: math.unit(8 + 2/12, "feet"),
  44852. weight: math.unit(1, "tonne"),
  44853. name: "Side",
  44854. image: {
  44855. source: "./media/characters/rylide/side.svg",
  44856. extra: 1318/1034,
  44857. bottom: 106/1424
  44858. }
  44859. },
  44860. sitting: {
  44861. height: math.unit(303, "cm"),
  44862. weight: math.unit(1, "tonne"),
  44863. name: "Sitting",
  44864. image: {
  44865. source: "./media/characters/rylide/sitting.svg",
  44866. extra: 1303/1103,
  44867. bottom: 36/1339
  44868. }
  44869. },
  44870. },
  44871. [
  44872. {
  44873. name: "Normal",
  44874. height: math.unit(8 + 2/12, "feet"),
  44875. default: true
  44876. },
  44877. ]
  44878. ))
  44879. characterMakers.push(() => makeCharacter(
  44880. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44881. {
  44882. front: {
  44883. height: math.unit(5 + 10/12, "feet"),
  44884. weight: math.unit(160, "lb"),
  44885. name: "Front",
  44886. image: {
  44887. source: "./media/characters/pudask/front.svg",
  44888. extra: 1616/1590,
  44889. bottom: 161/1777
  44890. }
  44891. },
  44892. },
  44893. [
  44894. {
  44895. name: "Ferret Height",
  44896. height: math.unit(2 + 5/12, "feet")
  44897. },
  44898. {
  44899. name: "Canon Height",
  44900. height: math.unit(5 + 10/12, "feet"),
  44901. default: true
  44902. },
  44903. ]
  44904. ))
  44905. characterMakers.push(() => makeCharacter(
  44906. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44907. {
  44908. front: {
  44909. height: math.unit(3 + 6/12, "feet"),
  44910. weight: math.unit(60, "lb"),
  44911. name: "Front",
  44912. image: {
  44913. source: "./media/characters/ramita/front.svg",
  44914. extra: 1402/1232,
  44915. bottom: 62/1464
  44916. }
  44917. },
  44918. dressed: {
  44919. height: math.unit(3 + 6/12, "feet"),
  44920. weight: math.unit(60, "lb"),
  44921. name: "Dressed",
  44922. image: {
  44923. source: "./media/characters/ramita/dressed.svg",
  44924. extra: 1534/1249,
  44925. bottom: 50/1584
  44926. }
  44927. },
  44928. },
  44929. [
  44930. {
  44931. name: "Normal",
  44932. height: math.unit(3 + 6/12, "feet"),
  44933. default: true
  44934. },
  44935. ]
  44936. ))
  44937. characterMakers.push(() => makeCharacter(
  44938. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44939. {
  44940. front: {
  44941. height: math.unit(8, "feet"),
  44942. name: "Front",
  44943. image: {
  44944. source: "./media/characters/ark/front.svg",
  44945. extra: 772/693,
  44946. bottom: 45/817
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Normal",
  44953. height: math.unit(8, "feet"),
  44954. default: true
  44955. },
  44956. ]
  44957. ))
  44958. characterMakers.push(() => makeCharacter(
  44959. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44960. {
  44961. front: {
  44962. height: math.unit(6, "feet"),
  44963. weight: math.unit(250, "lb"),
  44964. volume: math.unit(5/8, "gallons"),
  44965. name: "Front",
  44966. image: {
  44967. source: "./media/characters/ludwig-horn/front.svg",
  44968. extra: 1782/1635,
  44969. bottom: 96/1878
  44970. }
  44971. },
  44972. back: {
  44973. height: math.unit(6, "feet"),
  44974. weight: math.unit(250, "lb"),
  44975. volume: math.unit(5/8, "gallons"),
  44976. name: "Back",
  44977. image: {
  44978. source: "./media/characters/ludwig-horn/back.svg",
  44979. extra: 1874/1729,
  44980. bottom: 27/1901
  44981. }
  44982. },
  44983. dick: {
  44984. height: math.unit(1.05, "feet"),
  44985. weight: math.unit(15, "lb"),
  44986. volume: math.unit(5/8, "gallons"),
  44987. name: "Dick",
  44988. image: {
  44989. source: "./media/characters/ludwig-horn/dick.svg"
  44990. }
  44991. },
  44992. },
  44993. [
  44994. {
  44995. name: "Small",
  44996. height: math.unit(6, "feet")
  44997. },
  44998. {
  44999. name: "Typical",
  45000. height: math.unit(12, "feet"),
  45001. default: true
  45002. },
  45003. {
  45004. name: "Building",
  45005. height: math.unit(80, "feet")
  45006. },
  45007. {
  45008. name: "Town",
  45009. height: math.unit(800, "feet")
  45010. },
  45011. {
  45012. name: "Kingdom",
  45013. height: math.unit(80000, "feet")
  45014. },
  45015. {
  45016. name: "Planet",
  45017. height: math.unit(8000000, "feet")
  45018. },
  45019. {
  45020. name: "Universe",
  45021. height: math.unit(8000000000, "feet")
  45022. },
  45023. {
  45024. name: "Transcended",
  45025. height: math.unit(8e27, "feet")
  45026. },
  45027. ]
  45028. ))
  45029. characterMakers.push(() => makeCharacter(
  45030. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45031. {
  45032. front: {
  45033. height: math.unit(5, "feet"),
  45034. weight: math.unit(50, "kg"),
  45035. name: "Front",
  45036. image: {
  45037. source: "./media/characters/biot-avery/front.svg",
  45038. extra: 1295/1232,
  45039. bottom: 86/1381
  45040. }
  45041. },
  45042. },
  45043. [
  45044. {
  45045. name: "Normal",
  45046. height: math.unit(5, "feet"),
  45047. default: true
  45048. },
  45049. ]
  45050. ))
  45051. characterMakers.push(() => makeCharacter(
  45052. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45053. {
  45054. front: {
  45055. height: math.unit(6, "feet"),
  45056. name: "Front",
  45057. image: {
  45058. source: "./media/characters/kitsune-kiro/front.svg",
  45059. extra: 1270/1158,
  45060. bottom: 42/1312
  45061. }
  45062. },
  45063. frontAlt: {
  45064. height: math.unit(6, "feet"),
  45065. name: "Front-alt",
  45066. image: {
  45067. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45068. extra: 1130/1081,
  45069. bottom: 36/1166
  45070. }
  45071. },
  45072. },
  45073. [
  45074. {
  45075. name: "Smol",
  45076. height: math.unit(3, "feet")
  45077. },
  45078. {
  45079. name: "Normal",
  45080. height: math.unit(6, "feet"),
  45081. default: true
  45082. },
  45083. ]
  45084. ))
  45085. characterMakers.push(() => makeCharacter(
  45086. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45087. {
  45088. front: {
  45089. height: math.unit(6, "feet"),
  45090. weight: math.unit(125, "lb"),
  45091. name: "Front",
  45092. image: {
  45093. source: "./media/characters/jack-thatcher/front.svg",
  45094. extra: 1474/1370,
  45095. bottom: 26/1500
  45096. }
  45097. },
  45098. back: {
  45099. height: math.unit(6, "feet"),
  45100. weight: math.unit(125, "lb"),
  45101. name: "Back",
  45102. image: {
  45103. source: "./media/characters/jack-thatcher/back.svg",
  45104. extra: 1489/1384,
  45105. bottom: 18/1507
  45106. }
  45107. },
  45108. },
  45109. [
  45110. {
  45111. name: "Normal",
  45112. height: math.unit(6, "feet"),
  45113. default: true
  45114. },
  45115. {
  45116. name: "Macro",
  45117. height: math.unit(75, "feet")
  45118. },
  45119. {
  45120. name: "Macro-er",
  45121. height: math.unit(250, "feet")
  45122. },
  45123. ]
  45124. ))
  45125. characterMakers.push(() => makeCharacter(
  45126. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45127. {
  45128. front: {
  45129. height: math.unit(7, "feet"),
  45130. weight: math.unit(110, "kg"),
  45131. name: "Front",
  45132. image: {
  45133. source: "./media/characters/max-hyper/front.svg",
  45134. extra: 1969/1881,
  45135. bottom: 49/2018
  45136. }
  45137. },
  45138. },
  45139. [
  45140. {
  45141. name: "Normal",
  45142. height: math.unit(7, "feet"),
  45143. default: true
  45144. },
  45145. ]
  45146. ))
  45147. characterMakers.push(() => makeCharacter(
  45148. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45149. {
  45150. front: {
  45151. height: math.unit(5 + 5/12, "feet"),
  45152. weight: math.unit(160, "lb"),
  45153. name: "Front",
  45154. image: {
  45155. source: "./media/characters/spook/front.svg",
  45156. extra: 794/791,
  45157. bottom: 54/848
  45158. }
  45159. },
  45160. back: {
  45161. height: math.unit(5 + 5/12, "feet"),
  45162. weight: math.unit(160, "lb"),
  45163. name: "Back",
  45164. image: {
  45165. source: "./media/characters/spook/back.svg",
  45166. extra: 812/798,
  45167. bottom: 32/844
  45168. }
  45169. },
  45170. },
  45171. [
  45172. {
  45173. name: "Normal",
  45174. height: math.unit(5 + 5/12, "feet"),
  45175. default: true
  45176. },
  45177. ]
  45178. ))
  45179. characterMakers.push(() => makeCharacter(
  45180. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45181. {
  45182. front: {
  45183. height: math.unit(18, "feet"),
  45184. name: "Front",
  45185. image: {
  45186. source: "./media/characters/xeaduulix/front.svg",
  45187. extra: 1380/1166,
  45188. bottom: 110/1490
  45189. }
  45190. },
  45191. back: {
  45192. height: math.unit(18, "feet"),
  45193. name: "Back",
  45194. image: {
  45195. source: "./media/characters/xeaduulix/back.svg",
  45196. extra: 1592/1170,
  45197. bottom: 128/1720
  45198. }
  45199. },
  45200. frontNsfw: {
  45201. height: math.unit(18, "feet"),
  45202. name: "Front (NSFW)",
  45203. image: {
  45204. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45205. extra: 1380/1166,
  45206. bottom: 110/1490
  45207. }
  45208. },
  45209. backNsfw: {
  45210. height: math.unit(18, "feet"),
  45211. name: "Back (NSFW)",
  45212. image: {
  45213. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45214. extra: 1592/1170,
  45215. bottom: 128/1720
  45216. }
  45217. },
  45218. },
  45219. [
  45220. {
  45221. name: "Normal",
  45222. height: math.unit(18, "feet"),
  45223. default: true
  45224. },
  45225. ]
  45226. ))
  45227. characterMakers.push(() => makeCharacter(
  45228. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45229. {
  45230. spreadWings: {
  45231. height: math.unit(20, "feet"),
  45232. name: "Spread Wings",
  45233. image: {
  45234. source: "./media/characters/fledge/spread-wings.svg",
  45235. extra: 693/635,
  45236. bottom: 26/719
  45237. }
  45238. },
  45239. front: {
  45240. height: math.unit(20, "feet"),
  45241. name: "Front",
  45242. image: {
  45243. source: "./media/characters/fledge/front.svg",
  45244. extra: 684/637,
  45245. bottom: 18/702
  45246. }
  45247. },
  45248. frontAlt: {
  45249. height: math.unit(20, "feet"),
  45250. name: "Front (Alt)",
  45251. image: {
  45252. source: "./media/characters/fledge/front-alt.svg",
  45253. extra: 708/664,
  45254. bottom: 13/721
  45255. }
  45256. },
  45257. back: {
  45258. height: math.unit(20, "feet"),
  45259. name: "Back",
  45260. image: {
  45261. source: "./media/characters/fledge/back.svg",
  45262. extra: 718/634,
  45263. bottom: 22/740
  45264. }
  45265. },
  45266. head: {
  45267. height: math.unit(5.55, "feet"),
  45268. name: "Head",
  45269. image: {
  45270. source: "./media/characters/fledge/head.svg"
  45271. }
  45272. },
  45273. headAlt: {
  45274. height: math.unit(5.1, "feet"),
  45275. name: "Head (Alt)",
  45276. image: {
  45277. source: "./media/characters/fledge/head-alt.svg"
  45278. }
  45279. },
  45280. },
  45281. [
  45282. {
  45283. name: "Small",
  45284. height: math.unit(6 + 2/12, "feet")
  45285. },
  45286. {
  45287. name: "Big",
  45288. height: math.unit(20, "feet"),
  45289. default: true
  45290. },
  45291. {
  45292. name: "Giant",
  45293. height: math.unit(100, "feet")
  45294. },
  45295. {
  45296. name: "Macro",
  45297. height: math.unit(200, "feet")
  45298. },
  45299. ]
  45300. ))
  45301. characterMakers.push(() => makeCharacter(
  45302. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45303. {
  45304. front: {
  45305. height: math.unit(1, "meter"),
  45306. name: "Front",
  45307. image: {
  45308. source: "./media/characters/atlas-morenai/front.svg",
  45309. extra: 1275/1043,
  45310. bottom: 19/1294
  45311. }
  45312. },
  45313. back: {
  45314. height: math.unit(1, "meter"),
  45315. name: "Back",
  45316. image: {
  45317. source: "./media/characters/atlas-morenai/back.svg",
  45318. extra: 1141/1001,
  45319. bottom: 25/1166
  45320. }
  45321. },
  45322. },
  45323. [
  45324. {
  45325. name: "Normal",
  45326. height: math.unit(1, "meter"),
  45327. default: true
  45328. },
  45329. {
  45330. name: "Magic-Infused",
  45331. height: math.unit(5, "meters")
  45332. },
  45333. ]
  45334. ))
  45335. characterMakers.push(() => makeCharacter(
  45336. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45337. {
  45338. front: {
  45339. height: math.unit(5, "meters"),
  45340. name: "Front",
  45341. image: {
  45342. source: "./media/characters/cintia/front.svg",
  45343. extra: 1312/1228,
  45344. bottom: 38/1350
  45345. }
  45346. },
  45347. back: {
  45348. height: math.unit(5, "meters"),
  45349. name: "Back",
  45350. image: {
  45351. source: "./media/characters/cintia/back.svg",
  45352. extra: 1260/1166,
  45353. bottom: 98/1358
  45354. }
  45355. },
  45356. frontDick: {
  45357. height: math.unit(5, "meters"),
  45358. name: "Front (Dick)",
  45359. image: {
  45360. source: "./media/characters/cintia/front-dick.svg",
  45361. extra: 1312/1228,
  45362. bottom: 38/1350
  45363. }
  45364. },
  45365. backDick: {
  45366. height: math.unit(5, "meters"),
  45367. name: "Back (Dick)",
  45368. image: {
  45369. source: "./media/characters/cintia/back-dick.svg",
  45370. extra: 1260/1166,
  45371. bottom: 98/1358
  45372. }
  45373. },
  45374. bust: {
  45375. height: math.unit(1.97, "meters"),
  45376. name: "Bust",
  45377. image: {
  45378. source: "./media/characters/cintia/bust.svg",
  45379. extra: 617/565,
  45380. bottom: 0/617
  45381. }
  45382. },
  45383. },
  45384. [
  45385. {
  45386. name: "Normal",
  45387. height: math.unit(5, "meters"),
  45388. default: true
  45389. },
  45390. ]
  45391. ))
  45392. characterMakers.push(() => makeCharacter(
  45393. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45394. {
  45395. side: {
  45396. height: math.unit(100, "feet"),
  45397. name: "Side",
  45398. image: {
  45399. source: "./media/characters/denora/side.svg",
  45400. extra: 875/803,
  45401. bottom: 9/884
  45402. }
  45403. },
  45404. },
  45405. [
  45406. {
  45407. name: "Standard",
  45408. height: math.unit(100, "feet"),
  45409. default: true
  45410. },
  45411. {
  45412. name: "Grand",
  45413. height: math.unit(1000, "feet")
  45414. },
  45415. {
  45416. name: "Conquering",
  45417. height: math.unit(10000, "feet")
  45418. },
  45419. ]
  45420. ))
  45421. characterMakers.push(() => makeCharacter(
  45422. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45423. {
  45424. dressed: {
  45425. height: math.unit(8 + 5/12, "feet"),
  45426. weight: math.unit(700, "lb"),
  45427. name: "Dressed",
  45428. image: {
  45429. source: "./media/characters/kiva/dressed.svg",
  45430. extra: 1102/1055,
  45431. bottom: 60/1162
  45432. }
  45433. },
  45434. nude: {
  45435. height: math.unit(8 + 5/12, "feet"),
  45436. weight: math.unit(700, "lb"),
  45437. name: "Nude",
  45438. image: {
  45439. source: "./media/characters/kiva/nude.svg",
  45440. extra: 1102/1055,
  45441. bottom: 60/1162
  45442. }
  45443. },
  45444. },
  45445. [
  45446. {
  45447. name: "Base Height",
  45448. height: math.unit(8 + 5/12, "feet"),
  45449. default: true
  45450. },
  45451. {
  45452. name: "Macro",
  45453. height: math.unit(100, "feet")
  45454. },
  45455. {
  45456. name: "Max",
  45457. height: math.unit(3280, "feet")
  45458. },
  45459. ]
  45460. ))
  45461. characterMakers.push(() => makeCharacter(
  45462. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45463. {
  45464. front: {
  45465. height: math.unit(6 + 8/12, "feet"),
  45466. weight: math.unit(250, "lb"),
  45467. name: "Front",
  45468. image: {
  45469. source: "./media/characters/ztragon/front.svg",
  45470. extra: 1825/1684,
  45471. bottom: 98/1923
  45472. }
  45473. },
  45474. },
  45475. [
  45476. {
  45477. name: "Normal",
  45478. height: math.unit(6 + 8/12, "feet"),
  45479. default: true
  45480. },
  45481. {
  45482. name: "Macro",
  45483. height: math.unit(80, "feet")
  45484. },
  45485. ]
  45486. ))
  45487. characterMakers.push(() => makeCharacter(
  45488. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45489. {
  45490. front: {
  45491. height: math.unit(10.4, "feet"),
  45492. weight: math.unit(2, "tons"),
  45493. name: "Front",
  45494. image: {
  45495. source: "./media/characters/yesenia/front.svg",
  45496. extra: 1479/1474,
  45497. bottom: 233/1712
  45498. }
  45499. },
  45500. },
  45501. [
  45502. {
  45503. name: "Normal",
  45504. height: math.unit(10.4, "feet"),
  45505. default: true
  45506. },
  45507. ]
  45508. ))
  45509. characterMakers.push(() => makeCharacter(
  45510. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45511. {
  45512. normal: {
  45513. height: math.unit(6 + 1/12, "feet"),
  45514. weight: math.unit(180, "lb"),
  45515. name: "Normal",
  45516. image: {
  45517. source: "./media/characters/leanne-lycheborne/normal.svg",
  45518. extra: 1748/1660,
  45519. bottom: 98/1846
  45520. }
  45521. },
  45522. were: {
  45523. height: math.unit(12, "feet"),
  45524. weight: math.unit(1600, "lb"),
  45525. name: "Were",
  45526. image: {
  45527. source: "./media/characters/leanne-lycheborne/were.svg",
  45528. extra: 1485/1432,
  45529. bottom: 66/1551
  45530. }
  45531. },
  45532. },
  45533. [
  45534. {
  45535. name: "Normal",
  45536. height: math.unit(6 + 1/12, "feet"),
  45537. default: true
  45538. },
  45539. ]
  45540. ))
  45541. characterMakers.push(() => makeCharacter(
  45542. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45543. {
  45544. side: {
  45545. height: math.unit(13, "feet"),
  45546. name: "Side",
  45547. image: {
  45548. source: "./media/characters/kira-tyler/side.svg",
  45549. extra: 693/393,
  45550. bottom: 58/751
  45551. }
  45552. },
  45553. },
  45554. [
  45555. {
  45556. name: "Normal",
  45557. height: math.unit(13, "feet"),
  45558. default: true
  45559. },
  45560. ]
  45561. ))
  45562. characterMakers.push(() => makeCharacter(
  45563. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45564. {
  45565. front: {
  45566. height: math.unit(10.3, "feet"),
  45567. weight: math.unit(150, "lb"),
  45568. name: "Front",
  45569. image: {
  45570. source: "./media/characters/blaze/front.svg",
  45571. extra: 1378/1286,
  45572. bottom: 172/1550
  45573. }
  45574. },
  45575. },
  45576. [
  45577. {
  45578. name: "Normal",
  45579. height: math.unit(10.3, "feet"),
  45580. default: true
  45581. },
  45582. ]
  45583. ))
  45584. characterMakers.push(() => makeCharacter(
  45585. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45586. {
  45587. side: {
  45588. height: math.unit(2, "meters"),
  45589. weight: math.unit(400, "kg"),
  45590. name: "Side",
  45591. image: {
  45592. source: "./media/characters/anu/side.svg",
  45593. extra: 506/394,
  45594. bottom: 18/524
  45595. }
  45596. },
  45597. },
  45598. [
  45599. {
  45600. name: "Humanoid",
  45601. height: math.unit(2, "meters")
  45602. },
  45603. {
  45604. name: "Normal",
  45605. height: math.unit(5, "meters"),
  45606. default: true
  45607. },
  45608. ]
  45609. ))
  45610. characterMakers.push(() => makeCharacter(
  45611. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45612. {
  45613. front: {
  45614. height: math.unit(5 + 5/12, "feet"),
  45615. weight: math.unit(170, "lb"),
  45616. name: "Front",
  45617. image: {
  45618. source: "./media/characters/synx-the-lynx/front.svg",
  45619. extra: 1893/1745,
  45620. bottom: 17/1910
  45621. }
  45622. },
  45623. side: {
  45624. height: math.unit(5 + 5/12, "feet"),
  45625. weight: math.unit(170, "lb"),
  45626. name: "Side",
  45627. image: {
  45628. source: "./media/characters/synx-the-lynx/side.svg",
  45629. extra: 1884/1740,
  45630. bottom: 39/1923
  45631. }
  45632. },
  45633. back: {
  45634. height: math.unit(5 + 5/12, "feet"),
  45635. weight: math.unit(170, "lb"),
  45636. name: "Back",
  45637. image: {
  45638. source: "./media/characters/synx-the-lynx/back.svg",
  45639. extra: 1903/1755,
  45640. bottom: 14/1917
  45641. }
  45642. },
  45643. },
  45644. [
  45645. {
  45646. name: "Normal",
  45647. height: math.unit(5 + 5/12, "feet"),
  45648. default: true
  45649. },
  45650. ]
  45651. ))
  45652. characterMakers.push(() => makeCharacter(
  45653. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45654. {
  45655. back: {
  45656. height: math.unit(15, "feet"),
  45657. name: "Back",
  45658. image: {
  45659. source: "./media/characters/nadezda-fex/back.svg",
  45660. extra: 1695/1481,
  45661. bottom: 25/1720
  45662. }
  45663. },
  45664. },
  45665. [
  45666. {
  45667. name: "Normal",
  45668. height: math.unit(15, "feet"),
  45669. default: true
  45670. },
  45671. {
  45672. name: "Macro",
  45673. height: math.unit(2.5, "miles")
  45674. },
  45675. {
  45676. name: "Goddess",
  45677. height: math.unit(2, "multiverses")
  45678. },
  45679. ]
  45680. ))
  45681. characterMakers.push(() => makeCharacter(
  45682. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45683. {
  45684. front: {
  45685. height: math.unit(216, "cm"),
  45686. name: "Front",
  45687. image: {
  45688. source: "./media/characters/lev/front.svg",
  45689. extra: 1728/1670,
  45690. bottom: 82/1810
  45691. }
  45692. },
  45693. back: {
  45694. height: math.unit(216, "cm"),
  45695. name: "Back",
  45696. image: {
  45697. source: "./media/characters/lev/back.svg",
  45698. extra: 1738/1675,
  45699. bottom: 24/1762
  45700. }
  45701. },
  45702. dressed: {
  45703. height: math.unit(216, "cm"),
  45704. name: "Dressed",
  45705. image: {
  45706. source: "./media/characters/lev/dressed.svg",
  45707. extra: 1397/1351,
  45708. bottom: 73/1470
  45709. }
  45710. },
  45711. head: {
  45712. height: math.unit(0.51, "meter"),
  45713. name: "Head",
  45714. image: {
  45715. source: "./media/characters/lev/head.svg"
  45716. }
  45717. },
  45718. },
  45719. [
  45720. {
  45721. name: "Normal",
  45722. height: math.unit(216, "cm"),
  45723. default: true
  45724. },
  45725. {
  45726. name: "Relatively Macro",
  45727. height: math.unit(80, "meters")
  45728. },
  45729. {
  45730. name: "Megamacro",
  45731. height: math.unit(21600, "meters")
  45732. },
  45733. {
  45734. name: "Megamacro+",
  45735. height: math.unit(64800, "meters")
  45736. },
  45737. ]
  45738. ))
  45739. characterMakers.push(() => makeCharacter(
  45740. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45741. {
  45742. front: {
  45743. height: math.unit(2, "meters"),
  45744. weight: math.unit(80, "kg"),
  45745. name: "Front",
  45746. image: {
  45747. source: "./media/characters/moka/front.svg",
  45748. extra: 1337/1255,
  45749. bottom: 58/1395
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Micro",
  45756. height: math.unit(15, "cm")
  45757. },
  45758. {
  45759. name: "Normal",
  45760. height: math.unit(2, "meters"),
  45761. default: true
  45762. },
  45763. {
  45764. name: "Macro",
  45765. height: math.unit(20, "meters"),
  45766. },
  45767. ]
  45768. ))
  45769. characterMakers.push(() => makeCharacter(
  45770. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45771. {
  45772. front: {
  45773. height: math.unit(9, "feet"),
  45774. weight: math.unit(240, "lb"),
  45775. name: "Front",
  45776. image: {
  45777. source: "./media/characters/kuzco/front.svg",
  45778. extra: 1593/1487,
  45779. bottom: 32/1625
  45780. }
  45781. },
  45782. side: {
  45783. height: math.unit(9, "feet"),
  45784. weight: math.unit(240, "lb"),
  45785. name: "Side",
  45786. image: {
  45787. source: "./media/characters/kuzco/side.svg",
  45788. extra: 1575/1485,
  45789. bottom: 30/1605
  45790. }
  45791. },
  45792. back: {
  45793. height: math.unit(9, "feet"),
  45794. weight: math.unit(240, "lb"),
  45795. name: "Back",
  45796. image: {
  45797. source: "./media/characters/kuzco/back.svg",
  45798. extra: 1603/1514,
  45799. bottom: 14/1617
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Normal",
  45806. height: math.unit(9, "feet"),
  45807. default: true
  45808. },
  45809. ]
  45810. ))
  45811. characterMakers.push(() => makeCharacter(
  45812. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45813. {
  45814. side: {
  45815. height: math.unit(2, "meters"),
  45816. weight: math.unit(300, "kg"),
  45817. name: "Side",
  45818. image: {
  45819. source: "./media/characters/ceruleus/side.svg",
  45820. extra: 1068/974,
  45821. bottom: 126/1194
  45822. }
  45823. },
  45824. },
  45825. [
  45826. {
  45827. name: "Normal",
  45828. height: math.unit(16, "meters"),
  45829. default: true
  45830. },
  45831. ]
  45832. ))
  45833. characterMakers.push(() => makeCharacter(
  45834. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45835. {
  45836. front: {
  45837. height: math.unit(9, "feet"),
  45838. weight: math.unit(500, "kg"),
  45839. name: "Front",
  45840. image: {
  45841. source: "./media/characters/acouya/front.svg",
  45842. extra: 1660/1473,
  45843. bottom: 28/1688
  45844. }
  45845. },
  45846. },
  45847. [
  45848. {
  45849. name: "Normal",
  45850. height: math.unit(9, "feet"),
  45851. default: true
  45852. },
  45853. ]
  45854. ))
  45855. characterMakers.push(() => makeCharacter(
  45856. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45857. {
  45858. front: {
  45859. height: math.unit(5 + 6/12, "feet"),
  45860. weight: math.unit(195, "lb"),
  45861. name: "Front",
  45862. image: {
  45863. source: "./media/characters/vant/front.svg",
  45864. extra: 1396/1320,
  45865. bottom: 20/1416
  45866. }
  45867. },
  45868. back: {
  45869. height: math.unit(5 + 6/12, "feet"),
  45870. weight: math.unit(195, "lb"),
  45871. name: "Back",
  45872. image: {
  45873. source: "./media/characters/vant/back.svg",
  45874. extra: 1396/1320,
  45875. bottom: 20/1416
  45876. }
  45877. },
  45878. maw: {
  45879. height: math.unit(0.75, "feet"),
  45880. name: "Maw",
  45881. image: {
  45882. source: "./media/characters/vant/maw.svg"
  45883. }
  45884. },
  45885. paw: {
  45886. height: math.unit(1.07, "feet"),
  45887. name: "Paw",
  45888. image: {
  45889. source: "./media/characters/vant/paw.svg"
  45890. }
  45891. },
  45892. },
  45893. [
  45894. {
  45895. name: "Micro",
  45896. height: math.unit(0.25, "inches")
  45897. },
  45898. {
  45899. name: "Normal",
  45900. height: math.unit(5 + 6/12, "feet"),
  45901. default: true
  45902. },
  45903. {
  45904. name: "Macro",
  45905. height: math.unit(75, "feet")
  45906. },
  45907. ]
  45908. ))
  45909. characterMakers.push(() => makeCharacter(
  45910. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45911. {
  45912. front: {
  45913. height: math.unit(30, "meters"),
  45914. weight: math.unit(363, "tons"),
  45915. name: "Front",
  45916. image: {
  45917. source: "./media/characters/ahra/front.svg",
  45918. extra: 1914/1814,
  45919. bottom: 46/1960
  45920. }
  45921. },
  45922. },
  45923. [
  45924. {
  45925. name: "Macro",
  45926. height: math.unit(30, "meters"),
  45927. default: true
  45928. },
  45929. ]
  45930. ))
  45931. characterMakers.push(() => makeCharacter(
  45932. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45933. {
  45934. undressed: {
  45935. height: math.unit(2, "m"),
  45936. weight: math.unit(250, "kg"),
  45937. name: "Undressed",
  45938. image: {
  45939. source: "./media/characters/coriander/undressed.svg",
  45940. extra: 1757/1606,
  45941. bottom: 107/1864
  45942. }
  45943. },
  45944. dressed: {
  45945. height: math.unit(2, "m"),
  45946. weight: math.unit(250, "kg"),
  45947. name: "Dressed",
  45948. image: {
  45949. source: "./media/characters/coriander/dressed.svg",
  45950. extra: 1757/1606,
  45951. bottom: 107/1864
  45952. }
  45953. },
  45954. },
  45955. [
  45956. {
  45957. name: "Normal",
  45958. height: math.unit(4, "meters"),
  45959. default: true
  45960. },
  45961. {
  45962. name: "XL",
  45963. height: math.unit(6, "meters")
  45964. },
  45965. {
  45966. name: "XXL",
  45967. height: math.unit(8, "meters")
  45968. },
  45969. ]
  45970. ))
  45971. characterMakers.push(() => makeCharacter(
  45972. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45973. {
  45974. front: {
  45975. height: math.unit(6, "feet"),
  45976. name: "Front",
  45977. image: {
  45978. source: "./media/characters/syrinx/front.svg",
  45979. extra: 1557/1259,
  45980. bottom: 171/1728
  45981. }
  45982. },
  45983. },
  45984. [
  45985. {
  45986. name: "Normal",
  45987. height: math.unit(6 + 3/12, "feet"),
  45988. default: true
  45989. },
  45990. ]
  45991. ))
  45992. characterMakers.push(() => makeCharacter(
  45993. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45994. {
  45995. front: {
  45996. height: math.unit(11 + 6/12, "feet"),
  45997. weight: math.unit(1.5, "tons"),
  45998. name: "Front",
  45999. image: {
  46000. source: "./media/characters/bor/front.svg",
  46001. extra: 1189/1109,
  46002. bottom: 170/1359
  46003. }
  46004. },
  46005. },
  46006. [
  46007. {
  46008. name: "Normal",
  46009. height: math.unit(11 + 6/12, "feet"),
  46010. default: true
  46011. },
  46012. {
  46013. name: "Macro",
  46014. height: math.unit(32 + 9/12, "feet")
  46015. },
  46016. ]
  46017. ))
  46018. characterMakers.push(() => makeCharacter(
  46019. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46020. {
  46021. anthro: {
  46022. height: math.unit(9, "feet"),
  46023. weight: math.unit(2076, "lb"),
  46024. name: "Anthro",
  46025. image: {
  46026. source: "./media/characters/abacus/anthro.svg",
  46027. extra: 1540/1494,
  46028. bottom: 233/1773
  46029. }
  46030. },
  46031. pigeon: {
  46032. height: math.unit(1, "feet"),
  46033. name: "Pigeon",
  46034. image: {
  46035. source: "./media/characters/abacus/pigeon.svg",
  46036. extra: 528/525,
  46037. bottom: 46/574
  46038. }
  46039. },
  46040. },
  46041. [
  46042. {
  46043. name: "Normal",
  46044. height: math.unit(9, "feet"),
  46045. default: true
  46046. },
  46047. ]
  46048. ))
  46049. characterMakers.push(() => makeCharacter(
  46050. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46051. {
  46052. side: {
  46053. height: math.unit(6, "feet"),
  46054. name: "Side",
  46055. image: {
  46056. source: "./media/characters/delkhan/side.svg",
  46057. extra: 1884/1786,
  46058. bottom: 308/2192
  46059. }
  46060. },
  46061. head: {
  46062. height: math.unit(3.38, "feet"),
  46063. name: "Head",
  46064. image: {
  46065. source: "./media/characters/delkhan/head.svg"
  46066. }
  46067. },
  46068. },
  46069. [
  46070. {
  46071. name: "Normal",
  46072. height: math.unit(72, "feet"),
  46073. default: true
  46074. },
  46075. {
  46076. name: "Giant",
  46077. height: math.unit(172, "feet")
  46078. },
  46079. ]
  46080. ))
  46081. characterMakers.push(() => makeCharacter(
  46082. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46083. {
  46084. standing: {
  46085. height: math.unit(6, "feet"),
  46086. name: "Standing",
  46087. image: {
  46088. source: "./media/characters/euchidat/standing.svg",
  46089. extra: 1612/1553,
  46090. bottom: 116/1728
  46091. }
  46092. },
  46093. leaning: {
  46094. height: math.unit(6, "feet"),
  46095. name: "Leaning",
  46096. image: {
  46097. source: "./media/characters/euchidat/leaning.svg",
  46098. extra: 1719/1674,
  46099. bottom: 27/1746
  46100. }
  46101. },
  46102. },
  46103. [
  46104. {
  46105. name: "Normal",
  46106. height: math.unit(175, "feet"),
  46107. default: true
  46108. },
  46109. {
  46110. name: "Megamacro",
  46111. height: math.unit(190, "miles")
  46112. },
  46113. {
  46114. name: "Gigamacro",
  46115. height: math.unit(190000, "miles")
  46116. },
  46117. ]
  46118. ))
  46119. characterMakers.push(() => makeCharacter(
  46120. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46121. {
  46122. front: {
  46123. height: math.unit(6, "feet"),
  46124. weight: math.unit(150, "lb"),
  46125. name: "Front",
  46126. image: {
  46127. source: "./media/characters/rebecca-stack/front.svg",
  46128. extra: 1256/1201,
  46129. bottom: 18/1274
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "Normal",
  46136. height: math.unit(5 + 8/12, "feet"),
  46137. default: true
  46138. },
  46139. {
  46140. name: "Demolitionist",
  46141. height: math.unit(200, "feet")
  46142. },
  46143. {
  46144. name: "Out of Control",
  46145. height: math.unit(2, "miles")
  46146. },
  46147. {
  46148. name: "Giga",
  46149. height: math.unit(7200, "miles")
  46150. },
  46151. ]
  46152. ))
  46153. characterMakers.push(() => makeCharacter(
  46154. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46155. {
  46156. front: {
  46157. height: math.unit(6, "feet"),
  46158. weight: math.unit(150, "lb"),
  46159. name: "Front",
  46160. image: {
  46161. source: "./media/characters/jenny-cartwright/front.svg",
  46162. extra: 1384/1376,
  46163. bottom: 58/1442
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Normal",
  46170. height: math.unit(6 + 7/12, "feet"),
  46171. default: true
  46172. },
  46173. {
  46174. name: "Librarian",
  46175. height: math.unit(55, "feet")
  46176. },
  46177. {
  46178. name: "Sightseer",
  46179. height: math.unit(50, "miles")
  46180. },
  46181. {
  46182. name: "Giga",
  46183. height: math.unit(30000, "miles")
  46184. },
  46185. ]
  46186. ))
  46187. characterMakers.push(() => makeCharacter(
  46188. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46189. {
  46190. nude: {
  46191. height: math.unit(8, "feet"),
  46192. weight: math.unit(225, "lb"),
  46193. name: "Nude",
  46194. image: {
  46195. source: "./media/characters/marvy/nude.svg",
  46196. extra: 1900/1683,
  46197. bottom: 89/1989
  46198. }
  46199. },
  46200. dressed: {
  46201. height: math.unit(8, "feet"),
  46202. weight: math.unit(225, "lb"),
  46203. name: "Dressed",
  46204. image: {
  46205. source: "./media/characters/marvy/dressed.svg",
  46206. extra: 1900/1683,
  46207. bottom: 89/1989
  46208. }
  46209. },
  46210. head: {
  46211. height: math.unit(2.85, "feet"),
  46212. name: "Head",
  46213. image: {
  46214. source: "./media/characters/marvy/head.svg"
  46215. }
  46216. },
  46217. },
  46218. [
  46219. {
  46220. name: "Normal",
  46221. height: math.unit(8, "feet"),
  46222. default: true
  46223. },
  46224. ]
  46225. ))
  46226. characterMakers.push(() => makeCharacter(
  46227. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46228. {
  46229. front: {
  46230. height: math.unit(8, "feet"),
  46231. weight: math.unit(250, "lb"),
  46232. name: "Front",
  46233. image: {
  46234. source: "./media/characters/leah/front.svg",
  46235. extra: 1257/1149,
  46236. bottom: 109/1366
  46237. }
  46238. },
  46239. },
  46240. [
  46241. {
  46242. name: "Normal",
  46243. height: math.unit(8, "feet"),
  46244. default: true
  46245. },
  46246. {
  46247. name: "Minimacro",
  46248. height: math.unit(40, "feet")
  46249. },
  46250. {
  46251. name: "Macro",
  46252. height: math.unit(124, "feet")
  46253. },
  46254. {
  46255. name: "Megamacro",
  46256. height: math.unit(850, "feet")
  46257. },
  46258. ]
  46259. ))
  46260. characterMakers.push(() => makeCharacter(
  46261. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46262. {
  46263. side: {
  46264. height: math.unit(13 + 6/12, "feet"),
  46265. weight: math.unit(3200, "lb"),
  46266. name: "Side",
  46267. image: {
  46268. source: "./media/characters/alvir/side.svg",
  46269. extra: 896/589,
  46270. bottom: 26/922
  46271. }
  46272. },
  46273. },
  46274. [
  46275. {
  46276. name: "Normal",
  46277. height: math.unit(13 + 6/12, "feet"),
  46278. default: true
  46279. },
  46280. ]
  46281. ))
  46282. characterMakers.push(() => makeCharacter(
  46283. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46284. {
  46285. front: {
  46286. height: math.unit(5 + 4/12, "feet"),
  46287. weight: math.unit(236, "lb"),
  46288. name: "Front",
  46289. image: {
  46290. source: "./media/characters/zaina-khalil/front.svg",
  46291. extra: 1533/1485,
  46292. bottom: 94/1627
  46293. }
  46294. },
  46295. side: {
  46296. height: math.unit(5 + 4/12, "feet"),
  46297. weight: math.unit(236, "lb"),
  46298. name: "Side",
  46299. image: {
  46300. source: "./media/characters/zaina-khalil/side.svg",
  46301. extra: 1537/1498,
  46302. bottom: 66/1603
  46303. }
  46304. },
  46305. back: {
  46306. height: math.unit(5 + 4/12, "feet"),
  46307. weight: math.unit(236, "lb"),
  46308. name: "Back",
  46309. image: {
  46310. source: "./media/characters/zaina-khalil/back.svg",
  46311. extra: 1546/1494,
  46312. bottom: 89/1635
  46313. }
  46314. },
  46315. },
  46316. [
  46317. {
  46318. name: "Normal",
  46319. height: math.unit(5 + 4/12, "feet"),
  46320. default: true
  46321. },
  46322. ]
  46323. ))
  46324. characterMakers.push(() => makeCharacter(
  46325. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46326. {
  46327. side: {
  46328. height: math.unit(12, "feet"),
  46329. weight: math.unit(4000, "lb"),
  46330. name: "Side",
  46331. image: {
  46332. source: "./media/characters/terry/side.svg",
  46333. extra: 1518/1439,
  46334. bottom: 149/1667
  46335. }
  46336. },
  46337. },
  46338. [
  46339. {
  46340. name: "Normal",
  46341. height: math.unit(12, "feet"),
  46342. default: true
  46343. },
  46344. ]
  46345. ))
  46346. characterMakers.push(() => makeCharacter(
  46347. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46348. {
  46349. front: {
  46350. height: math.unit(12, "feet"),
  46351. weight: math.unit(1500, "lb"),
  46352. name: "Front",
  46353. image: {
  46354. source: "./media/characters/kahea/front.svg",
  46355. extra: 1722/1617,
  46356. bottom: 179/1901
  46357. }
  46358. },
  46359. },
  46360. [
  46361. {
  46362. name: "Normal",
  46363. height: math.unit(12, "feet"),
  46364. default: true
  46365. },
  46366. ]
  46367. ))
  46368. characterMakers.push(() => makeCharacter(
  46369. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46370. {
  46371. demonFront: {
  46372. height: math.unit(36, "feet"),
  46373. name: "Front",
  46374. image: {
  46375. source: "./media/characters/alex-xuria/demon-front.svg",
  46376. extra: 1705/1673,
  46377. bottom: 198/1903
  46378. },
  46379. form: "demon",
  46380. default: true
  46381. },
  46382. demonBack: {
  46383. height: math.unit(36, "feet"),
  46384. name: "Back",
  46385. image: {
  46386. source: "./media/characters/alex-xuria/demon-back.svg",
  46387. extra: 1725/1693,
  46388. bottom: 70/1795
  46389. },
  46390. form: "demon"
  46391. },
  46392. demonHead: {
  46393. height: math.unit(2.14, "meters"),
  46394. name: "Head",
  46395. image: {
  46396. source: "./media/characters/alex-xuria/demon-head.svg"
  46397. },
  46398. form: "demon"
  46399. },
  46400. demonHand: {
  46401. height: math.unit(1.61, "meters"),
  46402. name: "Hand",
  46403. image: {
  46404. source: "./media/characters/alex-xuria/demon-hand.svg"
  46405. },
  46406. form: "demon"
  46407. },
  46408. demonPaw: {
  46409. height: math.unit(1.35, "meters"),
  46410. name: "Paw",
  46411. image: {
  46412. source: "./media/characters/alex-xuria/demon-paw.svg"
  46413. },
  46414. form: "demon"
  46415. },
  46416. demonFoot: {
  46417. height: math.unit(2.2, "meters"),
  46418. name: "Foot",
  46419. image: {
  46420. source: "./media/characters/alex-xuria/demon-foot.svg"
  46421. },
  46422. form: "demon"
  46423. },
  46424. demonCock: {
  46425. height: math.unit(1.74, "meters"),
  46426. name: "Cock",
  46427. image: {
  46428. source: "./media/characters/alex-xuria/demon-cock.svg"
  46429. },
  46430. form: "demon"
  46431. },
  46432. demonTailClosed: {
  46433. height: math.unit(1.47, "meters"),
  46434. name: "Tail (Closed)",
  46435. image: {
  46436. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46437. },
  46438. form: "demon"
  46439. },
  46440. demonTailOpen: {
  46441. height: math.unit(2.85, "meters"),
  46442. name: "Tail (Open)",
  46443. image: {
  46444. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46445. },
  46446. form: "demon"
  46447. },
  46448. incubusFront: {
  46449. height: math.unit(12, "feet"),
  46450. name: "Front",
  46451. image: {
  46452. source: "./media/characters/alex-xuria/incubus-front.svg",
  46453. extra: 1754/1677,
  46454. bottom: 125/1879
  46455. },
  46456. form: "incubus",
  46457. default: true
  46458. },
  46459. incubusBack: {
  46460. height: math.unit(12, "feet"),
  46461. name: "Back",
  46462. image: {
  46463. source: "./media/characters/alex-xuria/incubus-back.svg",
  46464. extra: 1702/1647,
  46465. bottom: 30/1732
  46466. },
  46467. form: "incubus"
  46468. },
  46469. incubusHead: {
  46470. height: math.unit(3.45, "feet"),
  46471. name: "Head",
  46472. image: {
  46473. source: "./media/characters/alex-xuria/incubus-head.svg"
  46474. },
  46475. form: "incubus"
  46476. },
  46477. rabbitFront: {
  46478. height: math.unit(6, "feet"),
  46479. name: "Front",
  46480. image: {
  46481. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46482. extra: 1369/1349,
  46483. bottom: 45/1414
  46484. },
  46485. form: "rabbit",
  46486. default: true
  46487. },
  46488. rabbitSide: {
  46489. height: math.unit(6, "feet"),
  46490. name: "Side",
  46491. image: {
  46492. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46493. extra: 1370/1356,
  46494. bottom: 37/1407
  46495. },
  46496. form: "rabbit"
  46497. },
  46498. rabbitBack: {
  46499. height: math.unit(6, "feet"),
  46500. name: "Back",
  46501. image: {
  46502. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46503. extra: 1375/1358,
  46504. bottom: 43/1418
  46505. },
  46506. form: "rabbit"
  46507. },
  46508. },
  46509. [
  46510. {
  46511. name: "Normal",
  46512. height: math.unit(6, "feet"),
  46513. default: true,
  46514. form: "rabbit"
  46515. },
  46516. {
  46517. name: "Incubus",
  46518. height: math.unit(12, "feet"),
  46519. default: true,
  46520. form: "incubus"
  46521. },
  46522. {
  46523. name: "Demon",
  46524. height: math.unit(36, "feet"),
  46525. default: true,
  46526. form: "demon"
  46527. }
  46528. ],
  46529. {
  46530. "demon": {
  46531. name: "Demon",
  46532. default: true
  46533. },
  46534. "incubus": {
  46535. name: "Incubus",
  46536. },
  46537. "rabbit": {
  46538. name: "Rabbit"
  46539. }
  46540. }
  46541. ))
  46542. characterMakers.push(() => makeCharacter(
  46543. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46544. {
  46545. front: {
  46546. height: math.unit(7 + 5/12, "feet"),
  46547. weight: math.unit(510, "lb"),
  46548. name: "Front",
  46549. image: {
  46550. source: "./media/characters/syrup/front.svg",
  46551. extra: 932/916,
  46552. bottom: 26/958
  46553. }
  46554. },
  46555. },
  46556. [
  46557. {
  46558. name: "Normal",
  46559. height: math.unit(7 + 5/12, "feet"),
  46560. default: true
  46561. },
  46562. {
  46563. name: "Big",
  46564. height: math.unit(50, "feet")
  46565. },
  46566. {
  46567. name: "Macro",
  46568. height: math.unit(300, "feet")
  46569. },
  46570. {
  46571. name: "Megamacro",
  46572. height: math.unit(1, "mile")
  46573. },
  46574. ]
  46575. ))
  46576. characterMakers.push(() => makeCharacter(
  46577. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46578. {
  46579. front: {
  46580. height: math.unit(6 + 9/12, "feet"),
  46581. name: "Front",
  46582. image: {
  46583. source: "./media/characters/zeimne/front.svg",
  46584. extra: 1969/1806,
  46585. bottom: 53/2022
  46586. }
  46587. },
  46588. },
  46589. [
  46590. {
  46591. name: "Normal",
  46592. height: math.unit(6 + 9/12, "feet"),
  46593. default: true
  46594. },
  46595. {
  46596. name: "Giant",
  46597. height: math.unit(550, "feet")
  46598. },
  46599. {
  46600. name: "Mega",
  46601. height: math.unit(3, "miles")
  46602. },
  46603. {
  46604. name: "Giga",
  46605. height: math.unit(250, "miles")
  46606. },
  46607. {
  46608. name: "Tera",
  46609. height: math.unit(1, "AU")
  46610. },
  46611. ]
  46612. ))
  46613. characterMakers.push(() => makeCharacter(
  46614. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46615. {
  46616. front: {
  46617. height: math.unit(5 + 2/12, "feet"),
  46618. name: "Front",
  46619. image: {
  46620. source: "./media/characters/grar/front.svg",
  46621. extra: 1331/1119,
  46622. bottom: 60/1391
  46623. }
  46624. },
  46625. back: {
  46626. height: math.unit(5 + 2/12, "feet"),
  46627. name: "Back",
  46628. image: {
  46629. source: "./media/characters/grar/back.svg",
  46630. extra: 1385/1169,
  46631. bottom: 23/1408
  46632. }
  46633. },
  46634. },
  46635. [
  46636. {
  46637. name: "Normal",
  46638. height: math.unit(5 + 2/12, "feet"),
  46639. default: true
  46640. },
  46641. ]
  46642. ))
  46643. characterMakers.push(() => makeCharacter(
  46644. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46645. {
  46646. front: {
  46647. height: math.unit(13 + 7/12, "feet"),
  46648. weight: math.unit(2200, "lb"),
  46649. name: "Front",
  46650. image: {
  46651. source: "./media/characters/endraya/front.svg",
  46652. extra: 1289/1215,
  46653. bottom: 50/1339
  46654. }
  46655. },
  46656. nude: {
  46657. height: math.unit(13 + 7/12, "feet"),
  46658. weight: math.unit(2200, "lb"),
  46659. name: "Nude",
  46660. image: {
  46661. source: "./media/characters/endraya/nude.svg",
  46662. extra: 1247/1171,
  46663. bottom: 40/1287
  46664. }
  46665. },
  46666. head: {
  46667. height: math.unit(2.6, "feet"),
  46668. name: "Head",
  46669. image: {
  46670. source: "./media/characters/endraya/head.svg"
  46671. }
  46672. },
  46673. slit: {
  46674. height: math.unit(3.4, "feet"),
  46675. name: "Slit",
  46676. image: {
  46677. source: "./media/characters/endraya/slit.svg"
  46678. }
  46679. },
  46680. },
  46681. [
  46682. {
  46683. name: "Normal",
  46684. height: math.unit(13 + 7/12, "feet"),
  46685. default: true
  46686. },
  46687. {
  46688. name: "Macro",
  46689. height: math.unit(200, "feet")
  46690. },
  46691. ]
  46692. ))
  46693. characterMakers.push(() => makeCharacter(
  46694. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46695. {
  46696. front: {
  46697. height: math.unit(1.81, "meters"),
  46698. weight: math.unit(69, "kg"),
  46699. name: "Front",
  46700. image: {
  46701. source: "./media/characters/rodryana/front.svg",
  46702. extra: 2002/1921,
  46703. bottom: 53/2055
  46704. }
  46705. },
  46706. back: {
  46707. height: math.unit(1.81, "meters"),
  46708. weight: math.unit(69, "kg"),
  46709. name: "Back",
  46710. image: {
  46711. source: "./media/characters/rodryana/back.svg",
  46712. extra: 1993/1926,
  46713. bottom: 48/2041
  46714. }
  46715. },
  46716. maw: {
  46717. height: math.unit(0.19769417475, "meters"),
  46718. name: "Maw",
  46719. image: {
  46720. source: "./media/characters/rodryana/maw.svg"
  46721. }
  46722. },
  46723. slit: {
  46724. height: math.unit(0.31631067961, "meters"),
  46725. name: "Slit",
  46726. image: {
  46727. source: "./media/characters/rodryana/slit.svg"
  46728. }
  46729. },
  46730. },
  46731. [
  46732. {
  46733. name: "Normal",
  46734. height: math.unit(1.81, "meters")
  46735. },
  46736. {
  46737. name: "Mini Macro",
  46738. height: math.unit(181, "meters")
  46739. },
  46740. {
  46741. name: "Macro",
  46742. height: math.unit(452, "meters"),
  46743. default: true
  46744. },
  46745. {
  46746. name: "Mega Macro",
  46747. height: math.unit(1.375, "km")
  46748. },
  46749. {
  46750. name: "Giga Macro",
  46751. height: math.unit(13.575, "km")
  46752. },
  46753. ]
  46754. ))
  46755. characterMakers.push(() => makeCharacter(
  46756. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46757. {
  46758. front: {
  46759. height: math.unit(6, "feet"),
  46760. weight: math.unit(1000, "lb"),
  46761. name: "Front",
  46762. image: {
  46763. source: "./media/characters/asaya/front.svg",
  46764. extra: 1460/1200,
  46765. bottom: 71/1531
  46766. }
  46767. },
  46768. },
  46769. [
  46770. {
  46771. name: "Normal",
  46772. height: math.unit(8, "km"),
  46773. default: true
  46774. },
  46775. ]
  46776. ))
  46777. characterMakers.push(() => makeCharacter(
  46778. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46779. {
  46780. front: {
  46781. height: math.unit(3.5, "meters"),
  46782. name: "Front",
  46783. image: {
  46784. source: "./media/characters/sarzu-and-israz/front.svg",
  46785. extra: 1570/1558,
  46786. bottom: 150/1720
  46787. },
  46788. },
  46789. back: {
  46790. height: math.unit(3.5, "meters"),
  46791. name: "Back",
  46792. image: {
  46793. source: "./media/characters/sarzu-and-israz/back.svg",
  46794. extra: 1523/1509,
  46795. bottom: 132/1655
  46796. },
  46797. },
  46798. frontFemale: {
  46799. height: math.unit(3.5, "meters"),
  46800. name: "Front (Female)",
  46801. image: {
  46802. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46803. extra: 1570/1558,
  46804. bottom: 150/1720
  46805. },
  46806. },
  46807. frontHerm: {
  46808. height: math.unit(3.5, "meters"),
  46809. name: "Front (Herm)",
  46810. image: {
  46811. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46812. extra: 1570/1558,
  46813. bottom: 150/1720
  46814. },
  46815. },
  46816. },
  46817. [
  46818. {
  46819. name: "Normal",
  46820. height: math.unit(3.5, "meters"),
  46821. default: true,
  46822. },
  46823. {
  46824. name: "Macro",
  46825. height: math.unit(65.5, "meters"),
  46826. },
  46827. ],
  46828. ))
  46829. characterMakers.push(() => makeCharacter(
  46830. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46831. {
  46832. front: {
  46833. height: math.unit(6, "feet"),
  46834. weight: math.unit(250, "lb"),
  46835. name: "Front",
  46836. image: {
  46837. source: "./media/characters/zenimma/front.svg",
  46838. extra: 1346/1320,
  46839. bottom: 58/1404
  46840. }
  46841. },
  46842. back: {
  46843. height: math.unit(6, "feet"),
  46844. weight: math.unit(250, "lb"),
  46845. name: "Back",
  46846. image: {
  46847. source: "./media/characters/zenimma/back.svg",
  46848. extra: 1324/1308,
  46849. bottom: 44/1368
  46850. }
  46851. },
  46852. dick: {
  46853. height: math.unit(1.44, "feet"),
  46854. name: "Dick",
  46855. image: {
  46856. source: "./media/characters/zenimma/dick.svg"
  46857. }
  46858. },
  46859. },
  46860. [
  46861. {
  46862. name: "Canon Height",
  46863. height: math.unit(66, "miles"),
  46864. default: true
  46865. },
  46866. ]
  46867. ))
  46868. characterMakers.push(() => makeCharacter(
  46869. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46870. {
  46871. nude: {
  46872. height: math.unit(6, "feet"),
  46873. weight: math.unit(150, "lb"),
  46874. name: "Nude",
  46875. image: {
  46876. source: "./media/characters/shavon/nude.svg",
  46877. extra: 1242/1096,
  46878. bottom: 98/1340
  46879. }
  46880. },
  46881. dressed: {
  46882. height: math.unit(6, "feet"),
  46883. weight: math.unit(150, "lb"),
  46884. name: "Dressed",
  46885. image: {
  46886. source: "./media/characters/shavon/dressed.svg",
  46887. extra: 1242/1096,
  46888. bottom: 98/1340
  46889. }
  46890. },
  46891. },
  46892. [
  46893. {
  46894. name: "Macro",
  46895. height: math.unit(255, "feet"),
  46896. default: true
  46897. },
  46898. ]
  46899. ))
  46900. characterMakers.push(() => makeCharacter(
  46901. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46902. {
  46903. front: {
  46904. height: math.unit(6, "feet"),
  46905. name: "Front",
  46906. image: {
  46907. source: "./media/characters/steph/front.svg",
  46908. extra: 1430/1330,
  46909. bottom: 54/1484
  46910. }
  46911. },
  46912. },
  46913. [
  46914. {
  46915. name: "Normal",
  46916. height: math.unit(6, "feet"),
  46917. default: true
  46918. },
  46919. ]
  46920. ))
  46921. characterMakers.push(() => makeCharacter(
  46922. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46923. {
  46924. front: {
  46925. height: math.unit(9, "feet"),
  46926. weight: math.unit(400, "lb"),
  46927. name: "Front",
  46928. image: {
  46929. source: "./media/characters/kil'aman/front.svg",
  46930. extra: 1210/1159,
  46931. bottom: 109/1319
  46932. }
  46933. },
  46934. head: {
  46935. height: math.unit(2.14, "feet"),
  46936. name: "Head",
  46937. image: {
  46938. source: "./media/characters/kil'aman/head.svg"
  46939. }
  46940. },
  46941. maw: {
  46942. height: math.unit(1.21, "feet"),
  46943. name: "Maw",
  46944. image: {
  46945. source: "./media/characters/kil'aman/maw.svg"
  46946. }
  46947. },
  46948. foot: {
  46949. height: math.unit(1.7, "feet"),
  46950. name: "Foot",
  46951. image: {
  46952. source: "./media/characters/kil'aman/foot.svg"
  46953. }
  46954. },
  46955. dick: {
  46956. height: math.unit(2.1, "feet"),
  46957. name: "Dick",
  46958. image: {
  46959. source: "./media/characters/kil'aman/dick.svg"
  46960. }
  46961. },
  46962. },
  46963. [
  46964. {
  46965. name: "Normal",
  46966. height: math.unit(9, "feet")
  46967. },
  46968. {
  46969. name: "Canon Height",
  46970. height: math.unit(10, "miles"),
  46971. default: true
  46972. },
  46973. {
  46974. name: "Maximum",
  46975. height: math.unit(6e9, "miles")
  46976. },
  46977. ]
  46978. ))
  46979. characterMakers.push(() => makeCharacter(
  46980. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46981. {
  46982. front: {
  46983. height: math.unit(90, "feet"),
  46984. weight: math.unit(675000, "lb"),
  46985. name: "Front",
  46986. image: {
  46987. source: "./media/characters/qadan/front.svg",
  46988. extra: 1012/1004,
  46989. bottom: 78/1090
  46990. }
  46991. },
  46992. back: {
  46993. height: math.unit(90, "feet"),
  46994. weight: math.unit(675000, "lb"),
  46995. name: "Back",
  46996. image: {
  46997. source: "./media/characters/qadan/back.svg",
  46998. extra: 1042/1031,
  46999. bottom: 55/1097
  47000. }
  47001. },
  47002. armored: {
  47003. height: math.unit(90, "feet"),
  47004. weight: math.unit(675000, "lb"),
  47005. name: "Armored",
  47006. image: {
  47007. source: "./media/characters/qadan/armored.svg",
  47008. extra: 1047/1037,
  47009. bottom: 48/1095
  47010. }
  47011. },
  47012. },
  47013. [
  47014. {
  47015. name: "Normal",
  47016. height: math.unit(90, "feet"),
  47017. default: true
  47018. },
  47019. ]
  47020. ))
  47021. characterMakers.push(() => makeCharacter(
  47022. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47023. {
  47024. front: {
  47025. height: math.unit(6, "feet"),
  47026. weight: math.unit(225, "lb"),
  47027. name: "Front",
  47028. image: {
  47029. source: "./media/characters/brooke/front.svg",
  47030. extra: 1050/1010,
  47031. bottom: 66/1116
  47032. }
  47033. },
  47034. back: {
  47035. height: math.unit(6, "feet"),
  47036. weight: math.unit(225, "lb"),
  47037. name: "Back",
  47038. image: {
  47039. source: "./media/characters/brooke/back.svg",
  47040. extra: 1053/1013,
  47041. bottom: 41/1094
  47042. }
  47043. },
  47044. dressed: {
  47045. height: math.unit(6, "feet"),
  47046. weight: math.unit(225, "lb"),
  47047. name: "Dressed",
  47048. image: {
  47049. source: "./media/characters/brooke/dressed.svg",
  47050. extra: 1050/1010,
  47051. bottom: 66/1116
  47052. }
  47053. },
  47054. },
  47055. [
  47056. {
  47057. name: "Canon Height",
  47058. height: math.unit(500, "miles"),
  47059. default: true
  47060. },
  47061. ]
  47062. ))
  47063. characterMakers.push(() => makeCharacter(
  47064. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47065. {
  47066. front: {
  47067. height: math.unit(6 + 2/12, "feet"),
  47068. weight: math.unit(210, "lb"),
  47069. name: "Front",
  47070. image: {
  47071. source: "./media/characters/wubs/front.svg",
  47072. extra: 1345/1325,
  47073. bottom: 70/1415
  47074. }
  47075. },
  47076. back: {
  47077. height: math.unit(6 + 2/12, "feet"),
  47078. weight: math.unit(210, "lb"),
  47079. name: "Back",
  47080. image: {
  47081. source: "./media/characters/wubs/back.svg",
  47082. extra: 1296/1275,
  47083. bottom: 58/1354
  47084. }
  47085. },
  47086. },
  47087. [
  47088. {
  47089. name: "Normal",
  47090. height: math.unit(6 + 2/12, "feet"),
  47091. default: true
  47092. },
  47093. {
  47094. name: "Macro",
  47095. height: math.unit(1000, "feet")
  47096. },
  47097. {
  47098. name: "Megamacro",
  47099. height: math.unit(1, "mile")
  47100. },
  47101. ]
  47102. ))
  47103. characterMakers.push(() => makeCharacter(
  47104. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47105. {
  47106. front: {
  47107. height: math.unit(4, "feet"),
  47108. weight: math.unit(120, "lb"),
  47109. name: "Front",
  47110. image: {
  47111. source: "./media/characters/blue/front.svg",
  47112. extra: 1636/1525,
  47113. bottom: 43/1679
  47114. }
  47115. },
  47116. back: {
  47117. height: math.unit(4, "feet"),
  47118. weight: math.unit(120, "lb"),
  47119. name: "Back",
  47120. image: {
  47121. source: "./media/characters/blue/back.svg",
  47122. extra: 1660/1560,
  47123. bottom: 57/1717
  47124. }
  47125. },
  47126. paws: {
  47127. height: math.unit(0.826, "feet"),
  47128. name: "Paws",
  47129. image: {
  47130. source: "./media/characters/blue/paws.svg"
  47131. }
  47132. },
  47133. },
  47134. [
  47135. {
  47136. name: "Micro",
  47137. height: math.unit(3, "inches")
  47138. },
  47139. {
  47140. name: "Normal",
  47141. height: math.unit(4, "feet"),
  47142. default: true
  47143. },
  47144. {
  47145. name: "Femenine Form",
  47146. height: math.unit(14, "feet")
  47147. },
  47148. {
  47149. name: "Werebat Form",
  47150. height: math.unit(18, "feet")
  47151. },
  47152. ]
  47153. ))
  47154. characterMakers.push(() => makeCharacter(
  47155. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47156. {
  47157. female: {
  47158. height: math.unit(7 + 4/12, "feet"),
  47159. weight: math.unit(243, "lb"),
  47160. name: "Female",
  47161. image: {
  47162. source: "./media/characters/kaya/female.svg",
  47163. extra: 975/898,
  47164. bottom: 34/1009
  47165. }
  47166. },
  47167. herm: {
  47168. height: math.unit(7 + 4/12, "feet"),
  47169. weight: math.unit(243, "lb"),
  47170. name: "Herm",
  47171. image: {
  47172. source: "./media/characters/kaya/herm.svg",
  47173. extra: 975/898,
  47174. bottom: 34/1009
  47175. }
  47176. },
  47177. },
  47178. [
  47179. {
  47180. name: "Normal",
  47181. height: math.unit(7 + 4/12, "feet"),
  47182. default: true
  47183. },
  47184. ]
  47185. ))
  47186. characterMakers.push(() => makeCharacter(
  47187. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47188. {
  47189. female: {
  47190. height: math.unit(9 + 4/12, "feet"),
  47191. weight: math.unit(398, "lb"),
  47192. name: "Female",
  47193. image: {
  47194. source: "./media/characters/kassandra/female.svg",
  47195. extra: 908/839,
  47196. bottom: 61/969
  47197. }
  47198. },
  47199. intersex: {
  47200. height: math.unit(9 + 4/12, "feet"),
  47201. weight: math.unit(398, "lb"),
  47202. name: "Intersex",
  47203. image: {
  47204. source: "./media/characters/kassandra/intersex.svg",
  47205. extra: 908/839,
  47206. bottom: 61/969
  47207. }
  47208. },
  47209. },
  47210. [
  47211. {
  47212. name: "Normal",
  47213. height: math.unit(9 + 4/12, "feet"),
  47214. default: true
  47215. },
  47216. ]
  47217. ))
  47218. characterMakers.push(() => makeCharacter(
  47219. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47220. {
  47221. front: {
  47222. height: math.unit(3, "meters"),
  47223. name: "Front",
  47224. image: {
  47225. source: "./media/characters/amy/front.svg",
  47226. extra: 1380/1343,
  47227. bottom: 70/1450
  47228. }
  47229. },
  47230. back: {
  47231. height: math.unit(3, "meters"),
  47232. name: "Back",
  47233. image: {
  47234. source: "./media/characters/amy/back.svg",
  47235. extra: 1380/1347,
  47236. bottom: 66/1446
  47237. }
  47238. },
  47239. },
  47240. [
  47241. {
  47242. name: "Normal",
  47243. height: math.unit(3, "meters"),
  47244. default: true
  47245. },
  47246. ]
  47247. ))
  47248. characterMakers.push(() => makeCharacter(
  47249. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47250. {
  47251. side: {
  47252. height: math.unit(47, "cm"),
  47253. weight: math.unit(10.8, "kg"),
  47254. name: "Side",
  47255. image: {
  47256. source: "./media/characters/alphaschakal/side.svg",
  47257. extra: 1058/568,
  47258. bottom: 62/1120
  47259. }
  47260. },
  47261. back: {
  47262. height: math.unit(78, "cm"),
  47263. weight: math.unit(10.8, "kg"),
  47264. name: "Back",
  47265. image: {
  47266. source: "./media/characters/alphaschakal/back.svg",
  47267. extra: 1102/942,
  47268. bottom: 185/1287
  47269. }
  47270. },
  47271. head: {
  47272. height: math.unit(28, "cm"),
  47273. name: "Head",
  47274. image: {
  47275. source: "./media/characters/alphaschakal/head.svg",
  47276. extra: 696/508,
  47277. bottom: 0/696
  47278. }
  47279. },
  47280. paw: {
  47281. height: math.unit(16, "cm"),
  47282. name: "Paw",
  47283. image: {
  47284. source: "./media/characters/alphaschakal/paw.svg"
  47285. }
  47286. },
  47287. },
  47288. [
  47289. {
  47290. name: "Normal",
  47291. height: math.unit(47, "cm"),
  47292. default: true
  47293. },
  47294. {
  47295. name: "Macro",
  47296. height: math.unit(340, "cm")
  47297. },
  47298. ]
  47299. ))
  47300. characterMakers.push(() => makeCharacter(
  47301. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47302. {
  47303. front: {
  47304. height: math.unit(36, "earths"),
  47305. name: "Front",
  47306. image: {
  47307. source: "./media/characters/ecobyss/front.svg",
  47308. extra: 1282/1215,
  47309. bottom: 11/1293
  47310. }
  47311. },
  47312. back: {
  47313. height: math.unit(36, "earths"),
  47314. name: "Back",
  47315. image: {
  47316. source: "./media/characters/ecobyss/back.svg",
  47317. extra: 1291/1222,
  47318. bottom: 8/1299
  47319. }
  47320. },
  47321. },
  47322. [
  47323. {
  47324. name: "Normal",
  47325. height: math.unit(36, "earths"),
  47326. default: true
  47327. },
  47328. ]
  47329. ))
  47330. characterMakers.push(() => makeCharacter(
  47331. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47332. {
  47333. front: {
  47334. height: math.unit(12, "feet"),
  47335. name: "Front",
  47336. image: {
  47337. source: "./media/characters/vasuk/front.svg",
  47338. extra: 1326/1207,
  47339. bottom: 64/1390
  47340. }
  47341. },
  47342. },
  47343. [
  47344. {
  47345. name: "Normal",
  47346. height: math.unit(12, "feet"),
  47347. default: true
  47348. },
  47349. ]
  47350. ))
  47351. characterMakers.push(() => makeCharacter(
  47352. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47353. {
  47354. side: {
  47355. height: math.unit(100, "feet"),
  47356. name: "Side",
  47357. image: {
  47358. source: "./media/characters/linneaus/side.svg",
  47359. extra: 987/807,
  47360. bottom: 47/1034
  47361. }
  47362. },
  47363. },
  47364. [
  47365. {
  47366. name: "Macro",
  47367. height: math.unit(100, "feet"),
  47368. default: true
  47369. },
  47370. ]
  47371. ))
  47372. characterMakers.push(() => makeCharacter(
  47373. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47374. {
  47375. front: {
  47376. height: math.unit(8, "feet"),
  47377. weight: math.unit(1200, "lb"),
  47378. name: "Front",
  47379. image: {
  47380. source: "./media/characters/nyterious-daligdig/front.svg",
  47381. extra: 1284/1094,
  47382. bottom: 84/1368
  47383. }
  47384. },
  47385. back: {
  47386. height: math.unit(8, "feet"),
  47387. weight: math.unit(1200, "lb"),
  47388. name: "Back",
  47389. image: {
  47390. source: "./media/characters/nyterious-daligdig/back.svg",
  47391. extra: 1301/1121,
  47392. bottom: 129/1430
  47393. }
  47394. },
  47395. mouth: {
  47396. height: math.unit(1.464, "feet"),
  47397. name: "Mouth",
  47398. image: {
  47399. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47400. }
  47401. },
  47402. },
  47403. [
  47404. {
  47405. name: "Small",
  47406. height: math.unit(8, "feet"),
  47407. default: true
  47408. },
  47409. {
  47410. name: "Normal",
  47411. height: math.unit(15, "feet")
  47412. },
  47413. {
  47414. name: "Macro",
  47415. height: math.unit(90, "feet")
  47416. },
  47417. ]
  47418. ))
  47419. characterMakers.push(() => makeCharacter(
  47420. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47421. {
  47422. front: {
  47423. height: math.unit(7 + 4/12, "feet"),
  47424. weight: math.unit(252, "lb"),
  47425. name: "Front",
  47426. image: {
  47427. source: "./media/characters/bandel/front.svg",
  47428. extra: 1946/1775,
  47429. bottom: 26/1972
  47430. }
  47431. },
  47432. back: {
  47433. height: math.unit(7 + 4/12, "feet"),
  47434. weight: math.unit(252, "lb"),
  47435. name: "Back",
  47436. image: {
  47437. source: "./media/characters/bandel/back.svg",
  47438. extra: 1940/1770,
  47439. bottom: 25/1965
  47440. }
  47441. },
  47442. maw: {
  47443. height: math.unit(2.15, "feet"),
  47444. name: "Maw",
  47445. image: {
  47446. source: "./media/characters/bandel/maw.svg"
  47447. }
  47448. },
  47449. stomach: {
  47450. height: math.unit(1.95, "feet"),
  47451. name: "Stomach",
  47452. image: {
  47453. source: "./media/characters/bandel/stomach.svg"
  47454. }
  47455. },
  47456. },
  47457. [
  47458. {
  47459. name: "Normal",
  47460. height: math.unit(7 + 4/12, "feet"),
  47461. default: true
  47462. },
  47463. ]
  47464. ))
  47465. characterMakers.push(() => makeCharacter(
  47466. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47467. {
  47468. front: {
  47469. height: math.unit(10 + 5/12, "feet"),
  47470. weight: math.unit(773.5, "kg"),
  47471. name: "Front",
  47472. image: {
  47473. source: "./media/characters/zed/front.svg",
  47474. extra: 987/941,
  47475. bottom: 52/1039
  47476. }
  47477. },
  47478. },
  47479. [
  47480. {
  47481. name: "Short",
  47482. height: math.unit(5 + 4/12, "feet")
  47483. },
  47484. {
  47485. name: "Average",
  47486. height: math.unit(10 + 5/12, "feet"),
  47487. default: true
  47488. },
  47489. {
  47490. name: "Mini-Macro",
  47491. height: math.unit(24 + 9/12, "feet")
  47492. },
  47493. {
  47494. name: "Macro",
  47495. height: math.unit(249, "feet")
  47496. },
  47497. {
  47498. name: "Mega-Macro",
  47499. height: math.unit(12490, "feet")
  47500. },
  47501. {
  47502. name: "Giga-Macro",
  47503. height: math.unit(24.9, "miles")
  47504. },
  47505. {
  47506. name: "Tera-Macro",
  47507. height: math.unit(24900, "miles")
  47508. },
  47509. {
  47510. name: "Cosmic Scale",
  47511. height: math.unit(38.9, "lightyears")
  47512. },
  47513. {
  47514. name: "Universal Scale",
  47515. height: math.unit(138e12, "lightyears")
  47516. },
  47517. ]
  47518. ))
  47519. characterMakers.push(() => makeCharacter(
  47520. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47521. {
  47522. front: {
  47523. height: math.unit(1561, "inches"),
  47524. name: "Front",
  47525. image: {
  47526. source: "./media/characters/ivan/front.svg",
  47527. extra: 1126/1071,
  47528. bottom: 26/1152
  47529. }
  47530. },
  47531. back: {
  47532. height: math.unit(1561, "inches"),
  47533. name: "Back",
  47534. image: {
  47535. source: "./media/characters/ivan/back.svg",
  47536. extra: 1134/1079,
  47537. bottom: 30/1164
  47538. }
  47539. },
  47540. },
  47541. [
  47542. {
  47543. name: "Normal",
  47544. height: math.unit(1561, "inches"),
  47545. default: true
  47546. },
  47547. ]
  47548. ))
  47549. characterMakers.push(() => makeCharacter(
  47550. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47551. {
  47552. front: {
  47553. height: math.unit(5 + 7/12, "feet"),
  47554. weight: math.unit(150, "lb"),
  47555. name: "Front",
  47556. image: {
  47557. source: "./media/characters/robin-arctic-hare/front.svg",
  47558. extra: 1148/974,
  47559. bottom: 20/1168
  47560. }
  47561. },
  47562. },
  47563. [
  47564. {
  47565. name: "Normal",
  47566. height: math.unit(5 + 7/12, "feet"),
  47567. default: true
  47568. },
  47569. ]
  47570. ))
  47571. characterMakers.push(() => makeCharacter(
  47572. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47573. {
  47574. side: {
  47575. height: math.unit(5, "feet"),
  47576. name: "Side",
  47577. image: {
  47578. source: "./media/characters/birch/side.svg",
  47579. extra: 985/796,
  47580. bottom: 111/1096
  47581. }
  47582. },
  47583. },
  47584. [
  47585. {
  47586. name: "Normal",
  47587. height: math.unit(5, "feet"),
  47588. default: true
  47589. },
  47590. ]
  47591. ))
  47592. characterMakers.push(() => makeCharacter(
  47593. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47594. {
  47595. front: {
  47596. height: math.unit(4, "feet"),
  47597. name: "Front",
  47598. image: {
  47599. source: "./media/characters/rasp/front.svg",
  47600. extra: 561/478,
  47601. bottom: 74/635
  47602. }
  47603. },
  47604. },
  47605. [
  47606. {
  47607. name: "Normal",
  47608. height: math.unit(4, "feet"),
  47609. default: true
  47610. },
  47611. ]
  47612. ))
  47613. characterMakers.push(() => makeCharacter(
  47614. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47615. {
  47616. front: {
  47617. height: math.unit(4 + 6/12, "feet"),
  47618. name: "Front",
  47619. image: {
  47620. source: "./media/characters/agatha/front.svg",
  47621. extra: 947/933,
  47622. bottom: 42/989
  47623. }
  47624. },
  47625. back: {
  47626. height: math.unit(4 + 6/12, "feet"),
  47627. name: "Back",
  47628. image: {
  47629. source: "./media/characters/agatha/back.svg",
  47630. extra: 935/922,
  47631. bottom: 48/983
  47632. }
  47633. },
  47634. },
  47635. [
  47636. {
  47637. name: "Normal",
  47638. height: math.unit(4 + 6 /12, "feet"),
  47639. default: true
  47640. },
  47641. {
  47642. name: "Max Size",
  47643. height: math.unit(500, "feet")
  47644. },
  47645. ]
  47646. ))
  47647. characterMakers.push(() => makeCharacter(
  47648. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47649. {
  47650. side: {
  47651. height: math.unit(30, "feet"),
  47652. name: "Side",
  47653. image: {
  47654. source: "./media/characters/roggy/side.svg",
  47655. extra: 909/643,
  47656. bottom: 63/972
  47657. }
  47658. },
  47659. lounging: {
  47660. height: math.unit(20, "feet"),
  47661. name: "Lounging",
  47662. image: {
  47663. source: "./media/characters/roggy/lounging.svg",
  47664. extra: 643/479,
  47665. bottom: 145/788
  47666. }
  47667. },
  47668. handpaw: {
  47669. height: math.unit(13.1, "feet"),
  47670. name: "Handpaw",
  47671. image: {
  47672. source: "./media/characters/roggy/handpaw.svg"
  47673. }
  47674. },
  47675. footpaw: {
  47676. height: math.unit(15.8, "feet"),
  47677. name: "Footpaw",
  47678. image: {
  47679. source: "./media/characters/roggy/footpaw.svg"
  47680. }
  47681. },
  47682. },
  47683. [
  47684. {
  47685. name: "Menacing",
  47686. height: math.unit(30, "feet"),
  47687. default: true
  47688. },
  47689. ]
  47690. ))
  47691. characterMakers.push(() => makeCharacter(
  47692. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47693. {
  47694. front: {
  47695. height: math.unit(5 + 7/12, "feet"),
  47696. weight: math.unit(135, "lb"),
  47697. name: "Front",
  47698. image: {
  47699. source: "./media/characters/naomi/front.svg",
  47700. extra: 1209/1154,
  47701. bottom: 129/1338
  47702. }
  47703. },
  47704. back: {
  47705. height: math.unit(5 + 7/12, "feet"),
  47706. weight: math.unit(135, "lb"),
  47707. name: "Back",
  47708. image: {
  47709. source: "./media/characters/naomi/back.svg",
  47710. extra: 1252/1190,
  47711. bottom: 23/1275
  47712. }
  47713. },
  47714. },
  47715. [
  47716. {
  47717. name: "Normal",
  47718. height: math.unit(5 + 7 /12, "feet"),
  47719. default: true
  47720. },
  47721. ]
  47722. ))
  47723. characterMakers.push(() => makeCharacter(
  47724. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47725. {
  47726. side: {
  47727. height: math.unit(35, "meters"),
  47728. name: "Side",
  47729. image: {
  47730. source: "./media/characters/kimpi/side.svg",
  47731. extra: 419/382,
  47732. bottom: 63/482
  47733. }
  47734. },
  47735. hand: {
  47736. height: math.unit(8.96, "meters"),
  47737. name: "Hand",
  47738. image: {
  47739. source: "./media/characters/kimpi/hand.svg"
  47740. }
  47741. },
  47742. },
  47743. [
  47744. {
  47745. name: "Normal",
  47746. height: math.unit(35, "meters"),
  47747. default: true
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47753. {
  47754. front: {
  47755. height: math.unit(4 + 4/12, "feet"),
  47756. name: "Front",
  47757. image: {
  47758. source: "./media/characters/pepper-purrloin/front.svg",
  47759. extra: 1141/1024,
  47760. bottom: 21/1162
  47761. }
  47762. },
  47763. },
  47764. [
  47765. {
  47766. name: "Normal",
  47767. height: math.unit(4 + 4/12, "feet"),
  47768. default: true
  47769. },
  47770. ]
  47771. ))
  47772. characterMakers.push(() => makeCharacter(
  47773. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47774. {
  47775. front: {
  47776. height: math.unit(6 + 2/12, "feet"),
  47777. name: "Front",
  47778. image: {
  47779. source: "./media/characters/raphael/front.svg",
  47780. extra: 1101/962,
  47781. bottom: 59/1160
  47782. }
  47783. },
  47784. },
  47785. [
  47786. {
  47787. name: "Normal",
  47788. height: math.unit(6 + 2/12, "feet"),
  47789. default: true
  47790. },
  47791. ]
  47792. ))
  47793. characterMakers.push(() => makeCharacter(
  47794. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47795. {
  47796. front: {
  47797. height: math.unit(6, "feet"),
  47798. weight: math.unit(150, "lb"),
  47799. name: "Front",
  47800. image: {
  47801. source: "./media/characters/victor-williams/front.svg",
  47802. extra: 1894/1825,
  47803. bottom: 67/1961
  47804. }
  47805. },
  47806. },
  47807. [
  47808. {
  47809. name: "Normal",
  47810. height: math.unit(6, "feet"),
  47811. default: true
  47812. },
  47813. ]
  47814. ))
  47815. characterMakers.push(() => makeCharacter(
  47816. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47817. {
  47818. front: {
  47819. height: math.unit(5 + 8/12, "feet"),
  47820. weight: math.unit(150, "lb"),
  47821. name: "Front",
  47822. image: {
  47823. source: "./media/characters/rachel/front.svg",
  47824. extra: 1902/1787,
  47825. bottom: 46/1948
  47826. }
  47827. },
  47828. },
  47829. [
  47830. {
  47831. name: "Base Height",
  47832. height: math.unit(5 + 8/12, "feet"),
  47833. default: true
  47834. },
  47835. {
  47836. name: "Macro",
  47837. height: math.unit(200, "feet")
  47838. },
  47839. {
  47840. name: "Mega Macro",
  47841. height: math.unit(1, "mile")
  47842. },
  47843. {
  47844. name: "Giga Macro",
  47845. height: math.unit(1500, "miles")
  47846. },
  47847. {
  47848. name: "Tera Macro",
  47849. height: math.unit(8000, "miles")
  47850. },
  47851. {
  47852. name: "Tera Macro+",
  47853. height: math.unit(2e5, "miles")
  47854. },
  47855. ]
  47856. ))
  47857. characterMakers.push(() => makeCharacter(
  47858. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47859. {
  47860. front: {
  47861. height: math.unit(6.5, "feet"),
  47862. name: "Front",
  47863. image: {
  47864. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47865. extra: 860/819,
  47866. bottom: 307/1167
  47867. }
  47868. },
  47869. back: {
  47870. height: math.unit(6.5, "feet"),
  47871. name: "Back",
  47872. image: {
  47873. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47874. extra: 880/837,
  47875. bottom: 395/1275
  47876. }
  47877. },
  47878. sleeping: {
  47879. height: math.unit(2.79, "feet"),
  47880. name: "Sleeping",
  47881. image: {
  47882. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47883. extra: 465/383,
  47884. bottom: 263/728
  47885. }
  47886. },
  47887. maw: {
  47888. height: math.unit(2.52, "feet"),
  47889. name: "Maw",
  47890. image: {
  47891. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47892. }
  47893. },
  47894. },
  47895. [
  47896. {
  47897. name: "Normal",
  47898. height: math.unit(6.5, "feet"),
  47899. default: true
  47900. },
  47901. ]
  47902. ))
  47903. characterMakers.push(() => makeCharacter(
  47904. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47905. {
  47906. front: {
  47907. height: math.unit(5, "feet"),
  47908. name: "Front",
  47909. image: {
  47910. source: "./media/characters/nova-nerium/front.svg",
  47911. extra: 1548/1392,
  47912. bottom: 374/1922
  47913. }
  47914. },
  47915. back: {
  47916. height: math.unit(5, "feet"),
  47917. name: "Back",
  47918. image: {
  47919. source: "./media/characters/nova-nerium/back.svg",
  47920. extra: 1658/1468,
  47921. bottom: 257/1915
  47922. }
  47923. },
  47924. },
  47925. [
  47926. {
  47927. name: "Normal",
  47928. height: math.unit(5, "feet"),
  47929. default: true
  47930. },
  47931. ]
  47932. ))
  47933. characterMakers.push(() => makeCharacter(
  47934. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47935. {
  47936. front: {
  47937. height: math.unit(5 + 4/12, "feet"),
  47938. name: "Front",
  47939. image: {
  47940. source: "./media/characters/ashe-pyriph/front.svg",
  47941. extra: 1935/1747,
  47942. bottom: 60/1995
  47943. }
  47944. },
  47945. },
  47946. [
  47947. {
  47948. name: "Normal",
  47949. height: math.unit(5 + 4/12, "feet"),
  47950. default: true
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47956. {
  47957. front: {
  47958. height: math.unit(8.7, "feet"),
  47959. name: "Front",
  47960. image: {
  47961. source: "./media/characters/flicker-wisp/front.svg",
  47962. extra: 1835/1613,
  47963. bottom: 449/2284
  47964. }
  47965. },
  47966. side: {
  47967. height: math.unit(8.7, "feet"),
  47968. name: "Side",
  47969. image: {
  47970. source: "./media/characters/flicker-wisp/side.svg",
  47971. extra: 1841/1642,
  47972. bottom: 336/2177
  47973. },
  47974. default: true
  47975. },
  47976. maw: {
  47977. height: math.unit(3.35, "feet"),
  47978. name: "Maw",
  47979. image: {
  47980. source: "./media/characters/flicker-wisp/maw.svg",
  47981. extra: 2338/1506,
  47982. bottom: 0/2338
  47983. }
  47984. },
  47985. ovipositor: {
  47986. height: math.unit(4.95, "feet"),
  47987. name: "Ovipositor",
  47988. image: {
  47989. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47990. }
  47991. },
  47992. egg: {
  47993. height: math.unit(0.385, "feet"),
  47994. weight: math.unit(2, "lb"),
  47995. name: "Egg",
  47996. image: {
  47997. source: "./media/characters/flicker-wisp/egg.svg"
  47998. }
  47999. },
  48000. },
  48001. [
  48002. {
  48003. name: "Normal",
  48004. height: math.unit(8.7, "feet"),
  48005. default: true
  48006. },
  48007. ]
  48008. ))
  48009. characterMakers.push(() => makeCharacter(
  48010. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48011. {
  48012. side: {
  48013. height: math.unit(11, "feet"),
  48014. name: "Side",
  48015. image: {
  48016. source: "./media/characters/faefnul/side.svg",
  48017. extra: 1100/1007,
  48018. bottom: 0/1100
  48019. }
  48020. },
  48021. },
  48022. [
  48023. {
  48024. name: "Normal",
  48025. height: math.unit(11, "feet"),
  48026. default: true
  48027. },
  48028. ]
  48029. ))
  48030. characterMakers.push(() => makeCharacter(
  48031. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48032. {
  48033. front: {
  48034. height: math.unit(6 + 2/12, "feet"),
  48035. name: "Front",
  48036. image: {
  48037. source: "./media/characters/shady/front.svg",
  48038. extra: 502/461,
  48039. bottom: 9/511
  48040. }
  48041. },
  48042. kneeling: {
  48043. height: math.unit(4.6, "feet"),
  48044. name: "Kneeling",
  48045. image: {
  48046. source: "./media/characters/shady/kneeling.svg",
  48047. extra: 1328/1219,
  48048. bottom: 117/1445
  48049. }
  48050. },
  48051. maw: {
  48052. height: math.unit(2, "feet"),
  48053. name: "Maw",
  48054. image: {
  48055. source: "./media/characters/shady/maw.svg"
  48056. }
  48057. },
  48058. },
  48059. [
  48060. {
  48061. name: "Nano",
  48062. height: math.unit(1, "mm")
  48063. },
  48064. {
  48065. name: "Micro",
  48066. height: math.unit(12, "mm")
  48067. },
  48068. {
  48069. name: "Tiny",
  48070. height: math.unit(3, "inches")
  48071. },
  48072. {
  48073. name: "Normal",
  48074. height: math.unit(6 + 2/12, "feet"),
  48075. default: true
  48076. },
  48077. {
  48078. name: "Big",
  48079. height: math.unit(15, "feet")
  48080. },
  48081. {
  48082. name: "Macro",
  48083. height: math.unit(150, "feet")
  48084. },
  48085. {
  48086. name: "Titanic",
  48087. height: math.unit(500, "feet")
  48088. },
  48089. ]
  48090. ))
  48091. characterMakers.push(() => makeCharacter(
  48092. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48093. {
  48094. front: {
  48095. height: math.unit(12, "feet"),
  48096. name: "Front",
  48097. image: {
  48098. source: "./media/characters/fenrir/front.svg",
  48099. extra: 968/875,
  48100. bottom: 22/990
  48101. }
  48102. },
  48103. },
  48104. [
  48105. {
  48106. name: "Big",
  48107. height: math.unit(12, "feet"),
  48108. default: true
  48109. },
  48110. ]
  48111. ))
  48112. characterMakers.push(() => makeCharacter(
  48113. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48114. {
  48115. front: {
  48116. height: math.unit(5 + 4/12, "feet"),
  48117. name: "Front",
  48118. image: {
  48119. source: "./media/characters/makar/front.svg",
  48120. extra: 1181/1112,
  48121. bottom: 78/1259
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(5 + 4/12, "feet"),
  48129. default: true
  48130. },
  48131. ]
  48132. ))
  48133. characterMakers.push(() => makeCharacter(
  48134. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48135. {
  48136. front: {
  48137. height: math.unit(5 + 7/12, "feet"),
  48138. name: "Front",
  48139. image: {
  48140. source: "./media/characters/callow/front.svg",
  48141. extra: 1482/1304,
  48142. bottom: 23/1505
  48143. }
  48144. },
  48145. back: {
  48146. height: math.unit(5 + 7/12, "feet"),
  48147. name: "Back",
  48148. image: {
  48149. source: "./media/characters/callow/back.svg",
  48150. extra: 1484/1296,
  48151. bottom: 25/1509
  48152. }
  48153. },
  48154. },
  48155. [
  48156. {
  48157. name: "Micro",
  48158. height: math.unit(3, "inches"),
  48159. default: true
  48160. },
  48161. {
  48162. name: "Normal",
  48163. height: math.unit(5 + 7/12, "feet")
  48164. },
  48165. ]
  48166. ))
  48167. characterMakers.push(() => makeCharacter(
  48168. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48169. {
  48170. front: {
  48171. height: math.unit(6 + 2/12, "feet"),
  48172. name: "Front",
  48173. image: {
  48174. source: "./media/characters/natel/front.svg",
  48175. extra: 1833/1692,
  48176. bottom: 166/1999
  48177. }
  48178. },
  48179. },
  48180. [
  48181. {
  48182. name: "Normal",
  48183. height: math.unit(6 + 2/12, "feet"),
  48184. default: true
  48185. },
  48186. ]
  48187. ))
  48188. characterMakers.push(() => makeCharacter(
  48189. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48190. {
  48191. front: {
  48192. height: math.unit(1.75, "meters"),
  48193. name: "Front",
  48194. image: {
  48195. source: "./media/characters/misu/front.svg",
  48196. extra: 1690/1558,
  48197. bottom: 234/1924
  48198. }
  48199. },
  48200. back: {
  48201. height: math.unit(1.75, "meters"),
  48202. name: "Back",
  48203. image: {
  48204. source: "./media/characters/misu/back.svg",
  48205. extra: 1762/1618,
  48206. bottom: 146/1908
  48207. }
  48208. },
  48209. frontNude: {
  48210. height: math.unit(1.75, "meters"),
  48211. name: "Front (Nude)",
  48212. image: {
  48213. source: "./media/characters/misu/front-nude.svg",
  48214. extra: 1690/1558,
  48215. bottom: 234/1924
  48216. }
  48217. },
  48218. backNude: {
  48219. height: math.unit(1.75, "meters"),
  48220. name: "Back (Nude)",
  48221. image: {
  48222. source: "./media/characters/misu/back-nude.svg",
  48223. extra: 1762/1618,
  48224. bottom: 146/1908
  48225. }
  48226. },
  48227. frontErect: {
  48228. height: math.unit(1.75, "meters"),
  48229. name: "Front (Erect)",
  48230. image: {
  48231. source: "./media/characters/misu/front-erect.svg",
  48232. extra: 1690/1558,
  48233. bottom: 234/1924
  48234. }
  48235. },
  48236. maw: {
  48237. height: math.unit(0.47, "meters"),
  48238. name: "Maw",
  48239. image: {
  48240. source: "./media/characters/misu/maw.svg"
  48241. }
  48242. },
  48243. head: {
  48244. height: math.unit(0.35, "meters"),
  48245. name: "Head",
  48246. image: {
  48247. source: "./media/characters/misu/head.svg"
  48248. }
  48249. },
  48250. rear: {
  48251. height: math.unit(0.47, "meters"),
  48252. name: "Rear",
  48253. image: {
  48254. source: "./media/characters/misu/rear.svg"
  48255. }
  48256. },
  48257. },
  48258. [
  48259. {
  48260. name: "Normal",
  48261. height: math.unit(1.75, "meters")
  48262. },
  48263. {
  48264. name: "Not good for the people",
  48265. height: math.unit(42, "meters")
  48266. },
  48267. {
  48268. name: "Not good for the neighborhood",
  48269. height: math.unit(135, "meters")
  48270. },
  48271. {
  48272. name: "Bit bigger problem",
  48273. height: math.unit(380, "meters"),
  48274. default: true
  48275. },
  48276. {
  48277. name: "Not good for the city",
  48278. height: math.unit(1.5, "km")
  48279. },
  48280. {
  48281. name: "Not good for the county",
  48282. height: math.unit(5.5, "km")
  48283. },
  48284. {
  48285. name: "Not good for the state",
  48286. height: math.unit(25, "km")
  48287. },
  48288. {
  48289. name: "Not good for the country",
  48290. height: math.unit(125, "km")
  48291. },
  48292. {
  48293. name: "Not good for the continent",
  48294. height: math.unit(2100, "km")
  48295. },
  48296. {
  48297. name: "Not good for the planet",
  48298. height: math.unit(35000, "km")
  48299. },
  48300. {
  48301. name: "Just no",
  48302. height: math.unit(8.5e18, "km")
  48303. },
  48304. ]
  48305. ))
  48306. characterMakers.push(() => makeCharacter(
  48307. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48308. {
  48309. front: {
  48310. height: math.unit(6.5, "feet"),
  48311. name: "Front",
  48312. image: {
  48313. source: "./media/characters/poppy/front.svg",
  48314. extra: 1878/1812,
  48315. bottom: 43/1921
  48316. }
  48317. },
  48318. feet: {
  48319. height: math.unit(1.06, "feet"),
  48320. name: "Feet",
  48321. image: {
  48322. source: "./media/characters/poppy/feet.svg",
  48323. extra: 1083/1083,
  48324. bottom: 87/1170
  48325. }
  48326. },
  48327. },
  48328. [
  48329. {
  48330. name: "Human",
  48331. height: math.unit(6.5, "feet")
  48332. },
  48333. {
  48334. name: "Default",
  48335. height: math.unit(300, "feet"),
  48336. default: true
  48337. },
  48338. {
  48339. name: "Huge",
  48340. height: math.unit(850, "feet")
  48341. },
  48342. {
  48343. name: "Mega",
  48344. height: math.unit(8000, "feet")
  48345. },
  48346. {
  48347. name: "Giga",
  48348. height: math.unit(300, "miles")
  48349. },
  48350. ]
  48351. ))
  48352. characterMakers.push(() => makeCharacter(
  48353. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48354. {
  48355. bipedal: {
  48356. height: math.unit(7, "feet"),
  48357. name: "Bipedal",
  48358. image: {
  48359. source: "./media/characters/zener/bipedal.svg",
  48360. extra: 874/805,
  48361. bottom: 109/983
  48362. }
  48363. },
  48364. quadrupedal: {
  48365. height: math.unit(4.64, "feet"),
  48366. name: "Quadrupedal",
  48367. image: {
  48368. source: "./media/characters/zener/quadrupedal.svg",
  48369. extra: 638/507,
  48370. bottom: 190/828
  48371. }
  48372. },
  48373. cock: {
  48374. height: math.unit(18, "inches"),
  48375. name: "Cock",
  48376. image: {
  48377. source: "./media/characters/zener/cock.svg"
  48378. }
  48379. },
  48380. },
  48381. [
  48382. {
  48383. name: "Normal",
  48384. height: math.unit(7, "feet"),
  48385. default: true
  48386. },
  48387. ]
  48388. ))
  48389. characterMakers.push(() => makeCharacter(
  48390. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48391. {
  48392. nude: {
  48393. height: math.unit(5 + 6/12, "feet"),
  48394. name: "Nude",
  48395. image: {
  48396. source: "./media/characters/charlie-dog/nude.svg",
  48397. extra: 768/734,
  48398. bottom: 26/794
  48399. }
  48400. },
  48401. dressed: {
  48402. height: math.unit(5 + 6/12, "feet"),
  48403. name: "Dressed",
  48404. image: {
  48405. source: "./media/characters/charlie-dog/dressed.svg",
  48406. extra: 768/734,
  48407. bottom: 26/794
  48408. }
  48409. },
  48410. },
  48411. [
  48412. {
  48413. name: "Normal",
  48414. height: math.unit(5 + 6/12, "feet"),
  48415. default: true
  48416. },
  48417. ]
  48418. ))
  48419. characterMakers.push(() => makeCharacter(
  48420. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48421. {
  48422. front: {
  48423. height: math.unit(6 + 4/12, "feet"),
  48424. name: "Front",
  48425. image: {
  48426. source: "./media/characters/ir'istrasz/front.svg",
  48427. extra: 1014/977,
  48428. bottom: 65/1079
  48429. }
  48430. },
  48431. back: {
  48432. height: math.unit(6 + 4/12, "feet"),
  48433. name: "Back",
  48434. image: {
  48435. source: "./media/characters/ir'istrasz/back.svg",
  48436. extra: 1024/992,
  48437. bottom: 34/1058
  48438. }
  48439. },
  48440. },
  48441. [
  48442. {
  48443. name: "Normal",
  48444. height: math.unit(6 + 4/12, "feet"),
  48445. default: true
  48446. },
  48447. ]
  48448. ))
  48449. characterMakers.push(() => makeCharacter(
  48450. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48451. {
  48452. front: {
  48453. height: math.unit(5 + 8/12, "feet"),
  48454. name: "Front",
  48455. image: {
  48456. source: "./media/characters/dee-ditto/front.svg",
  48457. extra: 1874/1785,
  48458. bottom: 68/1942
  48459. }
  48460. },
  48461. back: {
  48462. height: math.unit(5 + 8/12, "feet"),
  48463. name: "Back",
  48464. image: {
  48465. source: "./media/characters/dee-ditto/back.svg",
  48466. extra: 1870/1783,
  48467. bottom: 77/1947
  48468. }
  48469. },
  48470. },
  48471. [
  48472. {
  48473. name: "Normal",
  48474. height: math.unit(5 + 8/12, "feet"),
  48475. default: true
  48476. },
  48477. ]
  48478. ))
  48479. characterMakers.push(() => makeCharacter(
  48480. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48481. {
  48482. front: {
  48483. height: math.unit(7 + 6/12, "feet"),
  48484. name: "Front",
  48485. image: {
  48486. source: "./media/characters/fey/front.svg",
  48487. extra: 995/979,
  48488. bottom: 30/1025
  48489. }
  48490. },
  48491. back: {
  48492. height: math.unit(7 + 6/12, "feet"),
  48493. name: "Back",
  48494. image: {
  48495. source: "./media/characters/fey/back.svg",
  48496. extra: 1079/1008,
  48497. bottom: 5/1084
  48498. }
  48499. },
  48500. dressed: {
  48501. height: math.unit(7 + 6/12, "feet"),
  48502. name: "Dressed",
  48503. image: {
  48504. source: "./media/characters/fey/dressed.svg",
  48505. extra: 995/979,
  48506. bottom: 30/1025
  48507. }
  48508. },
  48509. },
  48510. [
  48511. {
  48512. name: "Normal",
  48513. height: math.unit(7 + 6/12, "feet"),
  48514. default: true
  48515. },
  48516. ]
  48517. ))
  48518. characterMakers.push(() => makeCharacter(
  48519. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48520. {
  48521. standing: {
  48522. height: math.unit(17, "feet"),
  48523. name: "Standing",
  48524. image: {
  48525. source: "./media/characters/aster/standing.svg",
  48526. extra: 1798/1598,
  48527. bottom: 117/1915
  48528. }
  48529. },
  48530. },
  48531. [
  48532. {
  48533. name: "Normal",
  48534. height: math.unit(17, "feet"),
  48535. default: true
  48536. },
  48537. {
  48538. name: "Homewrecker",
  48539. height: math.unit(95, "feet")
  48540. },
  48541. {
  48542. name: "Planet Devourer",
  48543. height: math.unit(1008000, "miles")
  48544. },
  48545. ]
  48546. ))
  48547. characterMakers.push(() => makeCharacter(
  48548. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48549. {
  48550. front: {
  48551. height: math.unit(6 + 5/12, "feet"),
  48552. weight: math.unit(265, "lb"),
  48553. name: "Front",
  48554. image: {
  48555. source: "./media/characters/devon-childs/front.svg",
  48556. extra: 1795/1721,
  48557. bottom: 41/1836
  48558. }
  48559. },
  48560. side: {
  48561. height: math.unit(6 + 5/12, "feet"),
  48562. weight: math.unit(265, "lb"),
  48563. name: "Side",
  48564. image: {
  48565. source: "./media/characters/devon-childs/side.svg",
  48566. extra: 1812/1738,
  48567. bottom: 30/1842
  48568. }
  48569. },
  48570. back: {
  48571. height: math.unit(6 + 5/12, "feet"),
  48572. weight: math.unit(265, "lb"),
  48573. name: "Back",
  48574. image: {
  48575. source: "./media/characters/devon-childs/back.svg",
  48576. extra: 1808/1735,
  48577. bottom: 23/1831
  48578. }
  48579. },
  48580. hand: {
  48581. height: math.unit(1.464, "feet"),
  48582. name: "Hand",
  48583. image: {
  48584. source: "./media/characters/devon-childs/hand.svg"
  48585. }
  48586. },
  48587. foot: {
  48588. height: math.unit(1.6, "feet"),
  48589. name: "Foot",
  48590. image: {
  48591. source: "./media/characters/devon-childs/foot.svg"
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Micro",
  48598. height: math.unit(7, "cm")
  48599. },
  48600. {
  48601. name: "Normal",
  48602. height: math.unit(6 + 5/12, "feet"),
  48603. default: true
  48604. },
  48605. {
  48606. name: "Macro",
  48607. height: math.unit(154, "feet")
  48608. },
  48609. ]
  48610. ))
  48611. characterMakers.push(() => makeCharacter(
  48612. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48613. {
  48614. front: {
  48615. height: math.unit(6, "feet"),
  48616. weight: math.unit(180, "lb"),
  48617. name: "Front",
  48618. image: {
  48619. source: "./media/characters/lydemox-vir/front.svg",
  48620. extra: 1632/1435,
  48621. bottom: 58/1690
  48622. }
  48623. },
  48624. frontSFW: {
  48625. height: math.unit(6, "feet"),
  48626. weight: math.unit(180, "lb"),
  48627. name: "Front (SFW)",
  48628. image: {
  48629. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48630. extra: 1632/1435,
  48631. bottom: 58/1690
  48632. }
  48633. },
  48634. back: {
  48635. height: math.unit(6, "feet"),
  48636. weight: math.unit(180, "lb"),
  48637. name: "Back",
  48638. image: {
  48639. source: "./media/characters/lydemox-vir/back.svg",
  48640. extra: 1593/1408,
  48641. bottom: 31/1624
  48642. }
  48643. },
  48644. paw: {
  48645. height: math.unit(1.85, "feet"),
  48646. name: "Paw",
  48647. image: {
  48648. source: "./media/characters/lydemox-vir/paw.svg"
  48649. }
  48650. },
  48651. dick: {
  48652. height: math.unit(1.8, "feet"),
  48653. name: "Dick",
  48654. image: {
  48655. source: "./media/characters/lydemox-vir/dick.svg"
  48656. }
  48657. },
  48658. },
  48659. [
  48660. {
  48661. name: "Macro",
  48662. height: math.unit(100, "feet"),
  48663. default: true
  48664. },
  48665. {
  48666. name: "Teramacro",
  48667. height: math.unit(1, "earth")
  48668. },
  48669. {
  48670. name: "Planetary",
  48671. height: math.unit(20, "earths")
  48672. },
  48673. ]
  48674. ))
  48675. characterMakers.push(() => makeCharacter(
  48676. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48677. {
  48678. front: {
  48679. height: math.unit(15 + 8/12, "feet"),
  48680. weight: math.unit(1237, "kg"),
  48681. name: "Front",
  48682. image: {
  48683. source: "./media/characters/mia/front.svg",
  48684. extra: 1573/1446,
  48685. bottom: 58/1631
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Small",
  48692. height: math.unit(9 + 5/12, "feet")
  48693. },
  48694. {
  48695. name: "Normal",
  48696. height: math.unit(15 + 8/12, "feet"),
  48697. default: true
  48698. },
  48699. ]
  48700. ))
  48701. characterMakers.push(() => makeCharacter(
  48702. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48703. {
  48704. front: {
  48705. height: math.unit(10 + 6/12, "feet"),
  48706. weight: math.unit(1.3, "tons"),
  48707. name: "Front",
  48708. image: {
  48709. source: "./media/characters/mr-graves/front.svg",
  48710. extra: 1779/1695,
  48711. bottom: 198/1977
  48712. }
  48713. },
  48714. },
  48715. [
  48716. {
  48717. name: "Normal",
  48718. height: math.unit(10 + 6 /12, "feet"),
  48719. default: true
  48720. },
  48721. ]
  48722. ))
  48723. characterMakers.push(() => makeCharacter(
  48724. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48725. {
  48726. dressedFront: {
  48727. height: math.unit(5 + 8/12, "feet"),
  48728. weight: math.unit(125, "lb"),
  48729. name: "Dressed (Front)",
  48730. image: {
  48731. source: "./media/characters/jess/dressed-front.svg",
  48732. extra: 1176/1152,
  48733. bottom: 42/1218
  48734. }
  48735. },
  48736. dressedSide: {
  48737. height: math.unit(5 + 8/12, "feet"),
  48738. weight: math.unit(125, "lb"),
  48739. name: "Dressed (Side)",
  48740. image: {
  48741. source: "./media/characters/jess/dressed-side.svg",
  48742. extra: 1204/1190,
  48743. bottom: 6/1210
  48744. }
  48745. },
  48746. nudeFront: {
  48747. height: math.unit(5 + 8/12, "feet"),
  48748. weight: math.unit(125, "lb"),
  48749. name: "Nude (Front)",
  48750. image: {
  48751. source: "./media/characters/jess/nude-front.svg",
  48752. extra: 1176/1152,
  48753. bottom: 42/1218
  48754. }
  48755. },
  48756. nudeSide: {
  48757. height: math.unit(5 + 8/12, "feet"),
  48758. weight: math.unit(125, "lb"),
  48759. name: "Nude (Side)",
  48760. image: {
  48761. source: "./media/characters/jess/nude-side.svg",
  48762. extra: 1204/1190,
  48763. bottom: 6/1210
  48764. }
  48765. },
  48766. organsFront: {
  48767. height: math.unit(2.83799342105, "feet"),
  48768. name: "Organs (Front)",
  48769. image: {
  48770. source: "./media/characters/jess/organs-front.svg"
  48771. }
  48772. },
  48773. organsSide: {
  48774. height: math.unit(2.64225290474, "feet"),
  48775. name: "Organs (Side)",
  48776. image: {
  48777. source: "./media/characters/jess/organs-side.svg"
  48778. }
  48779. },
  48780. digestiveTractFront: {
  48781. height: math.unit(2.8106580871, "feet"),
  48782. name: "Digestive Tract (Front)",
  48783. image: {
  48784. source: "./media/characters/jess/digestive-tract-front.svg"
  48785. }
  48786. },
  48787. digestiveTractSide: {
  48788. height: math.unit(2.54365045014, "feet"),
  48789. name: "Digestive Tract (Side)",
  48790. image: {
  48791. source: "./media/characters/jess/digestive-tract-side.svg"
  48792. }
  48793. },
  48794. respiratorySystemFront: {
  48795. height: math.unit(1.11196233456, "feet"),
  48796. name: "Respiratory System (Front)",
  48797. image: {
  48798. source: "./media/characters/jess/respiratory-system-front.svg"
  48799. }
  48800. },
  48801. respiratorySystemSide: {
  48802. height: math.unit(0.89327966297, "feet"),
  48803. name: "Respiratory System (Side)",
  48804. image: {
  48805. source: "./media/characters/jess/respiratory-system-side.svg"
  48806. }
  48807. },
  48808. urinaryTractFront: {
  48809. height: math.unit(1.16126356186, "feet"),
  48810. name: "Urinary Tract (Front)",
  48811. image: {
  48812. source: "./media/characters/jess/urinary-tract-front.svg"
  48813. }
  48814. },
  48815. urinaryTractSide: {
  48816. height: math.unit(1.20910039627, "feet"),
  48817. name: "Urinary Tract (Side)",
  48818. image: {
  48819. source: "./media/characters/jess/urinary-tract-side.svg"
  48820. }
  48821. },
  48822. reproductiveOrgansFront: {
  48823. height: math.unit(0.48422591566, "feet"),
  48824. name: "Reproductive Organs (Front)",
  48825. image: {
  48826. source: "./media/characters/jess/reproductive-organs-front.svg"
  48827. }
  48828. },
  48829. reproductiveOrgansSide: {
  48830. height: math.unit(0.61553314481, "feet"),
  48831. name: "Reproductive Organs (Side)",
  48832. image: {
  48833. source: "./media/characters/jess/reproductive-organs-side.svg"
  48834. }
  48835. },
  48836. breastsFront: {
  48837. height: math.unit(0.47690395121, "feet"),
  48838. name: "Breasts (Front)",
  48839. image: {
  48840. source: "./media/characters/jess/breasts-front.svg"
  48841. }
  48842. },
  48843. breastsSide: {
  48844. height: math.unit(0.30556998307, "feet"),
  48845. name: "Breasts (Side)",
  48846. image: {
  48847. source: "./media/characters/jess/breasts-side.svg"
  48848. }
  48849. },
  48850. heartFront: {
  48851. height: math.unit(0.53011022622, "feet"),
  48852. name: "Heart (Front)",
  48853. image: {
  48854. source: "./media/characters/jess/heart-front.svg"
  48855. }
  48856. },
  48857. heartSide: {
  48858. height: math.unit(0.51790695213, "feet"),
  48859. name: "Heart (Side)",
  48860. image: {
  48861. source: "./media/characters/jess/heart-side.svg"
  48862. }
  48863. },
  48864. earsAndNoseFront: {
  48865. height: math.unit(0.29385483995, "feet"),
  48866. name: "Ears and Nose (Front)",
  48867. image: {
  48868. source: "./media/characters/jess/ears-and-nose-front.svg"
  48869. }
  48870. },
  48871. earsAndNoseSide: {
  48872. height: math.unit(0.18109658741, "feet"),
  48873. name: "Ears and Nose (Side)",
  48874. image: {
  48875. source: "./media/characters/jess/ears-and-nose-side.svg"
  48876. }
  48877. },
  48878. },
  48879. [
  48880. {
  48881. name: "Normal",
  48882. height: math.unit(5 + 8/12, "feet"),
  48883. default: true
  48884. },
  48885. ]
  48886. ))
  48887. characterMakers.push(() => makeCharacter(
  48888. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48889. {
  48890. front: {
  48891. height: math.unit(6, "feet"),
  48892. weight: math.unit(6.64467e-7, "grams"),
  48893. name: "Front",
  48894. image: {
  48895. source: "./media/characters/wimpering/front.svg",
  48896. extra: 597/587,
  48897. bottom: 34/631
  48898. }
  48899. },
  48900. },
  48901. [
  48902. {
  48903. name: "Micro",
  48904. height: math.unit(0.4, "mm"),
  48905. default: true
  48906. },
  48907. ]
  48908. ))
  48909. characterMakers.push(() => makeCharacter(
  48910. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48911. {
  48912. front: {
  48913. height: math.unit(5 + 2/12, "feet"),
  48914. weight: math.unit(110, "lb"),
  48915. name: "Front",
  48916. image: {
  48917. source: "./media/characters/keltre/front.svg",
  48918. extra: 1099/1057,
  48919. bottom: 22/1121
  48920. }
  48921. },
  48922. back: {
  48923. height: math.unit(5 + 2/12, "feet"),
  48924. weight: math.unit(110, "lb"),
  48925. name: "Back",
  48926. image: {
  48927. source: "./media/characters/keltre/back.svg",
  48928. extra: 1095/1053,
  48929. bottom: 17/1112
  48930. }
  48931. },
  48932. dressed: {
  48933. height: math.unit(5 + 2/12, "feet"),
  48934. weight: math.unit(110, "lb"),
  48935. name: "Dressed",
  48936. image: {
  48937. source: "./media/characters/keltre/dressed.svg",
  48938. extra: 1099/1057,
  48939. bottom: 22/1121
  48940. }
  48941. },
  48942. winter: {
  48943. height: math.unit(5 + 2/12, "feet"),
  48944. weight: math.unit(110, "lb"),
  48945. name: "Winter",
  48946. image: {
  48947. source: "./media/characters/keltre/winter.svg",
  48948. extra: 1099/1057,
  48949. bottom: 22/1121
  48950. }
  48951. },
  48952. head: {
  48953. height: math.unit(1.61 * 0.86, "feet"),
  48954. name: "Head",
  48955. image: {
  48956. source: "./media/characters/keltre/head.svg",
  48957. extra: 534/421,
  48958. bottom: 0/534
  48959. }
  48960. },
  48961. hand: {
  48962. height: math.unit(1.3 * 0.86, "feet"),
  48963. name: "Hand",
  48964. image: {
  48965. source: "./media/characters/keltre/hand.svg"
  48966. }
  48967. },
  48968. foot: {
  48969. height: math.unit(1.8 * 0.86, "feet"),
  48970. name: "Foot",
  48971. image: {
  48972. source: "./media/characters/keltre/foot.svg"
  48973. }
  48974. },
  48975. },
  48976. [
  48977. {
  48978. name: "Fine",
  48979. height: math.unit(1, "inch")
  48980. },
  48981. {
  48982. name: "Dimnutive",
  48983. height: math.unit(4, "inches")
  48984. },
  48985. {
  48986. name: "Tiny",
  48987. height: math.unit(1, "foot")
  48988. },
  48989. {
  48990. name: "Small",
  48991. height: math.unit(3, "feet")
  48992. },
  48993. {
  48994. name: "Normal",
  48995. height: math.unit(5 + 2/12, "feet"),
  48996. default: true
  48997. },
  48998. ]
  48999. ))
  49000. characterMakers.push(() => makeCharacter(
  49001. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49002. {
  49003. front: {
  49004. height: math.unit(6 + 2/12, "feet"),
  49005. name: "Front",
  49006. image: {
  49007. source: "./media/characters/nox/front.svg",
  49008. extra: 1917/1830,
  49009. bottom: 74/1991
  49010. }
  49011. },
  49012. back: {
  49013. height: math.unit(6 + 2/12, "feet"),
  49014. name: "Back",
  49015. image: {
  49016. source: "./media/characters/nox/back.svg",
  49017. extra: 1896/1815,
  49018. bottom: 21/1917
  49019. }
  49020. },
  49021. head: {
  49022. height: math.unit(1.1, "feet"),
  49023. name: "Head",
  49024. image: {
  49025. source: "./media/characters/nox/head.svg",
  49026. extra: 874/704,
  49027. bottom: 0/874
  49028. }
  49029. },
  49030. tattoo: {
  49031. height: math.unit(0.729, "feet"),
  49032. name: "Tattoo",
  49033. image: {
  49034. source: "./media/characters/nox/tattoo.svg"
  49035. }
  49036. },
  49037. },
  49038. [
  49039. {
  49040. name: "Normal",
  49041. height: math.unit(6 + 2/12, "feet")
  49042. },
  49043. {
  49044. name: "Gigamacro",
  49045. height: math.unit(2, "earths"),
  49046. default: true
  49047. },
  49048. {
  49049. name: "Cosmic",
  49050. height: math.unit(867, "yottameters")
  49051. },
  49052. ]
  49053. ))
  49054. characterMakers.push(() => makeCharacter(
  49055. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49056. {
  49057. front: {
  49058. height: math.unit(6, "feet"),
  49059. weight: math.unit(150, "lb"),
  49060. name: "Front",
  49061. image: {
  49062. source: "./media/characters/caspian/front.svg",
  49063. extra: 1443/1359,
  49064. bottom: 0/1443
  49065. }
  49066. },
  49067. back: {
  49068. height: math.unit(6, "feet"),
  49069. weight: math.unit(150, "lb"),
  49070. name: "Back",
  49071. image: {
  49072. source: "./media/characters/caspian/back.svg",
  49073. extra: 1379/1309,
  49074. bottom: 0/1379
  49075. }
  49076. },
  49077. head: {
  49078. height: math.unit(0.9, "feet"),
  49079. name: "Head",
  49080. image: {
  49081. source: "./media/characters/caspian/head.svg",
  49082. extra: 692/492,
  49083. bottom: 0/692
  49084. }
  49085. },
  49086. headAlt: {
  49087. height: math.unit(0.95, "feet"),
  49088. name: "Head (Alt)",
  49089. image: {
  49090. source: "./media/characters/caspian/head-alt.svg",
  49091. extra: 668/508,
  49092. bottom: 0/668
  49093. }
  49094. },
  49095. hand: {
  49096. height: math.unit(0.8, "feet"),
  49097. name: "Hand",
  49098. image: {
  49099. source: "./media/characters/caspian/hand.svg"
  49100. }
  49101. },
  49102. paw: {
  49103. height: math.unit(0.95, "feet"),
  49104. name: "Paw",
  49105. image: {
  49106. source: "./media/characters/caspian/paw.svg"
  49107. }
  49108. },
  49109. },
  49110. [
  49111. {
  49112. name: "Normal",
  49113. height: math.unit(162, "feet"),
  49114. default: true
  49115. },
  49116. ]
  49117. ))
  49118. characterMakers.push(() => makeCharacter(
  49119. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49120. {
  49121. front: {
  49122. height: math.unit(6, "feet"),
  49123. name: "Front",
  49124. image: {
  49125. source: "./media/characters/myra-aisling/front.svg",
  49126. extra: 1268/1166,
  49127. bottom: 73/1341
  49128. }
  49129. },
  49130. back: {
  49131. height: math.unit(6, "feet"),
  49132. name: "Back",
  49133. image: {
  49134. source: "./media/characters/myra-aisling/back.svg",
  49135. extra: 1249/1149,
  49136. bottom: 79/1328
  49137. }
  49138. },
  49139. dressed: {
  49140. height: math.unit(6, "feet"),
  49141. name: "Dressed",
  49142. image: {
  49143. source: "./media/characters/myra-aisling/dressed.svg",
  49144. extra: 1290/1189,
  49145. bottom: 47/1337
  49146. }
  49147. },
  49148. hand: {
  49149. height: math.unit(1.1, "feet"),
  49150. name: "Hand",
  49151. image: {
  49152. source: "./media/characters/myra-aisling/hand.svg"
  49153. }
  49154. },
  49155. paw: {
  49156. height: math.unit(1.23, "feet"),
  49157. name: "Paw",
  49158. image: {
  49159. source: "./media/characters/myra-aisling/paw.svg"
  49160. }
  49161. },
  49162. },
  49163. [
  49164. {
  49165. name: "Normal",
  49166. height: math.unit(160, "feet"),
  49167. default: true
  49168. },
  49169. ]
  49170. ))
  49171. characterMakers.push(() => makeCharacter(
  49172. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49173. {
  49174. front: {
  49175. height: math.unit(6, "feet"),
  49176. name: "Front",
  49177. image: {
  49178. source: "./media/characters/tenley-sidero/front.svg",
  49179. extra: 1365/1276,
  49180. bottom: 47/1412
  49181. }
  49182. },
  49183. back: {
  49184. height: math.unit(6, "feet"),
  49185. name: "Back",
  49186. image: {
  49187. source: "./media/characters/tenley-sidero/back.svg",
  49188. extra: 1383/1283,
  49189. bottom: 35/1418
  49190. }
  49191. },
  49192. dressed: {
  49193. height: math.unit(6, "feet"),
  49194. name: "Dressed",
  49195. image: {
  49196. source: "./media/characters/tenley-sidero/dressed.svg",
  49197. extra: 1364/1275,
  49198. bottom: 42/1406
  49199. }
  49200. },
  49201. head: {
  49202. height: math.unit(1.47, "feet"),
  49203. name: "Head",
  49204. image: {
  49205. source: "./media/characters/tenley-sidero/head.svg",
  49206. extra: 610/490,
  49207. bottom: 0/610
  49208. }
  49209. },
  49210. },
  49211. [
  49212. {
  49213. name: "Normal",
  49214. height: math.unit(154, "feet"),
  49215. default: true
  49216. },
  49217. ]
  49218. ))
  49219. characterMakers.push(() => makeCharacter(
  49220. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49221. {
  49222. front: {
  49223. height: math.unit(5, "inches"),
  49224. name: "Front",
  49225. image: {
  49226. source: "./media/characters/mallory/front.svg",
  49227. extra: 1919/1678,
  49228. bottom: 29/1948
  49229. }
  49230. },
  49231. hand: {
  49232. height: math.unit(0.73, "inches"),
  49233. name: "Hand",
  49234. image: {
  49235. source: "./media/characters/mallory/hand.svg"
  49236. }
  49237. },
  49238. paw: {
  49239. height: math.unit(0.68, "inches"),
  49240. name: "Paw",
  49241. image: {
  49242. source: "./media/characters/mallory/paw.svg"
  49243. }
  49244. },
  49245. },
  49246. [
  49247. {
  49248. name: "Small",
  49249. height: math.unit(5, "inches"),
  49250. default: true
  49251. },
  49252. ]
  49253. ))
  49254. characterMakers.push(() => makeCharacter(
  49255. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49256. {
  49257. naked: {
  49258. height: math.unit(6, "feet"),
  49259. name: "Naked",
  49260. image: {
  49261. source: "./media/characters/mab/naked.svg",
  49262. extra: 1855/1757,
  49263. bottom: 208/2063
  49264. }
  49265. },
  49266. outside: {
  49267. height: math.unit(6, "feet"),
  49268. name: "Outside",
  49269. image: {
  49270. source: "./media/characters/mab/outside.svg",
  49271. extra: 1855/1757,
  49272. bottom: 208/2063
  49273. }
  49274. },
  49275. party: {
  49276. height: math.unit(6, "feet"),
  49277. name: "Party",
  49278. image: {
  49279. source: "./media/characters/mab/party.svg",
  49280. extra: 1855/1757,
  49281. bottom: 208/2063
  49282. }
  49283. },
  49284. },
  49285. [
  49286. {
  49287. name: "Normal",
  49288. height: math.unit(165, "feet"),
  49289. default: true
  49290. },
  49291. ]
  49292. ))
  49293. characterMakers.push(() => makeCharacter(
  49294. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49295. {
  49296. front: {
  49297. height: math.unit(12, "feet"),
  49298. weight: math.unit(4000, "lb"),
  49299. name: "Front",
  49300. image: {
  49301. source: "./media/characters/winter/front.svg",
  49302. extra: 1286/943,
  49303. bottom: 112/1398
  49304. }
  49305. },
  49306. frontNsfw: {
  49307. height: math.unit(12, "feet"),
  49308. weight: math.unit(4000, "lb"),
  49309. name: "Front (NSFW)",
  49310. image: {
  49311. source: "./media/characters/winter/front-nsfw.svg",
  49312. extra: 1286/943,
  49313. bottom: 112/1398
  49314. }
  49315. },
  49316. dick: {
  49317. height: math.unit(3.79, "feet"),
  49318. name: "Dick",
  49319. image: {
  49320. source: "./media/characters/winter/dick.svg"
  49321. }
  49322. },
  49323. },
  49324. [
  49325. {
  49326. name: "Big",
  49327. height: math.unit(12, "feet"),
  49328. default: true
  49329. },
  49330. ]
  49331. ))
  49332. characterMakers.push(() => makeCharacter(
  49333. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49334. {
  49335. front: {
  49336. height: math.unit(4.1, "inches"),
  49337. name: "Front",
  49338. image: {
  49339. source: "./media/characters/alto/front.svg",
  49340. extra: 736/627,
  49341. bottom: 90/826
  49342. }
  49343. },
  49344. },
  49345. [
  49346. {
  49347. name: "Normal",
  49348. height: math.unit(4.1, "inches"),
  49349. default: true
  49350. },
  49351. ]
  49352. ))
  49353. characterMakers.push(() => makeCharacter(
  49354. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49355. {
  49356. sitting: {
  49357. height: math.unit(3, "feet"),
  49358. name: "Sitting",
  49359. image: {
  49360. source: "./media/characters/ratstrid-v/sitting.svg",
  49361. extra: 355/310,
  49362. bottom: 136/491
  49363. }
  49364. },
  49365. },
  49366. [
  49367. {
  49368. name: "Normal",
  49369. height: math.unit(3, "feet"),
  49370. default: true
  49371. },
  49372. ]
  49373. ))
  49374. characterMakers.push(() => makeCharacter(
  49375. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49376. {
  49377. back: {
  49378. height: math.unit(6, "feet"),
  49379. weight: math.unit(350, "lb"),
  49380. name: "Back",
  49381. image: {
  49382. source: "./media/characters/siz/back.svg",
  49383. extra: 1449/1274,
  49384. bottom: 13/1462
  49385. }
  49386. },
  49387. },
  49388. [
  49389. {
  49390. name: "Over-Overcompressed",
  49391. height: math.unit(8, "feet")
  49392. },
  49393. {
  49394. name: "Overcompressed",
  49395. height: math.unit(32, "feet")
  49396. },
  49397. {
  49398. name: "Compressed",
  49399. height: math.unit(128, "feet"),
  49400. default: true
  49401. },
  49402. {
  49403. name: "Half-Compressed",
  49404. height: math.unit(512, "feet")
  49405. },
  49406. {
  49407. name: "Quarter-Compressed",
  49408. height: math.unit(2048, "feet")
  49409. },
  49410. {
  49411. name: "Uncompressed?",
  49412. height: math.unit(8192, "feet")
  49413. },
  49414. ]
  49415. ))
  49416. characterMakers.push(() => makeCharacter(
  49417. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49418. {
  49419. front: {
  49420. height: math.unit(5 + 9/12, "feet"),
  49421. weight: math.unit(150, "lb"),
  49422. name: "Front",
  49423. image: {
  49424. source: "./media/characters/ven/front.svg",
  49425. extra: 1372/1320,
  49426. bottom: 73/1445
  49427. }
  49428. },
  49429. side: {
  49430. height: math.unit(5 + 9/12, "feet"),
  49431. weight: math.unit(1150, "lb"),
  49432. name: "Side",
  49433. image: {
  49434. source: "./media/characters/ven/side.svg",
  49435. extra: 1119/1070,
  49436. bottom: 42/1161
  49437. },
  49438. default: true
  49439. },
  49440. },
  49441. [
  49442. {
  49443. name: "Normal",
  49444. height: math.unit(5 + 9/12, "feet"),
  49445. default: true
  49446. },
  49447. ]
  49448. ))
  49449. characterMakers.push(() => makeCharacter(
  49450. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49451. {
  49452. front: {
  49453. height: math.unit(12, "feet"),
  49454. weight: math.unit(1000, "kg"),
  49455. name: "Front",
  49456. image: {
  49457. source: "./media/characters/maple/front.svg",
  49458. extra: 1193/1081,
  49459. bottom: 22/1215
  49460. }
  49461. },
  49462. },
  49463. [
  49464. {
  49465. name: "Compressed",
  49466. height: math.unit(7, "feet")
  49467. },
  49468. {
  49469. name: "Normal",
  49470. height: math.unit(12, "feet"),
  49471. default: true
  49472. },
  49473. ]
  49474. ))
  49475. characterMakers.push(() => makeCharacter(
  49476. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49477. {
  49478. front: {
  49479. height: math.unit(9, "feet"),
  49480. weight: math.unit(1500, "lb"),
  49481. name: "Front",
  49482. image: {
  49483. source: "./media/characters/nora/front.svg",
  49484. extra: 1348/1286,
  49485. bottom: 218/1566
  49486. }
  49487. },
  49488. erect: {
  49489. height: math.unit(9, "feet"),
  49490. weight: math.unit(11500, "lb"),
  49491. name: "Erect",
  49492. image: {
  49493. source: "./media/characters/nora/erect.svg",
  49494. extra: 1488/1433,
  49495. bottom: 133/1621
  49496. }
  49497. },
  49498. },
  49499. [
  49500. {
  49501. name: "Normal",
  49502. height: math.unit(9, "feet"),
  49503. default: true
  49504. },
  49505. ]
  49506. ))
  49507. characterMakers.push(() => makeCharacter(
  49508. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49509. {
  49510. front: {
  49511. height: math.unit(25, "feet"),
  49512. weight: math.unit(27500, "lb"),
  49513. name: "Front",
  49514. image: {
  49515. source: "./media/characters/north-caudin/front.svg",
  49516. extra: 1184/1082,
  49517. bottom: 23/1207
  49518. }
  49519. },
  49520. },
  49521. [
  49522. {
  49523. name: "Compressed",
  49524. height: math.unit(10, "feet")
  49525. },
  49526. {
  49527. name: "Normal",
  49528. height: math.unit(25, "feet"),
  49529. default: true
  49530. },
  49531. ]
  49532. ))
  49533. characterMakers.push(() => makeCharacter(
  49534. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49535. {
  49536. front: {
  49537. height: math.unit(9, "feet"),
  49538. weight: math.unit(1250, "lb"),
  49539. name: "Front",
  49540. image: {
  49541. source: "./media/characters/merrian/front.svg",
  49542. extra: 2393/2304,
  49543. bottom: 40/2433
  49544. }
  49545. },
  49546. },
  49547. [
  49548. {
  49549. name: "Normal",
  49550. height: math.unit(9, "feet"),
  49551. default: true
  49552. },
  49553. ]
  49554. ))
  49555. characterMakers.push(() => makeCharacter(
  49556. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49557. {
  49558. front: {
  49559. height: math.unit(9, "feet"),
  49560. weight: math.unit(1000, "lb"),
  49561. name: "Front",
  49562. image: {
  49563. source: "./media/characters/hazel/front.svg",
  49564. extra: 2351/2298,
  49565. bottom: 38/2389
  49566. }
  49567. },
  49568. },
  49569. [
  49570. {
  49571. name: "Normal",
  49572. height: math.unit(9, "feet"),
  49573. default: true
  49574. },
  49575. ]
  49576. ))
  49577. characterMakers.push(() => makeCharacter(
  49578. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49579. {
  49580. front: {
  49581. height: math.unit(13, "feet"),
  49582. weight: math.unit(3200, "lb"),
  49583. name: "Front",
  49584. image: {
  49585. source: "./media/characters/emma/front.svg",
  49586. extra: 2263/2029,
  49587. bottom: 68/2331
  49588. }
  49589. },
  49590. },
  49591. [
  49592. {
  49593. name: "Normal",
  49594. height: math.unit(13, "feet"),
  49595. default: true
  49596. },
  49597. ]
  49598. ))
  49599. characterMakers.push(() => makeCharacter(
  49600. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49601. {
  49602. front: {
  49603. height: math.unit(11 + 9/12, "feet"),
  49604. weight: math.unit(2500, "lb"),
  49605. name: "Front",
  49606. image: {
  49607. source: "./media/characters/ilumina/front.svg",
  49608. extra: 2248/2209,
  49609. bottom: 164/2412
  49610. }
  49611. },
  49612. },
  49613. [
  49614. {
  49615. name: "Normal",
  49616. height: math.unit(11 + 9/12, "feet"),
  49617. default: true
  49618. },
  49619. ]
  49620. ))
  49621. characterMakers.push(() => makeCharacter(
  49622. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49623. {
  49624. front: {
  49625. height: math.unit(8 + 10/12, "feet"),
  49626. weight: math.unit(1350, "lb"),
  49627. name: "Front",
  49628. image: {
  49629. source: "./media/characters/moonshine/front.svg",
  49630. extra: 2395/2288,
  49631. bottom: 40/2435
  49632. }
  49633. },
  49634. },
  49635. [
  49636. {
  49637. name: "Normal",
  49638. height: math.unit(8 + 10/12, "feet"),
  49639. default: true
  49640. },
  49641. ]
  49642. ))
  49643. characterMakers.push(() => makeCharacter(
  49644. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49645. {
  49646. front: {
  49647. height: math.unit(14, "feet"),
  49648. weight: math.unit(3400, "lb"),
  49649. name: "Front",
  49650. image: {
  49651. source: "./media/characters/aletia/front.svg",
  49652. extra: 1185/1052,
  49653. bottom: 21/1206
  49654. }
  49655. },
  49656. },
  49657. [
  49658. {
  49659. name: "Compressed",
  49660. height: math.unit(8, "feet")
  49661. },
  49662. {
  49663. name: "Normal",
  49664. height: math.unit(14, "feet"),
  49665. default: true
  49666. },
  49667. ]
  49668. ))
  49669. characterMakers.push(() => makeCharacter(
  49670. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49671. {
  49672. front: {
  49673. height: math.unit(17, "feet"),
  49674. weight: math.unit(6500, "lb"),
  49675. name: "Front",
  49676. image: {
  49677. source: "./media/characters/deidra/front.svg",
  49678. extra: 1201/1081,
  49679. bottom: 16/1217
  49680. }
  49681. },
  49682. },
  49683. [
  49684. {
  49685. name: "Compressed",
  49686. height: math.unit(9 + 6/12, "feet")
  49687. },
  49688. {
  49689. name: "Normal",
  49690. height: math.unit(17, "feet"),
  49691. default: true
  49692. },
  49693. ]
  49694. ))
  49695. characterMakers.push(() => makeCharacter(
  49696. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49697. {
  49698. front: {
  49699. height: math.unit(7 + 4/12, "feet"),
  49700. weight: math.unit(280, "lb"),
  49701. name: "Front",
  49702. image: {
  49703. source: "./media/characters/freki-yrmori/front.svg",
  49704. extra: 1286/1182,
  49705. bottom: 29/1315
  49706. }
  49707. },
  49708. maw: {
  49709. height: math.unit(0.9, "feet"),
  49710. name: "Maw",
  49711. image: {
  49712. source: "./media/characters/freki-yrmori/maw.svg"
  49713. }
  49714. },
  49715. },
  49716. [
  49717. {
  49718. name: "Normal",
  49719. height: math.unit(7 + 4/12, "feet"),
  49720. default: true
  49721. },
  49722. {
  49723. name: "Macro",
  49724. height: math.unit(38.5, "meters")
  49725. },
  49726. ]
  49727. ))
  49728. characterMakers.push(() => makeCharacter(
  49729. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49730. {
  49731. side: {
  49732. height: math.unit(47.2, "meters"),
  49733. weight: math.unit(10000, "tons"),
  49734. name: "Side",
  49735. image: {
  49736. source: "./media/characters/aetherios/side.svg",
  49737. extra: 2363/642,
  49738. bottom: 221/2584
  49739. }
  49740. },
  49741. top: {
  49742. height: math.unit(240, "meters"),
  49743. weight: math.unit(10000, "tons"),
  49744. name: "Top",
  49745. image: {
  49746. source: "./media/characters/aetherios/top.svg"
  49747. }
  49748. },
  49749. bottom: {
  49750. height: math.unit(240, "meters"),
  49751. weight: math.unit(10000, "tons"),
  49752. name: "Bottom",
  49753. image: {
  49754. source: "./media/characters/aetherios/bottom.svg"
  49755. }
  49756. },
  49757. head: {
  49758. height: math.unit(38.6, "meters"),
  49759. name: "Head",
  49760. image: {
  49761. source: "./media/characters/aetherios/head.svg",
  49762. extra: 1335/1112,
  49763. bottom: 0/1335
  49764. }
  49765. },
  49766. front: {
  49767. height: math.unit(29, "meters"),
  49768. name: "Front",
  49769. image: {
  49770. source: "./media/characters/aetherios/front.svg",
  49771. extra: 1266/953,
  49772. bottom: 158/1424
  49773. }
  49774. },
  49775. maw: {
  49776. height: math.unit(16.37, "meters"),
  49777. name: "Maw",
  49778. image: {
  49779. source: "./media/characters/aetherios/maw.svg",
  49780. extra: 748/637,
  49781. bottom: 0/748
  49782. },
  49783. extraAttributes: {
  49784. preyCapacity: {
  49785. name: "Capacity",
  49786. power: 3,
  49787. type: "volume",
  49788. base: math.unit(1000, "people")
  49789. },
  49790. tongueSize: {
  49791. name: "Tongue Size",
  49792. power: 2,
  49793. type: "area",
  49794. base: math.unit(21, "m^2")
  49795. }
  49796. }
  49797. },
  49798. forepaw: {
  49799. height: math.unit(18, "meters"),
  49800. name: "Forepaw",
  49801. image: {
  49802. source: "./media/characters/aetherios/forepaw.svg"
  49803. }
  49804. },
  49805. hindpaw: {
  49806. height: math.unit(23, "meters"),
  49807. name: "Hindpaw",
  49808. image: {
  49809. source: "./media/characters/aetherios/hindpaw.svg"
  49810. }
  49811. },
  49812. genitals: {
  49813. height: math.unit(42, "meters"),
  49814. name: "Genitals",
  49815. image: {
  49816. source: "./media/characters/aetherios/genitals.svg"
  49817. }
  49818. },
  49819. },
  49820. [
  49821. {
  49822. name: "Normal",
  49823. height: math.unit(47.2, "meters"),
  49824. default: true
  49825. },
  49826. {
  49827. name: "Macro",
  49828. height: math.unit(160, "meters")
  49829. },
  49830. {
  49831. name: "Mega",
  49832. height: math.unit(1.87, "km")
  49833. },
  49834. {
  49835. name: "Giga",
  49836. height: math.unit(40000, "km")
  49837. },
  49838. {
  49839. name: "Stellar",
  49840. height: math.unit(158000000, "km")
  49841. },
  49842. {
  49843. name: "Cosmic",
  49844. height: math.unit(9.46e12, "km")
  49845. },
  49846. ]
  49847. ))
  49848. characterMakers.push(() => makeCharacter(
  49849. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49850. {
  49851. front: {
  49852. height: math.unit(5 + 4/12, "feet"),
  49853. weight: math.unit(80, "lb"),
  49854. name: "Front",
  49855. image: {
  49856. source: "./media/characters/mizu-gieeg/front.svg",
  49857. extra: 850/709,
  49858. bottom: 52/902
  49859. }
  49860. },
  49861. back: {
  49862. height: math.unit(5 + 4/12, "feet"),
  49863. weight: math.unit(80, "lb"),
  49864. name: "Back",
  49865. image: {
  49866. source: "./media/characters/mizu-gieeg/back.svg",
  49867. extra: 882/745,
  49868. bottom: 25/907
  49869. }
  49870. },
  49871. },
  49872. [
  49873. {
  49874. name: "Normal",
  49875. height: math.unit(5 + 4/12, "feet"),
  49876. default: true
  49877. },
  49878. ]
  49879. ))
  49880. characterMakers.push(() => makeCharacter(
  49881. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49882. {
  49883. front: {
  49884. height: math.unit(6, "feet"),
  49885. name: "Front",
  49886. image: {
  49887. source: "./media/characters/roselle-st-papier/front.svg",
  49888. extra: 1430/1280,
  49889. bottom: 37/1467
  49890. }
  49891. },
  49892. back: {
  49893. height: math.unit(6, "feet"),
  49894. name: "Back",
  49895. image: {
  49896. source: "./media/characters/roselle-st-papier/back.svg",
  49897. extra: 1491/1296,
  49898. bottom: 23/1514
  49899. }
  49900. },
  49901. ear: {
  49902. height: math.unit(1.26, "feet"),
  49903. name: "Ear",
  49904. image: {
  49905. source: "./media/characters/roselle-st-papier/ear.svg"
  49906. }
  49907. },
  49908. },
  49909. [
  49910. {
  49911. name: "Normal",
  49912. height: math.unit(150, "feet"),
  49913. default: true
  49914. },
  49915. ]
  49916. ))
  49917. characterMakers.push(() => makeCharacter(
  49918. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49919. {
  49920. front: {
  49921. height: math.unit(1, "inches"),
  49922. name: "Front",
  49923. image: {
  49924. source: "./media/characters/valargent/front.svg",
  49925. extra: 1825/1694,
  49926. bottom: 62/1887
  49927. }
  49928. },
  49929. back: {
  49930. height: math.unit(1, "inches"),
  49931. name: "Back",
  49932. image: {
  49933. source: "./media/characters/valargent/back.svg",
  49934. extra: 1775/1682,
  49935. bottom: 88/1863
  49936. }
  49937. },
  49938. },
  49939. [
  49940. {
  49941. name: "Micro",
  49942. height: math.unit(1, "inch"),
  49943. default: true
  49944. },
  49945. ]
  49946. ))
  49947. characterMakers.push(() => makeCharacter(
  49948. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49949. {
  49950. front: {
  49951. height: math.unit(3.4, "meters"),
  49952. name: "Front",
  49953. image: {
  49954. source: "./media/characters/zarina/front.svg",
  49955. extra: 1733/1425,
  49956. bottom: 93/1826
  49957. }
  49958. },
  49959. squatting: {
  49960. height: math.unit(2.14, "meters"),
  49961. name: "Squatting",
  49962. image: {
  49963. source: "./media/characters/zarina/squatting.svg",
  49964. extra: 1073/788,
  49965. bottom: 63/1136
  49966. }
  49967. },
  49968. back: {
  49969. height: math.unit(2.14, "meters"),
  49970. name: "Back",
  49971. image: {
  49972. source: "./media/characters/zarina/back.svg",
  49973. extra: 1128/885,
  49974. bottom: 0/1128
  49975. }
  49976. },
  49977. },
  49978. [
  49979. {
  49980. name: "Normal",
  49981. height: math.unit(3.4, "meters"),
  49982. default: true
  49983. },
  49984. {
  49985. name: "Big",
  49986. height: math.unit(5, "meters")
  49987. },
  49988. {
  49989. name: "Macro",
  49990. height: math.unit(110, "meters")
  49991. },
  49992. ]
  49993. ))
  49994. characterMakers.push(() => makeCharacter(
  49995. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49996. {
  49997. front: {
  49998. height: math.unit(7, "feet"),
  49999. name: "Front",
  50000. image: {
  50001. source: "./media/characters/ventus-astro-fox/front.svg",
  50002. extra: 1792/1623,
  50003. bottom: 28/1820
  50004. }
  50005. },
  50006. back: {
  50007. height: math.unit(7, "feet"),
  50008. name: "Back",
  50009. image: {
  50010. source: "./media/characters/ventus-astro-fox/back.svg",
  50011. extra: 1789/1620,
  50012. bottom: 31/1820
  50013. }
  50014. },
  50015. outfit: {
  50016. height: math.unit(7, "feet"),
  50017. name: "Outfit",
  50018. image: {
  50019. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50020. extra: 1054/925,
  50021. bottom: 15/1069
  50022. }
  50023. },
  50024. head: {
  50025. height: math.unit(1.12, "feet"),
  50026. name: "Head",
  50027. image: {
  50028. source: "./media/characters/ventus-astro-fox/head.svg",
  50029. extra: 866/504,
  50030. bottom: 0/866
  50031. }
  50032. },
  50033. hand: {
  50034. height: math.unit(1, "feet"),
  50035. name: "Hand",
  50036. image: {
  50037. source: "./media/characters/ventus-astro-fox/hand.svg"
  50038. }
  50039. },
  50040. paw: {
  50041. height: math.unit(1.5, "feet"),
  50042. name: "Paw",
  50043. image: {
  50044. source: "./media/characters/ventus-astro-fox/paw.svg"
  50045. }
  50046. },
  50047. },
  50048. [
  50049. {
  50050. name: "Normal",
  50051. height: math.unit(7, "feet"),
  50052. default: true
  50053. },
  50054. {
  50055. name: "Macro",
  50056. height: math.unit(200, "feet")
  50057. },
  50058. {
  50059. name: "Cosmic",
  50060. height: math.unit(3, "universes")
  50061. },
  50062. ]
  50063. ))
  50064. characterMakers.push(() => makeCharacter(
  50065. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50066. {
  50067. front: {
  50068. height: math.unit(3, "meters"),
  50069. weight: math.unit(7000, "lb"),
  50070. name: "Front",
  50071. image: {
  50072. source: "./media/characters/core-t/front.svg",
  50073. extra: 5729/4941,
  50074. bottom: 1129/6858
  50075. }
  50076. },
  50077. },
  50078. [
  50079. {
  50080. name: "Big",
  50081. height: math.unit(3, "meters"),
  50082. default: true
  50083. },
  50084. ]
  50085. ))
  50086. characterMakers.push(() => makeCharacter(
  50087. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50088. {
  50089. normal: {
  50090. height: math.unit(6 + 6/12, "feet"),
  50091. weight: math.unit(275, "lb"),
  50092. name: "Front",
  50093. image: {
  50094. source: "./media/characters/cadbunny/normal.svg",
  50095. extra: 1129/947,
  50096. bottom: 93/1222
  50097. },
  50098. default: true,
  50099. form: "normal"
  50100. },
  50101. gigantamax: {
  50102. height: math.unit(26, "feet"),
  50103. weight: math.unit(16000, "lb"),
  50104. name: "Front",
  50105. image: {
  50106. source: "./media/characters/cadbunny/gigantamax.svg",
  50107. extra: 1133/944,
  50108. bottom: 90/1223
  50109. },
  50110. default: true,
  50111. form: "gigantamax"
  50112. },
  50113. },
  50114. [
  50115. {
  50116. name: "Normal",
  50117. height: math.unit(6 + 6/12, "feet"),
  50118. default: true,
  50119. form: "normal"
  50120. },
  50121. {
  50122. name: "Small",
  50123. height: math.unit(26, "feet"),
  50124. default: true,
  50125. form: "gigantamax"
  50126. },
  50127. {
  50128. name: "Large",
  50129. height: math.unit(78, "feet"),
  50130. form: "gigantamax"
  50131. },
  50132. ],
  50133. {
  50134. "normal": {
  50135. name: "Normal",
  50136. default: true
  50137. },
  50138. "gigantamax": {
  50139. name: "Gigantamax"
  50140. }
  50141. }
  50142. ))
  50143. characterMakers.push(() => makeCharacter(
  50144. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50145. {
  50146. anthroFront: {
  50147. height: math.unit(8, "feet"),
  50148. weight: math.unit(300, "lb"),
  50149. name: "Front",
  50150. image: {
  50151. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50152. extra: 1272/1176,
  50153. bottom: 53/1325
  50154. },
  50155. form: "anthro",
  50156. default: true
  50157. },
  50158. feralSide: {
  50159. height: math.unit(4, "feet"),
  50160. weight: math.unit(250, "lb"),
  50161. name: "Side",
  50162. image: {
  50163. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50164. extra: 731/621,
  50165. bottom: 0/731
  50166. },
  50167. form: "feral",
  50168. default: true
  50169. },
  50170. },
  50171. [
  50172. {
  50173. name: "Regular",
  50174. height: math.unit(8, "feet"),
  50175. form: "anthro"
  50176. },
  50177. {
  50178. name: "Macro",
  50179. height: math.unit(250, "feet"),
  50180. form: "anthro",
  50181. default: true
  50182. },
  50183. {
  50184. name: "Regular",
  50185. height: math.unit(4, "feet"),
  50186. form: "feral"
  50187. },
  50188. {
  50189. name: "Macro",
  50190. height: math.unit(125, "feet"),
  50191. form: "feral",
  50192. default: true
  50193. },
  50194. ],
  50195. {
  50196. "anthro": {
  50197. name: "Anthro",
  50198. default: true
  50199. },
  50200. "feral": {
  50201. name: "Feral",
  50202. },
  50203. }
  50204. ))
  50205. characterMakers.push(() => makeCharacter(
  50206. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50207. {
  50208. front: {
  50209. height: math.unit(11 + 10/12, "feet"),
  50210. weight: math.unit(1587, "kg"),
  50211. name: "Front",
  50212. image: {
  50213. source: "./media/characters/maple-javira-dragon/front.svg",
  50214. extra: 1136/744,
  50215. bottom: 73/1209
  50216. }
  50217. },
  50218. side: {
  50219. height: math.unit(11 + 10/12, "feet"),
  50220. weight: math.unit(1587, "kg"),
  50221. name: "Side",
  50222. image: {
  50223. source: "./media/characters/maple-javira-dragon/side.svg",
  50224. extra: 712/505,
  50225. bottom: 17/729
  50226. }
  50227. },
  50228. head: {
  50229. height: math.unit(8.05, "feet"),
  50230. name: "Head",
  50231. image: {
  50232. source: "./media/characters/maple-javira-dragon/head.svg",
  50233. extra: 1420/1344,
  50234. bottom: 0/1420
  50235. }
  50236. },
  50237. },
  50238. [
  50239. {
  50240. name: "Normal",
  50241. height: math.unit(11 + 10/12, "feet"),
  50242. default: true
  50243. },
  50244. ]
  50245. ))
  50246. characterMakers.push(() => makeCharacter(
  50247. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50248. {
  50249. front: {
  50250. height: math.unit(117, "cm"),
  50251. weight: math.unit(50, "kg"),
  50252. name: "Front",
  50253. image: {
  50254. source: "./media/characters/sonia-wyverntail/front.svg",
  50255. extra: 708/592,
  50256. bottom: 25/733
  50257. }
  50258. },
  50259. },
  50260. [
  50261. {
  50262. name: "Normal",
  50263. height: math.unit(117, "cm"),
  50264. default: true
  50265. },
  50266. ]
  50267. ))
  50268. characterMakers.push(() => makeCharacter(
  50269. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50270. {
  50271. front: {
  50272. height: math.unit(6 + 5/12, "feet"),
  50273. name: "Front",
  50274. image: {
  50275. source: "./media/characters/micah/front.svg",
  50276. extra: 1758/1546,
  50277. bottom: 214/1972
  50278. }
  50279. },
  50280. },
  50281. [
  50282. {
  50283. name: "Normal",
  50284. height: math.unit(6 + 5/12, "feet"),
  50285. default: true
  50286. },
  50287. ]
  50288. ))
  50289. characterMakers.push(() => makeCharacter(
  50290. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50291. {
  50292. front: {
  50293. height: math.unit(5 + 10/12, "feet"),
  50294. weight: math.unit(220, "lb"),
  50295. name: "Front",
  50296. image: {
  50297. source: "./media/characters/zarya/front.svg",
  50298. extra: 593/572,
  50299. bottom: 50/643
  50300. }
  50301. },
  50302. back: {
  50303. height: math.unit(5 + 10/12, "feet"),
  50304. weight: math.unit(220, "lb"),
  50305. name: "Back",
  50306. image: {
  50307. source: "./media/characters/zarya/back.svg",
  50308. extra: 603/582,
  50309. bottom: 38/641
  50310. }
  50311. },
  50312. },
  50313. [
  50314. {
  50315. name: "Normal",
  50316. height: math.unit(5 + 10/12, "feet"),
  50317. default: true
  50318. },
  50319. ]
  50320. ))
  50321. characterMakers.push(() => makeCharacter(
  50322. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50323. {
  50324. front: {
  50325. height: math.unit(7.5, "feet"),
  50326. name: "Front",
  50327. image: {
  50328. source: "./media/characters/sven-hatisson/front.svg",
  50329. extra: 917/857,
  50330. bottom: 42/959
  50331. }
  50332. },
  50333. back: {
  50334. height: math.unit(7.5, "feet"),
  50335. name: "Back",
  50336. image: {
  50337. source: "./media/characters/sven-hatisson/back.svg",
  50338. extra: 903/856,
  50339. bottom: 15/918
  50340. }
  50341. },
  50342. },
  50343. [
  50344. {
  50345. name: "Base Height",
  50346. height: math.unit(7.5, "feet")
  50347. },
  50348. {
  50349. name: "Usual Height",
  50350. height: math.unit(13.5, "feet"),
  50351. default: true
  50352. },
  50353. {
  50354. name: "Smaller Macro",
  50355. height: math.unit(85, "feet")
  50356. },
  50357. {
  50358. name: "Moderate Macro",
  50359. height: math.unit(320, "feet")
  50360. },
  50361. {
  50362. name: "Large Macro",
  50363. height: math.unit(1000, "feet")
  50364. },
  50365. {
  50366. name: "Largest Size",
  50367. height: math.unit(2, "miles")
  50368. },
  50369. ]
  50370. ))
  50371. characterMakers.push(() => makeCharacter(
  50372. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50373. {
  50374. side: {
  50375. height: math.unit(1.8, "meters"),
  50376. weight: math.unit(275, "kg"),
  50377. name: "Side",
  50378. image: {
  50379. source: "./media/characters/terra/side.svg",
  50380. extra: 1273/1147,
  50381. bottom: 0/1273
  50382. }
  50383. },
  50384. },
  50385. [
  50386. {
  50387. name: "Normal",
  50388. height: math.unit(16.2, "meters"),
  50389. default: true
  50390. },
  50391. ]
  50392. ))
  50393. characterMakers.push(() => makeCharacter(
  50394. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50395. {
  50396. borzoiFront: {
  50397. height: math.unit(6 + 9/12, "feet"),
  50398. name: "Front",
  50399. image: {
  50400. source: "./media/characters/rae/borzoi-front.svg",
  50401. extra: 1161/1098,
  50402. bottom: 31/1192
  50403. },
  50404. form: "borzoi",
  50405. default: true
  50406. },
  50407. werewolfFront: {
  50408. height: math.unit(8 + 7/12, "feet"),
  50409. name: "Front",
  50410. image: {
  50411. source: "./media/characters/rae/werewolf-front.svg",
  50412. extra: 1411/1334,
  50413. bottom: 127/1538
  50414. },
  50415. form: "werewolf",
  50416. default: true
  50417. },
  50418. },
  50419. [
  50420. {
  50421. name: "Normal",
  50422. height: math.unit(6 + 9/12, "feet"),
  50423. default: true,
  50424. form: "borzoi"
  50425. },
  50426. {
  50427. name: "Normal",
  50428. height: math.unit(8 + 7/12, "feet"),
  50429. default: true,
  50430. form: "werewolf"
  50431. },
  50432. ],
  50433. {
  50434. "borzoi": {
  50435. name: "Borzoi",
  50436. default: true
  50437. },
  50438. "werewolf": {
  50439. name: "Werewolf",
  50440. },
  50441. }
  50442. ))
  50443. characterMakers.push(() => makeCharacter(
  50444. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50445. {
  50446. front: {
  50447. height: math.unit(8 + 7/12, "feet"),
  50448. weight: math.unit(482, "lb"),
  50449. name: "Front",
  50450. image: {
  50451. source: "./media/characters/kit/front.svg",
  50452. extra: 1247/1103,
  50453. bottom: 41/1288
  50454. }
  50455. },
  50456. back: {
  50457. height: math.unit(8 + 7/12, "feet"),
  50458. weight: math.unit(482, "lb"),
  50459. name: "Back",
  50460. image: {
  50461. source: "./media/characters/kit/back.svg",
  50462. extra: 1252/1123,
  50463. bottom: 21/1273
  50464. }
  50465. },
  50466. paw: {
  50467. height: math.unit(1.46, "feet"),
  50468. name: "Paw",
  50469. image: {
  50470. source: "./media/characters/kit/paw.svg"
  50471. }
  50472. },
  50473. },
  50474. [
  50475. {
  50476. name: "Normal",
  50477. height: math.unit(2.61, "meters"),
  50478. default: true
  50479. },
  50480. {
  50481. name: "\"Tall\"",
  50482. height: math.unit(8.21, "meters")
  50483. },
  50484. {
  50485. name: "Tall",
  50486. height: math.unit(19.6, "meters")
  50487. },
  50488. {
  50489. name: "Very Tall",
  50490. height: math.unit(57.91, "meters")
  50491. },
  50492. {
  50493. name: "Semi-Macro",
  50494. height: math.unit(138.64, "meters")
  50495. },
  50496. {
  50497. name: "Macro",
  50498. height: math.unit(831.99, "meters")
  50499. },
  50500. {
  50501. name: "EX-Macro",
  50502. height: math.unit(96451121, "meters")
  50503. },
  50504. {
  50505. name: "S1-Omnipotent",
  50506. height: math.unit(4.42074e+9, "meters")
  50507. },
  50508. {
  50509. name: "S2-Omnipotent",
  50510. height: math.unit(9.42074e+17, "meters")
  50511. },
  50512. {
  50513. name: "Omnipotent",
  50514. height: math.unit(4.23112e+24, "meters")
  50515. },
  50516. {
  50517. name: "Hypergod",
  50518. height: math.unit(5.05176e+27, "meters")
  50519. },
  50520. {
  50521. name: "Hypergod-EX",
  50522. height: math.unit(9.45532e+49, "meters")
  50523. },
  50524. {
  50525. name: "Hypergod-SP",
  50526. height: math.unit(9.45532e+195, "meters")
  50527. },
  50528. ]
  50529. ))
  50530. characterMakers.push(() => makeCharacter(
  50531. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50532. {
  50533. side: {
  50534. height: math.unit(0.6, "meters"),
  50535. weight: math.unit(24, "kg"),
  50536. name: "Side",
  50537. image: {
  50538. source: "./media/characters/celeste/side.svg",
  50539. extra: 810/517,
  50540. bottom: 53/863
  50541. }
  50542. },
  50543. },
  50544. [
  50545. {
  50546. name: "Velociraptor",
  50547. height: math.unit(0.6, "meters"),
  50548. default: true
  50549. },
  50550. {
  50551. name: "Utahraptor",
  50552. height: math.unit(1.8, "meters")
  50553. },
  50554. {
  50555. name: "Gallimimus",
  50556. height: math.unit(4.0, "meters")
  50557. },
  50558. {
  50559. name: "Large",
  50560. height: math.unit(20, "meters")
  50561. },
  50562. {
  50563. name: "Planetary",
  50564. height: math.unit(50, "megameters")
  50565. },
  50566. {
  50567. name: "Stellar",
  50568. height: math.unit(1.5, "gigameters")
  50569. },
  50570. {
  50571. name: "Galactic",
  50572. height: math.unit(100, "exameters")
  50573. },
  50574. ]
  50575. ))
  50576. characterMakers.push(() => makeCharacter(
  50577. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50578. {
  50579. front: {
  50580. height: math.unit(6, "feet"),
  50581. weight: math.unit(210, "lb"),
  50582. name: "Front",
  50583. image: {
  50584. source: "./media/characters/glacia/front.svg",
  50585. extra: 958/901,
  50586. bottom: 45/1003
  50587. }
  50588. },
  50589. },
  50590. [
  50591. {
  50592. name: "Macro",
  50593. height: math.unit(1000, "meters"),
  50594. default: true
  50595. },
  50596. ]
  50597. ))
  50598. characterMakers.push(() => makeCharacter(
  50599. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50600. {
  50601. front: {
  50602. height: math.unit(4, "meters"),
  50603. name: "Front",
  50604. image: {
  50605. source: "./media/characters/giri/front.svg",
  50606. extra: 966/894,
  50607. bottom: 21/987
  50608. }
  50609. },
  50610. },
  50611. [
  50612. {
  50613. name: "Normal",
  50614. height: math.unit(4, "meters"),
  50615. default: true
  50616. },
  50617. ]
  50618. ))
  50619. characterMakers.push(() => makeCharacter(
  50620. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50621. {
  50622. back: {
  50623. height: math.unit(4, "feet"),
  50624. weight: math.unit(37, "lb"),
  50625. name: "Back",
  50626. image: {
  50627. source: "./media/characters/tin/back.svg",
  50628. extra: 845/780,
  50629. bottom: 28/873
  50630. }
  50631. },
  50632. },
  50633. [
  50634. {
  50635. name: "Normal",
  50636. height: math.unit(4, "feet"),
  50637. default: true
  50638. },
  50639. ]
  50640. ))
  50641. characterMakers.push(() => makeCharacter(
  50642. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50643. {
  50644. front: {
  50645. height: math.unit(25, "feet"),
  50646. name: "Front",
  50647. image: {
  50648. source: "./media/characters/cadenza-vivace/front.svg",
  50649. extra: 1842/1578,
  50650. bottom: 30/1872
  50651. }
  50652. },
  50653. },
  50654. [
  50655. {
  50656. name: "Macro",
  50657. height: math.unit(25, "feet"),
  50658. default: true
  50659. },
  50660. ]
  50661. ))
  50662. characterMakers.push(() => makeCharacter(
  50663. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50664. {
  50665. front: {
  50666. height: math.unit(10, "feet"),
  50667. weight: math.unit(625, "kg"),
  50668. name: "Front",
  50669. image: {
  50670. source: "./media/characters/zain/front.svg",
  50671. extra: 1682/1498,
  50672. bottom: 223/1905
  50673. }
  50674. },
  50675. back: {
  50676. height: math.unit(10, "feet"),
  50677. weight: math.unit(625, "kg"),
  50678. name: "Back",
  50679. image: {
  50680. source: "./media/characters/zain/back.svg",
  50681. extra: 1814/1657,
  50682. bottom: 152/1966
  50683. }
  50684. },
  50685. head: {
  50686. height: math.unit(10, "feet"),
  50687. weight: math.unit(625, "kg"),
  50688. name: "Head",
  50689. image: {
  50690. source: "./media/characters/zain/head.svg",
  50691. extra: 1059/762,
  50692. bottom: 0/1059
  50693. }
  50694. },
  50695. },
  50696. [
  50697. {
  50698. name: "Normal",
  50699. height: math.unit(10, "feet"),
  50700. default: true
  50701. },
  50702. ]
  50703. ))
  50704. characterMakers.push(() => makeCharacter(
  50705. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50706. {
  50707. front: {
  50708. height: math.unit(6 + 5/12, "feet"),
  50709. weight: math.unit(750, "lb"),
  50710. name: "Front",
  50711. image: {
  50712. source: "./media/characters/ruchex/front.svg",
  50713. extra: 877/820,
  50714. bottom: 17/894
  50715. },
  50716. extraAttributes: {
  50717. "width": {
  50718. name: "Width",
  50719. power: 1,
  50720. type: "length",
  50721. base: math.unit(4.757, "feet")
  50722. },
  50723. }
  50724. },
  50725. },
  50726. [
  50727. {
  50728. name: "Normal",
  50729. height: math.unit(6 + 5/12, "feet"),
  50730. default: true
  50731. },
  50732. ]
  50733. ))
  50734. characterMakers.push(() => makeCharacter(
  50735. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50736. {
  50737. dressedFront: {
  50738. height: math.unit(191, "cm"),
  50739. weight: math.unit(80, "kg"),
  50740. name: "Front",
  50741. image: {
  50742. source: "./media/characters/buster/dressed-front.svg",
  50743. extra: 1022/973,
  50744. bottom: 69/1091
  50745. }
  50746. },
  50747. dressedBack: {
  50748. height: math.unit(191, "cm"),
  50749. weight: math.unit(80, "kg"),
  50750. name: "Back",
  50751. image: {
  50752. source: "./media/characters/buster/dressed-back.svg",
  50753. extra: 1018/970,
  50754. bottom: 55/1073
  50755. }
  50756. },
  50757. nudeFront: {
  50758. height: math.unit(191, "cm"),
  50759. weight: math.unit(80, "kg"),
  50760. name: "Front (Nude)",
  50761. image: {
  50762. source: "./media/characters/buster/nude-front.svg",
  50763. extra: 1022/973,
  50764. bottom: 69/1091
  50765. }
  50766. },
  50767. nudeBack: {
  50768. height: math.unit(191, "cm"),
  50769. weight: math.unit(80, "kg"),
  50770. name: "Back (Nude)",
  50771. image: {
  50772. source: "./media/characters/buster/nude-back.svg",
  50773. extra: 1018/970,
  50774. bottom: 55/1073
  50775. }
  50776. },
  50777. dick: {
  50778. height: math.unit(2.59, "feet"),
  50779. name: "Dick",
  50780. image: {
  50781. source: "./media/characters/buster/dick.svg"
  50782. }
  50783. },
  50784. ass: {
  50785. height: math.unit(1.2, "feet"),
  50786. name: "Ass",
  50787. image: {
  50788. source: "./media/characters/buster/ass.svg"
  50789. }
  50790. },
  50791. },
  50792. [
  50793. {
  50794. name: "Normal",
  50795. height: math.unit(191, "cm"),
  50796. default: true
  50797. },
  50798. ]
  50799. ))
  50800. characterMakers.push(() => makeCharacter(
  50801. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50802. {
  50803. side: {
  50804. height: math.unit(8.1, "feet"),
  50805. weight: math.unit(3500, "lb"),
  50806. name: "Side",
  50807. image: {
  50808. source: "./media/characters/sonya/side.svg",
  50809. extra: 1730/1317,
  50810. bottom: 86/1816
  50811. }
  50812. },
  50813. },
  50814. [
  50815. {
  50816. name: "Normal",
  50817. height: math.unit(8.1, "feet"),
  50818. default: true
  50819. },
  50820. ]
  50821. ))
  50822. //characters
  50823. function makeCharacters() {
  50824. const results = [];
  50825. characterMakers.forEach(character => {
  50826. results.push(character());
  50827. });
  50828. return results;
  50829. }