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

52928 строки
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. }
  2015. //species
  2016. function getSpeciesInfo(speciesList) {
  2017. let result = new Set();
  2018. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2019. result.add(entry)
  2020. });
  2021. return Array.from(result);
  2022. };
  2023. function getSpeciesInfoHelper(species) {
  2024. if (!speciesData[species]) {
  2025. console.warn(species + " doesn't exist");
  2026. return [];
  2027. }
  2028. if (speciesData[species].parents) {
  2029. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2030. } else {
  2031. return [species];
  2032. }
  2033. }
  2034. characterMakers.push(() => makeCharacter(
  2035. {
  2036. name: "Fen",
  2037. species: ["crux"],
  2038. description: {
  2039. title: "Bio",
  2040. text: "Very furry. Sheds on everything."
  2041. },
  2042. tags: [
  2043. "anthro",
  2044. "goo"
  2045. ]
  2046. },
  2047. {
  2048. front: {
  2049. height: math.unit(12, "feet"),
  2050. weight: math.unit(2400, "lb"),
  2051. name: "Front",
  2052. image: {
  2053. source: "./media/characters/fen/front.svg",
  2054. extra: 1804/1562,
  2055. bottom: 205/2009
  2056. },
  2057. extraAttributes: {
  2058. pawSize: {
  2059. name: "Paw Size",
  2060. power: 2,
  2061. type: "area",
  2062. base: math.unit(0.35, "m^2")
  2063. }
  2064. }
  2065. },
  2066. diving: {
  2067. height: math.unit(4.9, "meters"),
  2068. weight: math.unit(2400, "lb"),
  2069. name: "Diving",
  2070. image: {
  2071. source: "./media/characters/fen/diving.svg"
  2072. }
  2073. },
  2074. goo: {
  2075. height: math.unit(12, "feet"),
  2076. weight: math.unit(3600, "lb"),
  2077. volume: math.unit(1000, "liters"),
  2078. preyCapacity: math.unit(6, "people"),
  2079. name: "Goo",
  2080. image: {
  2081. source: "./media/characters/fen/goo.svg",
  2082. extra: 1307/1071,
  2083. bottom: 134/1441
  2084. }
  2085. },
  2086. maw: {
  2087. height: math.unit(5.03, "feet"),
  2088. name: "Maw",
  2089. image: {
  2090. source: "./media/characters/fen/maw.svg"
  2091. }
  2092. },
  2093. gooCeiling: {
  2094. height: math.unit(6.6, "feet"),
  2095. weight: math.unit(3000, "lb"),
  2096. volume: math.unit(1000, "liters"),
  2097. preyCapacity: math.unit(6, "people"),
  2098. name: "Goo (Ceiling)",
  2099. image: {
  2100. source: "./media/characters/fen/goo-ceiling.svg"
  2101. }
  2102. },
  2103. paw: {
  2104. height: math.unit(3.77, "feet"),
  2105. name: "Paw",
  2106. image: {
  2107. source: "./media/characters/fen/paw.svg"
  2108. },
  2109. extraAttributes: {
  2110. "toeSize": {
  2111. name: "Toe Size",
  2112. power: 2,
  2113. type: "area",
  2114. base: math.unit(0.02875, "m^2")
  2115. },
  2116. "pawSize": {
  2117. name: "Paw Size",
  2118. power: 2,
  2119. type: "area",
  2120. base: math.unit(0.378, "m^2")
  2121. },
  2122. }
  2123. },
  2124. tail: {
  2125. height: math.unit(12.1, "feet"),
  2126. name: "Tail",
  2127. image: {
  2128. source: "./media/characters/fen/tail.svg"
  2129. }
  2130. },
  2131. tailFull: {
  2132. height: math.unit(12.1, "feet"),
  2133. name: "Full Tail",
  2134. image: {
  2135. source: "./media/characters/fen/tail-full.svg"
  2136. }
  2137. },
  2138. back: {
  2139. height: math.unit(12, "feet"),
  2140. weight: math.unit(2400, "lb"),
  2141. name: "Back",
  2142. image: {
  2143. source: "./media/characters/fen/back.svg",
  2144. },
  2145. info: {
  2146. description: {
  2147. mode: "append",
  2148. text: "\n\nHe is not currently looking at you."
  2149. }
  2150. }
  2151. },
  2152. full: {
  2153. height: math.unit(1.85, "meter"),
  2154. weight: math.unit(3200, "lb"),
  2155. name: "Full",
  2156. image: {
  2157. source: "./media/characters/fen/full.svg",
  2158. extra: 1133/859,
  2159. bottom: 145/1278
  2160. },
  2161. info: {
  2162. description: {
  2163. mode: "append",
  2164. text: "\n\nMunch."
  2165. }
  2166. }
  2167. },
  2168. gooLounging: {
  2169. height: math.unit(4.53, "feet"),
  2170. weight: math.unit(3000, "lb"),
  2171. preyCapacity: math.unit(6, "people"),
  2172. name: "Goo (Lounging)",
  2173. image: {
  2174. source: "./media/characters/fen/goo-lounging.svg",
  2175. bottom: 116 / 613
  2176. }
  2177. },
  2178. lounging: {
  2179. height: math.unit(10.52, "feet"),
  2180. weight: math.unit(2400, "lb"),
  2181. name: "Lounging",
  2182. image: {
  2183. source: "./media/characters/fen/lounging.svg"
  2184. }
  2185. },
  2186. },
  2187. [
  2188. {
  2189. name: "Small",
  2190. height: math.unit(2.2428, "meter")
  2191. },
  2192. {
  2193. name: "Normal",
  2194. height: math.unit(12, "feet"),
  2195. default: true,
  2196. },
  2197. {
  2198. name: "Big",
  2199. height: math.unit(20, "feet")
  2200. },
  2201. {
  2202. name: "Minimacro",
  2203. height: math.unit(40, "feet"),
  2204. info: {
  2205. description: {
  2206. mode: "append",
  2207. text: "\n\nTOO DAMN BIG"
  2208. }
  2209. }
  2210. },
  2211. {
  2212. name: "Macro",
  2213. height: math.unit(100, "feet"),
  2214. info: {
  2215. description: {
  2216. mode: "append",
  2217. text: "\n\nTOO DAMN BIG"
  2218. }
  2219. }
  2220. },
  2221. {
  2222. name: "Megamacro",
  2223. height: math.unit(2, "miles")
  2224. },
  2225. {
  2226. name: "Gigamacro",
  2227. height: math.unit(10, "earths")
  2228. },
  2229. ]
  2230. ))
  2231. characterMakers.push(() => makeCharacter(
  2232. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2233. {
  2234. front: {
  2235. height: math.unit(183, "cm"),
  2236. weight: math.unit(80, "kg"),
  2237. name: "Front",
  2238. image: {
  2239. source: "./media/characters/sofia-fluttertail/front.svg",
  2240. bottom: 0.01,
  2241. extra: 2154 / 2081
  2242. }
  2243. },
  2244. frontAlt: {
  2245. height: math.unit(183, "cm"),
  2246. weight: math.unit(80, "kg"),
  2247. name: "Front (alt)",
  2248. image: {
  2249. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2250. }
  2251. },
  2252. back: {
  2253. height: math.unit(183, "cm"),
  2254. weight: math.unit(80, "kg"),
  2255. name: "Back",
  2256. image: {
  2257. source: "./media/characters/sofia-fluttertail/back.svg"
  2258. }
  2259. },
  2260. kneeling: {
  2261. height: math.unit(125, "cm"),
  2262. weight: math.unit(80, "kg"),
  2263. name: "Kneeling",
  2264. image: {
  2265. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2266. extra: 1033 / 977,
  2267. bottom: 23.7 / 1057
  2268. }
  2269. },
  2270. maw: {
  2271. height: math.unit(183 / 5, "cm"),
  2272. name: "Maw",
  2273. image: {
  2274. source: "./media/characters/sofia-fluttertail/maw.svg"
  2275. }
  2276. },
  2277. mawcloseup: {
  2278. height: math.unit(183 / 5 * 0.41, "cm"),
  2279. name: "Maw (Closeup)",
  2280. image: {
  2281. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2282. }
  2283. },
  2284. paws: {
  2285. height: math.unit(1.17, "feet"),
  2286. name: "Paws",
  2287. image: {
  2288. source: "./media/characters/sofia-fluttertail/paws.svg",
  2289. extra: 851 / 851,
  2290. bottom: 17 / 868
  2291. }
  2292. },
  2293. },
  2294. [
  2295. {
  2296. name: "Normal",
  2297. height: math.unit(1.83, "meter")
  2298. },
  2299. {
  2300. name: "Size Thief",
  2301. height: math.unit(18, "feet")
  2302. },
  2303. {
  2304. name: "50 Foot Collie",
  2305. height: math.unit(50, "feet")
  2306. },
  2307. {
  2308. name: "Macro",
  2309. height: math.unit(96, "feet"),
  2310. default: true
  2311. },
  2312. {
  2313. name: "Megamerger",
  2314. height: math.unit(650, "feet")
  2315. },
  2316. ]
  2317. ))
  2318. characterMakers.push(() => makeCharacter(
  2319. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2320. {
  2321. front: {
  2322. height: math.unit(7, "feet"),
  2323. weight: math.unit(100, "kg"),
  2324. name: "Front",
  2325. image: {
  2326. source: "./media/characters/march/front.svg",
  2327. extra: 1992/1851,
  2328. bottom: 39/2031
  2329. }
  2330. },
  2331. foot: {
  2332. height: math.unit(0.9, "feet"),
  2333. name: "Foot",
  2334. image: {
  2335. source: "./media/characters/march/foot.svg"
  2336. }
  2337. },
  2338. },
  2339. [
  2340. {
  2341. name: "Normal",
  2342. height: math.unit(7.9, "feet")
  2343. },
  2344. {
  2345. name: "Macro",
  2346. height: math.unit(220, "meters")
  2347. },
  2348. {
  2349. name: "Megamacro",
  2350. height: math.unit(2.98, "km"),
  2351. default: true
  2352. },
  2353. {
  2354. name: "Gigamacro",
  2355. height: math.unit(15963, "km")
  2356. },
  2357. {
  2358. name: "Teramacro",
  2359. height: math.unit(2980000000, "km")
  2360. },
  2361. {
  2362. name: "Examacro",
  2363. height: math.unit(250, "parsecs")
  2364. },
  2365. ]
  2366. ))
  2367. characterMakers.push(() => makeCharacter(
  2368. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2369. {
  2370. front: {
  2371. height: math.unit(6, "feet"),
  2372. weight: math.unit(60, "kg"),
  2373. name: "Front",
  2374. image: {
  2375. source: "./media/characters/noir/front.svg",
  2376. extra: 1,
  2377. bottom: 0.032
  2378. }
  2379. },
  2380. },
  2381. [
  2382. {
  2383. name: "Normal",
  2384. height: math.unit(6.6, "feet")
  2385. },
  2386. {
  2387. name: "Macro",
  2388. height: math.unit(500, "feet")
  2389. },
  2390. {
  2391. name: "Megamacro",
  2392. height: math.unit(2.5, "km"),
  2393. default: true
  2394. },
  2395. {
  2396. name: "Gigamacro",
  2397. height: math.unit(22500, "km")
  2398. },
  2399. {
  2400. name: "Teramacro",
  2401. height: math.unit(2500000000, "km")
  2402. },
  2403. {
  2404. name: "Examacro",
  2405. height: math.unit(200, "parsecs")
  2406. },
  2407. ]
  2408. ))
  2409. characterMakers.push(() => makeCharacter(
  2410. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2411. {
  2412. front: {
  2413. height: math.unit(7, "feet"),
  2414. weight: math.unit(100, "kg"),
  2415. name: "Front",
  2416. image: {
  2417. source: "./media/characters/okuri/front.svg",
  2418. extra: 739/665,
  2419. bottom: 39/778
  2420. }
  2421. },
  2422. back: {
  2423. height: math.unit(7, "feet"),
  2424. weight: math.unit(100, "kg"),
  2425. name: "Back",
  2426. image: {
  2427. source: "./media/characters/okuri/back.svg",
  2428. extra: 734/653,
  2429. bottom: 13/747
  2430. }
  2431. },
  2432. sitting: {
  2433. height: math.unit(2.95, "feet"),
  2434. weight: math.unit(100, "kg"),
  2435. name: "Sitting",
  2436. image: {
  2437. source: "./media/characters/okuri/sitting.svg",
  2438. extra: 370/318,
  2439. bottom: 99/469
  2440. }
  2441. },
  2442. },
  2443. [
  2444. {
  2445. name: "Smallest",
  2446. height: math.unit(5 + 2/12, "feet")
  2447. },
  2448. {
  2449. name: "Smaller",
  2450. height: math.unit(300, "feet")
  2451. },
  2452. {
  2453. name: "Small",
  2454. height: math.unit(1000, "feet")
  2455. },
  2456. {
  2457. name: "Macro",
  2458. height: math.unit(1, "mile")
  2459. },
  2460. {
  2461. name: "Mega Macro (Small)",
  2462. height: math.unit(20, "km")
  2463. },
  2464. {
  2465. name: "Mega Macro (Large)",
  2466. height: math.unit(600, "km")
  2467. },
  2468. {
  2469. name: "Giga Macro",
  2470. height: math.unit(10000, "km")
  2471. },
  2472. {
  2473. name: "Normal",
  2474. height: math.unit(577560, "km"),
  2475. default: true
  2476. },
  2477. {
  2478. name: "Large",
  2479. height: math.unit(4, "galaxies")
  2480. },
  2481. {
  2482. name: "Largest",
  2483. height: math.unit(15, "multiverses")
  2484. },
  2485. ]
  2486. ))
  2487. characterMakers.push(() => makeCharacter(
  2488. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2489. {
  2490. front: {
  2491. height: math.unit(7, "feet"),
  2492. weight: math.unit(100, "kg"),
  2493. name: "Front",
  2494. image: {
  2495. source: "./media/characters/manny/front.svg",
  2496. extra: 1,
  2497. bottom: 0.06
  2498. }
  2499. },
  2500. back: {
  2501. height: math.unit(7, "feet"),
  2502. weight: math.unit(100, "kg"),
  2503. name: "Back",
  2504. image: {
  2505. source: "./media/characters/manny/back.svg",
  2506. extra: 1,
  2507. bottom: 0.014
  2508. }
  2509. },
  2510. },
  2511. [
  2512. {
  2513. name: "Normal",
  2514. height: math.unit(7, "feet"),
  2515. },
  2516. {
  2517. name: "Macro",
  2518. height: math.unit(78, "feet"),
  2519. default: true
  2520. },
  2521. {
  2522. name: "Macro+",
  2523. height: math.unit(300, "meters")
  2524. },
  2525. {
  2526. name: "Macro++",
  2527. height: math.unit(2400, "meters")
  2528. },
  2529. {
  2530. name: "Megamacro",
  2531. height: math.unit(5167, "meters")
  2532. },
  2533. {
  2534. name: "Gigamacro",
  2535. height: math.unit(41769, "miles")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(7, "feet"),
  2544. weight: math.unit(100, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/adake/front-1.svg"
  2548. }
  2549. },
  2550. frontAlt: {
  2551. height: math.unit(7, "feet"),
  2552. weight: math.unit(100, "kg"),
  2553. name: "Front (Alt)",
  2554. image: {
  2555. source: "./media/characters/adake/front-2.svg",
  2556. extra: 1,
  2557. bottom: 0.01
  2558. }
  2559. },
  2560. back: {
  2561. height: math.unit(7, "feet"),
  2562. weight: math.unit(100, "kg"),
  2563. name: "Back",
  2564. image: {
  2565. source: "./media/characters/adake/back.svg",
  2566. }
  2567. },
  2568. kneel: {
  2569. height: math.unit(5.385, "feet"),
  2570. weight: math.unit(100, "kg"),
  2571. name: "Kneeling",
  2572. image: {
  2573. source: "./media/characters/adake/kneel.svg",
  2574. bottom: 0.052
  2575. }
  2576. },
  2577. },
  2578. [
  2579. {
  2580. name: "Normal",
  2581. height: math.unit(7, "feet"),
  2582. },
  2583. {
  2584. name: "Macro",
  2585. height: math.unit(78, "feet"),
  2586. default: true
  2587. },
  2588. {
  2589. name: "Macro+",
  2590. height: math.unit(300, "meters")
  2591. },
  2592. {
  2593. name: "Macro++",
  2594. height: math.unit(2400, "meters")
  2595. },
  2596. {
  2597. name: "Megamacro",
  2598. height: math.unit(5167, "meters")
  2599. },
  2600. {
  2601. name: "Gigamacro",
  2602. height: math.unit(41769, "miles")
  2603. },
  2604. ]
  2605. ))
  2606. characterMakers.push(() => makeCharacter(
  2607. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2608. {
  2609. front: {
  2610. height: math.unit(1.65, "meters"),
  2611. weight: math.unit(50, "kg"),
  2612. name: "Front",
  2613. image: {
  2614. source: "./media/characters/elijah/front.svg",
  2615. extra: 858 / 830,
  2616. bottom: 95.5 / 953.8559
  2617. }
  2618. },
  2619. back: {
  2620. height: math.unit(1.65, "meters"),
  2621. weight: math.unit(50, "kg"),
  2622. name: "Back",
  2623. image: {
  2624. source: "./media/characters/elijah/back.svg",
  2625. extra: 895 / 850,
  2626. bottom: 5.3 / 897.956
  2627. }
  2628. },
  2629. frontNsfw: {
  2630. height: math.unit(1.65, "meters"),
  2631. weight: math.unit(50, "kg"),
  2632. name: "Front (NSFW)",
  2633. image: {
  2634. source: "./media/characters/elijah/front-nsfw.svg",
  2635. extra: 858 / 830,
  2636. bottom: 95.5 / 953.8559
  2637. }
  2638. },
  2639. backNsfw: {
  2640. height: math.unit(1.65, "meters"),
  2641. weight: math.unit(50, "kg"),
  2642. name: "Back (NSFW)",
  2643. image: {
  2644. source: "./media/characters/elijah/back-nsfw.svg",
  2645. extra: 895 / 850,
  2646. bottom: 5.3 / 897.956
  2647. }
  2648. },
  2649. dick: {
  2650. height: math.unit(1, "feet"),
  2651. name: "Dick",
  2652. image: {
  2653. source: "./media/characters/elijah/dick.svg"
  2654. }
  2655. },
  2656. beakOpen: {
  2657. height: math.unit(1.25, "feet"),
  2658. name: "Beak (Open)",
  2659. image: {
  2660. source: "./media/characters/elijah/beak-open.svg"
  2661. }
  2662. },
  2663. beakShut: {
  2664. height: math.unit(1.25, "feet"),
  2665. name: "Beak (Shut)",
  2666. image: {
  2667. source: "./media/characters/elijah/beak-shut.svg"
  2668. }
  2669. },
  2670. footFlexing: {
  2671. height: math.unit(1.61, "feet"),
  2672. name: "Foot (Flexing)",
  2673. image: {
  2674. source: "./media/characters/elijah/foot-flexing.svg"
  2675. }
  2676. },
  2677. footStepping: {
  2678. height: math.unit(1.44, "feet"),
  2679. name: "Foot (Stepping)",
  2680. image: {
  2681. source: "./media/characters/elijah/foot-stepping.svg"
  2682. }
  2683. },
  2684. plantigradeLeg: {
  2685. height: math.unit(2.34, "feet"),
  2686. name: "Plantigrade Leg",
  2687. image: {
  2688. source: "./media/characters/elijah/plantigrade-leg.svg"
  2689. }
  2690. },
  2691. plantigradeFootLeft: {
  2692. height: math.unit(0.9, "feet"),
  2693. name: "Plantigrade Foot (Left)",
  2694. image: {
  2695. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2696. }
  2697. },
  2698. plantigradeFootRight: {
  2699. height: math.unit(0.9, "feet"),
  2700. name: "Plantigrade Foot (Right)",
  2701. image: {
  2702. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(1.65, "meters")
  2710. },
  2711. {
  2712. name: "Macro",
  2713. height: math.unit(55, "meters"),
  2714. default: true
  2715. },
  2716. {
  2717. name: "Macro+",
  2718. height: math.unit(105, "meters")
  2719. },
  2720. ]
  2721. ))
  2722. characterMakers.push(() => makeCharacter(
  2723. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2724. {
  2725. front: {
  2726. height: math.unit(7 + 2/12, "feet"),
  2727. weight: math.unit(320, "kg"),
  2728. name: "Front",
  2729. image: {
  2730. source: "./media/characters/rai/front.svg",
  2731. extra: 1802/1696,
  2732. bottom: 68/1870
  2733. }
  2734. },
  2735. frontDressed: {
  2736. height: math.unit(7 + 2/12, "feet"),
  2737. weight: math.unit(320, "kg"),
  2738. name: "Front (Dressed)",
  2739. image: {
  2740. source: "./media/characters/rai/front-dressed.svg",
  2741. extra: 1802/1696,
  2742. bottom: 68/1870
  2743. }
  2744. },
  2745. side: {
  2746. height: math.unit(7 + 2/12, "feet"),
  2747. weight: math.unit(320, "kg"),
  2748. name: "Side",
  2749. image: {
  2750. source: "./media/characters/rai/side.svg",
  2751. extra: 1789/1710,
  2752. bottom: 115/1904
  2753. }
  2754. },
  2755. back: {
  2756. height: math.unit(7 + 2/12, "feet"),
  2757. weight: math.unit(320, "kg"),
  2758. name: "Back",
  2759. image: {
  2760. source: "./media/characters/rai/back.svg",
  2761. extra: 1770/1707,
  2762. bottom: 28/1798
  2763. }
  2764. },
  2765. feral: {
  2766. height: math.unit(9.5, "feet"),
  2767. weight: math.unit(640, "kg"),
  2768. name: "Feral",
  2769. image: {
  2770. source: "./media/characters/rai/feral.svg",
  2771. extra: 945/553,
  2772. bottom: 176/1121
  2773. }
  2774. },
  2775. dragon: {
  2776. height: math.unit(23, "feet"),
  2777. weight: math.unit(50000, "lb"),
  2778. name: "Dragon",
  2779. image: {
  2780. source: "./media/characters/rai/dragon.svg",
  2781. extra: 2498 / 2030,
  2782. bottom: 85.2 / 2584
  2783. }
  2784. },
  2785. maw: {
  2786. height: math.unit(1.69, "feet"),
  2787. name: "Maw",
  2788. image: {
  2789. source: "./media/characters/rai/maw.svg"
  2790. }
  2791. },
  2792. },
  2793. [
  2794. {
  2795. name: "Normal",
  2796. height: math.unit(7 + 2/12, "feet")
  2797. },
  2798. {
  2799. name: "Big",
  2800. height: math.unit(11, "feet")
  2801. },
  2802. {
  2803. name: "Macro",
  2804. height: math.unit(302, "feet"),
  2805. default: true
  2806. },
  2807. ]
  2808. ))
  2809. characterMakers.push(() => makeCharacter(
  2810. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2811. {
  2812. frontDressed: {
  2813. height: math.unit(216, "feet"),
  2814. weight: math.unit(7000000, "lb"),
  2815. name: "Front (Dressed)",
  2816. image: {
  2817. source: "./media/characters/jazzy/front-dressed.svg",
  2818. extra: 2738 / 2651,
  2819. bottom: 41.8 / 2786
  2820. }
  2821. },
  2822. backDressed: {
  2823. height: math.unit(216, "feet"),
  2824. weight: math.unit(7000000, "lb"),
  2825. name: "Back (Dressed)",
  2826. image: {
  2827. source: "./media/characters/jazzy/back-dressed.svg",
  2828. extra: 2775 / 2673,
  2829. bottom: 36.8 / 2817
  2830. }
  2831. },
  2832. front: {
  2833. height: math.unit(216, "feet"),
  2834. weight: math.unit(7000000, "lb"),
  2835. name: "Front",
  2836. image: {
  2837. source: "./media/characters/jazzy/front.svg",
  2838. extra: 2738 / 2651,
  2839. bottom: 41.8 / 2786
  2840. }
  2841. },
  2842. back: {
  2843. height: math.unit(216, "feet"),
  2844. weight: math.unit(7000000, "lb"),
  2845. name: "Back",
  2846. image: {
  2847. source: "./media/characters/jazzy/back.svg",
  2848. extra: 2775 / 2673,
  2849. bottom: 36.8 / 2817
  2850. }
  2851. },
  2852. maw: {
  2853. height: math.unit(20, "feet"),
  2854. name: "Maw",
  2855. image: {
  2856. source: "./media/characters/jazzy/maw.svg"
  2857. }
  2858. },
  2859. paws: {
  2860. height: math.unit(27.5, "feet"),
  2861. name: "Paws",
  2862. image: {
  2863. source: "./media/characters/jazzy/paws.svg"
  2864. }
  2865. },
  2866. eye: {
  2867. height: math.unit(4.4, "feet"),
  2868. name: "Eye",
  2869. image: {
  2870. source: "./media/characters/jazzy/eye.svg"
  2871. }
  2872. },
  2873. droneOffense: {
  2874. height: math.unit(9.5, "inches"),
  2875. name: "Drone (Offense)",
  2876. image: {
  2877. source: "./media/characters/jazzy/drone-offense.svg"
  2878. }
  2879. },
  2880. droneRecon: {
  2881. height: math.unit(9.5, "inches"),
  2882. name: "Drone (Recon)",
  2883. image: {
  2884. source: "./media/characters/jazzy/drone-recon.svg"
  2885. }
  2886. },
  2887. droneDefense: {
  2888. height: math.unit(9.5, "inches"),
  2889. name: "Drone (Defense)",
  2890. image: {
  2891. source: "./media/characters/jazzy/drone-defense.svg"
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Macro",
  2898. height: math.unit(216, "feet"),
  2899. default: true
  2900. },
  2901. ]
  2902. ))
  2903. characterMakers.push(() => makeCharacter(
  2904. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2905. {
  2906. front: {
  2907. height: math.unit(9 + 6/12, "feet"),
  2908. weight: math.unit(700, "lb"),
  2909. name: "Front",
  2910. image: {
  2911. source: "./media/characters/flamm/front.svg",
  2912. extra: 1751/1632,
  2913. bottom: 46/1797
  2914. }
  2915. },
  2916. buff: {
  2917. height: math.unit(9 + 6/12, "feet"),
  2918. weight: math.unit(950, "lb"),
  2919. name: "Buff",
  2920. image: {
  2921. source: "./media/characters/flamm/buff.svg",
  2922. extra: 3018/2874,
  2923. bottom: 221/3239
  2924. }
  2925. },
  2926. },
  2927. [
  2928. {
  2929. name: "Normal",
  2930. height: math.unit(9.5, "feet")
  2931. },
  2932. {
  2933. name: "Macro",
  2934. height: math.unit(200, "feet"),
  2935. default: true
  2936. },
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2941. {
  2942. front: {
  2943. height: math.unit(5 + 3/12, "feet"),
  2944. weight: math.unit(60, "kg"),
  2945. name: "Front",
  2946. image: {
  2947. source: "./media/characters/zephiro/front.svg",
  2948. extra: 2309 / 2162,
  2949. bottom: 0.069
  2950. }
  2951. },
  2952. side: {
  2953. height: math.unit(5 + 3/12, "feet"),
  2954. weight: math.unit(60, "kg"),
  2955. name: "Side",
  2956. image: {
  2957. source: "./media/characters/zephiro/side.svg",
  2958. extra: 2403 / 2279,
  2959. bottom: 0.015
  2960. }
  2961. },
  2962. back: {
  2963. height: math.unit(5 + 3/12, "feet"),
  2964. weight: math.unit(60, "kg"),
  2965. name: "Back",
  2966. image: {
  2967. source: "./media/characters/zephiro/back.svg",
  2968. extra: 2373 / 2244,
  2969. bottom: 0.013
  2970. }
  2971. },
  2972. hand: {
  2973. height: math.unit(0.68, "feet"),
  2974. name: "Hand",
  2975. image: {
  2976. source: "./media/characters/zephiro/hand.svg"
  2977. }
  2978. },
  2979. paw: {
  2980. height: math.unit(1, "feet"),
  2981. name: "Paw",
  2982. image: {
  2983. source: "./media/characters/zephiro/paw.svg"
  2984. }
  2985. },
  2986. beans: {
  2987. height: math.unit(0.93, "feet"),
  2988. name: "Beans",
  2989. image: {
  2990. source: "./media/characters/zephiro/beans.svg"
  2991. }
  2992. },
  2993. },
  2994. [
  2995. {
  2996. name: "Micro",
  2997. height: math.unit(3, "inches")
  2998. },
  2999. {
  3000. name: "Normal",
  3001. height: math.unit(5 + 3 / 12, "feet"),
  3002. default: true
  3003. },
  3004. {
  3005. name: "Macro",
  3006. height: math.unit(118, "feet")
  3007. },
  3008. ]
  3009. ))
  3010. characterMakers.push(() => makeCharacter(
  3011. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3012. {
  3013. front: {
  3014. height: math.unit(5, "feet"),
  3015. weight: math.unit(90, "kg"),
  3016. name: "Front",
  3017. image: {
  3018. source: "./media/characters/fory/front.svg",
  3019. extra: 2862 / 2674,
  3020. bottom: 180 / 3043.8
  3021. }
  3022. },
  3023. back: {
  3024. height: math.unit(5, "feet"),
  3025. weight: math.unit(90, "kg"),
  3026. name: "Back",
  3027. image: {
  3028. source: "./media/characters/fory/back.svg",
  3029. extra: 2962 / 2791,
  3030. bottom: 106 / 3071.8
  3031. }
  3032. },
  3033. foot: {
  3034. height: math.unit(2.14, "feet"),
  3035. name: "Foot",
  3036. image: {
  3037. source: "./media/characters/fory/foot.svg"
  3038. }
  3039. },
  3040. },
  3041. [
  3042. {
  3043. name: "Normal",
  3044. height: math.unit(5, "feet")
  3045. },
  3046. {
  3047. name: "Macro",
  3048. height: math.unit(50, "feet"),
  3049. default: true
  3050. },
  3051. {
  3052. name: "Megamacro",
  3053. height: math.unit(10, "miles")
  3054. },
  3055. {
  3056. name: "Gigamacro",
  3057. height: math.unit(5, "earths")
  3058. },
  3059. ]
  3060. ))
  3061. characterMakers.push(() => makeCharacter(
  3062. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3063. {
  3064. front: {
  3065. height: math.unit(7, "feet"),
  3066. weight: math.unit(90, "kg"),
  3067. name: "Front",
  3068. image: {
  3069. source: "./media/characters/kurrikage/front.svg",
  3070. extra: 1845/1733,
  3071. bottom: 119/1964
  3072. }
  3073. },
  3074. back: {
  3075. height: math.unit(7, "feet"),
  3076. weight: math.unit(90, "kg"),
  3077. name: "Back",
  3078. image: {
  3079. source: "./media/characters/kurrikage/back.svg",
  3080. extra: 1790/1677,
  3081. bottom: 61/1851
  3082. }
  3083. },
  3084. dressed: {
  3085. height: math.unit(7, "feet"),
  3086. weight: math.unit(90, "kg"),
  3087. name: "Dressed",
  3088. image: {
  3089. source: "./media/characters/kurrikage/dressed.svg",
  3090. extra: 1845/1733,
  3091. bottom: 119/1964
  3092. }
  3093. },
  3094. foot: {
  3095. height: math.unit(1.5, "feet"),
  3096. name: "Foot",
  3097. image: {
  3098. source: "./media/characters/kurrikage/foot.svg"
  3099. }
  3100. },
  3101. staff: {
  3102. height: math.unit(6.7, "feet"),
  3103. name: "Staff",
  3104. image: {
  3105. source: "./media/characters/kurrikage/staff.svg"
  3106. }
  3107. },
  3108. peek: {
  3109. height: math.unit(1.05, "feet"),
  3110. name: "Peeking",
  3111. image: {
  3112. source: "./media/characters/kurrikage/peek.svg",
  3113. bottom: 0.08
  3114. }
  3115. },
  3116. },
  3117. [
  3118. {
  3119. name: "Normal",
  3120. height: math.unit(12, "feet"),
  3121. default: true
  3122. },
  3123. {
  3124. name: "Big",
  3125. height: math.unit(20, "feet")
  3126. },
  3127. {
  3128. name: "Macro",
  3129. height: math.unit(500, "feet")
  3130. },
  3131. {
  3132. name: "Megamacro",
  3133. height: math.unit(20, "miles")
  3134. },
  3135. ]
  3136. ))
  3137. characterMakers.push(() => makeCharacter(
  3138. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3139. {
  3140. front: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front",
  3144. image: {
  3145. source: "./media/characters/shingo/front.svg",
  3146. extra: 1900/1825,
  3147. bottom: 82/1982
  3148. }
  3149. },
  3150. side: {
  3151. height: math.unit(6, "feet"),
  3152. weight: math.unit(75, "kg"),
  3153. name: "Side",
  3154. image: {
  3155. source: "./media/characters/shingo/side.svg",
  3156. extra: 1930/1865,
  3157. bottom: 16/1946
  3158. }
  3159. },
  3160. back: {
  3161. height: math.unit(6, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Back",
  3164. image: {
  3165. source: "./media/characters/shingo/back.svg",
  3166. extra: 1922/1852,
  3167. bottom: 16/1938
  3168. }
  3169. },
  3170. frontDressed: {
  3171. height: math.unit(6, "feet"),
  3172. weight: math.unit(150, "lb"),
  3173. name: "Front-dressed",
  3174. image: {
  3175. source: "./media/characters/shingo/front-dressed.svg",
  3176. extra: 1900/1825,
  3177. bottom: 82/1982
  3178. }
  3179. },
  3180. paw: {
  3181. height: math.unit(1.29, "feet"),
  3182. name: "Paw",
  3183. image: {
  3184. source: "./media/characters/shingo/paw.svg"
  3185. }
  3186. },
  3187. hand: {
  3188. height: math.unit(1.07, "feet"),
  3189. name: "Hand",
  3190. image: {
  3191. source: "./media/characters/shingo/hand.svg"
  3192. }
  3193. },
  3194. frontAlt: {
  3195. height: math.unit(6, "feet"),
  3196. weight: math.unit(75, "kg"),
  3197. name: "Front (Alt)",
  3198. image: {
  3199. source: "./media/characters/shingo/front-alt.svg",
  3200. extra: 3511 / 3338,
  3201. bottom: 0.005
  3202. }
  3203. },
  3204. frontAlt2: {
  3205. height: math.unit(6, "feet"),
  3206. weight: math.unit(75, "kg"),
  3207. name: "Front (Alt 2)",
  3208. image: {
  3209. source: "./media/characters/shingo/front-alt-2.svg",
  3210. extra: 706/681,
  3211. bottom: 11/717
  3212. }
  3213. },
  3214. pawAlt: {
  3215. height: math.unit(1, "feet"),
  3216. name: "Paw (Alt)",
  3217. image: {
  3218. source: "./media/characters/shingo/paw-alt.svg"
  3219. }
  3220. },
  3221. },
  3222. [
  3223. {
  3224. name: "Micro",
  3225. height: math.unit(4, "inches")
  3226. },
  3227. {
  3228. name: "Normal",
  3229. height: math.unit(6, "feet"),
  3230. default: true
  3231. },
  3232. {
  3233. name: "Macro",
  3234. height: math.unit(108, "feet")
  3235. },
  3236. {
  3237. name: "Macro+",
  3238. height: math.unit(1500, "feet")
  3239. },
  3240. ]
  3241. ))
  3242. characterMakers.push(() => makeCharacter(
  3243. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3244. {
  3245. side: {
  3246. height: math.unit(6, "feet"),
  3247. weight: math.unit(75, "kg"),
  3248. name: "Side",
  3249. image: {
  3250. source: "./media/characters/aigey/side.svg"
  3251. }
  3252. },
  3253. },
  3254. [
  3255. {
  3256. name: "Macro",
  3257. height: math.unit(200, "feet"),
  3258. default: true
  3259. },
  3260. {
  3261. name: "Megamacro",
  3262. height: math.unit(100, "miles")
  3263. },
  3264. ]
  3265. )
  3266. )
  3267. characterMakers.push(() => makeCharacter(
  3268. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3269. {
  3270. front: {
  3271. height: math.unit(5 + 5 / 12, "feet"),
  3272. weight: math.unit(75, "kg"),
  3273. name: "Front",
  3274. image: {
  3275. source: "./media/characters/natasha/front.svg",
  3276. extra: 859 / 824,
  3277. bottom: 23 / 879.6
  3278. }
  3279. },
  3280. frontNsfw: {
  3281. height: math.unit(5 + 5 / 12, "feet"),
  3282. weight: math.unit(75, "kg"),
  3283. name: "Front (NSFW)",
  3284. image: {
  3285. source: "./media/characters/natasha/front-nsfw.svg",
  3286. extra: 859 / 824,
  3287. bottom: 23 / 879.6
  3288. }
  3289. },
  3290. frontErect: {
  3291. height: math.unit(5 + 5 / 12, "feet"),
  3292. weight: math.unit(75, "kg"),
  3293. name: "Front (Erect)",
  3294. image: {
  3295. source: "./media/characters/natasha/front-erect.svg",
  3296. extra: 859 / 824,
  3297. bottom: 23 / 879.6
  3298. }
  3299. },
  3300. back: {
  3301. height: math.unit(5 + 5 / 12, "feet"),
  3302. weight: math.unit(75, "kg"),
  3303. name: "Back",
  3304. image: {
  3305. source: "./media/characters/natasha/back.svg",
  3306. extra: 887.9 / 852.6,
  3307. bottom: 9.7 / 896.4
  3308. }
  3309. },
  3310. backAlt: {
  3311. height: math.unit(5 + 5 / 12, "feet"),
  3312. weight: math.unit(75, "kg"),
  3313. name: "Back (Alt)",
  3314. image: {
  3315. source: "./media/characters/natasha/back-alt.svg",
  3316. extra: 1236.7 / 1192,
  3317. bottom: 22.3 / 1258.2
  3318. }
  3319. },
  3320. dick: {
  3321. height: math.unit(1.772, "feet"),
  3322. name: "Dick",
  3323. image: {
  3324. source: "./media/characters/natasha/dick.svg"
  3325. }
  3326. },
  3327. paw: {
  3328. height: math.unit(0.250, "meters"),
  3329. name: "Paw",
  3330. image: {
  3331. source: "./media/characters/natasha/paw.svg"
  3332. },
  3333. extraAttributes: {
  3334. "toeSize": {
  3335. name: "Toe Size",
  3336. power: 2,
  3337. type: "area",
  3338. base: math.unit(0.0024, "m^2")
  3339. },
  3340. "padSize": {
  3341. name: "Pad Size",
  3342. power: 2,
  3343. type: "area",
  3344. base: math.unit(0.00889, "m^2")
  3345. },
  3346. "pawSize": {
  3347. name: "Paw Size",
  3348. power: 2,
  3349. type: "area",
  3350. base: math.unit(0.023667, "m^2")
  3351. },
  3352. }
  3353. },
  3354. },
  3355. [
  3356. {
  3357. name: "Shortstack",
  3358. height: math.unit(3, "feet"),
  3359. default: true
  3360. },
  3361. {
  3362. name: "Normal",
  3363. height: math.unit(5 + 5 / 12, "feet")
  3364. },
  3365. {
  3366. name: "Large",
  3367. height: math.unit(12, "feet")
  3368. },
  3369. {
  3370. name: "Macro",
  3371. height: math.unit(100, "feet")
  3372. },
  3373. {
  3374. name: "Macro+",
  3375. height: math.unit(260, "feet")
  3376. },
  3377. {
  3378. name: "Macro++",
  3379. height: math.unit(1, "mile")
  3380. },
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3385. {
  3386. front: {
  3387. height: math.unit(6, "feet"),
  3388. weight: math.unit(75, "kg"),
  3389. name: "Front",
  3390. image: {
  3391. source: "./media/characters/malik/front.svg",
  3392. extra: 1750/1561,
  3393. bottom: 80/1830
  3394. },
  3395. extraAttributes: {
  3396. "toeSize": {
  3397. name: "Toe Size",
  3398. power: 2,
  3399. type: "area",
  3400. base: math.unit(0.0159, "m^2")
  3401. },
  3402. "pawSize": {
  3403. name: "Paw Size",
  3404. power: 2,
  3405. type: "area",
  3406. base: math.unit(0.09834, "m^2")
  3407. },
  3408. }
  3409. },
  3410. side: {
  3411. height: math.unit(6, "feet"),
  3412. weight: math.unit(75, "kg"),
  3413. name: "Side",
  3414. image: {
  3415. source: "./media/characters/malik/side.svg",
  3416. extra: 1802/1685,
  3417. bottom: 42/1844
  3418. },
  3419. extraAttributes: {
  3420. "toeSize": {
  3421. name: "Toe Size",
  3422. power: 2,
  3423. type: "area",
  3424. base: math.unit(0.0159, "m^2")
  3425. },
  3426. "pawSize": {
  3427. name: "Paw Size",
  3428. power: 2,
  3429. type: "area",
  3430. base: math.unit(0.09834, "m^2")
  3431. },
  3432. }
  3433. },
  3434. back: {
  3435. height: math.unit(6, "feet"),
  3436. weight: math.unit(75, "kg"),
  3437. name: "Back",
  3438. image: {
  3439. source: "./media/characters/malik/back.svg",
  3440. extra: 1803/1607,
  3441. bottom: 33/1836
  3442. },
  3443. extraAttributes: {
  3444. "toeSize": {
  3445. name: "Toe Size",
  3446. power: 2,
  3447. type: "area",
  3448. base: math.unit(0.0159, "m^2")
  3449. },
  3450. "pawSize": {
  3451. name: "Paw Size",
  3452. power: 2,
  3453. type: "area",
  3454. base: math.unit(0.09834, "m^2")
  3455. },
  3456. }
  3457. },
  3458. },
  3459. [
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(156, "feet"),
  3463. default: true
  3464. },
  3465. {
  3466. name: "Macro+",
  3467. height: math.unit(1188, "feet")
  3468. },
  3469. ]
  3470. ))
  3471. characterMakers.push(() => makeCharacter(
  3472. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3473. {
  3474. front: {
  3475. height: math.unit(6, "feet"),
  3476. weight: math.unit(75, "kg"),
  3477. name: "Front",
  3478. image: {
  3479. source: "./media/characters/sefer/front.svg",
  3480. extra: 848 / 659,
  3481. bottom: 28.3 / 876.442
  3482. }
  3483. },
  3484. back: {
  3485. height: math.unit(6, "feet"),
  3486. weight: math.unit(75, "kg"),
  3487. name: "Back",
  3488. image: {
  3489. source: "./media/characters/sefer/back.svg",
  3490. extra: 864 / 695,
  3491. bottom: 10 / 871
  3492. }
  3493. },
  3494. frontDressed: {
  3495. height: math.unit(6, "feet"),
  3496. weight: math.unit(75, "kg"),
  3497. name: "Front (Dressed)",
  3498. image: {
  3499. source: "./media/characters/sefer/front-dressed.svg",
  3500. extra: 839 / 653,
  3501. bottom: 37.6 / 878
  3502. }
  3503. },
  3504. },
  3505. [
  3506. {
  3507. name: "Normal",
  3508. height: math.unit(6, "feet"),
  3509. default: true
  3510. },
  3511. ]
  3512. ))
  3513. characterMakers.push(() => makeCharacter(
  3514. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3515. {
  3516. body: {
  3517. height: math.unit(2.2428, "meter"),
  3518. weight: math.unit(124.738, "kg"),
  3519. name: "Body",
  3520. image: {
  3521. extra: 1225 / 1050,
  3522. source: "./media/characters/north/front.svg"
  3523. }
  3524. }
  3525. },
  3526. [
  3527. {
  3528. name: "Micro",
  3529. height: math.unit(4, "inches")
  3530. },
  3531. {
  3532. name: "Macro",
  3533. height: math.unit(63, "meters")
  3534. },
  3535. {
  3536. name: "Megamacro",
  3537. height: math.unit(101, "miles"),
  3538. default: true
  3539. }
  3540. ]
  3541. ))
  3542. characterMakers.push(() => makeCharacter(
  3543. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3544. {
  3545. angled: {
  3546. height: math.unit(4, "meter"),
  3547. weight: math.unit(150, "kg"),
  3548. name: "Angled",
  3549. image: {
  3550. source: "./media/characters/talan/angled-sfw.svg",
  3551. bottom: 29 / 3734
  3552. }
  3553. },
  3554. angledNsfw: {
  3555. height: math.unit(4, "meter"),
  3556. weight: math.unit(150, "kg"),
  3557. name: "Angled (NSFW)",
  3558. image: {
  3559. source: "./media/characters/talan/angled-nsfw.svg",
  3560. bottom: 29 / 3734
  3561. }
  3562. },
  3563. frontNsfw: {
  3564. height: math.unit(4, "meter"),
  3565. weight: math.unit(150, "kg"),
  3566. name: "Front (NSFW)",
  3567. image: {
  3568. source: "./media/characters/talan/front-nsfw.svg",
  3569. bottom: 29 / 3734
  3570. }
  3571. },
  3572. sideNsfw: {
  3573. height: math.unit(4, "meter"),
  3574. weight: math.unit(150, "kg"),
  3575. name: "Side (NSFW)",
  3576. image: {
  3577. source: "./media/characters/talan/side-nsfw.svg",
  3578. bottom: 29 / 3734
  3579. }
  3580. },
  3581. back: {
  3582. height: math.unit(4, "meter"),
  3583. weight: math.unit(150, "kg"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/talan/back.svg"
  3587. }
  3588. },
  3589. dickBottom: {
  3590. height: math.unit(0.621, "meter"),
  3591. name: "Dick (Bottom)",
  3592. image: {
  3593. source: "./media/characters/talan/dick-bottom.svg"
  3594. }
  3595. },
  3596. dickTop: {
  3597. height: math.unit(0.621, "meter"),
  3598. name: "Dick (Top)",
  3599. image: {
  3600. source: "./media/characters/talan/dick-top.svg"
  3601. }
  3602. },
  3603. dickSide: {
  3604. height: math.unit(0.305, "meter"),
  3605. name: "Dick (Side)",
  3606. image: {
  3607. source: "./media/characters/talan/dick-side.svg"
  3608. }
  3609. },
  3610. dickFront: {
  3611. height: math.unit(0.305, "meter"),
  3612. name: "Dick (Front)",
  3613. image: {
  3614. source: "./media/characters/talan/dick-front.svg"
  3615. }
  3616. },
  3617. },
  3618. [
  3619. {
  3620. name: "Normal",
  3621. height: math.unit(4, "meters")
  3622. },
  3623. {
  3624. name: "Macro",
  3625. height: math.unit(100, "meters")
  3626. },
  3627. {
  3628. name: "Megamacro",
  3629. height: math.unit(2, "miles"),
  3630. default: true
  3631. },
  3632. {
  3633. name: "Gigamacro",
  3634. height: math.unit(5000, "miles")
  3635. },
  3636. {
  3637. name: "Teramacro",
  3638. height: math.unit(100, "parsecs")
  3639. }
  3640. ]
  3641. ))
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(2, "meter"),
  3647. weight: math.unit(90, "kg"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/gael'rathus/front.svg"
  3651. }
  3652. },
  3653. frontAlt: {
  3654. height: math.unit(2, "meter"),
  3655. weight: math.unit(90, "kg"),
  3656. name: "Front (alt)",
  3657. image: {
  3658. source: "./media/characters/gael'rathus/front-alt.svg"
  3659. }
  3660. },
  3661. frontAlt2: {
  3662. height: math.unit(2, "meter"),
  3663. weight: math.unit(90, "kg"),
  3664. name: "Front (alt 2)",
  3665. image: {
  3666. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3667. }
  3668. }
  3669. },
  3670. [
  3671. {
  3672. name: "Normal",
  3673. height: math.unit(9, "feet"),
  3674. default: true
  3675. },
  3676. {
  3677. name: "Large",
  3678. height: math.unit(25, "feet")
  3679. },
  3680. {
  3681. name: "Macro",
  3682. height: math.unit(0.25, "miles")
  3683. },
  3684. {
  3685. name: "Megamacro",
  3686. height: math.unit(10, "miles")
  3687. }
  3688. ]
  3689. ))
  3690. characterMakers.push(() => makeCharacter(
  3691. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3692. {
  3693. side: {
  3694. height: math.unit(2, "meter"),
  3695. weight: math.unit(140, "kg"),
  3696. name: "Side",
  3697. image: {
  3698. source: "./media/characters/sosha/side.svg",
  3699. extra: 1170/1006,
  3700. bottom: 94/1264
  3701. }
  3702. },
  3703. maw: {
  3704. height: math.unit(2.87, "feet"),
  3705. name: "Maw",
  3706. image: {
  3707. source: "./media/characters/sosha/maw.svg",
  3708. extra: 966/865,
  3709. bottom: 0/966
  3710. }
  3711. },
  3712. cooch: {
  3713. height: math.unit(5.6, "feet"),
  3714. name: "Cooch",
  3715. image: {
  3716. source: "./media/characters/sosha/cooch.svg"
  3717. }
  3718. },
  3719. },
  3720. [
  3721. {
  3722. name: "Normal",
  3723. height: math.unit(12, "feet"),
  3724. default: true
  3725. }
  3726. ]
  3727. ))
  3728. characterMakers.push(() => makeCharacter(
  3729. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3730. {
  3731. side: {
  3732. height: math.unit(5 + 5 / 12, "feet"),
  3733. weight: math.unit(170, "kg"),
  3734. name: "Side",
  3735. image: {
  3736. source: "./media/characters/runnola/side.svg",
  3737. extra: 741 / 448,
  3738. bottom: 0.05
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Small",
  3745. height: math.unit(3, "feet")
  3746. },
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(5 + 5 / 12, "feet"),
  3750. default: true
  3751. },
  3752. {
  3753. name: "Big",
  3754. height: math.unit(10, "feet")
  3755. },
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3760. {
  3761. front: {
  3762. height: math.unit(2, "meter"),
  3763. weight: math.unit(50, "kg"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/kurribird/front.svg",
  3767. bottom: 0.015
  3768. }
  3769. },
  3770. frontAlt: {
  3771. height: math.unit(1.5, "meter"),
  3772. weight: math.unit(50, "kg"),
  3773. name: "Front (Alt)",
  3774. image: {
  3775. source: "./media/characters/kurribird/front-alt.svg",
  3776. extra: 1.45
  3777. }
  3778. },
  3779. },
  3780. [
  3781. {
  3782. name: "Normal",
  3783. height: math.unit(7, "feet")
  3784. },
  3785. {
  3786. name: "Big",
  3787. height: math.unit(12, "feet"),
  3788. default: true
  3789. },
  3790. {
  3791. name: "Macro",
  3792. height: math.unit(1500, "feet")
  3793. },
  3794. {
  3795. name: "Megamacro",
  3796. height: math.unit(2, "miles")
  3797. }
  3798. ]
  3799. ))
  3800. characterMakers.push(() => makeCharacter(
  3801. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3802. {
  3803. front: {
  3804. height: math.unit(2, "meter"),
  3805. weight: math.unit(80, "kg"),
  3806. name: "Front",
  3807. image: {
  3808. source: "./media/characters/elbial/front.svg",
  3809. extra: 1643 / 1556,
  3810. bottom: 60.2 / 1696
  3811. }
  3812. },
  3813. side: {
  3814. height: math.unit(2, "meter"),
  3815. weight: math.unit(80, "kg"),
  3816. name: "Side",
  3817. image: {
  3818. source: "./media/characters/elbial/side.svg",
  3819. extra: 1601/1528,
  3820. bottom: 97/1698
  3821. }
  3822. },
  3823. back: {
  3824. height: math.unit(2, "meter"),
  3825. weight: math.unit(80, "kg"),
  3826. name: "Back",
  3827. image: {
  3828. source: "./media/characters/elbial/back.svg",
  3829. extra: 1653/1569,
  3830. bottom: 20/1673
  3831. }
  3832. },
  3833. frontDressed: {
  3834. height: math.unit(2, "meter"),
  3835. weight: math.unit(80, "kg"),
  3836. name: "Front (Dressed)",
  3837. image: {
  3838. source: "./media/characters/elbial/front-dressed.svg",
  3839. extra: 1638/1569,
  3840. bottom: 70/1708
  3841. }
  3842. },
  3843. genitals: {
  3844. height: math.unit(2 / 3.367, "meter"),
  3845. name: "Genitals",
  3846. image: {
  3847. source: "./media/characters/elbial/genitals.svg"
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Large",
  3854. height: math.unit(100, "feet")
  3855. },
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(500, "feet"),
  3859. default: true
  3860. },
  3861. {
  3862. name: "Megamacro",
  3863. height: math.unit(10, "miles")
  3864. },
  3865. {
  3866. name: "Gigamacro",
  3867. height: math.unit(25000, "miles")
  3868. },
  3869. {
  3870. name: "Full-Size",
  3871. height: math.unit(8000000, "gigaparsecs")
  3872. }
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3877. {
  3878. front: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(60, "kg"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/noah/front.svg"
  3884. }
  3885. },
  3886. talons: {
  3887. height: math.unit(0.315, "meter"),
  3888. name: "Talons",
  3889. image: {
  3890. source: "./media/characters/noah/talons.svg"
  3891. }
  3892. }
  3893. },
  3894. [
  3895. {
  3896. name: "Large",
  3897. height: math.unit(50, "feet")
  3898. },
  3899. {
  3900. name: "Macro",
  3901. height: math.unit(750, "feet"),
  3902. default: true
  3903. },
  3904. {
  3905. name: "Megamacro",
  3906. height: math.unit(50, "miles")
  3907. },
  3908. {
  3909. name: "Gigamacro",
  3910. height: math.unit(100000, "miles")
  3911. },
  3912. {
  3913. name: "Full-Size",
  3914. height: math.unit(3000000000, "miles")
  3915. }
  3916. ]
  3917. ))
  3918. characterMakers.push(() => makeCharacter(
  3919. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3920. {
  3921. front: {
  3922. height: math.unit(2, "meter"),
  3923. weight: math.unit(80, "kg"),
  3924. name: "Front",
  3925. image: {
  3926. source: "./media/characters/natalya/front.svg"
  3927. }
  3928. },
  3929. back: {
  3930. height: math.unit(2, "meter"),
  3931. weight: math.unit(80, "kg"),
  3932. name: "Back",
  3933. image: {
  3934. source: "./media/characters/natalya/back.svg"
  3935. }
  3936. }
  3937. },
  3938. [
  3939. {
  3940. name: "Normal",
  3941. height: math.unit(150, "feet"),
  3942. default: true
  3943. },
  3944. {
  3945. name: "Megamacro",
  3946. height: math.unit(5, "miles")
  3947. },
  3948. {
  3949. name: "Full-Size",
  3950. height: math.unit(600, "kiloparsecs")
  3951. }
  3952. ]
  3953. ))
  3954. characterMakers.push(() => makeCharacter(
  3955. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3956. {
  3957. front: {
  3958. height: math.unit(2, "meter"),
  3959. weight: math.unit(50, "kg"),
  3960. name: "Front",
  3961. image: {
  3962. source: "./media/characters/erestrebah/front.svg",
  3963. extra: 1262/1162,
  3964. bottom: 96/1358
  3965. }
  3966. },
  3967. back: {
  3968. height: math.unit(2, "meter"),
  3969. weight: math.unit(50, "kg"),
  3970. name: "Back",
  3971. image: {
  3972. source: "./media/characters/erestrebah/back.svg",
  3973. extra: 1257/1139,
  3974. bottom: 13/1270
  3975. }
  3976. },
  3977. wing: {
  3978. height: math.unit(2, "meter"),
  3979. weight: math.unit(50, "kg"),
  3980. name: "Wing",
  3981. image: {
  3982. source: "./media/characters/erestrebah/wing.svg",
  3983. extra: 1262/1162,
  3984. bottom: 96/1358
  3985. }
  3986. },
  3987. mouth: {
  3988. height: math.unit(0.39, "feet"),
  3989. name: "Mouth",
  3990. image: {
  3991. source: "./media/characters/erestrebah/mouth.svg"
  3992. }
  3993. }
  3994. },
  3995. [
  3996. {
  3997. name: "Normal",
  3998. height: math.unit(10, "feet")
  3999. },
  4000. {
  4001. name: "Large",
  4002. height: math.unit(50, "feet"),
  4003. default: true
  4004. },
  4005. {
  4006. name: "Macro",
  4007. height: math.unit(300, "feet")
  4008. },
  4009. {
  4010. name: "Macro+",
  4011. height: math.unit(750, "feet")
  4012. },
  4013. {
  4014. name: "Megamacro",
  4015. height: math.unit(3, "miles")
  4016. }
  4017. ]
  4018. ))
  4019. characterMakers.push(() => makeCharacter(
  4020. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4021. {
  4022. front: {
  4023. height: math.unit(2, "meter"),
  4024. weight: math.unit(80, "kg"),
  4025. name: "Front",
  4026. image: {
  4027. source: "./media/characters/jennifer/front.svg",
  4028. bottom: 0.11,
  4029. extra: 1.16
  4030. }
  4031. },
  4032. frontAlt: {
  4033. height: math.unit(2, "meter"),
  4034. weight: math.unit(80, "kg"),
  4035. name: "Front (Alt)",
  4036. image: {
  4037. source: "./media/characters/jennifer/front-alt.svg"
  4038. }
  4039. }
  4040. },
  4041. [
  4042. {
  4043. name: "Canon Height",
  4044. height: math.unit(120, "feet"),
  4045. default: true
  4046. },
  4047. {
  4048. name: "Macro+",
  4049. height: math.unit(300, "feet")
  4050. },
  4051. {
  4052. name: "Megamacro",
  4053. height: math.unit(20000, "feet")
  4054. }
  4055. ]
  4056. ))
  4057. characterMakers.push(() => makeCharacter(
  4058. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4059. {
  4060. front: {
  4061. height: math.unit(2, "meter"),
  4062. weight: math.unit(50, "kg"),
  4063. name: "Front",
  4064. image: {
  4065. source: "./media/characters/kalista/front.svg",
  4066. extra: 1314/1145,
  4067. bottom: 101/1415
  4068. }
  4069. },
  4070. back: {
  4071. height: math.unit(2, "meter"),
  4072. weight: math.unit(50, "kg"),
  4073. name: "Back",
  4074. image: {
  4075. source: "./media/characters/kalista/back.svg",
  4076. extra: 1366 / 1156,
  4077. bottom: 33.9 / 1362.78
  4078. }
  4079. }
  4080. },
  4081. [
  4082. {
  4083. name: "Uncomfortably Small",
  4084. height: math.unit(10, "feet")
  4085. },
  4086. {
  4087. name: "Small",
  4088. height: math.unit(30, "feet")
  4089. },
  4090. {
  4091. name: "Macro",
  4092. height: math.unit(100, "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Macro+",
  4097. height: math.unit(2000, "feet")
  4098. },
  4099. {
  4100. name: "True Form",
  4101. height: math.unit(8924, "miles")
  4102. }
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4107. {
  4108. front: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(120, "kg"),
  4111. name: "Front",
  4112. image: {
  4113. source: "./media/characters/ggv/front.svg"
  4114. }
  4115. },
  4116. side: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(120, "kg"),
  4119. name: "Side",
  4120. image: {
  4121. source: "./media/characters/ggv/side.svg"
  4122. }
  4123. }
  4124. },
  4125. [
  4126. {
  4127. name: "Extremely Puny",
  4128. height: math.unit(9 + 5 / 12, "feet")
  4129. },
  4130. {
  4131. name: "Horribly Small",
  4132. height: math.unit(47.7, "miles"),
  4133. default: true
  4134. },
  4135. {
  4136. name: "Reasonably Sized",
  4137. height: math.unit(25000, "parsecs")
  4138. },
  4139. {
  4140. name: "Slightly Uncompressed",
  4141. height: math.unit(7.77e31, "parsecs")
  4142. },
  4143. {
  4144. name: "Omniversal",
  4145. height: math.unit(1e300, "meters")
  4146. },
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(75, "lb"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/napalm/front.svg"
  4158. }
  4159. },
  4160. back: {
  4161. height: math.unit(2, "meter"),
  4162. weight: math.unit(75, "lb"),
  4163. name: "Back",
  4164. image: {
  4165. source: "./media/characters/napalm/back.svg"
  4166. }
  4167. }
  4168. },
  4169. [
  4170. {
  4171. name: "Standard",
  4172. height: math.unit(55, "feet"),
  4173. default: true
  4174. }
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(7 + 5 / 6, "feet"),
  4182. weight: math.unit(325, "lb"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/asana/front.svg",
  4186. extra: 1133 / 1060,
  4187. bottom: 15.2 / 1148.6
  4188. }
  4189. },
  4190. back: {
  4191. height: math.unit(7 + 5 / 6, "feet"),
  4192. weight: math.unit(325, "lb"),
  4193. name: "Back",
  4194. image: {
  4195. source: "./media/characters/asana/back.svg",
  4196. extra: 1114 / 1043,
  4197. bottom: 5 / 1120
  4198. }
  4199. },
  4200. dressedDark: {
  4201. height: math.unit(7 + 5 / 6, "feet"),
  4202. weight: math.unit(325, "lb"),
  4203. name: "Dressed (Dark)",
  4204. image: {
  4205. source: "./media/characters/asana/dressed-dark.svg",
  4206. extra: 1133 / 1060,
  4207. bottom: 15.2 / 1148.6
  4208. }
  4209. },
  4210. dressedLight: {
  4211. height: math.unit(7 + 5 / 6, "feet"),
  4212. weight: math.unit(325, "lb"),
  4213. name: "Dressed (Light)",
  4214. image: {
  4215. source: "./media/characters/asana/dressed-light.svg",
  4216. extra: 1133 / 1060,
  4217. bottom: 15.2 / 1148.6
  4218. }
  4219. },
  4220. },
  4221. [
  4222. {
  4223. name: "Standard",
  4224. height: math.unit(7 + 5 / 6, "feet"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Large",
  4229. height: math.unit(10, "meters")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(2500, "meters")
  4234. },
  4235. {
  4236. name: "Megamacro",
  4237. height: math.unit(5e6, "meters")
  4238. },
  4239. {
  4240. name: "Examacro",
  4241. height: math.unit(5e12, "lightyears")
  4242. },
  4243. {
  4244. name: "Max Size",
  4245. height: math.unit(1e31, "lightyears")
  4246. }
  4247. ]
  4248. ))
  4249. characterMakers.push(() => makeCharacter(
  4250. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4251. {
  4252. front: {
  4253. height: math.unit(2, "meter"),
  4254. weight: math.unit(60, "kg"),
  4255. name: "Front",
  4256. image: {
  4257. source: "./media/characters/ebony/front.svg",
  4258. bottom: 0.03,
  4259. extra: 1045 / 810 + 0.03
  4260. }
  4261. },
  4262. side: {
  4263. height: math.unit(2, "meter"),
  4264. weight: math.unit(60, "kg"),
  4265. name: "Side",
  4266. image: {
  4267. source: "./media/characters/ebony/side.svg",
  4268. bottom: 0.03,
  4269. extra: 1045 / 810 + 0.03
  4270. }
  4271. },
  4272. back: {
  4273. height: math.unit(2, "meter"),
  4274. weight: math.unit(60, "kg"),
  4275. name: "Back",
  4276. image: {
  4277. source: "./media/characters/ebony/back.svg",
  4278. bottom: 0.01,
  4279. extra: 1045 / 810 + 0.01
  4280. }
  4281. },
  4282. },
  4283. [
  4284. // TODO check why I did this lol
  4285. {
  4286. name: "Standard",
  4287. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4288. default: true
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(200, "feet")
  4293. },
  4294. {
  4295. name: "Gigamacro",
  4296. height: math.unit(13000, "km")
  4297. }
  4298. ]
  4299. ))
  4300. characterMakers.push(() => makeCharacter(
  4301. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4302. {
  4303. front: {
  4304. height: math.unit(6, "feet"),
  4305. weight: math.unit(175, "lb"),
  4306. name: "Front",
  4307. image: {
  4308. source: "./media/characters/mountain/front.svg",
  4309. extra: 972 / 955,
  4310. bottom: 64 / 1036.6
  4311. }
  4312. },
  4313. back: {
  4314. height: math.unit(6, "feet"),
  4315. weight: math.unit(175, "lb"),
  4316. name: "Back",
  4317. image: {
  4318. source: "./media/characters/mountain/back.svg",
  4319. extra: 970 / 950,
  4320. bottom: 28.25 / 999
  4321. }
  4322. },
  4323. },
  4324. [
  4325. {
  4326. name: "Large",
  4327. height: math.unit(20, "meters")
  4328. },
  4329. {
  4330. name: "Macro",
  4331. height: math.unit(300, "meters")
  4332. },
  4333. {
  4334. name: "Gigamacro",
  4335. height: math.unit(10000, "km"),
  4336. default: true
  4337. },
  4338. {
  4339. name: "Examacro",
  4340. height: math.unit(10e9, "lightyears")
  4341. }
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4346. {
  4347. front: {
  4348. height: math.unit(8, "feet"),
  4349. weight: math.unit(500, "lb"),
  4350. name: "Front",
  4351. image: {
  4352. source: "./media/characters/rick/front.svg"
  4353. }
  4354. }
  4355. },
  4356. [
  4357. {
  4358. name: "Normal",
  4359. height: math.unit(8, "feet"),
  4360. default: true
  4361. },
  4362. {
  4363. name: "Macro",
  4364. height: math.unit(5, "km")
  4365. }
  4366. ]
  4367. ))
  4368. characterMakers.push(() => makeCharacter(
  4369. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4370. {
  4371. front: {
  4372. height: math.unit(8, "feet"),
  4373. weight: math.unit(120, "lb"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/ona/front.svg"
  4377. }
  4378. },
  4379. frontAlt: {
  4380. height: math.unit(8, "feet"),
  4381. weight: math.unit(120, "lb"),
  4382. name: "Front (Alt)",
  4383. image: {
  4384. source: "./media/characters/ona/front-alt.svg"
  4385. }
  4386. },
  4387. back: {
  4388. height: math.unit(8, "feet"),
  4389. weight: math.unit(120, "lb"),
  4390. name: "Back",
  4391. image: {
  4392. source: "./media/characters/ona/back.svg"
  4393. }
  4394. },
  4395. foot: {
  4396. height: math.unit(1.1, "feet"),
  4397. name: "Foot",
  4398. image: {
  4399. source: "./media/characters/ona/foot.svg"
  4400. }
  4401. }
  4402. },
  4403. [
  4404. {
  4405. name: "Megamacro",
  4406. height: math.unit(70, "km"),
  4407. default: true
  4408. },
  4409. {
  4410. name: "Gigamacro",
  4411. height: math.unit(681818, "miles")
  4412. },
  4413. {
  4414. name: "Examacro",
  4415. height: math.unit(3800000, "lightyears")
  4416. },
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4421. {
  4422. front: {
  4423. height: math.unit(12, "feet"),
  4424. weight: math.unit(3000, "lb"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/mech/front.svg",
  4428. extra: 2900 / 2770,
  4429. bottom: 110 / 3010
  4430. }
  4431. },
  4432. back: {
  4433. height: math.unit(12, "feet"),
  4434. weight: math.unit(3000, "lb"),
  4435. name: "Back",
  4436. image: {
  4437. source: "./media/characters/mech/back.svg",
  4438. extra: 3011 / 2890,
  4439. bottom: 94 / 3105
  4440. }
  4441. },
  4442. maw: {
  4443. height: math.unit(3.07, "feet"),
  4444. name: "Maw",
  4445. image: {
  4446. source: "./media/characters/mech/maw.svg"
  4447. }
  4448. },
  4449. head: {
  4450. height: math.unit(3.07, "feet"),
  4451. name: "Head",
  4452. image: {
  4453. source: "./media/characters/mech/head.svg"
  4454. }
  4455. },
  4456. dick: {
  4457. height: math.unit(1.43, "feet"),
  4458. name: "Dick",
  4459. image: {
  4460. source: "./media/characters/mech/dick.svg"
  4461. }
  4462. },
  4463. },
  4464. [
  4465. {
  4466. name: "Normal",
  4467. height: math.unit(12, "feet")
  4468. },
  4469. {
  4470. name: "Macro",
  4471. height: math.unit(300, "feet"),
  4472. default: true
  4473. },
  4474. {
  4475. name: "Macro+",
  4476. height: math.unit(1500, "feet")
  4477. },
  4478. ]
  4479. ))
  4480. characterMakers.push(() => makeCharacter(
  4481. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4482. {
  4483. front: {
  4484. height: math.unit(1.3, "meter"),
  4485. weight: math.unit(30, "kg"),
  4486. name: "Front",
  4487. image: {
  4488. source: "./media/characters/gregory/front.svg",
  4489. }
  4490. }
  4491. },
  4492. [
  4493. {
  4494. name: "Normal",
  4495. height: math.unit(1.3, "meter"),
  4496. default: true
  4497. },
  4498. {
  4499. name: "Macro",
  4500. height: math.unit(20, "meter")
  4501. }
  4502. ]
  4503. ))
  4504. characterMakers.push(() => makeCharacter(
  4505. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4506. {
  4507. front: {
  4508. height: math.unit(2.8, "meter"),
  4509. weight: math.unit(200, "kg"),
  4510. name: "Front",
  4511. image: {
  4512. source: "./media/characters/elory/front.svg",
  4513. }
  4514. }
  4515. },
  4516. [
  4517. {
  4518. name: "Normal",
  4519. height: math.unit(2.8, "meter"),
  4520. default: true
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(38, "meter")
  4525. }
  4526. ]
  4527. ))
  4528. characterMakers.push(() => makeCharacter(
  4529. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4530. {
  4531. front: {
  4532. height: math.unit(470, "feet"),
  4533. weight: math.unit(924, "tons"),
  4534. name: "Front",
  4535. image: {
  4536. source: "./media/characters/angelpatamon/front.svg",
  4537. }
  4538. }
  4539. },
  4540. [
  4541. {
  4542. name: "Normal",
  4543. height: math.unit(470, "feet"),
  4544. default: true
  4545. },
  4546. {
  4547. name: "Deity Size I",
  4548. height: math.unit(28651.2, "km")
  4549. },
  4550. {
  4551. name: "Deity Size II",
  4552. height: math.unit(171907.2, "km")
  4553. }
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4558. {
  4559. side: {
  4560. height: math.unit(7.2, "meter"),
  4561. weight: math.unit(8.2, "tons"),
  4562. name: "Side",
  4563. image: {
  4564. source: "./media/characters/cryae/side.svg",
  4565. extra: 3500 / 1500
  4566. }
  4567. }
  4568. },
  4569. [
  4570. {
  4571. name: "Normal",
  4572. height: math.unit(7.2, "meter"),
  4573. default: true
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(175, "lb"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/xera/front.svg",
  4586. extra: 2377 / 1972,
  4587. bottom: 75.5 / 2452
  4588. }
  4589. },
  4590. side: {
  4591. height: math.unit(6, "feet"),
  4592. weight: math.unit(175, "lb"),
  4593. name: "Side",
  4594. image: {
  4595. source: "./media/characters/xera/side.svg",
  4596. extra: 2345 / 2019,
  4597. bottom: 39.7 / 2384
  4598. }
  4599. },
  4600. back: {
  4601. height: math.unit(6, "feet"),
  4602. weight: math.unit(175, "lb"),
  4603. name: "Back",
  4604. image: {
  4605. source: "./media/characters/xera/back.svg",
  4606. extra: 2095 / 1984,
  4607. bottom: 67 / 2166
  4608. }
  4609. },
  4610. },
  4611. [
  4612. {
  4613. name: "Small",
  4614. height: math.unit(10, "feet")
  4615. },
  4616. {
  4617. name: "Macro",
  4618. height: math.unit(500, "meters"),
  4619. default: true
  4620. },
  4621. {
  4622. name: "Macro+",
  4623. height: math.unit(10, "km")
  4624. },
  4625. {
  4626. name: "Gigamacro",
  4627. height: math.unit(25000, "km")
  4628. },
  4629. {
  4630. name: "Teramacro",
  4631. height: math.unit(3e6, "km")
  4632. }
  4633. ]
  4634. ))
  4635. characterMakers.push(() => makeCharacter(
  4636. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4637. {
  4638. front: {
  4639. height: math.unit(6, "feet"),
  4640. weight: math.unit(175, "lb"),
  4641. name: "Front",
  4642. image: {
  4643. source: "./media/characters/nebula/front.svg",
  4644. extra: 2566 / 2362,
  4645. bottom: 81 / 2644
  4646. }
  4647. }
  4648. },
  4649. [
  4650. {
  4651. name: "Small",
  4652. height: math.unit(4.5, "meters")
  4653. },
  4654. {
  4655. name: "Macro",
  4656. height: math.unit(1500, "meters"),
  4657. default: true
  4658. },
  4659. {
  4660. name: "Megamacro",
  4661. height: math.unit(150, "km")
  4662. },
  4663. {
  4664. name: "Gigamacro",
  4665. height: math.unit(27000, "km")
  4666. }
  4667. ]
  4668. ))
  4669. characterMakers.push(() => makeCharacter(
  4670. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4671. {
  4672. front: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(225, "lb"),
  4675. name: "Front",
  4676. image: {
  4677. source: "./media/characters/abysgar/front.svg",
  4678. extra: 1739/1614,
  4679. bottom: 71/1810
  4680. }
  4681. },
  4682. frontNsfw: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(225, "lb"),
  4685. name: "Front (NSFW)",
  4686. image: {
  4687. source: "./media/characters/abysgar/front-nsfw.svg",
  4688. extra: 1739/1614,
  4689. bottom: 71/1810
  4690. }
  4691. },
  4692. back: {
  4693. height: math.unit(4.6, "feet"),
  4694. weight: math.unit(225, "lb"),
  4695. name: "Back",
  4696. image: {
  4697. source: "./media/characters/abysgar/back.svg",
  4698. extra: 1384/1327,
  4699. bottom: 0/1384
  4700. }
  4701. },
  4702. head: {
  4703. height: math.unit(1.25, "feet"),
  4704. name: "Head",
  4705. image: {
  4706. source: "./media/characters/abysgar/head.svg",
  4707. extra: 669/569,
  4708. bottom: 0/669
  4709. }
  4710. },
  4711. },
  4712. [
  4713. {
  4714. name: "Small",
  4715. height: math.unit(4.5, "meters")
  4716. },
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(1250, "meters"),
  4720. default: true
  4721. },
  4722. {
  4723. name: "Megamacro",
  4724. height: math.unit(125, "km")
  4725. },
  4726. {
  4727. name: "Gigamacro",
  4728. height: math.unit(26000, "km")
  4729. }
  4730. ]
  4731. ))
  4732. characterMakers.push(() => makeCharacter(
  4733. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4734. {
  4735. front: {
  4736. height: math.unit(6, "feet"),
  4737. weight: math.unit(180, "lb"),
  4738. name: "Front",
  4739. image: {
  4740. source: "./media/characters/yakuz/front.svg"
  4741. }
  4742. }
  4743. },
  4744. [
  4745. {
  4746. name: "Small",
  4747. height: math.unit(5, "meters")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(1500, "meters"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Megamacro",
  4756. height: math.unit(200, "km")
  4757. },
  4758. {
  4759. name: "Gigamacro",
  4760. height: math.unit(100000, "km")
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(6, "feet"),
  4769. weight: math.unit(175, "lb"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/mirova/front.svg",
  4773. extra: 3334 / 3071,
  4774. bottom: 42 / 3375.6
  4775. }
  4776. }
  4777. },
  4778. [
  4779. {
  4780. name: "Small",
  4781. height: math.unit(5, "meters")
  4782. },
  4783. {
  4784. name: "Macro",
  4785. height: math.unit(900, "meters"),
  4786. default: true
  4787. },
  4788. {
  4789. name: "Megamacro",
  4790. height: math.unit(135, "km")
  4791. },
  4792. {
  4793. name: "Gigamacro",
  4794. height: math.unit(20000, "km")
  4795. }
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4800. {
  4801. side: {
  4802. height: math.unit(28.35, "feet"),
  4803. weight: math.unit(99.75, "tons"),
  4804. name: "Side",
  4805. image: {
  4806. source: "./media/characters/asana-mech/side.svg",
  4807. extra: 923 / 699,
  4808. bottom: 50 / 975
  4809. }
  4810. },
  4811. chaingun: {
  4812. height: math.unit(7, "feet"),
  4813. weight: math.unit(2400, "lb"),
  4814. name: "Chaingun",
  4815. image: {
  4816. source: "./media/characters/asana-mech/chaingun.svg"
  4817. }
  4818. },
  4819. laser: {
  4820. height: math.unit(7.12, "feet"),
  4821. weight: math.unit(2000, "lb"),
  4822. name: "Laser",
  4823. image: {
  4824. source: "./media/characters/asana-mech/laser.svg"
  4825. }
  4826. },
  4827. },
  4828. [
  4829. {
  4830. name: "Normal",
  4831. height: math.unit(28.35, "feet"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Macro",
  4836. height: math.unit(2500, "feet")
  4837. },
  4838. {
  4839. name: "Megamacro",
  4840. height: math.unit(25, "miles")
  4841. },
  4842. {
  4843. name: "Examacro",
  4844. height: math.unit(6e8, "lightyears")
  4845. },
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4850. {
  4851. front: {
  4852. height: math.unit(5, "meters"),
  4853. weight: math.unit(1000, "kg"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/asche/front.svg",
  4857. extra: 1258 / 1190,
  4858. bottom: 47 / 1305
  4859. }
  4860. },
  4861. frontUnderwear: {
  4862. height: math.unit(5, "meters"),
  4863. weight: math.unit(1000, "kg"),
  4864. name: "Front (Underwear)",
  4865. image: {
  4866. source: "./media/characters/asche/front-underwear.svg",
  4867. extra: 1258 / 1190,
  4868. bottom: 47 / 1305
  4869. }
  4870. },
  4871. frontDressed: {
  4872. height: math.unit(5, "meters"),
  4873. weight: math.unit(1000, "kg"),
  4874. name: "Front (Dressed)",
  4875. image: {
  4876. source: "./media/characters/asche/front-dressed.svg",
  4877. extra: 1258 / 1190,
  4878. bottom: 47 / 1305
  4879. }
  4880. },
  4881. frontArmor: {
  4882. height: math.unit(5, "meters"),
  4883. weight: math.unit(1000, "kg"),
  4884. name: "Front (Armored)",
  4885. image: {
  4886. source: "./media/characters/asche/front-armored.svg",
  4887. extra: 1374 / 1308,
  4888. bottom: 23 / 1397
  4889. }
  4890. },
  4891. mp724: {
  4892. height: math.unit(0.96, "meters"),
  4893. weight: math.unit(38, "kg"),
  4894. name: "H&K MP724",
  4895. image: {
  4896. source: "./media/characters/asche/h&k-mp724.svg"
  4897. }
  4898. },
  4899. side: {
  4900. height: math.unit(5, "meters"),
  4901. weight: math.unit(1000, "kg"),
  4902. name: "Side",
  4903. image: {
  4904. source: "./media/characters/asche/side.svg",
  4905. extra: 1717 / 1609,
  4906. bottom: 0.005
  4907. }
  4908. },
  4909. back: {
  4910. height: math.unit(5, "meters"),
  4911. weight: math.unit(1000, "kg"),
  4912. name: "Back",
  4913. image: {
  4914. source: "./media/characters/asche/back.svg",
  4915. extra: 1570 / 1501
  4916. }
  4917. },
  4918. },
  4919. [
  4920. {
  4921. name: "DEFCON 5",
  4922. height: math.unit(5, "meters")
  4923. },
  4924. {
  4925. name: "DEFCON 4",
  4926. height: math.unit(500, "meters"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "DEFCON 3",
  4931. height: math.unit(5, "km")
  4932. },
  4933. {
  4934. name: "DEFCON 2",
  4935. height: math.unit(500, "km")
  4936. },
  4937. {
  4938. name: "DEFCON 1",
  4939. height: math.unit(500000, "km")
  4940. },
  4941. {
  4942. name: "DEFCON 0",
  4943. height: math.unit(3, "gigaparsecs")
  4944. },
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4949. {
  4950. front: {
  4951. height: math.unit(2, "meters"),
  4952. weight: math.unit(76, "kg"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/gale/front.svg"
  4956. }
  4957. },
  4958. frontAlt1: {
  4959. height: math.unit(2, "meters"),
  4960. weight: math.unit(76, "kg"),
  4961. name: "Front (Alt 1)",
  4962. image: {
  4963. source: "./media/characters/gale/front-alt-1.svg"
  4964. }
  4965. },
  4966. frontAlt2: {
  4967. height: math.unit(2, "meters"),
  4968. weight: math.unit(76, "kg"),
  4969. name: "Front (Alt 2)",
  4970. image: {
  4971. source: "./media/characters/gale/front-alt-2.svg"
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(7, "feet")
  4979. },
  4980. {
  4981. name: "Macro",
  4982. height: math.unit(150, "feet"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "Macro+",
  4987. height: math.unit(300, "feet")
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(5 + 10/12, "feet"),
  4996. weight: math.unit(67, "kg"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/draylen/front.svg",
  5000. extra: 832/777,
  5001. bottom: 85/917
  5002. }
  5003. }
  5004. },
  5005. [
  5006. {
  5007. name: "Normal",
  5008. height: math.unit(5 + 10/12, "feet")
  5009. },
  5010. {
  5011. name: "Macro",
  5012. height: math.unit(150, "feet"),
  5013. default: true
  5014. }
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5019. {
  5020. front: {
  5021. height: math.unit(7 + 9 / 12, "feet"),
  5022. weight: math.unit(379, "lbs"),
  5023. name: "Front",
  5024. image: {
  5025. source: "./media/characters/chez/front.svg"
  5026. }
  5027. },
  5028. side: {
  5029. height: math.unit(7 + 9 / 12, "feet"),
  5030. weight: math.unit(379, "lbs"),
  5031. name: "Side",
  5032. image: {
  5033. source: "./media/characters/chez/side.svg"
  5034. }
  5035. }
  5036. },
  5037. [
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(7 + 9 / 12, "feet"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "God King",
  5045. height: math.unit(9750000, "meters")
  5046. }
  5047. ]
  5048. ))
  5049. characterMakers.push(() => makeCharacter(
  5050. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5051. {
  5052. front: {
  5053. height: math.unit(6, "feet"),
  5054. weight: math.unit(275, "lbs"),
  5055. name: "Front",
  5056. image: {
  5057. source: "./media/characters/kaylum/front.svg",
  5058. bottom: 0.01,
  5059. extra: 1166 / 1031
  5060. }
  5061. },
  5062. frontWingless: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(275, "lbs"),
  5065. name: "Front (Wingless)",
  5066. image: {
  5067. source: "./media/characters/kaylum/front-wingless.svg",
  5068. bottom: 0.01,
  5069. extra: 1117 / 1031
  5070. }
  5071. }
  5072. },
  5073. [
  5074. {
  5075. name: "Normal",
  5076. height: math.unit(3.05, "meters")
  5077. },
  5078. {
  5079. name: "Master",
  5080. height: math.unit(5.5, "meters")
  5081. },
  5082. {
  5083. name: "Rampage",
  5084. height: math.unit(19, "meters")
  5085. },
  5086. {
  5087. name: "Macro Lite",
  5088. height: math.unit(37, "meters")
  5089. },
  5090. {
  5091. name: "Hyper Predator",
  5092. height: math.unit(61, "meters")
  5093. },
  5094. {
  5095. name: "Macro",
  5096. height: math.unit(138, "meters"),
  5097. default: true
  5098. }
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5103. {
  5104. front: {
  5105. height: math.unit(5 + 5 / 12, "feet"),
  5106. weight: math.unit(120, "lbs"),
  5107. name: "Front",
  5108. image: {
  5109. source: "./media/characters/geta/front.svg",
  5110. extra: 1003/933,
  5111. bottom: 21/1024
  5112. }
  5113. },
  5114. paw: {
  5115. height: math.unit(0.35, "feet"),
  5116. name: "Paw",
  5117. image: {
  5118. source: "./media/characters/geta/paw.svg"
  5119. }
  5120. },
  5121. },
  5122. [
  5123. {
  5124. name: "Micro",
  5125. height: math.unit(3, "inches"),
  5126. default: true
  5127. },
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(5 + 5 / 12, "feet")
  5131. }
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5136. {
  5137. front: {
  5138. height: math.unit(6, "feet"),
  5139. weight: math.unit(300, "lbs"),
  5140. name: "Front",
  5141. image: {
  5142. source: "./media/characters/tyrnn/front.svg"
  5143. }
  5144. }
  5145. },
  5146. [
  5147. {
  5148. name: "Main Height",
  5149. height: math.unit(355, "feet"),
  5150. default: true
  5151. },
  5152. {
  5153. name: "Fave. Height",
  5154. height: math.unit(2400, "feet")
  5155. }
  5156. ]
  5157. ))
  5158. characterMakers.push(() => makeCharacter(
  5159. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5160. {
  5161. front: {
  5162. height: math.unit(6, "feet"),
  5163. weight: math.unit(300, "lbs"),
  5164. name: "Front",
  5165. image: {
  5166. source: "./media/characters/appledectomy/front.svg"
  5167. }
  5168. }
  5169. },
  5170. [
  5171. {
  5172. name: "Macro",
  5173. height: math.unit(2500, "feet")
  5174. },
  5175. {
  5176. name: "Megamacro",
  5177. height: math.unit(50, "miles"),
  5178. default: true
  5179. },
  5180. {
  5181. name: "Gigamacro",
  5182. height: math.unit(5000, "miles")
  5183. },
  5184. {
  5185. name: "Teramacro",
  5186. height: math.unit(250000, "miles")
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5192. {
  5193. front: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(200, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/vulpes/front.svg",
  5199. extra: 573 / 543,
  5200. bottom: 0.033
  5201. }
  5202. },
  5203. side: {
  5204. height: math.unit(6, "feet"),
  5205. weight: math.unit(200, "lbs"),
  5206. name: "Side",
  5207. image: {
  5208. source: "./media/characters/vulpes/side.svg",
  5209. extra: 577 / 549,
  5210. bottom: 11 / 588
  5211. }
  5212. },
  5213. back: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(200, "lbs"),
  5216. name: "Back",
  5217. image: {
  5218. source: "./media/characters/vulpes/back.svg",
  5219. extra: 573 / 549,
  5220. bottom: 20 / 593
  5221. }
  5222. },
  5223. feet: {
  5224. height: math.unit(1.276, "feet"),
  5225. name: "Feet",
  5226. image: {
  5227. source: "./media/characters/vulpes/feet.svg"
  5228. }
  5229. },
  5230. maw: {
  5231. height: math.unit(1.18, "feet"),
  5232. name: "Maw",
  5233. image: {
  5234. source: "./media/characters/vulpes/maw.svg"
  5235. }
  5236. },
  5237. },
  5238. [
  5239. {
  5240. name: "Micro",
  5241. height: math.unit(2, "inches")
  5242. },
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(6.3, "feet")
  5246. },
  5247. {
  5248. name: "Macro",
  5249. height: math.unit(850, "feet")
  5250. },
  5251. {
  5252. name: "Megamacro",
  5253. height: math.unit(7500, "feet"),
  5254. default: true
  5255. },
  5256. {
  5257. name: "Gigamacro",
  5258. height: math.unit(570000, "miles")
  5259. }
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5264. {
  5265. front: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(210, "lbs"),
  5268. name: "Front",
  5269. image: {
  5270. source: "./media/characters/rain-fallen/front.svg"
  5271. }
  5272. },
  5273. side: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(210, "lbs"),
  5276. name: "Side",
  5277. image: {
  5278. source: "./media/characters/rain-fallen/side.svg"
  5279. }
  5280. },
  5281. back: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(210, "lbs"),
  5284. name: "Back",
  5285. image: {
  5286. source: "./media/characters/rain-fallen/back.svg"
  5287. }
  5288. },
  5289. feral: {
  5290. height: math.unit(9, "feet"),
  5291. weight: math.unit(700, "lbs"),
  5292. name: "Feral",
  5293. image: {
  5294. source: "./media/characters/rain-fallen/feral.svg"
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Meddling with Mortals",
  5301. height: math.unit(8 + 8/12, "feet")
  5302. },
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(5, "meter")
  5306. },
  5307. {
  5308. name: "Macro",
  5309. height: math.unit(150, "meter"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Megamacro",
  5314. height: math.unit(278e6, "meter")
  5315. },
  5316. {
  5317. name: "Gigamacro",
  5318. height: math.unit(2e9, "meter")
  5319. },
  5320. {
  5321. name: "Teramacro",
  5322. height: math.unit(8e12, "meter")
  5323. },
  5324. {
  5325. name: "Devourer",
  5326. height: math.unit(14, "zettameters")
  5327. },
  5328. {
  5329. name: "Scarlet King",
  5330. height: math.unit(18, "yottameters")
  5331. },
  5332. {
  5333. name: "Void",
  5334. height: math.unit(1e88, "yottameters")
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5340. {
  5341. standing: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(180, "lbs"),
  5344. name: "Standing",
  5345. image: {
  5346. source: "./media/characters/zaakira/standing.svg",
  5347. extra: 1599/1504,
  5348. bottom: 39/1638
  5349. }
  5350. },
  5351. laying: {
  5352. height: math.unit(3.3, "feet"),
  5353. weight: math.unit(180, "lbs"),
  5354. name: "Laying",
  5355. image: {
  5356. source: "./media/characters/zaakira/laying.svg"
  5357. }
  5358. },
  5359. },
  5360. [
  5361. {
  5362. name: "Normal",
  5363. height: math.unit(12, "feet")
  5364. },
  5365. {
  5366. name: "Macro",
  5367. height: math.unit(279, "feet"),
  5368. default: true
  5369. }
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5374. {
  5375. femSfw: {
  5376. height: math.unit(8, "feet"),
  5377. weight: math.unit(350, "lb"),
  5378. name: "Fem",
  5379. image: {
  5380. source: "./media/characters/sigvald/fem-sfw.svg",
  5381. extra: 182 / 164,
  5382. bottom: 8.7 / 190.5
  5383. }
  5384. },
  5385. femNsfw: {
  5386. height: math.unit(8, "feet"),
  5387. weight: math.unit(350, "lb"),
  5388. name: "Fem (NSFW)",
  5389. image: {
  5390. source: "./media/characters/sigvald/fem-nsfw.svg",
  5391. extra: 182 / 164,
  5392. bottom: 8.7 / 190.5
  5393. }
  5394. },
  5395. maleNsfw: {
  5396. height: math.unit(8, "feet"),
  5397. weight: math.unit(350, "lb"),
  5398. name: "Male (NSFW)",
  5399. image: {
  5400. source: "./media/characters/sigvald/male-nsfw.svg",
  5401. extra: 182 / 164,
  5402. bottom: 8.7 / 190.5
  5403. }
  5404. },
  5405. hermNsfw: {
  5406. height: math.unit(8, "feet"),
  5407. weight: math.unit(350, "lb"),
  5408. name: "Herm (NSFW)",
  5409. image: {
  5410. source: "./media/characters/sigvald/herm-nsfw.svg",
  5411. extra: 182 / 164,
  5412. bottom: 8.7 / 190.5
  5413. }
  5414. },
  5415. dick: {
  5416. height: math.unit(2.36, "feet"),
  5417. name: "Dick",
  5418. image: {
  5419. source: "./media/characters/sigvald/dick.svg"
  5420. }
  5421. },
  5422. eye: {
  5423. height: math.unit(0.31, "feet"),
  5424. name: "Eye",
  5425. image: {
  5426. source: "./media/characters/sigvald/eye.svg"
  5427. }
  5428. },
  5429. mouth: {
  5430. height: math.unit(0.92, "feet"),
  5431. name: "Mouth",
  5432. image: {
  5433. source: "./media/characters/sigvald/mouth.svg"
  5434. }
  5435. },
  5436. paws: {
  5437. height: math.unit(2.2, "feet"),
  5438. name: "Paws",
  5439. image: {
  5440. source: "./media/characters/sigvald/paws.svg"
  5441. }
  5442. }
  5443. },
  5444. [
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(8, "feet")
  5448. },
  5449. {
  5450. name: "Large",
  5451. height: math.unit(12, "feet")
  5452. },
  5453. {
  5454. name: "Larger",
  5455. height: math.unit(20, "feet")
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(150, "feet")
  5460. },
  5461. {
  5462. name: "Macro+",
  5463. height: math.unit(200, "feet"),
  5464. default: true
  5465. },
  5466. ]
  5467. ))
  5468. characterMakers.push(() => makeCharacter(
  5469. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5470. {
  5471. side: {
  5472. height: math.unit(12, "feet"),
  5473. weight: math.unit(2000, "kg"),
  5474. name: "Side",
  5475. image: {
  5476. source: "./media/characters/scott/side.svg",
  5477. extra: 754 / 724,
  5478. bottom: 0.069
  5479. }
  5480. },
  5481. upright: {
  5482. height: math.unit(12, "feet"),
  5483. weight: math.unit(2000, "kg"),
  5484. name: "Upright",
  5485. image: {
  5486. source: "./media/characters/scott/upright.svg",
  5487. extra: 3881 / 3722,
  5488. bottom: 0.05
  5489. }
  5490. },
  5491. },
  5492. [
  5493. {
  5494. name: "Normal",
  5495. height: math.unit(12, "feet"),
  5496. default: true
  5497. },
  5498. ]
  5499. ))
  5500. characterMakers.push(() => makeCharacter(
  5501. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5502. {
  5503. side: {
  5504. height: math.unit(8, "meters"),
  5505. weight: math.unit(84755, "lbs"),
  5506. name: "Side",
  5507. image: {
  5508. source: "./media/characters/tobias/side.svg",
  5509. extra: 1474 / 1096,
  5510. bottom: 38.9 / 1513.1235
  5511. }
  5512. },
  5513. },
  5514. [
  5515. {
  5516. name: "Normal",
  5517. height: math.unit(8, "meters"),
  5518. default: true
  5519. },
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5524. {
  5525. front: {
  5526. height: math.unit(5.5, "feet"),
  5527. weight: math.unit(400, "lbs"),
  5528. name: "Front",
  5529. image: {
  5530. source: "./media/characters/kieran/front.svg",
  5531. extra: 2694 / 2364,
  5532. bottom: 217 / 2908
  5533. }
  5534. },
  5535. side: {
  5536. height: math.unit(5.5, "feet"),
  5537. weight: math.unit(400, "lbs"),
  5538. name: "Side",
  5539. image: {
  5540. source: "./media/characters/kieran/side.svg",
  5541. extra: 875 / 777,
  5542. bottom: 84.6 / 959
  5543. }
  5544. },
  5545. },
  5546. [
  5547. {
  5548. name: "Normal",
  5549. height: math.unit(5.5, "feet"),
  5550. default: true
  5551. },
  5552. ]
  5553. ))
  5554. characterMakers.push(() => makeCharacter(
  5555. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5556. {
  5557. side: {
  5558. height: math.unit(2, "meters"),
  5559. weight: math.unit(70, "kg"),
  5560. name: "Side",
  5561. image: {
  5562. source: "./media/characters/sanya/side.svg",
  5563. bottom: 0.02,
  5564. extra: 1.02
  5565. }
  5566. },
  5567. },
  5568. [
  5569. {
  5570. name: "Small",
  5571. height: math.unit(2, "meters")
  5572. },
  5573. {
  5574. name: "Normal",
  5575. height: math.unit(3, "meters")
  5576. },
  5577. {
  5578. name: "Macro",
  5579. height: math.unit(16, "meters"),
  5580. default: true
  5581. },
  5582. ]
  5583. ))
  5584. characterMakers.push(() => makeCharacter(
  5585. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5586. {
  5587. front: {
  5588. height: math.unit(2, "meters"),
  5589. weight: math.unit(120, "kg"),
  5590. name: "Front",
  5591. image: {
  5592. source: "./media/characters/miranda/front.svg",
  5593. extra: 195 / 185,
  5594. bottom: 10.9 / 206.5
  5595. }
  5596. },
  5597. back: {
  5598. height: math.unit(2, "meters"),
  5599. weight: math.unit(120, "kg"),
  5600. name: "Back",
  5601. image: {
  5602. source: "./media/characters/miranda/back.svg",
  5603. extra: 201 / 193,
  5604. bottom: 2.3 / 203.7
  5605. }
  5606. },
  5607. },
  5608. [
  5609. {
  5610. name: "Normal",
  5611. height: math.unit(10, "feet"),
  5612. default: true
  5613. }
  5614. ]
  5615. ))
  5616. characterMakers.push(() => makeCharacter(
  5617. { name: "James", species: ["deer"], tags: ["anthro"] },
  5618. {
  5619. side: {
  5620. height: math.unit(2, "meters"),
  5621. weight: math.unit(100, "kg"),
  5622. name: "Front",
  5623. image: {
  5624. source: "./media/characters/james/front.svg",
  5625. extra: 10 / 8.5
  5626. }
  5627. },
  5628. },
  5629. [
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(8.5, "feet"),
  5633. default: true
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5639. {
  5640. side: {
  5641. height: math.unit(9.5, "feet"),
  5642. weight: math.unit(2500, "lbs"),
  5643. name: "Side",
  5644. image: {
  5645. source: "./media/characters/heather/side.svg"
  5646. }
  5647. },
  5648. },
  5649. [
  5650. {
  5651. name: "Normal",
  5652. height: math.unit(9.5, "feet"),
  5653. default: true
  5654. }
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5659. {
  5660. side: {
  5661. height: math.unit(6.5, "feet"),
  5662. weight: math.unit(400, "lbs"),
  5663. name: "Side",
  5664. image: {
  5665. source: "./media/characters/lukas/side.svg",
  5666. extra: 7.25 / 6.5
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Normal",
  5673. height: math.unit(6.5, "feet"),
  5674. default: true
  5675. }
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5680. {
  5681. side: {
  5682. height: math.unit(5, "feet"),
  5683. weight: math.unit(3000, "lbs"),
  5684. name: "Side",
  5685. image: {
  5686. source: "./media/characters/louise/side.svg"
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(5, "feet"),
  5694. default: true
  5695. }
  5696. ]
  5697. ))
  5698. characterMakers.push(() => makeCharacter(
  5699. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5700. {
  5701. side: {
  5702. height: math.unit(6, "feet"),
  5703. weight: math.unit(150, "lbs"),
  5704. name: "Side",
  5705. image: {
  5706. source: "./media/characters/ramona/side.svg",
  5707. extra: 871/854,
  5708. bottom: 41/912
  5709. }
  5710. },
  5711. },
  5712. [
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(6 + 4/12, "feet")
  5716. },
  5717. {
  5718. name: "Minimacro",
  5719. height: math.unit(5.3, "meters"),
  5720. default: true
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(20, "stories")
  5725. },
  5726. {
  5727. name: "Macro+",
  5728. height: math.unit(50, "stories")
  5729. },
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5734. {
  5735. standing: {
  5736. height: math.unit(5.75, "feet"),
  5737. weight: math.unit(160, "lbs"),
  5738. name: "Standing",
  5739. image: {
  5740. source: "./media/characters/deerpuff/standing.svg",
  5741. extra: 682 / 624
  5742. }
  5743. },
  5744. sitting: {
  5745. height: math.unit(5.75 / 1.79, "feet"),
  5746. weight: math.unit(160, "lbs"),
  5747. name: "Sitting",
  5748. image: {
  5749. source: "./media/characters/deerpuff/sitting.svg",
  5750. bottom: 44 / 400,
  5751. extra: 1
  5752. }
  5753. },
  5754. taurLaying: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(400, "lbs"),
  5757. name: "Taur (Laying)",
  5758. image: {
  5759. source: "./media/characters/deerpuff/taur-laying.svg"
  5760. }
  5761. },
  5762. },
  5763. [
  5764. {
  5765. name: "Puffball",
  5766. height: math.unit(6, "inches")
  5767. },
  5768. {
  5769. name: "Normalpuff",
  5770. height: math.unit(5.75, "feet")
  5771. },
  5772. {
  5773. name: "Macropuff",
  5774. height: math.unit(1500, "feet"),
  5775. default: true
  5776. },
  5777. {
  5778. name: "Megapuff",
  5779. height: math.unit(500, "miles")
  5780. },
  5781. {
  5782. name: "Gigapuff",
  5783. height: math.unit(250000, "miles")
  5784. },
  5785. {
  5786. name: "Omegapuff",
  5787. height: math.unit(1000, "lightyears")
  5788. },
  5789. ]
  5790. ))
  5791. characterMakers.push(() => makeCharacter(
  5792. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5793. {
  5794. stomping: {
  5795. height: math.unit(6, "feet"),
  5796. weight: math.unit(170, "lbs"),
  5797. name: "Stomping",
  5798. image: {
  5799. source: "./media/characters/vivian/stomping.svg"
  5800. }
  5801. },
  5802. sitting: {
  5803. height: math.unit(6 / 1.75, "feet"),
  5804. weight: math.unit(170, "lbs"),
  5805. name: "Sitting",
  5806. image: {
  5807. source: "./media/characters/vivian/sitting.svg",
  5808. bottom: 1 / 6.4,
  5809. extra: 1,
  5810. }
  5811. },
  5812. },
  5813. [
  5814. {
  5815. name: "Normal",
  5816. height: math.unit(7, "feet"),
  5817. default: true
  5818. },
  5819. {
  5820. name: "Macro",
  5821. height: math.unit(10, "stories")
  5822. },
  5823. {
  5824. name: "Macro+",
  5825. height: math.unit(30, "stories")
  5826. },
  5827. {
  5828. name: "Megamacro",
  5829. height: math.unit(10, "miles")
  5830. },
  5831. {
  5832. name: "Megamacro+",
  5833. height: math.unit(2750000, "meters")
  5834. },
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(160, "lbs"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/prince/front.svg",
  5846. extra: 3400 / 3000
  5847. }
  5848. },
  5849. jumping: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(160, "lbs"),
  5852. name: "Jumping",
  5853. image: {
  5854. source: "./media/characters/prince/jump.svg",
  5855. extra: 2555 / 2134
  5856. }
  5857. },
  5858. },
  5859. [
  5860. {
  5861. name: "Normal",
  5862. height: math.unit(7.75, "feet"),
  5863. default: true
  5864. },
  5865. {
  5866. name: "Not cute",
  5867. height: math.unit(17, "feet")
  5868. },
  5869. {
  5870. name: "I said NOT",
  5871. height: math.unit(91, "feet")
  5872. },
  5873. {
  5874. name: "Please stop",
  5875. height: math.unit(560, "feet")
  5876. },
  5877. {
  5878. name: "What have you done",
  5879. height: math.unit(2200, "feet")
  5880. },
  5881. {
  5882. name: "Deer God",
  5883. height: math.unit(3.6, "miles")
  5884. },
  5885. ]
  5886. ))
  5887. characterMakers.push(() => makeCharacter(
  5888. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5889. {
  5890. standing: {
  5891. height: math.unit(6, "feet"),
  5892. weight: math.unit(300, "lbs"),
  5893. name: "Standing",
  5894. image: {
  5895. source: "./media/characters/psymon/standing.svg",
  5896. extra: 1888 / 1810,
  5897. bottom: 0.05
  5898. }
  5899. },
  5900. slithering: {
  5901. height: math.unit(6, "feet"),
  5902. weight: math.unit(300, "lbs"),
  5903. name: "Slithering",
  5904. image: {
  5905. source: "./media/characters/psymon/slithering.svg",
  5906. extra: 1330 / 1224
  5907. }
  5908. },
  5909. slitheringAlt: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(300, "lbs"),
  5912. name: "Slithering (Alt)",
  5913. image: {
  5914. source: "./media/characters/psymon/slithering-alt.svg",
  5915. extra: 1330 / 1224
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(11.25, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Large",
  5927. height: math.unit(27, "feet")
  5928. },
  5929. {
  5930. name: "Giant",
  5931. height: math.unit(87, "feet")
  5932. },
  5933. {
  5934. name: "Macro",
  5935. height: math.unit(365, "feet")
  5936. },
  5937. {
  5938. name: "Megamacro",
  5939. height: math.unit(3, "miles")
  5940. },
  5941. {
  5942. name: "World Serpent",
  5943. height: math.unit(8000, "miles")
  5944. },
  5945. ]
  5946. ))
  5947. characterMakers.push(() => makeCharacter(
  5948. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5949. {
  5950. front: {
  5951. height: math.unit(6, "feet"),
  5952. weight: math.unit(180, "lbs"),
  5953. name: "Front",
  5954. image: {
  5955. source: "./media/characters/daimos/front.svg",
  5956. extra: 4160 / 3897,
  5957. bottom: 0.021
  5958. }
  5959. }
  5960. },
  5961. [
  5962. {
  5963. name: "Normal",
  5964. height: math.unit(8, "feet"),
  5965. default: true
  5966. },
  5967. {
  5968. name: "Big Dog",
  5969. height: math.unit(22, "feet")
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(127, "feet")
  5974. },
  5975. {
  5976. name: "Megamacro",
  5977. height: math.unit(3600, "feet")
  5978. },
  5979. ]
  5980. ))
  5981. characterMakers.push(() => makeCharacter(
  5982. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5983. {
  5984. side: {
  5985. height: math.unit(6, "feet"),
  5986. weight: math.unit(180, "lbs"),
  5987. name: "Side",
  5988. image: {
  5989. source: "./media/characters/blake/side.svg",
  5990. extra: 1212 / 1120,
  5991. bottom: 0.05
  5992. }
  5993. },
  5994. crouched: {
  5995. height: math.unit(6 * 0.57, "feet"),
  5996. weight: math.unit(180, "lbs"),
  5997. name: "Crouched",
  5998. image: {
  5999. source: "./media/characters/blake/crouched.svg",
  6000. extra: 840 / 587,
  6001. bottom: 0.04
  6002. }
  6003. },
  6004. bent: {
  6005. height: math.unit(6 * 0.75, "feet"),
  6006. weight: math.unit(180, "lbs"),
  6007. name: "Bent",
  6008. image: {
  6009. source: "./media/characters/blake/bent.svg",
  6010. extra: 592 / 544,
  6011. bottom: 0.035
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(8 + 1 / 6, "feet"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Big Backside",
  6023. height: math.unit(37, "feet")
  6024. },
  6025. {
  6026. name: "Subway Shredder",
  6027. height: math.unit(72, "feet")
  6028. },
  6029. {
  6030. name: "City Carver",
  6031. height: math.unit(1675, "feet")
  6032. },
  6033. {
  6034. name: "Tectonic Tweaker",
  6035. height: math.unit(2300, "miles")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(180, "lbs"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/guisetto/front.svg",
  6048. extra: 856 / 817,
  6049. bottom: 0.06
  6050. }
  6051. },
  6052. airborne: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(180, "lbs"),
  6055. name: "Airborne",
  6056. image: {
  6057. source: "./media/characters/guisetto/airborne.svg",
  6058. extra: 584 / 525
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(10 + 11 / 12, "feet"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Large",
  6070. height: math.unit(35, "feet")
  6071. },
  6072. {
  6073. name: "Macro",
  6074. height: math.unit(475, "feet")
  6075. },
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6080. {
  6081. front: {
  6082. height: math.unit(6, "feet"),
  6083. weight: math.unit(180, "lbs"),
  6084. name: "Front",
  6085. image: {
  6086. source: "./media/characters/luxor/front.svg",
  6087. extra: 2940 / 2152
  6088. }
  6089. },
  6090. back: {
  6091. height: math.unit(6, "feet"),
  6092. weight: math.unit(180, "lbs"),
  6093. name: "Back",
  6094. image: {
  6095. source: "./media/characters/luxor/back.svg",
  6096. extra: 1083 / 960
  6097. }
  6098. },
  6099. },
  6100. [
  6101. {
  6102. name: "Normal",
  6103. height: math.unit(5 + 5 / 6, "feet"),
  6104. default: true
  6105. },
  6106. {
  6107. name: "Lamp",
  6108. height: math.unit(50, "feet")
  6109. },
  6110. {
  6111. name: "Lämp",
  6112. height: math.unit(300, "feet")
  6113. },
  6114. {
  6115. name: "The sun is a lamp",
  6116. height: math.unit(250000, "miles")
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6122. {
  6123. front: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(50, "lbs"),
  6126. name: "Front",
  6127. image: {
  6128. source: "./media/characters/huoyan/front.svg"
  6129. }
  6130. },
  6131. side: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(180, "lbs"),
  6134. name: "Side",
  6135. image: {
  6136. source: "./media/characters/huoyan/side.svg"
  6137. }
  6138. },
  6139. },
  6140. [
  6141. {
  6142. name: "Chef",
  6143. height: math.unit(9, "feet")
  6144. },
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(65, "feet"),
  6148. default: true
  6149. },
  6150. {
  6151. name: "Macro",
  6152. height: math.unit(780, "feet")
  6153. },
  6154. {
  6155. name: "Flaming Mountain",
  6156. height: math.unit(4.8, "miles")
  6157. },
  6158. {
  6159. name: "Celestial",
  6160. height: math.unit(765000, "miles")
  6161. },
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6166. {
  6167. front: {
  6168. height: math.unit(5 + 3 / 4, "feet"),
  6169. weight: math.unit(120, "lbs"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/tails/front.svg"
  6173. }
  6174. }
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(5 + 3 / 4, "feet"),
  6180. default: true
  6181. }
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6186. {
  6187. front: {
  6188. height: math.unit(4, "feet"),
  6189. weight: math.unit(50, "lbs"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/rainy/front.svg"
  6193. }
  6194. }
  6195. },
  6196. [
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(800, "feet"),
  6200. default: true
  6201. }
  6202. ]
  6203. ))
  6204. characterMakers.push(() => makeCharacter(
  6205. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6206. {
  6207. front: {
  6208. height: math.unit(6, "feet"),
  6209. weight: math.unit(150, "lbs"),
  6210. name: "Front",
  6211. image: {
  6212. source: "./media/characters/rainier/front.svg"
  6213. }
  6214. }
  6215. },
  6216. [
  6217. {
  6218. name: "Micro",
  6219. height: math.unit(2, "mm"),
  6220. default: true
  6221. }
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(8 + 4/12, "feet"),
  6229. weight: math.unit(450, "kilograms"),
  6230. volume: math.unit(5, "cups"),
  6231. name: "Front",
  6232. image: {
  6233. source: "./media/characters/andy-renard/front.svg",
  6234. extra: 1839/1726,
  6235. bottom: 134/1973
  6236. }
  6237. },
  6238. back: {
  6239. height: math.unit(8 + 4/12, "feet"),
  6240. weight: math.unit(450, "kilograms"),
  6241. volume: math.unit(5, "cups"),
  6242. name: "Back",
  6243. image: {
  6244. source: "./media/characters/andy-renard/back.svg",
  6245. extra: 1838/1710,
  6246. bottom: 105/1943
  6247. }
  6248. },
  6249. },
  6250. [
  6251. {
  6252. name: "Tall",
  6253. height: math.unit(8 + 4/12, "feet")
  6254. },
  6255. {
  6256. name: "Mini Macro",
  6257. height: math.unit(15, "feet"),
  6258. default: true
  6259. },
  6260. {
  6261. name: "Macro",
  6262. height: math.unit(100, "feet")
  6263. },
  6264. {
  6265. name: "Mega Macro",
  6266. height: math.unit(1000, "feet")
  6267. },
  6268. {
  6269. name: "Giga Macro",
  6270. height: math.unit(10, "miles")
  6271. },
  6272. {
  6273. name: "God Macro",
  6274. height: math.unit(1, "multiverse")
  6275. },
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6280. {
  6281. front: {
  6282. height: math.unit(6, "feet"),
  6283. weight: math.unit(210, "lbs"),
  6284. name: "Front",
  6285. image: {
  6286. source: "./media/characters/cimmaron/front-sfw.svg",
  6287. extra: 701 / 676,
  6288. bottom: 0.046
  6289. }
  6290. },
  6291. back: {
  6292. height: math.unit(6, "feet"),
  6293. weight: math.unit(210, "lbs"),
  6294. name: "Back",
  6295. image: {
  6296. source: "./media/characters/cimmaron/back-sfw.svg",
  6297. extra: 701 / 676,
  6298. bottom: 0.046
  6299. }
  6300. },
  6301. frontNsfw: {
  6302. height: math.unit(6, "feet"),
  6303. weight: math.unit(210, "lbs"),
  6304. name: "Front (NSFW)",
  6305. image: {
  6306. source: "./media/characters/cimmaron/front-nsfw.svg",
  6307. extra: 701 / 676,
  6308. bottom: 0.046
  6309. }
  6310. },
  6311. backNsfw: {
  6312. height: math.unit(6, "feet"),
  6313. weight: math.unit(210, "lbs"),
  6314. name: "Back (NSFW)",
  6315. image: {
  6316. source: "./media/characters/cimmaron/back-nsfw.svg",
  6317. extra: 701 / 676,
  6318. bottom: 0.046
  6319. }
  6320. },
  6321. dick: {
  6322. height: math.unit(1.714, "feet"),
  6323. name: "Dick",
  6324. image: {
  6325. source: "./media/characters/cimmaron/dick.svg"
  6326. }
  6327. },
  6328. },
  6329. [
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(6, "feet"),
  6333. default: true
  6334. },
  6335. {
  6336. name: "Macro Mayor",
  6337. height: math.unit(350, "meters")
  6338. },
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6343. {
  6344. front: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(200, "lbs"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/akari/front.svg",
  6350. extra: 962 / 901,
  6351. bottom: 0.04
  6352. }
  6353. }
  6354. },
  6355. [
  6356. {
  6357. name: "Micro",
  6358. height: math.unit(5, "inches"),
  6359. default: true
  6360. },
  6361. {
  6362. name: "Normal",
  6363. height: math.unit(7, "feet")
  6364. },
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6369. {
  6370. front: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(140, "lbs"),
  6373. name: "Front",
  6374. image: {
  6375. source: "./media/characters/cynosura/front.svg",
  6376. extra: 896 / 847
  6377. }
  6378. },
  6379. back: {
  6380. height: math.unit(6, "feet"),
  6381. weight: math.unit(140, "lbs"),
  6382. name: "Back",
  6383. image: {
  6384. source: "./media/characters/cynosura/back.svg",
  6385. extra: 1365 / 1250
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Micro",
  6392. height: math.unit(4, "inches")
  6393. },
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(5.75, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Tall",
  6401. height: math.unit(10, "feet")
  6402. },
  6403. {
  6404. name: "Big",
  6405. height: math.unit(20, "feet")
  6406. },
  6407. {
  6408. name: "Macro",
  6409. height: math.unit(50, "feet")
  6410. },
  6411. ]
  6412. ))
  6413. characterMakers.push(() => makeCharacter(
  6414. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6415. {
  6416. front: {
  6417. height: math.unit(13 + 2/12, "feet"),
  6418. weight: math.unit(800, "kg"),
  6419. name: "Front",
  6420. image: {
  6421. source: "./media/characters/gin/front.svg",
  6422. extra: 1312/1191,
  6423. bottom: 45/1357
  6424. }
  6425. },
  6426. mouth: {
  6427. height: math.unit(2.39 * 1.8, "feet"),
  6428. name: "Mouth",
  6429. image: {
  6430. source: "./media/characters/gin/mouth.svg"
  6431. }
  6432. },
  6433. hand: {
  6434. height: math.unit(1.57 * 2.19, "feet"),
  6435. name: "Hand",
  6436. image: {
  6437. source: "./media/characters/gin/hand.svg"
  6438. }
  6439. },
  6440. foot: {
  6441. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6442. name: "Foot",
  6443. image: {
  6444. source: "./media/characters/gin/foot.svg"
  6445. }
  6446. },
  6447. sole: {
  6448. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6449. name: "Sole",
  6450. image: {
  6451. source: "./media/characters/gin/sole.svg"
  6452. }
  6453. },
  6454. },
  6455. [
  6456. {
  6457. name: "Very Small",
  6458. height: math.unit(13 + 2 / 12, "feet")
  6459. },
  6460. {
  6461. name: "Micro",
  6462. height: math.unit(600, "miles")
  6463. },
  6464. {
  6465. name: "Regular",
  6466. height: math.unit(20, "earths"),
  6467. default: true
  6468. },
  6469. {
  6470. name: "Macro",
  6471. height: math.unit(2.2, "solarradii")
  6472. },
  6473. {
  6474. name: "Teramacro",
  6475. height: math.unit(1.2, "galaxies")
  6476. },
  6477. {
  6478. name: "Omegamacro",
  6479. height: math.unit(200, "universes")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(6 + 1 / 6, "feet"),
  6488. weight: math.unit(178, "lbs"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/guy/front.svg"
  6492. }
  6493. }
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(6 + 1 / 6, "feet"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Large",
  6503. height: math.unit(25 + 7 / 12, "feet")
  6504. },
  6505. {
  6506. name: "Macro",
  6507. height: math.unit(60 + 9 / 12, "feet")
  6508. },
  6509. {
  6510. name: "Macro+",
  6511. height: math.unit(246, "feet")
  6512. },
  6513. {
  6514. name: "Macro++",
  6515. height: math.unit(878, "feet")
  6516. }
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(9, "feet"),
  6524. weight: math.unit(800, "lbs"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/tiberius/front.svg",
  6528. extra: 2295 / 2071
  6529. }
  6530. },
  6531. back: {
  6532. height: math.unit(9, "feet"),
  6533. weight: math.unit(800, "lbs"),
  6534. name: "Back",
  6535. image: {
  6536. source: "./media/characters/tiberius/back.svg",
  6537. extra: 2373 / 2160
  6538. }
  6539. },
  6540. },
  6541. [
  6542. {
  6543. name: "Normal",
  6544. height: math.unit(9, "feet"),
  6545. default: true
  6546. }
  6547. ]
  6548. ))
  6549. characterMakers.push(() => makeCharacter(
  6550. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6551. {
  6552. front: {
  6553. height: math.unit(6, "feet"),
  6554. weight: math.unit(600, "lbs"),
  6555. name: "Front",
  6556. image: {
  6557. source: "./media/characters/surgo/front.svg",
  6558. extra: 3591 / 2227
  6559. }
  6560. },
  6561. back: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(600, "lbs"),
  6564. name: "Back",
  6565. image: {
  6566. source: "./media/characters/surgo/back.svg",
  6567. extra: 3557 / 2228
  6568. }
  6569. },
  6570. laying: {
  6571. height: math.unit(6 * 0.85, "feet"),
  6572. weight: math.unit(600, "lbs"),
  6573. name: "Laying",
  6574. image: {
  6575. source: "./media/characters/surgo/laying.svg"
  6576. }
  6577. },
  6578. },
  6579. [
  6580. {
  6581. name: "Normal",
  6582. height: math.unit(6, "feet"),
  6583. default: true
  6584. }
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6589. {
  6590. side: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(150, "lbs"),
  6593. name: "Side",
  6594. image: {
  6595. source: "./media/characters/cibus/side.svg",
  6596. extra: 800 / 400
  6597. }
  6598. },
  6599. },
  6600. [
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(6, "feet"),
  6604. default: true
  6605. }
  6606. ]
  6607. ))
  6608. characterMakers.push(() => makeCharacter(
  6609. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6610. {
  6611. front: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(240, "lbs"),
  6614. name: "Front",
  6615. image: {
  6616. source: "./media/characters/nibbles/front.svg"
  6617. }
  6618. },
  6619. side: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(240, "lbs"),
  6622. name: "Side",
  6623. image: {
  6624. source: "./media/characters/nibbles/side.svg"
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(9, "feet"),
  6632. default: true
  6633. }
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6638. {
  6639. side: {
  6640. height: math.unit(5 + 1 / 6, "feet"),
  6641. weight: math.unit(130, "lbs"),
  6642. name: "Side",
  6643. image: {
  6644. source: "./media/characters/rikky/side.svg",
  6645. extra: 851 / 801
  6646. }
  6647. },
  6648. },
  6649. [
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(5 + 1 / 6, "feet")
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(152, "feet"),
  6657. default: true
  6658. },
  6659. {
  6660. name: "Megamacro",
  6661. height: math.unit(7, "miles")
  6662. }
  6663. ]
  6664. ))
  6665. characterMakers.push(() => makeCharacter(
  6666. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6667. {
  6668. side: {
  6669. height: math.unit(370, "cm"),
  6670. weight: math.unit(350, "lbs"),
  6671. name: "Side",
  6672. image: {
  6673. source: "./media/characters/malfressa/side.svg"
  6674. }
  6675. },
  6676. walking: {
  6677. height: math.unit(370, "cm"),
  6678. weight: math.unit(350, "lbs"),
  6679. name: "Walking",
  6680. image: {
  6681. source: "./media/characters/malfressa/walking.svg"
  6682. }
  6683. },
  6684. feral: {
  6685. height: math.unit(2500, "cm"),
  6686. weight: math.unit(100000, "lbs"),
  6687. name: "Feral",
  6688. image: {
  6689. source: "./media/characters/malfressa/feral.svg",
  6690. extra: 2108 / 837,
  6691. bottom: 0.02
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(370, "cm")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(300, "meters"),
  6703. default: true
  6704. }
  6705. ]
  6706. ))
  6707. characterMakers.push(() => makeCharacter(
  6708. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6709. {
  6710. front: {
  6711. height: math.unit(6, "feet"),
  6712. weight: math.unit(60, "kg"),
  6713. name: "Front",
  6714. image: {
  6715. source: "./media/characters/jaro/front.svg",
  6716. extra: 845/817,
  6717. bottom: 45/890
  6718. }
  6719. },
  6720. back: {
  6721. height: math.unit(6, "feet"),
  6722. weight: math.unit(60, "kg"),
  6723. name: "Back",
  6724. image: {
  6725. source: "./media/characters/jaro/back.svg",
  6726. extra: 847/817,
  6727. bottom: 34/881
  6728. }
  6729. },
  6730. },
  6731. [
  6732. {
  6733. name: "Micro",
  6734. height: math.unit(7, "inches")
  6735. },
  6736. {
  6737. name: "Normal",
  6738. height: math.unit(5.5, "feet"),
  6739. default: true
  6740. },
  6741. {
  6742. name: "Minimacro",
  6743. height: math.unit(20, "feet")
  6744. },
  6745. {
  6746. name: "Macro",
  6747. height: math.unit(200, "meters")
  6748. }
  6749. ]
  6750. ))
  6751. characterMakers.push(() => makeCharacter(
  6752. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6753. {
  6754. front: {
  6755. height: math.unit(6, "feet"),
  6756. weight: math.unit(195, "lb"),
  6757. name: "Front",
  6758. image: {
  6759. source: "./media/characters/rogue/front.svg"
  6760. }
  6761. },
  6762. },
  6763. [
  6764. {
  6765. name: "Macro",
  6766. height: math.unit(90, "feet"),
  6767. default: true
  6768. },
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6773. {
  6774. standing: {
  6775. height: math.unit(5 + 8 / 12, "feet"),
  6776. weight: math.unit(140, "lb"),
  6777. name: "Standing",
  6778. image: {
  6779. source: "./media/characters/piper/standing.svg",
  6780. extra: 1440/1284,
  6781. bottom: 66/1506
  6782. }
  6783. },
  6784. running: {
  6785. height: math.unit(5 + 8 / 12, "feet"),
  6786. weight: math.unit(140, "lb"),
  6787. name: "Running",
  6788. image: {
  6789. source: "./media/characters/piper/running.svg",
  6790. extra: 3948/3655,
  6791. bottom: 0/3948
  6792. }
  6793. },
  6794. sole: {
  6795. height: math.unit(0.81, "feet"),
  6796. weight: math.unit(2, "kg"),
  6797. name: "Sole",
  6798. image: {
  6799. source: "./media/characters/piper/sole.svg"
  6800. }
  6801. },
  6802. nipple: {
  6803. height: math.unit(0.25, "feet"),
  6804. weight: math.unit(1.5, "lb"),
  6805. name: "Nipple",
  6806. image: {
  6807. source: "./media/characters/piper/nipple.svg"
  6808. }
  6809. },
  6810. head: {
  6811. height: math.unit(1.1, "feet"),
  6812. name: "Head",
  6813. image: {
  6814. source: "./media/characters/piper/head.svg"
  6815. }
  6816. },
  6817. },
  6818. [
  6819. {
  6820. name: "Micro",
  6821. height: math.unit(2, "inches")
  6822. },
  6823. {
  6824. name: "Normal",
  6825. height: math.unit(5 + 8 / 12, "feet")
  6826. },
  6827. {
  6828. name: "Macro",
  6829. height: math.unit(250, "feet"),
  6830. default: true
  6831. },
  6832. {
  6833. name: "Megamacro",
  6834. height: math.unit(7, "miles")
  6835. },
  6836. ]
  6837. ))
  6838. characterMakers.push(() => makeCharacter(
  6839. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6840. {
  6841. front: {
  6842. height: math.unit(6, "feet"),
  6843. weight: math.unit(220, "lb"),
  6844. name: "Front",
  6845. image: {
  6846. source: "./media/characters/gemini/front.svg"
  6847. }
  6848. },
  6849. back: {
  6850. height: math.unit(6, "feet"),
  6851. weight: math.unit(220, "lb"),
  6852. name: "Back",
  6853. image: {
  6854. source: "./media/characters/gemini/back.svg"
  6855. }
  6856. },
  6857. kneeling: {
  6858. height: math.unit(6 / 1.5, "feet"),
  6859. weight: math.unit(220, "lb"),
  6860. name: "Kneeling",
  6861. image: {
  6862. source: "./media/characters/gemini/kneeling.svg",
  6863. bottom: 0.02
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Macro",
  6870. height: math.unit(300, "meters"),
  6871. default: true
  6872. },
  6873. {
  6874. name: "Megamacro",
  6875. height: math.unit(6900, "meters")
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6881. {
  6882. anthro: {
  6883. height: math.unit(2.35, "meters"),
  6884. weight: math.unit(73, "kg"),
  6885. name: "Anthro",
  6886. image: {
  6887. source: "./media/characters/alicia/anthro.svg",
  6888. extra: 2571 / 2385,
  6889. bottom: 75 / 2648
  6890. }
  6891. },
  6892. paw: {
  6893. height: math.unit(1.32, "feet"),
  6894. name: "Paw",
  6895. image: {
  6896. source: "./media/characters/alicia/paw.svg"
  6897. }
  6898. },
  6899. feral: {
  6900. height: math.unit(1.69, "meters"),
  6901. weight: math.unit(73, "kg"),
  6902. name: "Feral",
  6903. image: {
  6904. source: "./media/characters/alicia/feral.svg",
  6905. extra: 2123 / 1715,
  6906. bottom: 222 / 2349
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "Normal",
  6913. height: math.unit(2.35, "meters")
  6914. },
  6915. {
  6916. name: "Macro",
  6917. height: math.unit(60, "meters"),
  6918. default: true
  6919. },
  6920. {
  6921. name: "Megamacro",
  6922. height: math.unit(10000, "kilometers")
  6923. },
  6924. ]
  6925. ))
  6926. characterMakers.push(() => makeCharacter(
  6927. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6928. {
  6929. front: {
  6930. height: math.unit(7, "feet"),
  6931. weight: math.unit(250, "lbs"),
  6932. name: "Front",
  6933. image: {
  6934. source: "./media/characters/archy/front.svg"
  6935. }
  6936. }
  6937. },
  6938. [
  6939. {
  6940. name: "Micro",
  6941. height: math.unit(1, "inch")
  6942. },
  6943. {
  6944. name: "Shorty",
  6945. height: math.unit(5, "feet")
  6946. },
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(7, "feet")
  6950. },
  6951. {
  6952. name: "Macro",
  6953. height: math.unit(600, "meters"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Megamacro",
  6958. height: math.unit(1, "mile")
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(1.65, "meters"),
  6967. weight: math.unit(74, "kg"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/berri/front.svg",
  6971. extra: 857 / 837,
  6972. bottom: 18 / 877
  6973. }
  6974. },
  6975. bum: {
  6976. height: math.unit(1.46, "feet"),
  6977. name: "Bum",
  6978. image: {
  6979. source: "./media/characters/berri/bum.svg"
  6980. }
  6981. },
  6982. mouth: {
  6983. height: math.unit(0.44, "feet"),
  6984. name: "Mouth",
  6985. image: {
  6986. source: "./media/characters/berri/mouth.svg"
  6987. }
  6988. },
  6989. paw: {
  6990. height: math.unit(0.826, "feet"),
  6991. name: "Paw",
  6992. image: {
  6993. source: "./media/characters/berri/paw.svg"
  6994. }
  6995. },
  6996. },
  6997. [
  6998. {
  6999. name: "Normal",
  7000. height: math.unit(1.65, "meters")
  7001. },
  7002. {
  7003. name: "Macro",
  7004. height: math.unit(60, "m"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Megamacro",
  7009. height: math.unit(9.213, "km")
  7010. },
  7011. {
  7012. name: "Planet Eater",
  7013. height: math.unit(489, "megameters")
  7014. },
  7015. {
  7016. name: "Teramacro",
  7017. height: math.unit(2471635000000, "meters")
  7018. },
  7019. {
  7020. name: "Examacro",
  7021. height: math.unit(8.0624e+26, "meters")
  7022. }
  7023. ]
  7024. ))
  7025. characterMakers.push(() => makeCharacter(
  7026. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7027. {
  7028. front: {
  7029. height: math.unit(1.72, "meters"),
  7030. weight: math.unit(68, "kg"),
  7031. name: "Front",
  7032. image: {
  7033. source: "./media/characters/lexi/front.svg"
  7034. }
  7035. }
  7036. },
  7037. [
  7038. {
  7039. name: "Very Smol",
  7040. height: math.unit(10, "mm")
  7041. },
  7042. {
  7043. name: "Micro",
  7044. height: math.unit(6.8, "cm"),
  7045. default: true
  7046. },
  7047. {
  7048. name: "Normal",
  7049. height: math.unit(1.72, "m")
  7050. }
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7055. {
  7056. front: {
  7057. height: math.unit(1.69, "meters"),
  7058. weight: math.unit(68, "kg"),
  7059. name: "Front",
  7060. image: {
  7061. source: "./media/characters/martin/front.svg",
  7062. extra: 596 / 581
  7063. }
  7064. }
  7065. },
  7066. [
  7067. {
  7068. name: "Micro",
  7069. height: math.unit(6.85, "cm"),
  7070. default: true
  7071. },
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(1.69, "m")
  7075. }
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7080. {
  7081. front: {
  7082. height: math.unit(1.69, "meters"),
  7083. weight: math.unit(68, "kg"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/juno/front.svg"
  7087. }
  7088. }
  7089. },
  7090. [
  7091. {
  7092. name: "Micro",
  7093. height: math.unit(7, "cm")
  7094. },
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(1.89, "m")
  7098. },
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(353, "meters"),
  7102. default: true
  7103. }
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7108. {
  7109. front: {
  7110. height: math.unit(1.93, "meters"),
  7111. weight: math.unit(83, "kg"),
  7112. name: "Front",
  7113. image: {
  7114. source: "./media/characters/samantha/front.svg"
  7115. }
  7116. },
  7117. frontClothed: {
  7118. height: math.unit(1.93, "meters"),
  7119. weight: math.unit(83, "kg"),
  7120. name: "Front (Clothed)",
  7121. image: {
  7122. source: "./media/characters/samantha/front-clothed.svg"
  7123. }
  7124. },
  7125. back: {
  7126. height: math.unit(1.93, "meters"),
  7127. weight: math.unit(83, "kg"),
  7128. name: "Back",
  7129. image: {
  7130. source: "./media/characters/samantha/back.svg"
  7131. }
  7132. },
  7133. },
  7134. [
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(1.93, "m")
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(74, "meters"),
  7142. default: true
  7143. },
  7144. {
  7145. name: "Macro+",
  7146. height: math.unit(223, "meters"),
  7147. },
  7148. {
  7149. name: "Megamacro",
  7150. height: math.unit(8381, "meters"),
  7151. },
  7152. {
  7153. name: "Megamacro+",
  7154. height: math.unit(12000, "kilometers")
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(1.92, "meters"),
  7163. weight: math.unit(80, "kg"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/dr-clay/front.svg"
  7167. }
  7168. },
  7169. frontClothed: {
  7170. height: math.unit(1.92, "meters"),
  7171. weight: math.unit(80, "kg"),
  7172. name: "Front (Clothed)",
  7173. image: {
  7174. source: "./media/characters/dr-clay/front-clothed.svg"
  7175. }
  7176. }
  7177. },
  7178. [
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(1.92, "m")
  7182. },
  7183. {
  7184. name: "Macro",
  7185. height: math.unit(214, "meters"),
  7186. default: true
  7187. },
  7188. {
  7189. name: "Macro+",
  7190. height: math.unit(12.237, "meters"),
  7191. },
  7192. {
  7193. name: "Megamacro",
  7194. height: math.unit(557, "megameters"),
  7195. },
  7196. {
  7197. name: "Unimaginable",
  7198. height: math.unit(120e9, "lightyears")
  7199. },
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7204. {
  7205. front: {
  7206. height: math.unit(2, "meters"),
  7207. weight: math.unit(80, "kg"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7211. }
  7212. }
  7213. },
  7214. [
  7215. {
  7216. name: "Teramacro",
  7217. height: math.unit(500000, "lightyears"),
  7218. default: true
  7219. },
  7220. ]
  7221. ))
  7222. characterMakers.push(() => makeCharacter(
  7223. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7224. {
  7225. crux: {
  7226. height: math.unit(2, "meters"),
  7227. weight: math.unit(150, "kg"),
  7228. name: "Crux",
  7229. image: {
  7230. source: "./media/characters/vemus/crux.svg",
  7231. extra: 1074/936,
  7232. bottom: 23/1097
  7233. }
  7234. },
  7235. skunkTanuki: {
  7236. height: math.unit(2, "meters"),
  7237. weight: math.unit(150, "kg"),
  7238. name: "Skunk-Tanuki",
  7239. image: {
  7240. source: "./media/characters/vemus/skunk-tanuki.svg",
  7241. extra: 926/893,
  7242. bottom: 20/946
  7243. }
  7244. },
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(4, "meters"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Big",
  7254. height: math.unit(8, "meters")
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(100, "meters")
  7259. },
  7260. {
  7261. name: "Macro+",
  7262. height: math.unit(1500, "meters")
  7263. },
  7264. {
  7265. name: "Stellar",
  7266. height: math.unit(14e8, "meters")
  7267. },
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(2, "meters"),
  7275. weight: math.unit(70, "kg"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/beherit/front.svg",
  7279. extra: 1234/1109,
  7280. bottom: 55/1289
  7281. }
  7282. }
  7283. },
  7284. [
  7285. {
  7286. name: "Normal",
  7287. height: math.unit(6, "feet")
  7288. },
  7289. {
  7290. name: "Lorg",
  7291. height: math.unit(25, "feet"),
  7292. default: true
  7293. },
  7294. {
  7295. name: "Lorger",
  7296. height: math.unit(75, "feet")
  7297. },
  7298. {
  7299. name: "Macro",
  7300. height: math.unit(200, "meters")
  7301. },
  7302. ]
  7303. ))
  7304. characterMakers.push(() => makeCharacter(
  7305. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7306. {
  7307. front: {
  7308. height: math.unit(2, "meters"),
  7309. weight: math.unit(150, "kg"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/everett/front.svg",
  7313. extra: 1017/866,
  7314. bottom: 86/1103
  7315. }
  7316. },
  7317. paw: {
  7318. height: math.unit(2 / 3.6, "meters"),
  7319. name: "Paw",
  7320. image: {
  7321. source: "./media/characters/everett/paw.svg"
  7322. }
  7323. },
  7324. },
  7325. [
  7326. {
  7327. name: "Normal",
  7328. height: math.unit(15, "feet"),
  7329. default: true
  7330. },
  7331. {
  7332. name: "Lorg",
  7333. height: math.unit(70, "feet"),
  7334. default: true
  7335. },
  7336. {
  7337. name: "Lorger",
  7338. height: math.unit(250, "feet")
  7339. },
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(500, "meters")
  7343. },
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7348. {
  7349. front: {
  7350. height: math.unit(2, "meters"),
  7351. weight: math.unit(86, "kg"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/rose/front.svg",
  7355. extra: 1785/1636,
  7356. bottom: 30/1815
  7357. },
  7358. form: "liom",
  7359. default: true
  7360. },
  7361. frontSporty: {
  7362. height: math.unit(2, "meters"),
  7363. weight: math.unit(86, "kg"),
  7364. name: "Front (Sporty)",
  7365. image: {
  7366. source: "./media/characters/rose/front-sporty.svg",
  7367. extra: 350/335,
  7368. bottom: 10/360
  7369. },
  7370. form: "liom"
  7371. },
  7372. frontAlt: {
  7373. height: math.unit(1.6, "meters"),
  7374. weight: math.unit(86, "kg"),
  7375. name: "Front (Alt)",
  7376. image: {
  7377. source: "./media/characters/rose/front-alt.svg",
  7378. extra: 299/283,
  7379. bottom: 3/302
  7380. },
  7381. form: "liom"
  7382. },
  7383. plush: {
  7384. height: math.unit(2, "meters"),
  7385. weight: math.unit(86/3, "kg"),
  7386. name: "Plush",
  7387. image: {
  7388. source: "./media/characters/rose/plush.svg",
  7389. extra: 361/337,
  7390. bottom: 11/372
  7391. },
  7392. form: "plush",
  7393. default: true
  7394. },
  7395. faeStanding: {
  7396. height: math.unit(10, "cm"),
  7397. weight: math.unit(10, "grams"),
  7398. name: "Standing",
  7399. image: {
  7400. source: "./media/characters/rose/fae-standing.svg",
  7401. extra: 1189/1060,
  7402. bottom: 27/1216
  7403. },
  7404. form: "fae",
  7405. default: true
  7406. },
  7407. faeSitting: {
  7408. height: math.unit(5, "cm"),
  7409. weight: math.unit(10, "grams"),
  7410. name: "Sitting",
  7411. image: {
  7412. source: "./media/characters/rose/fae-sitting.svg",
  7413. extra: 737/577,
  7414. bottom: 356/1093
  7415. },
  7416. form: "fae"
  7417. },
  7418. faePaw: {
  7419. height: math.unit(1.35, "cm"),
  7420. name: "Paw",
  7421. image: {
  7422. source: "./media/characters/rose/fae-paw.svg"
  7423. },
  7424. form: "fae"
  7425. },
  7426. },
  7427. [
  7428. {
  7429. name: "True Micro",
  7430. height: math.unit(9, "cm"),
  7431. form: "liom"
  7432. },
  7433. {
  7434. name: "Micro",
  7435. height: math.unit(16, "cm"),
  7436. form: "liom"
  7437. },
  7438. {
  7439. name: "Normal",
  7440. height: math.unit(1.85, "meters"),
  7441. default: true,
  7442. form: "liom"
  7443. },
  7444. {
  7445. name: "Mini-Macro",
  7446. height: math.unit(5, "meters"),
  7447. form: "liom"
  7448. },
  7449. {
  7450. name: "Macro",
  7451. height: math.unit(15, "meters"),
  7452. form: "liom"
  7453. },
  7454. {
  7455. name: "True Macro",
  7456. height: math.unit(40, "meters"),
  7457. form: "liom"
  7458. },
  7459. {
  7460. name: "City Scale",
  7461. height: math.unit(1, "km"),
  7462. form: "liom"
  7463. },
  7464. {
  7465. name: "Plushie",
  7466. height: math.unit(9, "cm"),
  7467. form: "plush",
  7468. default: true
  7469. },
  7470. {
  7471. name: "Fae",
  7472. height: math.unit(10, "cm"),
  7473. form: "fae",
  7474. default: true
  7475. },
  7476. ],
  7477. {
  7478. "liom": {
  7479. name: "Liom"
  7480. },
  7481. "plush": {
  7482. name: "Plush"
  7483. },
  7484. "fae": {
  7485. name: "Fae Fox",
  7486. default: true
  7487. }
  7488. }
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7492. {
  7493. front: {
  7494. height: math.unit(2, "meters"),
  7495. weight: math.unit(350, "lbs"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/regal/front.svg"
  7499. }
  7500. },
  7501. back: {
  7502. height: math.unit(2, "meters"),
  7503. weight: math.unit(350, "lbs"),
  7504. name: "Back",
  7505. image: {
  7506. source: "./media/characters/regal/back.svg"
  7507. }
  7508. },
  7509. },
  7510. [
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(350, "feet"),
  7514. default: true
  7515. }
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7520. {
  7521. front: {
  7522. height: math.unit(4 + 11 / 12, "feet"),
  7523. weight: math.unit(100, "lbs"),
  7524. name: "Front",
  7525. image: {
  7526. source: "./media/characters/opal/front.svg"
  7527. }
  7528. },
  7529. frontAlt: {
  7530. height: math.unit(4 + 11 / 12, "feet"),
  7531. weight: math.unit(100, "lbs"),
  7532. name: "Front (Alt)",
  7533. image: {
  7534. source: "./media/characters/opal/front-alt.svg"
  7535. }
  7536. },
  7537. },
  7538. [
  7539. {
  7540. name: "Small",
  7541. height: math.unit(4 + 11 / 12, "feet")
  7542. },
  7543. {
  7544. name: "Normal",
  7545. height: math.unit(20, "feet"),
  7546. default: true
  7547. },
  7548. {
  7549. name: "Macro",
  7550. height: math.unit(120, "feet")
  7551. },
  7552. {
  7553. name: "Megamacro",
  7554. height: math.unit(80, "miles")
  7555. },
  7556. {
  7557. name: "True Size",
  7558. height: math.unit(100000, "lightyears")
  7559. },
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(200, "lbs"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/vector-wuff/front.svg"
  7571. }
  7572. }
  7573. },
  7574. [
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(2.8, "meters")
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(450, "meters"),
  7582. default: true
  7583. },
  7584. {
  7585. name: "Megamacro",
  7586. height: math.unit(15, "kilometers")
  7587. }
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(6, "feet"),
  7595. weight: math.unit(256, "lbs"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/dannik/front.svg"
  7599. }
  7600. }
  7601. },
  7602. [
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(69.57, "meters"),
  7606. default: true
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(120, "lbs"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/azura-saharah/front.svg"
  7619. }
  7620. },
  7621. back: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(120, "lbs"),
  7624. name: "Back",
  7625. image: {
  7626. source: "./media/characters/azura-saharah/back.svg"
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Macro",
  7633. height: math.unit(100, "feet"),
  7634. default: true
  7635. },
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7640. {
  7641. side: {
  7642. height: math.unit(5 + 4 / 12, "feet"),
  7643. weight: math.unit(163, "lbs"),
  7644. name: "Side",
  7645. image: {
  7646. source: "./media/characters/kennedy/side.svg"
  7647. }
  7648. }
  7649. },
  7650. [
  7651. {
  7652. name: "Standard Doggo",
  7653. height: math.unit(5 + 4 / 12, "feet")
  7654. },
  7655. {
  7656. name: "Big Doggo",
  7657. height: math.unit(25 + 3 / 12, "feet"),
  7658. default: true
  7659. },
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(5 + 5/12, "feet"),
  7667. weight: math.unit(100, "lbs"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/odios-de-lunar/front.svg",
  7671. extra: 1468/1323,
  7672. bottom: 22/1490
  7673. }
  7674. }
  7675. },
  7676. [
  7677. {
  7678. name: "Micro",
  7679. height: math.unit(3, "inches")
  7680. },
  7681. {
  7682. name: "Normal",
  7683. height: math.unit(5.5, "feet"),
  7684. default: true
  7685. },
  7686. {
  7687. name: "Macro",
  7688. height: math.unit(100, "feet")
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7694. {
  7695. back: {
  7696. height: math.unit(6, "feet"),
  7697. weight: math.unit(220, "lbs"),
  7698. name: "Back",
  7699. image: {
  7700. source: "./media/characters/mandake/back.svg"
  7701. }
  7702. }
  7703. },
  7704. [
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(7, "feet"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(78, "feet")
  7713. },
  7714. {
  7715. name: "Macro+",
  7716. height: math.unit(300, "meters")
  7717. },
  7718. {
  7719. name: "Macro++",
  7720. height: math.unit(2400, "feet")
  7721. },
  7722. {
  7723. name: "Megamacro",
  7724. height: math.unit(5167, "meters")
  7725. },
  7726. {
  7727. name: "Gigamacro",
  7728. height: math.unit(41769, "miles")
  7729. },
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7734. {
  7735. front: {
  7736. height: math.unit(6, "feet"),
  7737. weight: math.unit(120, "lbs"),
  7738. name: "Front",
  7739. image: {
  7740. source: "./media/characters/yozey/front.svg"
  7741. }
  7742. },
  7743. frontAlt: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(120, "lbs"),
  7746. name: "Front (Alt)",
  7747. image: {
  7748. source: "./media/characters/yozey/front-alt.svg"
  7749. }
  7750. },
  7751. side: {
  7752. height: math.unit(6, "feet"),
  7753. weight: math.unit(120, "lbs"),
  7754. name: "Side",
  7755. image: {
  7756. source: "./media/characters/yozey/side.svg"
  7757. }
  7758. },
  7759. },
  7760. [
  7761. {
  7762. name: "Micro",
  7763. height: math.unit(3, "inches"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Normal",
  7768. height: math.unit(6, "feet")
  7769. }
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(103, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/valeska-voss/front.svg"
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Mini-Sized Sub",
  7787. height: math.unit(3.1, "inches")
  7788. },
  7789. {
  7790. name: "Mid-Sized Sub",
  7791. height: math.unit(6.2, "inches")
  7792. },
  7793. {
  7794. name: "Full-Sized Sub",
  7795. height: math.unit(9.3, "inches")
  7796. },
  7797. {
  7798. name: "Normal",
  7799. height: math.unit(5 + 2 / 12, "foot"),
  7800. default: true
  7801. },
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(160, "lbs"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/gene-zeta/front.svg",
  7813. extra: 3006 / 2826,
  7814. bottom: 182 / 3188
  7815. }
  7816. }
  7817. },
  7818. [
  7819. {
  7820. name: "Micro",
  7821. height: math.unit(6, "inches")
  7822. },
  7823. {
  7824. name: "Normal",
  7825. height: math.unit(5 + 11 / 12, "foot"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Macro",
  7830. height: math.unit(140, "feet")
  7831. },
  7832. {
  7833. name: "Supercharged",
  7834. height: math.unit(2500, "feet")
  7835. },
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(6, "feet"),
  7843. weight: math.unit(350, "lbs"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/razinox/front.svg",
  7847. extra: 1686 / 1548,
  7848. bottom: 28.2 / 1868
  7849. }
  7850. },
  7851. back: {
  7852. height: math.unit(6, "feet"),
  7853. weight: math.unit(350, "lbs"),
  7854. name: "Back",
  7855. image: {
  7856. source: "./media/characters/razinox/back.svg",
  7857. extra: 1660 / 1590,
  7858. bottom: 15 / 1665
  7859. }
  7860. },
  7861. },
  7862. [
  7863. {
  7864. name: "Normal",
  7865. height: math.unit(10 + 8 / 12, "foot")
  7866. },
  7867. {
  7868. name: "Minimacro",
  7869. height: math.unit(15, "foot")
  7870. },
  7871. {
  7872. name: "Macro",
  7873. height: math.unit(60, "foot"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Megamacro",
  7878. height: math.unit(5, "miles")
  7879. },
  7880. {
  7881. name: "Gigamacro",
  7882. height: math.unit(6000, "miles")
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7888. {
  7889. front: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(150, "lbs"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/cobalt/front.svg"
  7895. }
  7896. }
  7897. },
  7898. [
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(8 + 1 / 12, "foot")
  7902. },
  7903. {
  7904. name: "Macro",
  7905. height: math.unit(111, "foot"),
  7906. default: true
  7907. },
  7908. {
  7909. name: "Supracosmic",
  7910. height: math.unit(1e42, "feet")
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7916. {
  7917. front: {
  7918. height: math.unit(5, "inches"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/amanda/front.svg",
  7922. extra: 926/791,
  7923. bottom: 38/964
  7924. }
  7925. },
  7926. back: {
  7927. height: math.unit(5, "inches"),
  7928. name: "Back",
  7929. image: {
  7930. source: "./media/characters/amanda/back.svg",
  7931. extra: 909/805,
  7932. bottom: 43/952
  7933. }
  7934. },
  7935. },
  7936. [
  7937. {
  7938. name: "Micro",
  7939. height: math.unit(5, "inches"),
  7940. default: true
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7946. {
  7947. front: {
  7948. height: math.unit(2.75, "meters"),
  7949. weight: math.unit(1200, "lb"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/teal/front.svg",
  7953. extra: 2463 / 2320,
  7954. bottom: 166 / 2629
  7955. }
  7956. },
  7957. back: {
  7958. height: math.unit(2.75, "meters"),
  7959. weight: math.unit(1200, "lb"),
  7960. name: "Back",
  7961. image: {
  7962. source: "./media/characters/teal/back.svg",
  7963. extra: 2580 / 2489,
  7964. bottom: 151 / 2731
  7965. }
  7966. },
  7967. sitting: {
  7968. height: math.unit(1.9, "meters"),
  7969. weight: math.unit(1200, "lb"),
  7970. name: "Sitting",
  7971. image: {
  7972. source: "./media/characters/teal/sitting.svg",
  7973. extra: 623 / 590,
  7974. bottom: 121 / 744
  7975. }
  7976. },
  7977. standing: {
  7978. height: math.unit(2.75, "meters"),
  7979. weight: math.unit(1200, "lb"),
  7980. name: "Standing",
  7981. image: {
  7982. source: "./media/characters/teal/standing.svg",
  7983. extra: 923 / 893,
  7984. bottom: 60 / 983
  7985. }
  7986. },
  7987. stretching: {
  7988. height: math.unit(3.65, "meters"),
  7989. weight: math.unit(1200, "lb"),
  7990. name: "Stretching",
  7991. image: {
  7992. source: "./media/characters/teal/stretching.svg",
  7993. extra: 1276 / 1244,
  7994. bottom: 0 / 1276
  7995. }
  7996. },
  7997. legged: {
  7998. height: math.unit(1.3, "meters"),
  7999. weight: math.unit(100, "lb"),
  8000. name: "Legged",
  8001. image: {
  8002. source: "./media/characters/teal/legged.svg",
  8003. extra: 462 / 437,
  8004. bottom: 24 / 486
  8005. }
  8006. },
  8007. naga: {
  8008. height: math.unit(5.4, "meters"),
  8009. weight: math.unit(4000, "lb"),
  8010. name: "Naga",
  8011. image: {
  8012. source: "./media/characters/teal/naga.svg",
  8013. extra: 1902 / 1858,
  8014. bottom: 0 / 1902
  8015. }
  8016. },
  8017. hand: {
  8018. height: math.unit(0.52, "meters"),
  8019. name: "Hand",
  8020. image: {
  8021. source: "./media/characters/teal/hand.svg"
  8022. }
  8023. },
  8024. maw: {
  8025. height: math.unit(0.43, "meters"),
  8026. name: "Maw",
  8027. image: {
  8028. source: "./media/characters/teal/maw.svg"
  8029. }
  8030. },
  8031. slit: {
  8032. height: math.unit(0.25, "meters"),
  8033. name: "Slit",
  8034. image: {
  8035. source: "./media/characters/teal/slit.svg"
  8036. }
  8037. },
  8038. },
  8039. [
  8040. {
  8041. name: "Normal",
  8042. height: math.unit(2.75, "meters"),
  8043. default: true
  8044. },
  8045. {
  8046. name: "Macro",
  8047. height: math.unit(300, "feet")
  8048. },
  8049. {
  8050. name: "Macro+",
  8051. height: math.unit(2000, "feet")
  8052. },
  8053. ]
  8054. ))
  8055. characterMakers.push(() => makeCharacter(
  8056. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8057. {
  8058. frontCat: {
  8059. height: math.unit(6, "feet"),
  8060. weight: math.unit(180, "lbs"),
  8061. name: "Front (Cat)",
  8062. image: {
  8063. source: "./media/characters/ravin-amulet/front-cat.svg"
  8064. }
  8065. },
  8066. frontCatAlt: {
  8067. height: math.unit(6, "feet"),
  8068. weight: math.unit(180, "lbs"),
  8069. name: "Front (Alt, Cat)",
  8070. image: {
  8071. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8072. }
  8073. },
  8074. frontWerewolf: {
  8075. height: math.unit(6 * 1.2, "feet"),
  8076. weight: math.unit(225, "lbs"),
  8077. name: "Front (Werewolf)",
  8078. image: {
  8079. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8080. }
  8081. },
  8082. backWerewolf: {
  8083. height: math.unit(6 * 1.2, "feet"),
  8084. weight: math.unit(225, "lbs"),
  8085. name: "Back (Werewolf)",
  8086. image: {
  8087. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8088. }
  8089. },
  8090. },
  8091. [
  8092. {
  8093. name: "Nano",
  8094. height: math.unit(1, "micrometer")
  8095. },
  8096. {
  8097. name: "Micro",
  8098. height: math.unit(1, "inch")
  8099. },
  8100. {
  8101. name: "Normal",
  8102. height: math.unit(6, "feet"),
  8103. default: true
  8104. },
  8105. {
  8106. name: "Macro",
  8107. height: math.unit(60, "feet")
  8108. }
  8109. ]
  8110. ))
  8111. characterMakers.push(() => makeCharacter(
  8112. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8113. {
  8114. front: {
  8115. height: math.unit(6, "feet"),
  8116. weight: math.unit(165, "lbs"),
  8117. name: "Front",
  8118. image: {
  8119. source: "./media/characters/fluoresce/front.svg"
  8120. }
  8121. }
  8122. },
  8123. [
  8124. {
  8125. name: "Micro",
  8126. height: math.unit(6, "cm")
  8127. },
  8128. {
  8129. name: "Normal",
  8130. height: math.unit(5 + 7 / 12, "feet"),
  8131. default: true
  8132. },
  8133. {
  8134. name: "Macro",
  8135. height: math.unit(56, "feet")
  8136. },
  8137. {
  8138. name: "Megamacro",
  8139. height: math.unit(1.9, "miles")
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(9 + 6 / 12, "feet"),
  8148. weight: math.unit(523, "lbs"),
  8149. name: "Side",
  8150. image: {
  8151. source: "./media/characters/aurora/side.svg"
  8152. }
  8153. }
  8154. },
  8155. [
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(9 + 6 / 12, "feet")
  8159. },
  8160. {
  8161. name: "Macro",
  8162. height: math.unit(96, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Macro+",
  8167. height: math.unit(243, "feet")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(194, "cm"),
  8176. weight: math.unit(90, "kg"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/ranek/front.svg",
  8180. extra: 1862/1791,
  8181. bottom: 80/1942
  8182. }
  8183. },
  8184. back: {
  8185. height: math.unit(194, "cm"),
  8186. weight: math.unit(90, "kg"),
  8187. name: "Back",
  8188. image: {
  8189. source: "./media/characters/ranek/back.svg",
  8190. extra: 1853/1787,
  8191. bottom: 74/1927
  8192. }
  8193. },
  8194. feral: {
  8195. height: math.unit(30, "cm"),
  8196. weight: math.unit(1.6, "lbs"),
  8197. name: "Feral",
  8198. image: {
  8199. source: "./media/characters/ranek/feral.svg",
  8200. extra: 990/631,
  8201. bottom: 29/1019
  8202. }
  8203. },
  8204. },
  8205. [
  8206. {
  8207. name: "Normal",
  8208. height: math.unit(194, "cm"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(100, "meters")
  8214. },
  8215. ]
  8216. ))
  8217. characterMakers.push(() => makeCharacter(
  8218. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8219. {
  8220. front: {
  8221. height: math.unit(5 + 6 / 12, "feet"),
  8222. weight: math.unit(153, "lbs"),
  8223. name: "Front",
  8224. image: {
  8225. source: "./media/characters/andrew-cooper/front.svg"
  8226. }
  8227. },
  8228. },
  8229. [
  8230. {
  8231. name: "Nano",
  8232. height: math.unit(1, "mm")
  8233. },
  8234. {
  8235. name: "Micro",
  8236. height: math.unit(2, "inches")
  8237. },
  8238. {
  8239. name: "Normal",
  8240. height: math.unit(5 + 6 / 12, "feet"),
  8241. default: true
  8242. }
  8243. ]
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8247. {
  8248. front: {
  8249. height: math.unit(6, "feet"),
  8250. weight: math.unit(180, "lbs"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/akane-sato/front.svg",
  8254. extra: 1219 / 1140
  8255. }
  8256. },
  8257. back: {
  8258. height: math.unit(6, "feet"),
  8259. weight: math.unit(180, "lbs"),
  8260. name: "Back",
  8261. image: {
  8262. source: "./media/characters/akane-sato/back.svg",
  8263. extra: 1219 / 1170
  8264. }
  8265. },
  8266. },
  8267. [
  8268. {
  8269. name: "Normal",
  8270. height: math.unit(2.5, "meters")
  8271. },
  8272. {
  8273. name: "Macro",
  8274. height: math.unit(250, "meters"),
  8275. default: true
  8276. },
  8277. {
  8278. name: "Megamacro",
  8279. height: math.unit(25, "km")
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8285. {
  8286. front: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(65, "kg"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/rook/front.svg",
  8292. extra: 960 / 950
  8293. }
  8294. }
  8295. },
  8296. [
  8297. {
  8298. name: "Normal",
  8299. height: math.unit(8.8, "feet")
  8300. },
  8301. {
  8302. name: "Macro",
  8303. height: math.unit(88, "feet"),
  8304. default: true
  8305. },
  8306. {
  8307. name: "Megamacro",
  8308. height: math.unit(8, "miles")
  8309. },
  8310. ]
  8311. ))
  8312. characterMakers.push(() => makeCharacter(
  8313. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8314. {
  8315. front: {
  8316. height: math.unit(12 + 2 / 12, "feet"),
  8317. weight: math.unit(808, "lbs"),
  8318. name: "Front",
  8319. image: {
  8320. source: "./media/characters/prodigy/front.svg"
  8321. }
  8322. }
  8323. },
  8324. [
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(12 + 2 / 12, "feet"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(143, "feet")
  8333. },
  8334. {
  8335. name: "Macro+",
  8336. height: math.unit(400, "feet")
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(225, "lbs"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/daniel/front.svg"
  8349. }
  8350. },
  8351. leaning: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(225, "lbs"),
  8354. name: "Leaning",
  8355. image: {
  8356. source: "./media/characters/daniel/leaning.svg"
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(1000, "feet"),
  8364. default: true
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(88, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/chiros/front.svg",
  8377. extra: 306 / 226
  8378. }
  8379. },
  8380. side: {
  8381. height: math.unit(6, "feet"),
  8382. weight: math.unit(88, "lbs"),
  8383. name: "Side",
  8384. image: {
  8385. source: "./media/characters/chiros/side.svg",
  8386. extra: 306 / 226
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Normal",
  8393. height: math.unit(6, "cm"),
  8394. default: true
  8395. },
  8396. ]
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8400. {
  8401. front: {
  8402. height: math.unit(6, "feet"),
  8403. weight: math.unit(100, "lbs"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/selka/front.svg",
  8407. extra: 947 / 887
  8408. }
  8409. }
  8410. },
  8411. [
  8412. {
  8413. name: "Normal",
  8414. height: math.unit(5, "cm"),
  8415. default: true
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(8 + 3 / 12, "feet"),
  8424. weight: math.unit(424, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/verin/front.svg",
  8428. extra: 1845 / 1550
  8429. }
  8430. },
  8431. frontArmored: {
  8432. height: math.unit(8 + 3 / 12, "feet"),
  8433. weight: math.unit(424, "lbs"),
  8434. name: "Front (Armored)",
  8435. image: {
  8436. source: "./media/characters/verin/front-armor.svg",
  8437. extra: 1845 / 1550,
  8438. bottom: 0.01
  8439. }
  8440. },
  8441. back: {
  8442. height: math.unit(8 + 3 / 12, "feet"),
  8443. weight: math.unit(424, "lbs"),
  8444. name: "Back",
  8445. image: {
  8446. source: "./media/characters/verin/back.svg",
  8447. bottom: 0.1,
  8448. extra: 1
  8449. }
  8450. },
  8451. foot: {
  8452. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8453. name: "Foot",
  8454. image: {
  8455. source: "./media/characters/verin/foot.svg"
  8456. }
  8457. },
  8458. },
  8459. [
  8460. {
  8461. name: "Normal",
  8462. height: math.unit(8 + 3 / 12, "feet")
  8463. },
  8464. {
  8465. name: "Minimacro",
  8466. height: math.unit(21, "feet"),
  8467. default: true
  8468. },
  8469. {
  8470. name: "Macro",
  8471. height: math.unit(626, "feet")
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(2.718, "meters"),
  8480. weight: math.unit(150, "lbs"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/sovrim-terraquian/front.svg",
  8484. extra: 1752/1689,
  8485. bottom: 36/1788
  8486. }
  8487. },
  8488. back: {
  8489. height: math.unit(2.718, "meters"),
  8490. weight: math.unit(150, "lbs"),
  8491. name: "Back",
  8492. image: {
  8493. source: "./media/characters/sovrim-terraquian/back.svg",
  8494. extra: 1698/1657,
  8495. bottom: 58/1756
  8496. }
  8497. },
  8498. tongue: {
  8499. height: math.unit(2.865, "feet"),
  8500. name: "Tongue",
  8501. image: {
  8502. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8503. }
  8504. },
  8505. hand: {
  8506. height: math.unit(1.61, "feet"),
  8507. name: "Hand",
  8508. image: {
  8509. source: "./media/characters/sovrim-terraquian/hand.svg"
  8510. }
  8511. },
  8512. foot: {
  8513. height: math.unit(1.05, "feet"),
  8514. name: "Foot",
  8515. image: {
  8516. source: "./media/characters/sovrim-terraquian/foot.svg"
  8517. }
  8518. },
  8519. footAlt: {
  8520. height: math.unit(0.88, "feet"),
  8521. name: "Foot (Alt)",
  8522. image: {
  8523. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8524. }
  8525. },
  8526. },
  8527. [
  8528. {
  8529. name: "Micro",
  8530. height: math.unit(2, "inches")
  8531. },
  8532. {
  8533. name: "Small",
  8534. height: math.unit(1, "meter")
  8535. },
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(Math.E, "meters"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Macro",
  8543. height: math.unit(20, "meters")
  8544. },
  8545. {
  8546. name: "Macro+",
  8547. height: math.unit(400, "meters")
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8553. {
  8554. front: {
  8555. height: math.unit(7, "feet"),
  8556. weight: math.unit(489, "lbs"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/reece-silvermane/front.svg",
  8560. bottom: 0.02,
  8561. extra: 1
  8562. }
  8563. },
  8564. },
  8565. [
  8566. {
  8567. name: "Macro",
  8568. height: math.unit(1.5, "miles"),
  8569. default: true
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(6, "feet"),
  8578. weight: math.unit(78, "kg"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/kane/front.svg",
  8582. extra: 978 / 899
  8583. }
  8584. },
  8585. },
  8586. [
  8587. {
  8588. name: "Normal",
  8589. height: math.unit(2.1, "m"),
  8590. },
  8591. {
  8592. name: "Macro",
  8593. height: math.unit(1, "km"),
  8594. default: true
  8595. },
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8600. {
  8601. front: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(200, "kg"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/tegon/front.svg",
  8607. bottom: 0.01,
  8608. extra: 1
  8609. }
  8610. },
  8611. },
  8612. [
  8613. {
  8614. name: "Micro",
  8615. height: math.unit(1, "inch")
  8616. },
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(6 + 3 / 12, "feet"),
  8620. default: true
  8621. },
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(300, "feet")
  8625. },
  8626. {
  8627. name: "Megamacro",
  8628. height: math.unit(69, "miles")
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8634. {
  8635. side: {
  8636. height: math.unit(6, "feet"),
  8637. weight: math.unit(2304, "lbs"),
  8638. name: "Side",
  8639. image: {
  8640. source: "./media/characters/arcturax/side.svg",
  8641. extra: 790 / 376,
  8642. bottom: 0.01
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Micro",
  8649. height: math.unit(2, "inch")
  8650. },
  8651. {
  8652. name: "Normal",
  8653. height: math.unit(6, "feet")
  8654. },
  8655. {
  8656. name: "Macro",
  8657. height: math.unit(39, "feet"),
  8658. default: true
  8659. },
  8660. {
  8661. name: "Megamacro",
  8662. height: math.unit(7, "miles")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(6, "feet"),
  8671. weight: math.unit(50, "lbs"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/sentri/front.svg",
  8675. extra: 1750 / 1570,
  8676. bottom: 0.025
  8677. }
  8678. },
  8679. frontAlt: {
  8680. height: math.unit(6, "feet"),
  8681. weight: math.unit(50, "lbs"),
  8682. name: "Front (Alt)",
  8683. image: {
  8684. source: "./media/characters/sentri/front-alt.svg",
  8685. extra: 1750 / 1570,
  8686. bottom: 0.025
  8687. }
  8688. },
  8689. },
  8690. [
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(15, "feet"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "Macro",
  8698. height: math.unit(2500, "feet")
  8699. }
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(5 + 8 / 12, "feet"),
  8707. weight: math.unit(130, "lbs"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/corvin/front.svg",
  8711. extra: 1803 / 1629
  8712. }
  8713. },
  8714. frontShirt: {
  8715. height: math.unit(5 + 8 / 12, "feet"),
  8716. weight: math.unit(130, "lbs"),
  8717. name: "Front (Shirt)",
  8718. image: {
  8719. source: "./media/characters/corvin/front-shirt.svg",
  8720. extra: 1803 / 1629
  8721. }
  8722. },
  8723. frontPoncho: {
  8724. height: math.unit(5 + 8 / 12, "feet"),
  8725. weight: math.unit(130, "lbs"),
  8726. name: "Front (Poncho)",
  8727. image: {
  8728. source: "./media/characters/corvin/front-poncho.svg",
  8729. extra: 1803 / 1629
  8730. }
  8731. },
  8732. side: {
  8733. height: math.unit(5 + 8 / 12, "feet"),
  8734. weight: math.unit(130, "lbs"),
  8735. name: "Side",
  8736. image: {
  8737. source: "./media/characters/corvin/side.svg",
  8738. extra: 1012 / 945
  8739. }
  8740. },
  8741. back: {
  8742. height: math.unit(5 + 8 / 12, "feet"),
  8743. weight: math.unit(130, "lbs"),
  8744. name: "Back",
  8745. image: {
  8746. source: "./media/characters/corvin/back.svg",
  8747. extra: 1803 / 1629
  8748. }
  8749. },
  8750. },
  8751. [
  8752. {
  8753. name: "Micro",
  8754. height: math.unit(3, "inches")
  8755. },
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(5 + 8 / 12, "feet")
  8759. },
  8760. {
  8761. name: "Macro",
  8762. height: math.unit(300, "feet"),
  8763. default: true
  8764. },
  8765. {
  8766. name: "Megamacro",
  8767. height: math.unit(500, "miles")
  8768. }
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(6, "feet"),
  8776. weight: math.unit(135, "lbs"),
  8777. name: "Front",
  8778. image: {
  8779. source: "./media/characters/q/front.svg",
  8780. extra: 854 / 752,
  8781. bottom: 0.005
  8782. }
  8783. },
  8784. back: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(130, "lbs"),
  8787. name: "Back",
  8788. image: {
  8789. source: "./media/characters/q/back.svg",
  8790. extra: 854 / 752
  8791. }
  8792. },
  8793. },
  8794. [
  8795. {
  8796. name: "Macro",
  8797. height: math.unit(90, "feet"),
  8798. default: true
  8799. },
  8800. {
  8801. name: "Extra Macro",
  8802. height: math.unit(300, "feet"),
  8803. },
  8804. {
  8805. name: "BIG WALF",
  8806. height: math.unit(750, "feet"),
  8807. },
  8808. ]
  8809. ))
  8810. characterMakers.push(() => makeCharacter(
  8811. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8812. {
  8813. front: {
  8814. height: math.unit(6, "feet"),
  8815. weight: math.unit(150, "lbs"),
  8816. name: "Front",
  8817. image: {
  8818. source: "./media/characters/carley/front.svg",
  8819. extra: 3927 / 3540,
  8820. bottom: 29.2 / 735
  8821. }
  8822. }
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(6 + 3 / 12, "feet")
  8828. },
  8829. {
  8830. name: "Macro",
  8831. height: math.unit(185, "feet"),
  8832. default: true
  8833. },
  8834. {
  8835. name: "Megamacro",
  8836. height: math.unit(8, "miles"),
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8842. {
  8843. front: {
  8844. height: math.unit(3, "feet"),
  8845. weight: math.unit(28, "lbs"),
  8846. name: "Front",
  8847. image: {
  8848. source: "./media/characters/citrine/front.svg"
  8849. }
  8850. }
  8851. },
  8852. [
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(3, "feet"),
  8856. default: true
  8857. }
  8858. ]
  8859. ))
  8860. characterMakers.push(() => makeCharacter(
  8861. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8862. {
  8863. front: {
  8864. height: math.unit(14, "feet"),
  8865. weight: math.unit(1450, "kg"),
  8866. preyCapacity: math.unit(15, "people"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/aura-starwind/front.svg",
  8870. extra: 1440/1327,
  8871. bottom: 11/1451
  8872. }
  8873. },
  8874. side: {
  8875. height: math.unit(14, "feet"),
  8876. weight: math.unit(1450, "kg"),
  8877. preyCapacity: math.unit(15, "people"),
  8878. name: "Side",
  8879. image: {
  8880. source: "./media/characters/aura-starwind/side.svg",
  8881. extra: 1654 / 1497
  8882. }
  8883. },
  8884. taur: {
  8885. height: math.unit(18, "feet"),
  8886. weight: math.unit(5500, "kg"),
  8887. preyCapacity: math.unit(50, "people"),
  8888. name: "Taur",
  8889. image: {
  8890. source: "./media/characters/aura-starwind/taur.svg",
  8891. extra: 1760 / 1650
  8892. }
  8893. },
  8894. feral: {
  8895. height: math.unit(46, "feet"),
  8896. weight: math.unit(25000, "kg"),
  8897. preyCapacity: math.unit(120, "people"),
  8898. name: "Feral",
  8899. image: {
  8900. source: "./media/characters/aura-starwind/feral.svg"
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(14, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Macro",
  8912. height: math.unit(50, "meters")
  8913. },
  8914. {
  8915. name: "Megamacro",
  8916. height: math.unit(5000, "meters")
  8917. },
  8918. {
  8919. name: "Gigamacro",
  8920. height: math.unit(100000, "kilometers")
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(2 + 7 / 12, "feet"),
  8929. weight: math.unit(32, "lbs"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/rivet/front.svg",
  8933. extra: 1716 / 1658,
  8934. bottom: 0.03
  8935. }
  8936. },
  8937. foot: {
  8938. height: math.unit(0.551, "feet"),
  8939. name: "Rivet's Foot",
  8940. image: {
  8941. source: "./media/characters/rivet/foot.svg"
  8942. },
  8943. rename: true
  8944. }
  8945. },
  8946. [
  8947. {
  8948. name: "Micro",
  8949. height: math.unit(1.5, "inches"),
  8950. },
  8951. {
  8952. name: "Normal",
  8953. height: math.unit(2 + 7 / 12, "feet"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "Macro",
  8958. height: math.unit(85, "feet")
  8959. },
  8960. {
  8961. name: "Megamacro",
  8962. height: math.unit(2.2, "km")
  8963. }
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(5 + 9 / 12, "feet"),
  8971. weight: math.unit(150, "lbs"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/coffee/front.svg",
  8975. extra: 3666 / 3032,
  8976. bottom: 0.04
  8977. }
  8978. },
  8979. foot: {
  8980. height: math.unit(1.29, "feet"),
  8981. name: "Foot",
  8982. image: {
  8983. source: "./media/characters/coffee/foot.svg"
  8984. }
  8985. },
  8986. },
  8987. [
  8988. {
  8989. name: "Micro",
  8990. height: math.unit(2, "inches"),
  8991. },
  8992. {
  8993. name: "Normal",
  8994. height: math.unit(5 + 9 / 12, "feet"),
  8995. default: true
  8996. },
  8997. {
  8998. name: "Macro",
  8999. height: math.unit(800, "feet")
  9000. },
  9001. {
  9002. name: "Megamacro",
  9003. height: math.unit(25, "miles")
  9004. }
  9005. ]
  9006. ))
  9007. characterMakers.push(() => makeCharacter(
  9008. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9009. {
  9010. front: {
  9011. height: math.unit(6, "feet"),
  9012. weight: math.unit(200, "lbs"),
  9013. name: "Front",
  9014. image: {
  9015. source: "./media/characters/chari-gal/front.svg",
  9016. extra: 1568 / 1385,
  9017. bottom: 0.047
  9018. }
  9019. },
  9020. gigantamax: {
  9021. height: math.unit(6 * 16, "feet"),
  9022. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9023. name: "Gigantamax",
  9024. image: {
  9025. source: "./media/characters/chari-gal/gigantamax.svg",
  9026. extra: 1124 / 888,
  9027. bottom: 0.03
  9028. }
  9029. },
  9030. },
  9031. [
  9032. {
  9033. name: "Normal",
  9034. height: math.unit(5 + 7 / 12, "feet")
  9035. },
  9036. {
  9037. name: "Macro",
  9038. height: math.unit(200, "feet"),
  9039. default: true
  9040. }
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(6, "feet"),
  9048. weight: math.unit(150, "lbs"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/nova/front.svg",
  9052. extra: 5000 / 4722,
  9053. bottom: 0.02
  9054. }
  9055. }
  9056. },
  9057. [
  9058. {
  9059. name: "Micro-",
  9060. height: math.unit(0.8, "inches")
  9061. },
  9062. {
  9063. name: "Micro",
  9064. height: math.unit(2, "inches"),
  9065. default: true
  9066. },
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(3 + 1 / 12, "feet"),
  9074. weight: math.unit(21.7, "lbs"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/argent/front.svg",
  9078. extra: 1471 / 1331,
  9079. bottom: 100.8 / 1575.5
  9080. }
  9081. }
  9082. },
  9083. [
  9084. {
  9085. name: "Micro",
  9086. height: math.unit(2, "inches")
  9087. },
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(3 + 1 / 12, "feet"),
  9091. default: true
  9092. },
  9093. {
  9094. name: "Macro",
  9095. height: math.unit(120, "feet")
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9101. {
  9102. lamp: {
  9103. height: math.unit(7 * 1559 / 989, "feet"),
  9104. name: "Magic Lamp",
  9105. image: {
  9106. source: "./media/characters/mira-al-cul/lamp.svg",
  9107. extra: 1617 / 1559
  9108. }
  9109. },
  9110. front: {
  9111. height: math.unit(7, "feet"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/mira-al-cul/front.svg",
  9115. extra: 1044 / 990
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Heavily Restricted",
  9122. height: math.unit(7 * 1559 / 989, "feet")
  9123. },
  9124. {
  9125. name: "Freshly Freed",
  9126. height: math.unit(50 * 1559 / 989, "feet")
  9127. },
  9128. {
  9129. name: "World Encompassing",
  9130. height: math.unit(10000 * 1559 / 989, "miles")
  9131. },
  9132. {
  9133. name: "Galactic",
  9134. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9135. },
  9136. {
  9137. name: "Palmed Universe",
  9138. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "Multiversal Matriarch",
  9143. height: math.unit(8.87e10, "yottameters")
  9144. },
  9145. {
  9146. name: "Void Mother",
  9147. height: math.unit(3.14e110, "yottaparsecs")
  9148. },
  9149. {
  9150. name: "Toying with Transcendence",
  9151. height: math.unit(1e307, "meters")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9157. {
  9158. front: {
  9159. height: math.unit(17 + 1 / 12, "feet"),
  9160. weight: math.unit(476.2 * 5, "lbs"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/kuro-shi-uchū/front.svg",
  9164. extra: 2329 / 1835,
  9165. bottom: 0.02
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Micro",
  9172. height: math.unit(2, "inches")
  9173. },
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(12, "meters")
  9177. },
  9178. {
  9179. name: "Planetary",
  9180. height: math.unit(0.00929, "AU"),
  9181. default: true
  9182. },
  9183. {
  9184. name: "Universal",
  9185. height: math.unit(20, "gigaparsecs")
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9191. {
  9192. front: {
  9193. height: math.unit(5 + 2 / 12, "feet"),
  9194. weight: math.unit(120, "lbs"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/katherine/front.svg",
  9198. extra: 2075 / 1969
  9199. }
  9200. },
  9201. dress: {
  9202. height: math.unit(5 + 2 / 12, "feet"),
  9203. weight: math.unit(120, "lbs"),
  9204. name: "Dress",
  9205. image: {
  9206. source: "./media/characters/katherine/dress.svg",
  9207. extra: 2258 / 2064
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Micro",
  9214. height: math.unit(1, "inches"),
  9215. default: true
  9216. },
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(5 + 2 / 12, "feet")
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(100, "meters")
  9224. },
  9225. {
  9226. name: "Megamacro",
  9227. height: math.unit(80, "miles")
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9233. {
  9234. front: {
  9235. height: math.unit(7 + 8 / 12, "feet"),
  9236. weight: math.unit(250, "lbs"),
  9237. name: "Front",
  9238. image: {
  9239. source: "./media/characters/yevis/front.svg",
  9240. extra: 1938 / 1755
  9241. }
  9242. }
  9243. },
  9244. [
  9245. {
  9246. name: "Mortal",
  9247. height: math.unit(7 + 8 / 12, "feet")
  9248. },
  9249. {
  9250. name: "Battle",
  9251. height: math.unit(25 + 11 / 12, "feet")
  9252. },
  9253. {
  9254. name: "Wrath",
  9255. height: math.unit(1654 + 11 / 12, "feet")
  9256. },
  9257. {
  9258. name: "Planet Destroyer",
  9259. height: math.unit(12000, "miles")
  9260. },
  9261. {
  9262. name: "Galaxy Conqueror",
  9263. height: math.unit(1.45, "zettameters"),
  9264. default: true
  9265. },
  9266. {
  9267. name: "Universal War",
  9268. height: math.unit(184, "gigaparsecs")
  9269. },
  9270. {
  9271. name: "Eternity War",
  9272. height: math.unit(1.98e55, "yottaparsecs")
  9273. },
  9274. ]
  9275. ))
  9276. characterMakers.push(() => makeCharacter(
  9277. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9278. {
  9279. front: {
  9280. height: math.unit(5 + 8 / 12, "feet"),
  9281. weight: math.unit(63, "kg"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/xavier/front.svg",
  9285. extra: 944 / 883
  9286. }
  9287. },
  9288. frontStretch: {
  9289. height: math.unit(5 + 8 / 12, "feet"),
  9290. weight: math.unit(63, "kg"),
  9291. name: "Stretching",
  9292. image: {
  9293. source: "./media/characters/xavier/front-stretch.svg",
  9294. extra: 962 / 820
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(5 + 8 / 12, "feet")
  9302. },
  9303. {
  9304. name: "Macro",
  9305. height: math.unit(100, "meters"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "McLargeHuge",
  9310. height: math.unit(10, "miles")
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(5 + 5 / 12, "feet"),
  9319. weight: math.unit(150, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/joshii/front.svg",
  9323. extra: 765 / 653,
  9324. bottom: 51 / 816
  9325. }
  9326. },
  9327. foot: {
  9328. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9329. name: "Foot",
  9330. image: {
  9331. source: "./media/characters/joshii/foot.svg"
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Micro",
  9338. height: math.unit(2, "inches"),
  9339. default: true
  9340. },
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(5 + 5 / 12, "feet")
  9344. },
  9345. {
  9346. name: "Macro",
  9347. height: math.unit(785, "feet")
  9348. },
  9349. {
  9350. name: "Megamacro",
  9351. height: math.unit(24.5, "miles")
  9352. },
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(6, "feet"),
  9360. weight: math.unit(150, "lb"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/goddess-elizabeth/front.svg",
  9364. extra: 1800 / 1525,
  9365. bottom: 0.005
  9366. }
  9367. },
  9368. foot: {
  9369. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9370. name: "Foot",
  9371. image: {
  9372. source: "./media/characters/goddess-elizabeth/foot.svg"
  9373. }
  9374. },
  9375. mouth: {
  9376. height: math.unit(6, "feet"),
  9377. name: "Mouth",
  9378. image: {
  9379. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Micro",
  9386. height: math.unit(12, "feet")
  9387. },
  9388. {
  9389. name: "Normal",
  9390. height: math.unit(80, "miles"),
  9391. default: true
  9392. },
  9393. {
  9394. name: "Macro",
  9395. height: math.unit(15000, "parsecs")
  9396. },
  9397. ]
  9398. ))
  9399. characterMakers.push(() => makeCharacter(
  9400. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9401. {
  9402. front: {
  9403. height: math.unit(5 + 9 / 12, "feet"),
  9404. weight: math.unit(144, "lb"),
  9405. name: "Front",
  9406. image: {
  9407. source: "./media/characters/kara/front.svg"
  9408. }
  9409. },
  9410. feet: {
  9411. height: math.unit(6 / 6.765, "feet"),
  9412. name: "Kara's Feet",
  9413. rename: true,
  9414. image: {
  9415. source: "./media/characters/kara/feet.svg"
  9416. }
  9417. },
  9418. },
  9419. [
  9420. {
  9421. name: "Normal",
  9422. height: math.unit(5 + 9 / 12, "feet")
  9423. },
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(174, "feet"),
  9427. default: true
  9428. },
  9429. ]
  9430. ))
  9431. characterMakers.push(() => makeCharacter(
  9432. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9433. {
  9434. front: {
  9435. height: math.unit(18, "feet"),
  9436. weight: math.unit(4050, "lb"),
  9437. name: "Front",
  9438. image: {
  9439. source: "./media/characters/tyrone/front.svg",
  9440. extra: 2405 / 2270,
  9441. bottom: 182 / 2587
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Normal",
  9448. height: math.unit(18, "feet"),
  9449. default: true
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(300, "feet")
  9454. },
  9455. {
  9456. name: "Megamacro",
  9457. height: math.unit(15, "km")
  9458. },
  9459. {
  9460. name: "Gigamacro",
  9461. height: math.unit(500, "km")
  9462. },
  9463. {
  9464. name: "Teramacro",
  9465. height: math.unit(0.5, "gigameters")
  9466. },
  9467. {
  9468. name: "Omnimacro",
  9469. height: math.unit(1e252, "yottauniverse")
  9470. },
  9471. ]
  9472. ))
  9473. characterMakers.push(() => makeCharacter(
  9474. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9475. {
  9476. front: {
  9477. height: math.unit(7 + 8 / 12, "feet"),
  9478. weight: math.unit(120, "lb"),
  9479. name: "Front",
  9480. image: {
  9481. source: "./media/characters/danny/front.svg",
  9482. extra: 1490 / 1350
  9483. }
  9484. },
  9485. back: {
  9486. height: math.unit(7 + 8 / 12, "feet"),
  9487. weight: math.unit(120, "lb"),
  9488. name: "Back",
  9489. image: {
  9490. source: "./media/characters/danny/back.svg",
  9491. extra: 1490 / 1350
  9492. }
  9493. },
  9494. },
  9495. [
  9496. {
  9497. name: "Normal",
  9498. height: math.unit(7 + 8 / 12, "feet"),
  9499. default: true
  9500. },
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(3.5, "inches"),
  9508. weight: math.unit(19, "grams"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/mallow/front.svg",
  9512. extra: 471 / 431
  9513. }
  9514. },
  9515. back: {
  9516. height: math.unit(3.5, "inches"),
  9517. weight: math.unit(19, "grams"),
  9518. name: "Back",
  9519. image: {
  9520. source: "./media/characters/mallow/back.svg",
  9521. extra: 471 / 431
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Normal",
  9528. height: math.unit(3.5, "inches"),
  9529. default: true
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(9, "feet"),
  9538. weight: math.unit(230, "kg"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/starry-aqua/front.svg"
  9542. }
  9543. },
  9544. back: {
  9545. height: math.unit(9, "feet"),
  9546. weight: math.unit(230, "kg"),
  9547. name: "Back",
  9548. image: {
  9549. source: "./media/characters/starry-aqua/back.svg"
  9550. }
  9551. },
  9552. hand: {
  9553. height: math.unit(9 * 0.1168, "feet"),
  9554. name: "Hand",
  9555. image: {
  9556. source: "./media/characters/starry-aqua/hand.svg"
  9557. }
  9558. },
  9559. foot: {
  9560. height: math.unit(9 * 0.18, "feet"),
  9561. name: "Foot",
  9562. image: {
  9563. source: "./media/characters/starry-aqua/foot.svg"
  9564. }
  9565. }
  9566. },
  9567. [
  9568. {
  9569. name: "Micro",
  9570. height: math.unit(3, "inches")
  9571. },
  9572. {
  9573. name: "Normal",
  9574. height: math.unit(9, "feet")
  9575. },
  9576. {
  9577. name: "Macro",
  9578. height: math.unit(300, "feet"),
  9579. default: true
  9580. },
  9581. {
  9582. name: "Megamacro",
  9583. height: math.unit(3200, "feet")
  9584. }
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9589. {
  9590. front: {
  9591. height: math.unit(15, "feet"),
  9592. weight: math.unit(5026, "lb"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/luka-towers/front.svg",
  9596. extra: 1269/1133,
  9597. bottom: 51/1320
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(15, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Minimacro",
  9609. height: math.unit(25, "feet")
  9610. },
  9611. {
  9612. name: "Macro",
  9613. height: math.unit(320, "feet")
  9614. },
  9615. {
  9616. name: "Megamacro",
  9617. height: math.unit(35000, "feet")
  9618. },
  9619. {
  9620. name: "Gigamacro",
  9621. height: math.unit(4000, "miles")
  9622. },
  9623. {
  9624. name: "Teramacro",
  9625. height: math.unit(15000, "miles")
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(6, "feet"),
  9634. weight: math.unit(150, "lb"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/natalie-nightring/front.svg",
  9638. extra: 1,
  9639. bottom: 0.06
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Uh Oh",
  9646. height: math.unit(0.1, "mm")
  9647. },
  9648. {
  9649. name: "Small",
  9650. height: math.unit(3, "inches")
  9651. },
  9652. {
  9653. name: "Human Scale",
  9654. height: math.unit(6, "feet")
  9655. },
  9656. {
  9657. name: "Librarian",
  9658. height: math.unit(50, "feet"),
  9659. default: true
  9660. },
  9661. {
  9662. name: "Immense",
  9663. height: math.unit(200, "miles")
  9664. },
  9665. ]
  9666. ))
  9667. characterMakers.push(() => makeCharacter(
  9668. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9669. {
  9670. front: {
  9671. height: math.unit(6, "feet"),
  9672. weight: math.unit(180, "lbs"),
  9673. name: "Front",
  9674. image: {
  9675. source: "./media/characters/danni-rosie/front.svg",
  9676. extra: 1260 / 1128,
  9677. bottom: 0.022
  9678. }
  9679. },
  9680. },
  9681. [
  9682. {
  9683. name: "Micro",
  9684. height: math.unit(2, "inches"),
  9685. default: true
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(5 + 9 / 12, "feet"),
  9694. weight: math.unit(220, "lb"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/samantha-kruse/front.svg",
  9698. extra: (985 / 935),
  9699. bottom: 0.03
  9700. }
  9701. },
  9702. frontUndressed: {
  9703. height: math.unit(5 + 9 / 12, "feet"),
  9704. weight: math.unit(220, "lb"),
  9705. name: "Front (Undressed)",
  9706. image: {
  9707. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9708. extra: (973 / 923),
  9709. bottom: 0.025
  9710. }
  9711. },
  9712. fat: {
  9713. height: math.unit(5 + 9 / 12, "feet"),
  9714. weight: math.unit(900, "lb"),
  9715. name: "Front (Fat)",
  9716. image: {
  9717. source: "./media/characters/samantha-kruse/fat.svg",
  9718. extra: 2688 / 2561
  9719. }
  9720. },
  9721. },
  9722. [
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(5 + 9 / 12, "feet"),
  9726. default: true
  9727. }
  9728. ]
  9729. ))
  9730. characterMakers.push(() => makeCharacter(
  9731. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9732. {
  9733. back: {
  9734. height: math.unit(5 + 4 / 12, "feet"),
  9735. weight: math.unit(4963, "lb"),
  9736. name: "Back",
  9737. image: {
  9738. source: "./media/characters/amelia-rosie/back.svg",
  9739. extra: 1113 / 963,
  9740. bottom: 0.01
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Level 0",
  9747. height: math.unit(5 + 4 / 12, "feet")
  9748. },
  9749. {
  9750. name: "Level 1",
  9751. height: math.unit(164597, "feet"),
  9752. default: true
  9753. },
  9754. {
  9755. name: "Level 2",
  9756. height: math.unit(956243, "miles")
  9757. },
  9758. {
  9759. name: "Level 3",
  9760. height: math.unit(29421709423, "miles")
  9761. },
  9762. {
  9763. name: "Level 4",
  9764. height: math.unit(154, "lightyears")
  9765. },
  9766. {
  9767. name: "Level 5",
  9768. height: math.unit(4738272, "lightyears")
  9769. },
  9770. {
  9771. name: "Level 6",
  9772. height: math.unit(145787152896, "lightyears")
  9773. },
  9774. ]
  9775. ))
  9776. characterMakers.push(() => makeCharacter(
  9777. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9778. {
  9779. front: {
  9780. height: math.unit(5 + 11 / 12, "feet"),
  9781. weight: math.unit(65, "kg"),
  9782. name: "Front",
  9783. image: {
  9784. source: "./media/characters/rook-kitara/front.svg",
  9785. extra: 1347 / 1274,
  9786. bottom: 0.005
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Totally Unfair",
  9793. height: math.unit(1.8, "mm")
  9794. },
  9795. {
  9796. name: "Lap Rookie",
  9797. height: math.unit(1.4, "feet")
  9798. },
  9799. {
  9800. name: "Normal",
  9801. height: math.unit(5 + 11 / 12, "feet"),
  9802. default: true
  9803. },
  9804. {
  9805. name: "How Did This Happen",
  9806. height: math.unit(80, "miles")
  9807. }
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(7, "feet"),
  9815. weight: math.unit(300, "lb"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/pisces/front.svg",
  9819. extra: 2255 / 2115,
  9820. bottom: 0.03
  9821. }
  9822. },
  9823. back: {
  9824. height: math.unit(7, "feet"),
  9825. weight: math.unit(300, "lb"),
  9826. name: "Back",
  9827. image: {
  9828. source: "./media/characters/pisces/back.svg",
  9829. extra: 2146 / 2055,
  9830. bottom: 0.04
  9831. }
  9832. },
  9833. },
  9834. [
  9835. {
  9836. name: "Normal",
  9837. height: math.unit(7, "feet"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Swimming Pool",
  9842. height: math.unit(12.2, "meters")
  9843. },
  9844. {
  9845. name: "Olympic Swimming Pool",
  9846. height: math.unit(56.3, "meters")
  9847. },
  9848. {
  9849. name: "Lake Superior",
  9850. height: math.unit(93900, "meters")
  9851. },
  9852. {
  9853. name: "Mediterranean Sea",
  9854. height: math.unit(644457, "meters")
  9855. },
  9856. {
  9857. name: "World's Oceans",
  9858. height: math.unit(4567491, "meters")
  9859. },
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9864. {
  9865. front: {
  9866. height: math.unit(2.3, "meters"),
  9867. weight: math.unit(120, "kg"),
  9868. name: "Front",
  9869. image: {
  9870. source: "./media/characters/zelas/front.svg"
  9871. }
  9872. },
  9873. side: {
  9874. height: math.unit(2.3, "meters"),
  9875. weight: math.unit(120, "kg"),
  9876. name: "Side",
  9877. image: {
  9878. source: "./media/characters/zelas/side.svg"
  9879. }
  9880. },
  9881. back: {
  9882. height: math.unit(2.3, "meters"),
  9883. weight: math.unit(120, "kg"),
  9884. name: "Back",
  9885. image: {
  9886. source: "./media/characters/zelas/back.svg"
  9887. }
  9888. },
  9889. foot: {
  9890. height: math.unit(1.116, "feet"),
  9891. name: "Foot",
  9892. image: {
  9893. source: "./media/characters/zelas/foot.svg"
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Normal",
  9900. height: math.unit(2.3, "meters")
  9901. },
  9902. {
  9903. name: "Macro",
  9904. height: math.unit(30, "meters"),
  9905. default: true
  9906. },
  9907. ]
  9908. ))
  9909. characterMakers.push(() => makeCharacter(
  9910. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9911. {
  9912. front: {
  9913. height: math.unit(1, "inch"),
  9914. weight: math.unit(0.21, "grams"),
  9915. name: "Front",
  9916. image: {
  9917. source: "./media/characters/talbot/front.svg",
  9918. extra: 594 / 544
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Micro",
  9925. height: math.unit(1, "inch"),
  9926. default: true
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9932. {
  9933. front: {
  9934. height: math.unit(3 + 3 / 12, "feet"),
  9935. weight: math.unit(51.8, "lb"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/fliss/front.svg",
  9939. extra: 840 / 640
  9940. }
  9941. },
  9942. },
  9943. [
  9944. {
  9945. name: "Teeny Tiny",
  9946. height: math.unit(1, "mm")
  9947. },
  9948. {
  9949. name: "Small",
  9950. height: math.unit(1, "inch"),
  9951. default: true
  9952. },
  9953. {
  9954. name: "Standard Sylveon",
  9955. height: math.unit(3 + 3 / 12, "feet")
  9956. },
  9957. {
  9958. name: "Large Nuisance",
  9959. height: math.unit(33, "feet")
  9960. },
  9961. {
  9962. name: "City Filler",
  9963. height: math.unit(3000, "feet")
  9964. },
  9965. {
  9966. name: "New Horizon",
  9967. height: math.unit(6000, "miles")
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9973. {
  9974. front: {
  9975. height: math.unit(5, "cm"),
  9976. weight: math.unit(1.94, "g"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/fleta/front.svg",
  9980. extra: 835 / 803
  9981. }
  9982. },
  9983. back: {
  9984. height: math.unit(5, "cm"),
  9985. weight: math.unit(1.94, "g"),
  9986. name: "Back",
  9987. image: {
  9988. source: "./media/characters/fleta/back.svg",
  9989. extra: 835 / 803
  9990. }
  9991. },
  9992. },
  9993. [
  9994. {
  9995. name: "Micro",
  9996. height: math.unit(5, "cm"),
  9997. default: true
  9998. },
  9999. ]
  10000. ))
  10001. characterMakers.push(() => makeCharacter(
  10002. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10003. {
  10004. front: {
  10005. height: math.unit(6, "feet"),
  10006. weight: math.unit(225, "lb"),
  10007. name: "Front",
  10008. image: {
  10009. source: "./media/characters/dominic/front.svg",
  10010. extra: 1770 / 1620,
  10011. bottom: 0.025
  10012. }
  10013. },
  10014. back: {
  10015. height: math.unit(6, "feet"),
  10016. weight: math.unit(225, "lb"),
  10017. name: "Back",
  10018. image: {
  10019. source: "./media/characters/dominic/back.svg",
  10020. extra: 1745 / 1620,
  10021. bottom: 0.065
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Nano",
  10028. height: math.unit(0.1, "mm")
  10029. },
  10030. {
  10031. name: "Micro-",
  10032. height: math.unit(1, "mm")
  10033. },
  10034. {
  10035. name: "Micro",
  10036. height: math.unit(4, "inches")
  10037. },
  10038. {
  10039. name: "Normal",
  10040. height: math.unit(6 + 4 / 12, "feet"),
  10041. default: true
  10042. },
  10043. {
  10044. name: "Macro",
  10045. height: math.unit(115, "feet")
  10046. },
  10047. {
  10048. name: "Macro+",
  10049. height: math.unit(955, "feet")
  10050. },
  10051. {
  10052. name: "Megamacro",
  10053. height: math.unit(8990, "feet")
  10054. },
  10055. {
  10056. name: "Gigmacro",
  10057. height: math.unit(9310, "miles")
  10058. },
  10059. {
  10060. name: "Teramacro",
  10061. height: math.unit(1567005010, "miles")
  10062. },
  10063. {
  10064. name: "Examacro",
  10065. height: math.unit(1425, "parsecs")
  10066. },
  10067. ]
  10068. ))
  10069. characterMakers.push(() => makeCharacter(
  10070. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10071. {
  10072. front: {
  10073. height: math.unit(400, "feet"),
  10074. weight: math.unit(44444444, "lb"),
  10075. name: "Front",
  10076. image: {
  10077. source: "./media/characters/major-colonel/front.svg"
  10078. }
  10079. },
  10080. back: {
  10081. height: math.unit(400, "feet"),
  10082. weight: math.unit(44444444, "lb"),
  10083. name: "Back",
  10084. image: {
  10085. source: "./media/characters/major-colonel/back.svg"
  10086. }
  10087. },
  10088. },
  10089. [
  10090. {
  10091. name: "Macro",
  10092. height: math.unit(400, "feet"),
  10093. default: true
  10094. },
  10095. ]
  10096. ))
  10097. characterMakers.push(() => makeCharacter(
  10098. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10099. {
  10100. catFront: {
  10101. height: math.unit(6, "feet"),
  10102. weight: math.unit(120, "lb"),
  10103. name: "Front (Cat Side)",
  10104. image: {
  10105. source: "./media/characters/axel-lycan/cat-front.svg",
  10106. extra: 430 / 402,
  10107. bottom: 43 / 472.35
  10108. }
  10109. },
  10110. catBack: {
  10111. height: math.unit(6, "feet"),
  10112. weight: math.unit(120, "lb"),
  10113. name: "Back (Cat Side)",
  10114. image: {
  10115. source: "./media/characters/axel-lycan/cat-back.svg",
  10116. extra: 447 / 419,
  10117. bottom: 23.3 / 469
  10118. }
  10119. },
  10120. wolfFront: {
  10121. height: math.unit(6, "feet"),
  10122. weight: math.unit(120, "lb"),
  10123. name: "Front (Wolf Side)",
  10124. image: {
  10125. source: "./media/characters/axel-lycan/wolf-front.svg",
  10126. extra: 485 / 456,
  10127. bottom: 19 / 504
  10128. }
  10129. },
  10130. wolfBack: {
  10131. height: math.unit(6, "feet"),
  10132. weight: math.unit(120, "lb"),
  10133. name: "Back (Wolf Side)",
  10134. image: {
  10135. source: "./media/characters/axel-lycan/wolf-back.svg",
  10136. extra: 475 / 438,
  10137. bottom: 39.2 / 514
  10138. }
  10139. },
  10140. },
  10141. [
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(1, "km"),
  10145. default: true
  10146. },
  10147. ]
  10148. ))
  10149. characterMakers.push(() => makeCharacter(
  10150. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10151. {
  10152. front: {
  10153. height: math.unit(5 + 9 / 12, "feet"),
  10154. weight: math.unit(175, "lb"),
  10155. name: "Front",
  10156. image: {
  10157. source: "./media/characters/vanrel-hyena/front.svg",
  10158. extra: 1086 / 1010,
  10159. bottom: 0.04
  10160. }
  10161. },
  10162. },
  10163. [
  10164. {
  10165. name: "Normal",
  10166. height: math.unit(5 + 9 / 12, "feet"),
  10167. default: true
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10173. {
  10174. front: {
  10175. height: math.unit(6, "feet"),
  10176. weight: math.unit(103, "lb"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/abbott-absol/front.svg",
  10180. extra: 2010 / 1842
  10181. }
  10182. },
  10183. },
  10184. [
  10185. {
  10186. name: "Megamicro",
  10187. height: math.unit(0.1, "mm")
  10188. },
  10189. {
  10190. name: "Micro",
  10191. height: math.unit(1, "inch")
  10192. },
  10193. {
  10194. name: "Normal",
  10195. height: math.unit(6, "feet"),
  10196. default: true
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(6, "feet"),
  10205. weight: math.unit(264, "lb"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/hector/front.svg",
  10209. extra: 2280 / 2130,
  10210. bottom: 0.07
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(12.25, "foot"),
  10218. default: true
  10219. },
  10220. {
  10221. name: "Macro",
  10222. height: math.unit(160, "feet")
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(6, "feet"),
  10231. weight: math.unit(150, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/sal/front.svg",
  10235. extra: 1846 / 1699,
  10236. bottom: 0.04
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Megamacro",
  10243. height: math.unit(10, "miles"),
  10244. default: true
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10250. {
  10251. front: {
  10252. height: math.unit(3, "meters"),
  10253. weight: math.unit(450, "kg"),
  10254. name: "front",
  10255. image: {
  10256. source: "./media/characters/ranger/front.svg",
  10257. extra: 2401 / 2243,
  10258. bottom: 0.05
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Normal",
  10265. height: math.unit(3, "meters"),
  10266. default: true
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10272. {
  10273. front: {
  10274. height: math.unit(14, "feet"),
  10275. weight: math.unit(800, "kg"),
  10276. name: "Front",
  10277. image: {
  10278. source: "./media/characters/theresa/front.svg",
  10279. extra: 3575 / 3346,
  10280. bottom: 0.03
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(14, "feet"),
  10288. default: true
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10294. {
  10295. front: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(3, "kg"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/ine/front.svg",
  10301. extra: 678 / 539,
  10302. bottom: 0.023
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Normal",
  10309. height: math.unit(2.265, "feet"),
  10310. default: true
  10311. },
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10316. {
  10317. front: {
  10318. height: math.unit(5, "feet"),
  10319. weight: math.unit(30, "kg"),
  10320. name: "Front",
  10321. image: {
  10322. source: "./media/characters/vial/front.svg",
  10323. extra: 1365 / 1277,
  10324. bottom: 0.04
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(5, "feet"),
  10332. default: true
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10338. {
  10339. side: {
  10340. height: math.unit(3.4, "meters"),
  10341. weight: math.unit(1000, "lb"),
  10342. name: "Side",
  10343. image: {
  10344. source: "./media/characters/rovoska/side.svg",
  10345. extra: 4403 / 1515
  10346. }
  10347. },
  10348. },
  10349. [
  10350. {
  10351. name: "Normal",
  10352. height: math.unit(3.4, "meters"),
  10353. default: true
  10354. },
  10355. ]
  10356. ))
  10357. characterMakers.push(() => makeCharacter(
  10358. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10359. {
  10360. front: {
  10361. height: math.unit(8, "feet"),
  10362. weight: math.unit(315, "lb"),
  10363. name: "Front",
  10364. image: {
  10365. source: "./media/characters/gunner-rotthbauer/front.svg"
  10366. }
  10367. },
  10368. back: {
  10369. height: math.unit(8, "feet"),
  10370. weight: math.unit(315, "lb"),
  10371. name: "Back",
  10372. image: {
  10373. source: "./media/characters/gunner-rotthbauer/back.svg"
  10374. }
  10375. },
  10376. },
  10377. [
  10378. {
  10379. name: "Micro",
  10380. height: math.unit(3.5, "inches")
  10381. },
  10382. {
  10383. name: "Normal",
  10384. height: math.unit(8, "feet"),
  10385. default: true
  10386. },
  10387. {
  10388. name: "Macro",
  10389. height: math.unit(250, "feet")
  10390. },
  10391. {
  10392. name: "Megamacro",
  10393. height: math.unit(1, "AU")
  10394. },
  10395. ]
  10396. ))
  10397. characterMakers.push(() => makeCharacter(
  10398. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10399. {
  10400. front: {
  10401. height: math.unit(5 + 5 / 12, "feet"),
  10402. weight: math.unit(140, "lb"),
  10403. name: "Front",
  10404. image: {
  10405. source: "./media/characters/allatia/front.svg",
  10406. extra: 1227 / 1180,
  10407. bottom: 0.027
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Normal",
  10414. height: math.unit(5 + 5 / 12, "feet")
  10415. },
  10416. {
  10417. name: "Macro",
  10418. height: math.unit(250, "feet"),
  10419. default: true
  10420. },
  10421. {
  10422. name: "Megamacro",
  10423. height: math.unit(8, "miles")
  10424. }
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10429. {
  10430. front: {
  10431. height: math.unit(6, "feet"),
  10432. weight: math.unit(120, "lb"),
  10433. name: "Front",
  10434. image: {
  10435. source: "./media/characters/tene/front.svg",
  10436. extra: 814/750,
  10437. bottom: 36/850
  10438. }
  10439. },
  10440. stomping: {
  10441. height: math.unit(2.025, "meters"),
  10442. weight: math.unit(120, "lb"),
  10443. name: "Stomping",
  10444. image: {
  10445. source: "./media/characters/tene/stomping.svg",
  10446. extra: 885/821,
  10447. bottom: 15/900
  10448. }
  10449. },
  10450. sitting: {
  10451. height: math.unit(1, "meter"),
  10452. weight: math.unit(120, "lb"),
  10453. name: "Sitting",
  10454. image: {
  10455. source: "./media/characters/tene/sitting.svg",
  10456. extra: 396/366,
  10457. bottom: 79/475
  10458. }
  10459. },
  10460. smiling: {
  10461. height: math.unit(1.2, "feet"),
  10462. name: "Smiling",
  10463. image: {
  10464. source: "./media/characters/tene/smiling.svg",
  10465. extra: 1364/1071,
  10466. bottom: 0/1364
  10467. }
  10468. },
  10469. smug: {
  10470. height: math.unit(1.3, "feet"),
  10471. name: "Smug",
  10472. image: {
  10473. source: "./media/characters/tene/smug.svg",
  10474. extra: 1323/1082,
  10475. bottom: 0/1323
  10476. }
  10477. },
  10478. feral: {
  10479. height: math.unit(3.9, "feet"),
  10480. weight: math.unit(250, "lb"),
  10481. name: "Feral",
  10482. image: {
  10483. source: "./media/characters/tene/feral.svg",
  10484. extra: 717 / 458,
  10485. bottom: 0.179
  10486. }
  10487. },
  10488. },
  10489. [
  10490. {
  10491. name: "Normal",
  10492. height: math.unit(6, "feet")
  10493. },
  10494. {
  10495. name: "Macro",
  10496. height: math.unit(300, "feet"),
  10497. default: true
  10498. },
  10499. {
  10500. name: "Megamacro",
  10501. height: math.unit(5, "miles")
  10502. },
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10507. {
  10508. side: {
  10509. height: math.unit(6, "feet"),
  10510. name: "Side",
  10511. image: {
  10512. source: "./media/characters/evander/side.svg",
  10513. extra: 877 / 477
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(0.83, "meters"),
  10521. default: true
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10527. {
  10528. front: {
  10529. height: math.unit(12, "feet"),
  10530. weight: math.unit(1000, "lb"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10534. extra: 1762 / 1611
  10535. }
  10536. },
  10537. back: {
  10538. height: math.unit(12, "feet"),
  10539. weight: math.unit(1000, "lb"),
  10540. name: "Back",
  10541. image: {
  10542. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10543. extra: 1762 / 1611
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Normal",
  10550. height: math.unit(12, "feet"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "Kaiju",
  10555. height: math.unit(150, "feet")
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/zero-alurus/front.svg"
  10568. }
  10569. },
  10570. back: {
  10571. height: math.unit(6, "feet"),
  10572. weight: math.unit(150, "lb"),
  10573. name: "Back",
  10574. image: {
  10575. source: "./media/characters/zero-alurus/back.svg"
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Normal",
  10582. height: math.unit(5 + 10 / 12, "feet")
  10583. },
  10584. {
  10585. name: "Macro",
  10586. height: math.unit(60, "feet"),
  10587. default: true
  10588. },
  10589. {
  10590. name: "Macro+",
  10591. height: math.unit(450, "feet")
  10592. },
  10593. ]
  10594. ))
  10595. characterMakers.push(() => makeCharacter(
  10596. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10597. {
  10598. front: {
  10599. height: math.unit(6, "feet"),
  10600. weight: math.unit(200, "lb"),
  10601. name: "Front",
  10602. image: {
  10603. source: "./media/characters/mega-shi/front.svg",
  10604. extra: 1279 / 1250,
  10605. bottom: 0.02
  10606. }
  10607. },
  10608. back: {
  10609. height: math.unit(6, "feet"),
  10610. weight: math.unit(200, "lb"),
  10611. name: "Back",
  10612. image: {
  10613. source: "./media/characters/mega-shi/back.svg",
  10614. extra: 1279 / 1250,
  10615. bottom: 0.02
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Micro",
  10622. height: math.unit(16 + 6 / 12, "feet")
  10623. },
  10624. {
  10625. name: "Third Dimension",
  10626. height: math.unit(40, "meters")
  10627. },
  10628. {
  10629. name: "Normal",
  10630. height: math.unit(660, "feet"),
  10631. default: true
  10632. },
  10633. {
  10634. name: "Megamacro",
  10635. height: math.unit(10, "miles")
  10636. },
  10637. {
  10638. name: "Planetary Launch",
  10639. height: math.unit(500, "miles")
  10640. },
  10641. {
  10642. name: "Interstellar",
  10643. height: math.unit(1e9, "miles")
  10644. },
  10645. {
  10646. name: "Leaving the Universe",
  10647. height: math.unit(1, "gigaparsec")
  10648. },
  10649. {
  10650. name: "Travelling Universes",
  10651. height: math.unit(30e15, "parsecs")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(5 + 4/12, "feet"),
  10660. weight: math.unit(120, "lb"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/odyssey/front.svg",
  10664. extra: 1747/1571,
  10665. bottom: 47/1794
  10666. }
  10667. },
  10668. side: {
  10669. height: math.unit(5.1, "feet"),
  10670. weight: math.unit(120, "lb"),
  10671. name: "Side",
  10672. image: {
  10673. source: "./media/characters/odyssey/side.svg",
  10674. extra: 1847/1619,
  10675. bottom: 47/1894
  10676. }
  10677. },
  10678. lounging: {
  10679. height: math.unit(1.464, "feet"),
  10680. weight: math.unit(120, "lb"),
  10681. name: "Lounging",
  10682. image: {
  10683. source: "./media/characters/odyssey/lounging.svg",
  10684. extra: 1235/837,
  10685. bottom: 551/1786
  10686. }
  10687. },
  10688. },
  10689. [
  10690. {
  10691. name: "Normal",
  10692. height: math.unit(5 + 4 / 12, "feet")
  10693. },
  10694. {
  10695. name: "Macro",
  10696. height: math.unit(1, "km")
  10697. },
  10698. {
  10699. name: "Megamacro",
  10700. height: math.unit(3000, "km")
  10701. },
  10702. {
  10703. name: "Gigamacro",
  10704. height: math.unit(1, "AU"),
  10705. default: true
  10706. },
  10707. {
  10708. name: "Omniversal",
  10709. height: math.unit(100e14, "lightyears")
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10715. {
  10716. front: {
  10717. height: math.unit(6, "feet"),
  10718. weight: math.unit(300, "lb"),
  10719. name: "Front",
  10720. image: {
  10721. source: "./media/characters/mekuto/front.svg",
  10722. extra: 921 / 832,
  10723. bottom: 0.03
  10724. }
  10725. },
  10726. hand: {
  10727. height: math.unit(6 / 10.24, "feet"),
  10728. name: "Hand",
  10729. image: {
  10730. source: "./media/characters/mekuto/hand.svg"
  10731. }
  10732. },
  10733. foot: {
  10734. height: math.unit(6 / 5.05, "feet"),
  10735. name: "Foot",
  10736. image: {
  10737. source: "./media/characters/mekuto/foot.svg"
  10738. }
  10739. },
  10740. },
  10741. [
  10742. {
  10743. name: "Minimicro",
  10744. height: math.unit(0.2, "inches")
  10745. },
  10746. {
  10747. name: "Micro",
  10748. height: math.unit(1.5, "inches")
  10749. },
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(5 + 11 / 12, "feet"),
  10753. default: true
  10754. },
  10755. {
  10756. name: "Minimacro",
  10757. height: math.unit(17 + 9 / 12, "feet")
  10758. },
  10759. {
  10760. name: "Macro",
  10761. height: math.unit(177.5, "feet")
  10762. },
  10763. {
  10764. name: "Megamacro",
  10765. height: math.unit(152, "miles")
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(6.5, "inches"),
  10774. weight: math.unit(13, "oz"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/dafydd-tomos/front.svg",
  10778. extra: 2990 / 2603,
  10779. bottom: 0.03
  10780. }
  10781. },
  10782. },
  10783. [
  10784. {
  10785. name: "Micro",
  10786. height: math.unit(6.5, "inches"),
  10787. default: true
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(6, "feet"),
  10796. weight: math.unit(150, "lb"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/splinter/front.svg",
  10800. extra: 2990 / 2882,
  10801. bottom: 0.04
  10802. }
  10803. },
  10804. back: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(150, "lb"),
  10807. name: "Back",
  10808. image: {
  10809. source: "./media/characters/splinter/back.svg",
  10810. extra: 2990 / 2882,
  10811. bottom: 0.04
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Normal",
  10818. height: math.unit(6, "feet")
  10819. },
  10820. {
  10821. name: "Macro",
  10822. height: math.unit(230, "meters"),
  10823. default: true
  10824. },
  10825. ]
  10826. ))
  10827. characterMakers.push(() => makeCharacter(
  10828. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10829. {
  10830. front: {
  10831. height: math.unit(4 + 10 / 12, "feet"),
  10832. weight: math.unit(480, "lb"),
  10833. name: "Front",
  10834. image: {
  10835. source: "./media/characters/snow-gabumon/front.svg",
  10836. extra: 1140 / 963,
  10837. bottom: 0.058
  10838. }
  10839. },
  10840. back: {
  10841. height: math.unit(4 + 10 / 12, "feet"),
  10842. weight: math.unit(480, "lb"),
  10843. name: "Back",
  10844. image: {
  10845. source: "./media/characters/snow-gabumon/back.svg",
  10846. extra: 1115 / 962,
  10847. bottom: 0.041
  10848. }
  10849. },
  10850. frontUndresed: {
  10851. height: math.unit(4 + 10 / 12, "feet"),
  10852. weight: math.unit(480, "lb"),
  10853. name: "Front (Undressed)",
  10854. image: {
  10855. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10856. extra: 1061 / 960,
  10857. bottom: 0.045
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Micro",
  10864. height: math.unit(1, "inch")
  10865. },
  10866. {
  10867. name: "Normal",
  10868. height: math.unit(4 + 10 / 12, "feet"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Macro",
  10873. height: math.unit(200, "feet")
  10874. },
  10875. {
  10876. name: "Megamacro",
  10877. height: math.unit(120, "miles")
  10878. },
  10879. {
  10880. name: "Gigamacro",
  10881. height: math.unit(9800, "miles")
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10887. {
  10888. front: {
  10889. height: math.unit(1.7, "meters"),
  10890. weight: math.unit(140, "lb"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/moody/front.svg",
  10894. extra: 3226 / 3007,
  10895. bottom: 0.087
  10896. }
  10897. },
  10898. },
  10899. [
  10900. {
  10901. name: "Micro",
  10902. height: math.unit(1, "mm")
  10903. },
  10904. {
  10905. name: "Normal",
  10906. height: math.unit(1.7, "meters"),
  10907. default: true
  10908. },
  10909. {
  10910. name: "Macro",
  10911. height: math.unit(80, "meters")
  10912. },
  10913. {
  10914. name: "Macro+",
  10915. height: math.unit(500, "meters")
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10921. {
  10922. front: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(150, "lb"),
  10925. name: "Front",
  10926. image: {
  10927. source: "./media/characters/zyas/front.svg",
  10928. extra: 1180 / 1120,
  10929. bottom: 0.045
  10930. }
  10931. },
  10932. },
  10933. [
  10934. {
  10935. name: "Normal",
  10936. height: math.unit(10, "feet"),
  10937. default: true
  10938. },
  10939. {
  10940. name: "Macro",
  10941. height: math.unit(500, "feet")
  10942. },
  10943. {
  10944. name: "Megamacro",
  10945. height: math.unit(5, "miles")
  10946. },
  10947. {
  10948. name: "Teramacro",
  10949. height: math.unit(150000, "miles")
  10950. },
  10951. ]
  10952. ))
  10953. characterMakers.push(() => makeCharacter(
  10954. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10955. {
  10956. front: {
  10957. height: math.unit(6, "feet"),
  10958. weight: math.unit(150, "lb"),
  10959. name: "Front",
  10960. image: {
  10961. source: "./media/characters/cuon/front.svg",
  10962. extra: 1390 / 1320,
  10963. bottom: 0.008
  10964. }
  10965. },
  10966. },
  10967. [
  10968. {
  10969. name: "Micro",
  10970. height: math.unit(3, "inches")
  10971. },
  10972. {
  10973. name: "Normal",
  10974. height: math.unit(18 + 9 / 12, "feet"),
  10975. default: true
  10976. },
  10977. {
  10978. name: "Macro",
  10979. height: math.unit(360, "feet")
  10980. },
  10981. {
  10982. name: "Megamacro",
  10983. height: math.unit(360, "miles")
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10989. {
  10990. front: {
  10991. height: math.unit(2.4, "meters"),
  10992. weight: math.unit(70, "kg"),
  10993. name: "Front",
  10994. image: {
  10995. source: "./media/characters/nyanuxk/front.svg",
  10996. extra: 1172 / 1084,
  10997. bottom: 0.065
  10998. }
  10999. },
  11000. side: {
  11001. height: math.unit(2.4, "meters"),
  11002. weight: math.unit(70, "kg"),
  11003. name: "Side",
  11004. image: {
  11005. source: "./media/characters/nyanuxk/side.svg",
  11006. extra: 1190 / 1132,
  11007. bottom: 0.007
  11008. }
  11009. },
  11010. back: {
  11011. height: math.unit(2.4, "meters"),
  11012. weight: math.unit(70, "kg"),
  11013. name: "Back",
  11014. image: {
  11015. source: "./media/characters/nyanuxk/back.svg",
  11016. extra: 1200 / 1141,
  11017. bottom: 0.015
  11018. }
  11019. },
  11020. foot: {
  11021. height: math.unit(0.52, "meters"),
  11022. name: "Foot",
  11023. image: {
  11024. source: "./media/characters/nyanuxk/foot.svg"
  11025. }
  11026. },
  11027. },
  11028. [
  11029. {
  11030. name: "Micro",
  11031. height: math.unit(2, "cm")
  11032. },
  11033. {
  11034. name: "Normal",
  11035. height: math.unit(2.4, "meters"),
  11036. default: true
  11037. },
  11038. {
  11039. name: "Smaller Macro",
  11040. height: math.unit(120, "meters")
  11041. },
  11042. {
  11043. name: "Bigger Macro",
  11044. height: math.unit(1.2, "km")
  11045. },
  11046. {
  11047. name: "Megamacro",
  11048. height: math.unit(15, "kilometers")
  11049. },
  11050. {
  11051. name: "Gigamacro",
  11052. height: math.unit(2000, "km")
  11053. },
  11054. {
  11055. name: "Teramacro",
  11056. height: math.unit(500000, "km")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11062. {
  11063. side: {
  11064. height: math.unit(6, "feet"),
  11065. name: "Side",
  11066. image: {
  11067. source: "./media/characters/ailbhe/side.svg",
  11068. extra: 757 / 464,
  11069. bottom: 0.041
  11070. }
  11071. },
  11072. },
  11073. [
  11074. {
  11075. name: "Normal",
  11076. height: math.unit(1.07, "meters"),
  11077. default: true
  11078. },
  11079. ]
  11080. ))
  11081. characterMakers.push(() => makeCharacter(
  11082. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11083. {
  11084. front: {
  11085. height: math.unit(6, "feet"),
  11086. weight: math.unit(120, "kg"),
  11087. name: "Front",
  11088. image: {
  11089. source: "./media/characters/zevulfius/front.svg",
  11090. extra: 965 / 903
  11091. }
  11092. },
  11093. side: {
  11094. height: math.unit(6, "feet"),
  11095. weight: math.unit(120, "kg"),
  11096. name: "Side",
  11097. image: {
  11098. source: "./media/characters/zevulfius/side.svg",
  11099. extra: 939 / 900
  11100. }
  11101. },
  11102. back: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(120, "kg"),
  11105. name: "Back",
  11106. image: {
  11107. source: "./media/characters/zevulfius/back.svg",
  11108. extra: 918 / 854,
  11109. bottom: 0.005
  11110. }
  11111. },
  11112. foot: {
  11113. height: math.unit(6 / 3.72, "feet"),
  11114. name: "Foot",
  11115. image: {
  11116. source: "./media/characters/zevulfius/foot.svg"
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Macro",
  11123. height: math.unit(750, "meters")
  11124. },
  11125. {
  11126. name: "Megamacro",
  11127. height: math.unit(20, "km"),
  11128. default: true
  11129. },
  11130. {
  11131. name: "Gigamacro",
  11132. height: math.unit(2000, "km")
  11133. },
  11134. {
  11135. name: "Teramacro",
  11136. height: math.unit(250000, "km")
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11142. {
  11143. front: {
  11144. height: math.unit(100, "feet"),
  11145. weight: math.unit(350, "kg"),
  11146. name: "Front",
  11147. image: {
  11148. source: "./media/characters/rikes/front.svg",
  11149. extra: 1565 / 1483,
  11150. bottom: 0.017
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Macro",
  11157. height: math.unit(100, "feet"),
  11158. default: true
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11164. {
  11165. front: {
  11166. height: math.unit(8, "feet"),
  11167. weight: math.unit(356, "lb"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/adam-silver-mane/front.svg",
  11171. extra: 1036/937,
  11172. bottom: 63/1099
  11173. }
  11174. },
  11175. side: {
  11176. height: math.unit(8, "feet"),
  11177. weight: math.unit(356, "lb"),
  11178. name: "Side",
  11179. image: {
  11180. source: "./media/characters/adam-silver-mane/side.svg",
  11181. extra: 997/901,
  11182. bottom: 59/1056
  11183. }
  11184. },
  11185. frontNsfw: {
  11186. height: math.unit(8, "feet"),
  11187. weight: math.unit(356, "lb"),
  11188. name: "Front (NSFW)",
  11189. image: {
  11190. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11191. extra: 1036/937,
  11192. bottom: 63/1099
  11193. }
  11194. },
  11195. sideNsfw: {
  11196. height: math.unit(8, "feet"),
  11197. weight: math.unit(356, "lb"),
  11198. name: "Side (NSFW)",
  11199. image: {
  11200. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11201. extra: 997/901,
  11202. bottom: 59/1056
  11203. }
  11204. },
  11205. dick: {
  11206. height: math.unit(2.1, "feet"),
  11207. name: "Dick",
  11208. image: {
  11209. source: "./media/characters/adam-silver-mane/dick.svg"
  11210. }
  11211. },
  11212. taur: {
  11213. height: math.unit(16, "feet"),
  11214. weight: math.unit(1500, "kg"),
  11215. name: "Taur",
  11216. image: {
  11217. source: "./media/characters/adam-silver-mane/taur.svg",
  11218. extra: 1713 / 1571,
  11219. bottom: 0.01
  11220. }
  11221. },
  11222. },
  11223. [
  11224. {
  11225. name: "Normal",
  11226. height: math.unit(8, "feet")
  11227. },
  11228. {
  11229. name: "Minimacro",
  11230. height: math.unit(80, "feet")
  11231. },
  11232. {
  11233. name: "MDA",
  11234. height: math.unit(80, "meters")
  11235. },
  11236. {
  11237. name: "Macro",
  11238. height: math.unit(800, "feet"),
  11239. default: true
  11240. },
  11241. {
  11242. name: "Megamacro",
  11243. height: math.unit(8000, "feet")
  11244. },
  11245. {
  11246. name: "Gigamacro",
  11247. height: math.unit(800, "miles")
  11248. },
  11249. {
  11250. name: "Teramacro",
  11251. height: math.unit(80000, "miles")
  11252. },
  11253. {
  11254. name: "Celestial",
  11255. height: math.unit(8e6, "miles")
  11256. },
  11257. {
  11258. name: "Star Dragon",
  11259. height: math.unit(800000, "parsecs")
  11260. },
  11261. {
  11262. name: "Godly",
  11263. height: math.unit(800, "teraparsecs")
  11264. },
  11265. ]
  11266. ))
  11267. characterMakers.push(() => makeCharacter(
  11268. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11269. {
  11270. front: {
  11271. height: math.unit(6, "feet"),
  11272. weight: math.unit(150, "lb"),
  11273. name: "Front",
  11274. image: {
  11275. source: "./media/characters/ky'owin/front.svg",
  11276. extra: 3888 / 3068,
  11277. bottom: 0.015
  11278. }
  11279. },
  11280. },
  11281. [
  11282. {
  11283. name: "Normal",
  11284. height: math.unit(6 + 8 / 12, "feet")
  11285. },
  11286. {
  11287. name: "Large",
  11288. height: math.unit(68, "feet")
  11289. },
  11290. {
  11291. name: "Macro",
  11292. height: math.unit(132, "feet")
  11293. },
  11294. {
  11295. name: "Macro+",
  11296. height: math.unit(340, "feet")
  11297. },
  11298. {
  11299. name: "Macro++",
  11300. height: math.unit(680, "feet"),
  11301. default: true
  11302. },
  11303. {
  11304. name: "Megamacro",
  11305. height: math.unit(1, "mile")
  11306. },
  11307. {
  11308. name: "Megamacro+",
  11309. height: math.unit(10, "miles")
  11310. },
  11311. ]
  11312. ))
  11313. characterMakers.push(() => makeCharacter(
  11314. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11315. {
  11316. front: {
  11317. height: math.unit(4, "feet"),
  11318. weight: math.unit(50, "lb"),
  11319. name: "Front",
  11320. image: {
  11321. source: "./media/characters/mal/front.svg",
  11322. extra: 785 / 724,
  11323. bottom: 0.07
  11324. }
  11325. },
  11326. },
  11327. [
  11328. {
  11329. name: "Micro",
  11330. height: math.unit(4, "inches")
  11331. },
  11332. {
  11333. name: "Normal",
  11334. height: math.unit(4, "feet"),
  11335. default: true
  11336. },
  11337. {
  11338. name: "Macro",
  11339. height: math.unit(200, "feet")
  11340. },
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11345. {
  11346. front: {
  11347. height: math.unit(6, "feet"),
  11348. weight: math.unit(150, "lb"),
  11349. name: "Front",
  11350. image: {
  11351. source: "./media/characters/jordan-deware/front.svg",
  11352. extra: 1191 / 1012
  11353. }
  11354. },
  11355. },
  11356. [
  11357. {
  11358. name: "Nano",
  11359. height: math.unit(0.01, "mm")
  11360. },
  11361. {
  11362. name: "Minimicro",
  11363. height: math.unit(1, "mm")
  11364. },
  11365. {
  11366. name: "Micro",
  11367. height: math.unit(0.5, "inches")
  11368. },
  11369. {
  11370. name: "Normal",
  11371. height: math.unit(4, "feet"),
  11372. default: true
  11373. },
  11374. {
  11375. name: "Minimacro",
  11376. height: math.unit(40, "meters")
  11377. },
  11378. {
  11379. name: "Small Macro",
  11380. height: math.unit(400, "meters")
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(4, "miles")
  11385. },
  11386. {
  11387. name: "Megamacro",
  11388. height: math.unit(40, "miles")
  11389. },
  11390. {
  11391. name: "Megamacro+",
  11392. height: math.unit(400, "miles")
  11393. },
  11394. {
  11395. name: "Gigamacro",
  11396. height: math.unit(400000, "miles")
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11402. {
  11403. side: {
  11404. height: math.unit(6, "feet"),
  11405. weight: math.unit(150, "lb"),
  11406. name: "Side",
  11407. image: {
  11408. source: "./media/characters/kimiko/side.svg",
  11409. extra: 600 / 358
  11410. }
  11411. },
  11412. },
  11413. [
  11414. {
  11415. name: "Normal",
  11416. height: math.unit(15, "feet"),
  11417. default: true
  11418. },
  11419. {
  11420. name: "Macro",
  11421. height: math.unit(220, "feet")
  11422. },
  11423. {
  11424. name: "Macro+",
  11425. height: math.unit(1450, "feet")
  11426. },
  11427. {
  11428. name: "Megamacro",
  11429. height: math.unit(11500, "feet")
  11430. },
  11431. {
  11432. name: "Gigamacro",
  11433. height: math.unit(9500, "miles")
  11434. },
  11435. {
  11436. name: "Teramacro",
  11437. height: math.unit(2208005005, "miles")
  11438. },
  11439. {
  11440. name: "Examacro",
  11441. height: math.unit(2750, "parsecs")
  11442. },
  11443. {
  11444. name: "Zettamacro",
  11445. height: math.unit(101500, "parsecs")
  11446. },
  11447. ]
  11448. ))
  11449. characterMakers.push(() => makeCharacter(
  11450. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11451. {
  11452. front: {
  11453. height: math.unit(6, "feet"),
  11454. weight: math.unit(70, "kg"),
  11455. name: "Front",
  11456. image: {
  11457. source: "./media/characters/andrew-sleepy/front.svg"
  11458. }
  11459. },
  11460. side: {
  11461. height: math.unit(6, "feet"),
  11462. weight: math.unit(70, "kg"),
  11463. name: "Side",
  11464. image: {
  11465. source: "./media/characters/andrew-sleepy/side.svg"
  11466. }
  11467. },
  11468. },
  11469. [
  11470. {
  11471. name: "Micro",
  11472. height: math.unit(1, "mm"),
  11473. default: true
  11474. },
  11475. ]
  11476. ))
  11477. characterMakers.push(() => makeCharacter(
  11478. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11479. {
  11480. front: {
  11481. height: math.unit(6, "feet"),
  11482. weight: math.unit(150, "lb"),
  11483. name: "Front",
  11484. image: {
  11485. source: "./media/characters/judio/front.svg",
  11486. extra: 1258 / 1110
  11487. }
  11488. },
  11489. },
  11490. [
  11491. {
  11492. name: "Normal",
  11493. height: math.unit(5 + 6 / 12, "feet")
  11494. },
  11495. {
  11496. name: "Macro",
  11497. height: math.unit(1000, "feet"),
  11498. default: true
  11499. },
  11500. {
  11501. name: "Megamacro",
  11502. height: math.unit(10, "miles")
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11508. {
  11509. frontDressed: {
  11510. height: math.unit(6, "feet"),
  11511. weight: math.unit(68, "kg"),
  11512. name: "Front (Dressed)",
  11513. image: {
  11514. source: "./media/characters/nomaxice/front-dressed.svg",
  11515. extra: 1137/824,
  11516. bottom: 74/1211
  11517. }
  11518. },
  11519. frontShorts: {
  11520. height: math.unit(6, "feet"),
  11521. weight: math.unit(68, "kg"),
  11522. name: "Front (Shorts)",
  11523. image: {
  11524. source: "./media/characters/nomaxice/front-shorts.svg",
  11525. extra: 1137/824,
  11526. bottom: 74/1211
  11527. }
  11528. },
  11529. back: {
  11530. height: math.unit(6, "feet"),
  11531. weight: math.unit(68, "kg"),
  11532. name: "Back",
  11533. image: {
  11534. source: "./media/characters/nomaxice/back.svg",
  11535. extra: 822/786,
  11536. bottom: 39/861
  11537. }
  11538. },
  11539. hand: {
  11540. height: math.unit(0.565, "feet"),
  11541. name: "Hand",
  11542. image: {
  11543. source: "./media/characters/nomaxice/hand.svg"
  11544. }
  11545. },
  11546. foot: {
  11547. height: math.unit(1, "feet"),
  11548. name: "Foot",
  11549. image: {
  11550. source: "./media/characters/nomaxice/foot.svg"
  11551. }
  11552. },
  11553. },
  11554. [
  11555. {
  11556. name: "Micro",
  11557. height: math.unit(8, "cm")
  11558. },
  11559. {
  11560. name: "Norm",
  11561. height: math.unit(1.82, "m")
  11562. },
  11563. {
  11564. name: "Norm+",
  11565. height: math.unit(8.8, "feet"),
  11566. default: true
  11567. },
  11568. {
  11569. name: "Big",
  11570. height: math.unit(8, "meters")
  11571. },
  11572. {
  11573. name: "Macro",
  11574. height: math.unit(18, "meters")
  11575. },
  11576. {
  11577. name: "Macro+",
  11578. height: math.unit(88, "meters")
  11579. },
  11580. ]
  11581. ))
  11582. characterMakers.push(() => makeCharacter(
  11583. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11584. {
  11585. front: {
  11586. height: math.unit(12, "feet"),
  11587. weight: math.unit(1.5, "tons"),
  11588. name: "Front",
  11589. image: {
  11590. source: "./media/characters/dydros/front.svg",
  11591. extra: 863 / 800,
  11592. bottom: 0.015
  11593. }
  11594. },
  11595. back: {
  11596. height: math.unit(12, "feet"),
  11597. weight: math.unit(1.5, "tons"),
  11598. name: "Back",
  11599. image: {
  11600. source: "./media/characters/dydros/back.svg",
  11601. extra: 900 / 843,
  11602. bottom: 0.005
  11603. }
  11604. },
  11605. },
  11606. [
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(12, "feet"),
  11610. default: true
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11616. {
  11617. front: {
  11618. height: math.unit(6, "feet"),
  11619. weight: math.unit(100, "kg"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/riggi/front.svg",
  11623. extra: 5787 / 5303
  11624. }
  11625. },
  11626. hyper: {
  11627. height: math.unit(6 * 5 / 3, "feet"),
  11628. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11629. name: "Hyper",
  11630. image: {
  11631. source: "./media/characters/riggi/hyper.svg",
  11632. extra: 3595 / 3485
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Small Macro",
  11639. height: math.unit(50, "feet")
  11640. },
  11641. {
  11642. name: "Default",
  11643. height: math.unit(200, "feet"),
  11644. default: true
  11645. },
  11646. {
  11647. name: "Loom",
  11648. height: math.unit(10000, "feet")
  11649. },
  11650. {
  11651. name: "Cruising Altitude",
  11652. height: math.unit(30000, "feet")
  11653. },
  11654. {
  11655. name: "Megamacro",
  11656. height: math.unit(100, "miles")
  11657. },
  11658. {
  11659. name: "Continent Sized",
  11660. height: math.unit(2800, "miles")
  11661. },
  11662. {
  11663. name: "Earth Sized",
  11664. height: math.unit(8000, "miles")
  11665. },
  11666. ]
  11667. ))
  11668. characterMakers.push(() => makeCharacter(
  11669. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11670. {
  11671. front: {
  11672. height: math.unit(6, "feet"),
  11673. weight: math.unit(250, "lb"),
  11674. name: "Front",
  11675. image: {
  11676. source: "./media/characters/alexi/front.svg",
  11677. extra: 3483 / 3291,
  11678. bottom: 0.04
  11679. }
  11680. },
  11681. back: {
  11682. height: math.unit(6, "feet"),
  11683. weight: math.unit(250, "lb"),
  11684. name: "Back",
  11685. image: {
  11686. source: "./media/characters/alexi/back.svg",
  11687. extra: 3533 / 3356,
  11688. bottom: 0.021
  11689. }
  11690. },
  11691. frontTransforming: {
  11692. height: math.unit(8.58, "feet"),
  11693. weight: math.unit(1300, "lb"),
  11694. name: "Transforming",
  11695. image: {
  11696. source: "./media/characters/alexi/front-transforming.svg",
  11697. extra: 437 / 409,
  11698. bottom: 19 / 458.66
  11699. }
  11700. },
  11701. frontTransformed: {
  11702. height: math.unit(12.5, "feet"),
  11703. weight: math.unit(4000, "lb"),
  11704. name: "Transformed",
  11705. image: {
  11706. source: "./media/characters/alexi/front-transformed.svg",
  11707. extra: 639 / 614,
  11708. bottom: 30.55 / 671
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "Normal",
  11715. height: math.unit(14, "feet"),
  11716. default: true
  11717. },
  11718. {
  11719. name: "Minimacro",
  11720. height: math.unit(30, "meters")
  11721. },
  11722. {
  11723. name: "Macro",
  11724. height: math.unit(500, "meters")
  11725. },
  11726. {
  11727. name: "Megamacro",
  11728. height: math.unit(9000, "km")
  11729. },
  11730. {
  11731. name: "Teramacro",
  11732. height: math.unit(384000, "km")
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11738. {
  11739. front: {
  11740. height: math.unit(6, "feet"),
  11741. weight: math.unit(150, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/kayroo/front.svg",
  11745. extra: 1153 / 1038,
  11746. bottom: 0.06
  11747. }
  11748. },
  11749. foot: {
  11750. height: math.unit(6, "feet"),
  11751. weight: math.unit(150, "lb"),
  11752. name: "Foot",
  11753. image: {
  11754. source: "./media/characters/kayroo/foot.svg"
  11755. }
  11756. },
  11757. },
  11758. [
  11759. {
  11760. name: "Normal",
  11761. height: math.unit(8, "feet"),
  11762. default: true
  11763. },
  11764. {
  11765. name: "Minimacro",
  11766. height: math.unit(250, "feet")
  11767. },
  11768. {
  11769. name: "Macro",
  11770. height: math.unit(2800, "feet")
  11771. },
  11772. {
  11773. name: "Megamacro",
  11774. height: math.unit(5200, "feet")
  11775. },
  11776. {
  11777. name: "Gigamacro",
  11778. height: math.unit(27000, "feet")
  11779. },
  11780. {
  11781. name: "Omega",
  11782. height: math.unit(45000, "feet")
  11783. },
  11784. ]
  11785. ))
  11786. characterMakers.push(() => makeCharacter(
  11787. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11788. {
  11789. front: {
  11790. height: math.unit(18, "feet"),
  11791. weight: math.unit(5800, "lb"),
  11792. name: "Front",
  11793. image: {
  11794. source: "./media/characters/rhys/front.svg",
  11795. extra: 3386 / 3090,
  11796. bottom: 0.07
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Normal",
  11803. height: math.unit(18, "feet"),
  11804. default: true
  11805. },
  11806. {
  11807. name: "Working Size",
  11808. height: math.unit(200, "feet")
  11809. },
  11810. {
  11811. name: "Demolition Size",
  11812. height: math.unit(2000, "feet")
  11813. },
  11814. {
  11815. name: "Maximum Licensed Size",
  11816. height: math.unit(5, "miles")
  11817. },
  11818. {
  11819. name: "Maximum Observed Size",
  11820. height: math.unit(10, "yottameters")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(250, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/toto/front.svg",
  11833. extra: 527 / 479,
  11834. bottom: 0.05
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Micro",
  11841. height: math.unit(3, "feet")
  11842. },
  11843. {
  11844. name: "Normal",
  11845. height: math.unit(10, "feet")
  11846. },
  11847. {
  11848. name: "Macro",
  11849. height: math.unit(150, "feet"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Megamacro",
  11854. height: math.unit(1200, "feet")
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "King", species: ["lion"], tags: ["anthro"] },
  11860. {
  11861. back: {
  11862. height: math.unit(6, "feet"),
  11863. weight: math.unit(150, "lb"),
  11864. name: "Back",
  11865. image: {
  11866. source: "./media/characters/king/back.svg"
  11867. }
  11868. },
  11869. },
  11870. [
  11871. {
  11872. name: "Micro",
  11873. height: math.unit(2, "inches")
  11874. },
  11875. {
  11876. name: "Normal",
  11877. height: math.unit(8, "feet")
  11878. },
  11879. {
  11880. name: "Macro",
  11881. height: math.unit(200, "feet"),
  11882. default: true
  11883. },
  11884. {
  11885. name: "Megamacro",
  11886. height: math.unit(50, "miles")
  11887. },
  11888. ]
  11889. ))
  11890. characterMakers.push(() => makeCharacter(
  11891. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11892. {
  11893. front: {
  11894. height: math.unit(11, "feet"),
  11895. weight: math.unit(1400, "lb"),
  11896. name: "Front",
  11897. image: {
  11898. source: "./media/characters/cordite/front.svg",
  11899. extra: 1919/1827,
  11900. bottom: 40/1959
  11901. }
  11902. },
  11903. side: {
  11904. height: math.unit(11, "feet"),
  11905. weight: math.unit(1400, "lb"),
  11906. name: "Side",
  11907. image: {
  11908. source: "./media/characters/cordite/side.svg",
  11909. extra: 1908/1793,
  11910. bottom: 38/1946
  11911. }
  11912. },
  11913. back: {
  11914. height: math.unit(11, "feet"),
  11915. weight: math.unit(1400, "lb"),
  11916. name: "Back",
  11917. image: {
  11918. source: "./media/characters/cordite/back.svg",
  11919. extra: 1938/1837,
  11920. bottom: 10/1948
  11921. }
  11922. },
  11923. feral: {
  11924. height: math.unit(2, "feet"),
  11925. weight: math.unit(90, "lb"),
  11926. name: "Feral",
  11927. image: {
  11928. source: "./media/characters/cordite/feral.svg",
  11929. extra: 1260 / 755,
  11930. bottom: 0.05
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Normal",
  11937. height: math.unit(11, "feet"),
  11938. default: true
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11944. {
  11945. front: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(150, "lb"),
  11948. name: "Front",
  11949. image: {
  11950. source: "./media/characters/pianostrong/front.svg",
  11951. extra: 6577 / 6254,
  11952. bottom: 0.02
  11953. }
  11954. },
  11955. side: {
  11956. height: math.unit(6, "feet"),
  11957. weight: math.unit(150, "lb"),
  11958. name: "Side",
  11959. image: {
  11960. source: "./media/characters/pianostrong/side.svg",
  11961. extra: 6106 / 5730
  11962. }
  11963. },
  11964. back: {
  11965. height: math.unit(6, "feet"),
  11966. weight: math.unit(150, "lb"),
  11967. name: "Back",
  11968. image: {
  11969. source: "./media/characters/pianostrong/back.svg",
  11970. extra: 6085 / 5733,
  11971. bottom: 0.01
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Macro",
  11978. height: math.unit(100, "feet")
  11979. },
  11980. {
  11981. name: "Macro+",
  11982. height: math.unit(300, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Macro++",
  11987. height: math.unit(1000, "feet")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(150, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/kona/front.svg",
  12000. extra: 2960 / 2629,
  12001. bottom: 0.005
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Normal",
  12008. height: math.unit(11 + 8 / 12, "feet")
  12009. },
  12010. {
  12011. name: "Macro",
  12012. height: math.unit(850, "feet"),
  12013. default: true
  12014. },
  12015. {
  12016. name: "Macro+",
  12017. height: math.unit(1.5, "km"),
  12018. default: true
  12019. },
  12020. {
  12021. name: "Megamacro",
  12022. height: math.unit(80, "miles")
  12023. },
  12024. {
  12025. name: "Gigamacro",
  12026. height: math.unit(3500, "miles")
  12027. },
  12028. ]
  12029. ))
  12030. characterMakers.push(() => makeCharacter(
  12031. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12032. {
  12033. side: {
  12034. height: math.unit(1.9, "meters"),
  12035. weight: math.unit(326, "kg"),
  12036. name: "Side",
  12037. image: {
  12038. source: "./media/characters/levi/side.svg",
  12039. extra: 1704 / 1334,
  12040. bottom: 0.02
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Normal",
  12047. height: math.unit(1.9, "meters"),
  12048. default: true
  12049. },
  12050. {
  12051. name: "Macro",
  12052. height: math.unit(20, "meters")
  12053. },
  12054. {
  12055. name: "Macro+",
  12056. height: math.unit(200, "meters")
  12057. },
  12058. {
  12059. name: "Megamacro",
  12060. height: math.unit(2, "km")
  12061. },
  12062. {
  12063. name: "Megamacro+",
  12064. height: math.unit(20, "km")
  12065. },
  12066. {
  12067. name: "Gigamacro",
  12068. height: math.unit(2500, "km")
  12069. },
  12070. {
  12071. name: "Gigamacro+",
  12072. height: math.unit(120000, "km")
  12073. },
  12074. {
  12075. name: "Teramacro",
  12076. height: math.unit(7.77e6, "km")
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12082. {
  12083. front: {
  12084. height: math.unit(6 + 4/12, "feet"),
  12085. weight: math.unit(190, "lb"),
  12086. name: "Front",
  12087. image: {
  12088. source: "./media/characters/bmc/front.svg",
  12089. extra: 1626/1472,
  12090. bottom: 79/1705
  12091. }
  12092. },
  12093. back: {
  12094. height: math.unit(6 + 4/12, "feet"),
  12095. weight: math.unit(190, "lb"),
  12096. name: "Back",
  12097. image: {
  12098. source: "./media/characters/bmc/back.svg",
  12099. extra: 1640/1479,
  12100. bottom: 45/1685
  12101. }
  12102. },
  12103. frontArmor: {
  12104. height: math.unit(6 + 4/12, "feet"),
  12105. weight: math.unit(190, "lb"),
  12106. name: "Front-armor",
  12107. image: {
  12108. source: "./media/characters/bmc/front-armor.svg",
  12109. extra: 1538/1468,
  12110. bottom: 79/1617
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Human-sized",
  12117. height: math.unit(6 + 4 / 12, "feet")
  12118. },
  12119. {
  12120. name: "Interactive Size",
  12121. height: math.unit(25, "feet")
  12122. },
  12123. {
  12124. name: "Small",
  12125. height: math.unit(250, "feet")
  12126. },
  12127. {
  12128. name: "Normal",
  12129. height: math.unit(1250, "feet"),
  12130. default: true
  12131. },
  12132. {
  12133. name: "Good Day",
  12134. height: math.unit(88, "miles")
  12135. },
  12136. {
  12137. name: "Largest Measured Size",
  12138. height: math.unit(105.960, "galaxies")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(20, "feet"),
  12147. weight: math.unit(2016, "kg"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/sven-the-kaiju/front.svg",
  12151. extra: 1277/1250,
  12152. bottom: 35/1312
  12153. }
  12154. },
  12155. mouth: {
  12156. height: math.unit(1.85, "feet"),
  12157. name: "Mouth",
  12158. image: {
  12159. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12160. }
  12161. },
  12162. },
  12163. [
  12164. {
  12165. name: "Fairy",
  12166. height: math.unit(6, "inches")
  12167. },
  12168. {
  12169. name: "Normal",
  12170. height: math.unit(20, "feet"),
  12171. default: true
  12172. },
  12173. {
  12174. name: "Rampage",
  12175. height: math.unit(200, "feet")
  12176. },
  12177. {
  12178. name: "Archfey Forest Guardian",
  12179. height: math.unit(1, "mile")
  12180. },
  12181. ]
  12182. ))
  12183. characterMakers.push(() => makeCharacter(
  12184. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12185. {
  12186. front: {
  12187. height: math.unit(4, "meters"),
  12188. weight: math.unit(2, "tons"),
  12189. name: "Front",
  12190. image: {
  12191. source: "./media/characters/marik/front.svg",
  12192. extra: 1057 / 1003,
  12193. bottom: 0.08
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Normal",
  12200. height: math.unit(4, "meters"),
  12201. default: true
  12202. },
  12203. {
  12204. name: "Macro",
  12205. height: math.unit(20, "meters")
  12206. },
  12207. {
  12208. name: "Megamacro",
  12209. height: math.unit(50, "km")
  12210. },
  12211. {
  12212. name: "Gigamacro",
  12213. height: math.unit(100, "km")
  12214. },
  12215. {
  12216. name: "Alpha Macro",
  12217. height: math.unit(7.88e7, "yottameters")
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12223. {
  12224. front: {
  12225. height: math.unit(6, "feet"),
  12226. weight: math.unit(110, "lb"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/mel/front.svg",
  12230. extra: 736 / 617,
  12231. bottom: 0.017
  12232. }
  12233. },
  12234. },
  12235. [
  12236. {
  12237. name: "Pico",
  12238. height: math.unit(3, "pm")
  12239. },
  12240. {
  12241. name: "Nano",
  12242. height: math.unit(3, "nm")
  12243. },
  12244. {
  12245. name: "Micro",
  12246. height: math.unit(0.3, "mm"),
  12247. default: true
  12248. },
  12249. {
  12250. name: "Micro+",
  12251. height: math.unit(3, "mm")
  12252. },
  12253. {
  12254. name: "Normal",
  12255. height: math.unit(5 + 10.5 / 12, "feet")
  12256. },
  12257. ]
  12258. ))
  12259. characterMakers.push(() => makeCharacter(
  12260. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12261. {
  12262. kaiju: {
  12263. height: math.unit(1.75, "meters"),
  12264. weight: math.unit(55, "kg"),
  12265. name: "Kaiju",
  12266. image: {
  12267. source: "./media/characters/lykonous/kaiju.svg",
  12268. extra: 1055 / 946,
  12269. bottom: 0.135
  12270. }
  12271. },
  12272. },
  12273. [
  12274. {
  12275. name: "Normal",
  12276. height: math.unit(2.5, "meters"),
  12277. default: true
  12278. },
  12279. {
  12280. name: "Kaiju Dragon",
  12281. height: math.unit(60, "meters")
  12282. },
  12283. {
  12284. name: "Mega Kaiju",
  12285. height: math.unit(120, "km")
  12286. },
  12287. {
  12288. name: "Giga Kaiju",
  12289. height: math.unit(200, "megameters")
  12290. },
  12291. {
  12292. name: "Terra Kaiju",
  12293. height: math.unit(400, "gigameters")
  12294. },
  12295. {
  12296. name: "Kaiju Dragon God",
  12297. height: math.unit(13000, "exaparsecs")
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12303. {
  12304. front: {
  12305. height: math.unit(6, "feet"),
  12306. weight: math.unit(150, "lb"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/blü/front.svg",
  12310. extra: 1883 / 1564,
  12311. bottom: 0.031
  12312. }
  12313. },
  12314. },
  12315. [
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(13, "feet"),
  12319. default: true
  12320. },
  12321. {
  12322. name: "Big Boi",
  12323. height: math.unit(150, "meters")
  12324. },
  12325. {
  12326. name: "Mini Stomper",
  12327. height: math.unit(300, "meters")
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(1000, "meters")
  12332. },
  12333. {
  12334. name: "Megamacro",
  12335. height: math.unit(11000, "meters")
  12336. },
  12337. {
  12338. name: "Gigamacro",
  12339. height: math.unit(11000, "km")
  12340. },
  12341. {
  12342. name: "Teramacro",
  12343. height: math.unit(420000, "km")
  12344. },
  12345. {
  12346. name: "Examacro",
  12347. height: math.unit(120, "parsecs")
  12348. },
  12349. {
  12350. name: "God Tho",
  12351. height: math.unit(98000000000, "parsecs")
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12357. {
  12358. taurFront: {
  12359. height: math.unit(6, "feet"),
  12360. weight: math.unit(200, "lb"),
  12361. name: "Taur (Front)",
  12362. image: {
  12363. source: "./media/characters/scales/taur-front.svg",
  12364. extra: 1,
  12365. bottom: 0.05
  12366. }
  12367. },
  12368. taurBack: {
  12369. height: math.unit(6, "feet"),
  12370. weight: math.unit(200, "lb"),
  12371. name: "Taur (Back)",
  12372. image: {
  12373. source: "./media/characters/scales/taur-back.svg",
  12374. extra: 1,
  12375. bottom: 0.08
  12376. }
  12377. },
  12378. anthro: {
  12379. height: math.unit(6 * 7 / 12, "feet"),
  12380. weight: math.unit(100, "lb"),
  12381. name: "Anthro",
  12382. image: {
  12383. source: "./media/characters/scales/anthro.svg",
  12384. extra: 1,
  12385. bottom: 0.06
  12386. }
  12387. },
  12388. },
  12389. [
  12390. {
  12391. name: "Normal",
  12392. height: math.unit(12, "feet"),
  12393. default: true
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12399. {
  12400. front: {
  12401. height: math.unit(6, "feet"),
  12402. weight: math.unit(150, "lb"),
  12403. name: "Front",
  12404. image: {
  12405. source: "./media/characters/koragos/front.svg",
  12406. extra: 841 / 794,
  12407. bottom: 0.035
  12408. }
  12409. },
  12410. back: {
  12411. height: math.unit(6, "feet"),
  12412. weight: math.unit(150, "lb"),
  12413. name: "Back",
  12414. image: {
  12415. source: "./media/characters/koragos/back.svg",
  12416. extra: 841 / 810,
  12417. bottom: 0.022
  12418. }
  12419. },
  12420. },
  12421. [
  12422. {
  12423. name: "Normal",
  12424. height: math.unit(6 + 11 / 12, "feet"),
  12425. default: true
  12426. },
  12427. {
  12428. name: "Macro",
  12429. height: math.unit(490, "feet")
  12430. },
  12431. {
  12432. name: "Megamacro",
  12433. height: math.unit(10, "miles")
  12434. },
  12435. {
  12436. name: "Gigamacro",
  12437. height: math.unit(50, "miles")
  12438. },
  12439. ]
  12440. ))
  12441. characterMakers.push(() => makeCharacter(
  12442. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12443. {
  12444. front: {
  12445. height: math.unit(6, "feet"),
  12446. weight: math.unit(250, "lb"),
  12447. name: "Front",
  12448. image: {
  12449. source: "./media/characters/xylrem/front.svg",
  12450. extra: 3323 / 3050,
  12451. bottom: 0.065
  12452. }
  12453. },
  12454. },
  12455. [
  12456. {
  12457. name: "Micro",
  12458. height: math.unit(4, "feet")
  12459. },
  12460. {
  12461. name: "Normal",
  12462. height: math.unit(16, "feet"),
  12463. default: true
  12464. },
  12465. {
  12466. name: "Macro",
  12467. height: math.unit(2720, "feet")
  12468. },
  12469. {
  12470. name: "Megamacro",
  12471. height: math.unit(25000, "miles")
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(8, "feet"),
  12480. weight: math.unit(250, "kg"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/ikideru/front.svg",
  12484. extra: 930 / 870,
  12485. bottom: 0.087
  12486. }
  12487. },
  12488. back: {
  12489. height: math.unit(8, "feet"),
  12490. weight: math.unit(250, "kg"),
  12491. name: "Back",
  12492. image: {
  12493. source: "./media/characters/ikideru/back.svg",
  12494. extra: 919 / 852,
  12495. bottom: 0.055
  12496. }
  12497. },
  12498. },
  12499. [
  12500. {
  12501. name: "Rare",
  12502. height: math.unit(8, "feet"),
  12503. default: true
  12504. },
  12505. {
  12506. name: "Playful Loom",
  12507. height: math.unit(80, "feet")
  12508. },
  12509. {
  12510. name: "City Leaner",
  12511. height: math.unit(230, "feet")
  12512. },
  12513. {
  12514. name: "Megamacro",
  12515. height: math.unit(2500, "feet")
  12516. },
  12517. {
  12518. name: "Gigamacro",
  12519. height: math.unit(26400, "feet")
  12520. },
  12521. {
  12522. name: "Tectonic Shifter",
  12523. height: math.unit(1.7, "megameters")
  12524. },
  12525. {
  12526. name: "Planet Carer",
  12527. height: math.unit(21, "megameters")
  12528. },
  12529. {
  12530. name: "God",
  12531. height: math.unit(11157.22, "parsecs")
  12532. },
  12533. ]
  12534. ))
  12535. characterMakers.push(() => makeCharacter(
  12536. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12537. {
  12538. front: {
  12539. height: math.unit(6, "feet"),
  12540. weight: math.unit(120, "lb"),
  12541. name: "Front",
  12542. image: {
  12543. source: "./media/characters/neo/front.svg"
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Micro",
  12550. height: math.unit(2, "inches"),
  12551. default: true
  12552. },
  12553. {
  12554. name: "Human Size",
  12555. height: math.unit(5 + 8 / 12, "feet")
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12561. {
  12562. front: {
  12563. height: math.unit(13 + 10 / 12, "feet"),
  12564. weight: math.unit(5320, "lb"),
  12565. name: "Front",
  12566. image: {
  12567. source: "./media/characters/chauncey-chantz/front.svg",
  12568. extra: 1587 / 1435,
  12569. bottom: 0.02
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Normal",
  12576. height: math.unit(13 + 10 / 12, "feet"),
  12577. default: true
  12578. },
  12579. {
  12580. name: "Macro",
  12581. height: math.unit(45, "feet")
  12582. },
  12583. {
  12584. name: "Megamacro",
  12585. height: math.unit(250, "miles")
  12586. },
  12587. {
  12588. name: "Planetary",
  12589. height: math.unit(10000, "miles")
  12590. },
  12591. {
  12592. name: "Galactic",
  12593. height: math.unit(40000, "parsecs")
  12594. },
  12595. {
  12596. name: "Universal",
  12597. height: math.unit(1, "yottameter")
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12603. {
  12604. front: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(150, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/epifox/front.svg",
  12610. extra: 1,
  12611. bottom: 0.075
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Micro",
  12618. height: math.unit(6, "inches")
  12619. },
  12620. {
  12621. name: "Normal",
  12622. height: math.unit(12, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Macro",
  12627. height: math.unit(3810, "feet")
  12628. },
  12629. {
  12630. name: "Megamacro",
  12631. height: math.unit(500, "miles")
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(1.8796, "m"),
  12640. weight: math.unit(230, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/colin-t/front.svg",
  12644. extra: 1272 / 1193,
  12645. bottom: 0.07
  12646. }
  12647. },
  12648. },
  12649. [
  12650. {
  12651. name: "Micro",
  12652. height: math.unit(0.571, "meters")
  12653. },
  12654. {
  12655. name: "Normal",
  12656. height: math.unit(1.8796, "meters"),
  12657. default: true
  12658. },
  12659. {
  12660. name: "Tall",
  12661. height: math.unit(4, "meters")
  12662. },
  12663. {
  12664. name: "Macro",
  12665. height: math.unit(67.241, "meters")
  12666. },
  12667. {
  12668. name: "Megamacro",
  12669. height: math.unit(371.856, "meters")
  12670. },
  12671. {
  12672. name: "Planetary",
  12673. height: math.unit(12631.5689, "km")
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(1.85, "meters"),
  12682. weight: math.unit(80, "kg"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/matvei/front.svg",
  12686. extra: 614 / 594,
  12687. bottom: 0.01
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Normal",
  12694. height: math.unit(1.85, "meters"),
  12695. default: true
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(5 + 9 / 12, "feet"),
  12704. weight: math.unit(70, "lb"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/quincy/front.svg",
  12708. extra: 3041 / 2751
  12709. }
  12710. },
  12711. back: {
  12712. height: math.unit(5 + 9 / 12, "feet"),
  12713. weight: math.unit(70, "lb"),
  12714. name: "Back",
  12715. image: {
  12716. source: "./media/characters/quincy/back.svg",
  12717. extra: 3041 / 2751
  12718. }
  12719. },
  12720. flying: {
  12721. height: math.unit(5 + 4 / 12, "feet"),
  12722. weight: math.unit(70, "lb"),
  12723. name: "Flying",
  12724. image: {
  12725. source: "./media/characters/quincy/flying.svg",
  12726. extra: 1044 / 930
  12727. }
  12728. },
  12729. },
  12730. [
  12731. {
  12732. name: "Micro",
  12733. height: math.unit(3, "cm")
  12734. },
  12735. {
  12736. name: "Normal",
  12737. height: math.unit(5 + 9 / 12, "feet")
  12738. },
  12739. {
  12740. name: "Macro",
  12741. height: math.unit(200, "meters"),
  12742. default: true
  12743. },
  12744. {
  12745. name: "Megamacro",
  12746. height: math.unit(1000, "meters")
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12752. {
  12753. front: {
  12754. height: math.unit(3 + 11/12, "feet"),
  12755. weight: math.unit(50, "lb"),
  12756. name: "Front",
  12757. image: {
  12758. source: "./media/characters/vanrel/front.svg",
  12759. extra: 1104/949,
  12760. bottom: 52/1156
  12761. }
  12762. },
  12763. back: {
  12764. height: math.unit(3 + 11/12, "feet"),
  12765. weight: math.unit(50, "lb"),
  12766. name: "Back",
  12767. image: {
  12768. source: "./media/characters/vanrel/back.svg",
  12769. extra: 1119/976,
  12770. bottom: 37/1156
  12771. }
  12772. },
  12773. tome: {
  12774. height: math.unit(1.35, "feet"),
  12775. weight: math.unit(10, "lb"),
  12776. name: "Vanrel's Tome",
  12777. rename: true,
  12778. image: {
  12779. source: "./media/characters/vanrel/tome.svg"
  12780. }
  12781. },
  12782. beans: {
  12783. height: math.unit(0.89, "feet"),
  12784. name: "Beans",
  12785. image: {
  12786. source: "./media/characters/vanrel/beans.svg"
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Normal",
  12793. height: math.unit(3 + 11/12, "feet"),
  12794. default: true
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12800. {
  12801. front: {
  12802. height: math.unit(7 + 5 / 12, "feet"),
  12803. name: "Front",
  12804. image: {
  12805. source: "./media/characters/kuiper-vanrel/front.svg",
  12806. extra: 1219/1169,
  12807. bottom: 69/1288
  12808. }
  12809. },
  12810. back: {
  12811. height: math.unit(7 + 5 / 12, "feet"),
  12812. name: "Back",
  12813. image: {
  12814. source: "./media/characters/kuiper-vanrel/back.svg",
  12815. extra: 1236/1193,
  12816. bottom: 27/1263
  12817. }
  12818. },
  12819. foot: {
  12820. height: math.unit(0.55, "meters"),
  12821. name: "Foot",
  12822. image: {
  12823. source: "./media/characters/kuiper-vanrel/foot.svg",
  12824. }
  12825. },
  12826. battle: {
  12827. height: math.unit(6.824, "feet"),
  12828. name: "Battle",
  12829. image: {
  12830. source: "./media/characters/kuiper-vanrel/battle.svg",
  12831. extra: 1466 / 1327,
  12832. bottom: 29 / 1492.5
  12833. }
  12834. },
  12835. meerkui: {
  12836. height: math.unit(18, "inches"),
  12837. name: "Meerkui",
  12838. image: {
  12839. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12840. extra: 1354/1289,
  12841. bottom: 69/1423
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Normal",
  12848. height: math.unit(7 + 5 / 12, "feet"),
  12849. default: true
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12855. {
  12856. front: {
  12857. height: math.unit(8 + 5 / 12, "feet"),
  12858. name: "Front",
  12859. image: {
  12860. source: "./media/characters/keset-vanrel/front.svg",
  12861. extra: 1231/1148,
  12862. bottom: 82/1313
  12863. }
  12864. },
  12865. back: {
  12866. height: math.unit(8 + 5 / 12, "feet"),
  12867. name: "Back",
  12868. image: {
  12869. source: "./media/characters/keset-vanrel/back.svg",
  12870. extra: 1240/1174,
  12871. bottom: 33/1273
  12872. }
  12873. },
  12874. hand: {
  12875. height: math.unit(0.6, "meters"),
  12876. name: "Hand",
  12877. image: {
  12878. source: "./media/characters/keset-vanrel/hand.svg"
  12879. }
  12880. },
  12881. foot: {
  12882. height: math.unit(0.94978, "meters"),
  12883. name: "Foot",
  12884. image: {
  12885. source: "./media/characters/keset-vanrel/foot.svg"
  12886. }
  12887. },
  12888. battle: {
  12889. height: math.unit(7.408, "feet"),
  12890. name: "Battle",
  12891. image: {
  12892. source: "./media/characters/keset-vanrel/battle.svg",
  12893. extra: 1890 / 1386,
  12894. bottom: 73.28 / 1970
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Normal",
  12901. height: math.unit(8 + 5 / 12, "feet"),
  12902. default: true
  12903. },
  12904. ]
  12905. ))
  12906. characterMakers.push(() => makeCharacter(
  12907. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12908. {
  12909. front: {
  12910. height: math.unit(6, "feet"),
  12911. weight: math.unit(150, "lb"),
  12912. name: "Front",
  12913. image: {
  12914. source: "./media/characters/neos/front.svg",
  12915. extra: 1696 / 992,
  12916. bottom: 0.14
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(54, "cm"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Macro",
  12928. height: math.unit(100, "m")
  12929. },
  12930. {
  12931. name: "Megamacro",
  12932. height: math.unit(10, "km")
  12933. },
  12934. {
  12935. name: "Megamacro+",
  12936. height: math.unit(100, "km")
  12937. },
  12938. {
  12939. name: "Gigamacro",
  12940. height: math.unit(100, "Mm")
  12941. },
  12942. {
  12943. name: "Teramacro",
  12944. height: math.unit(100, "Gm")
  12945. },
  12946. {
  12947. name: "Examacro",
  12948. height: math.unit(100, "Em")
  12949. },
  12950. {
  12951. name: "Godly",
  12952. height: math.unit(10000, "Ym")
  12953. },
  12954. {
  12955. name: "Beyond Godly",
  12956. height: math.unit(25, "multiverses")
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12962. {
  12963. feminine: {
  12964. height: math.unit(5, "feet"),
  12965. weight: math.unit(100, "lb"),
  12966. name: "Feminine",
  12967. image: {
  12968. source: "./media/characters/sammy-mouse/feminine.svg",
  12969. extra: 2526 / 2425,
  12970. bottom: 0.123
  12971. }
  12972. },
  12973. masculine: {
  12974. height: math.unit(5, "feet"),
  12975. weight: math.unit(100, "lb"),
  12976. name: "Masculine",
  12977. image: {
  12978. source: "./media/characters/sammy-mouse/masculine.svg",
  12979. extra: 2526 / 2425,
  12980. bottom: 0.123
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Micro",
  12987. height: math.unit(5, "inches")
  12988. },
  12989. {
  12990. name: "Normal",
  12991. height: math.unit(5, "feet"),
  12992. default: true
  12993. },
  12994. {
  12995. name: "Macro",
  12996. height: math.unit(60, "feet")
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13002. {
  13003. front: {
  13004. height: math.unit(4, "feet"),
  13005. weight: math.unit(50, "lb"),
  13006. name: "Front",
  13007. image: {
  13008. source: "./media/characters/kole/front.svg",
  13009. extra: 1423 / 1303,
  13010. bottom: 0.025
  13011. }
  13012. },
  13013. back: {
  13014. height: math.unit(4, "feet"),
  13015. weight: math.unit(50, "lb"),
  13016. name: "Back",
  13017. image: {
  13018. source: "./media/characters/kole/back.svg",
  13019. extra: 1426 / 1280,
  13020. bottom: 0.02
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Normal",
  13027. height: math.unit(4, "feet"),
  13028. default: true
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(2.5, "feet"),
  13037. weight: math.unit(32, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/rufran/front.svg",
  13041. extra: 1313/885,
  13042. bottom: 94/1407
  13043. }
  13044. },
  13045. side: {
  13046. height: math.unit(2.5, "feet"),
  13047. weight: math.unit(32, "lb"),
  13048. name: "Side",
  13049. image: {
  13050. source: "./media/characters/rufran/side.svg",
  13051. extra: 1109/852,
  13052. bottom: 118/1227
  13053. }
  13054. },
  13055. back: {
  13056. height: math.unit(2.5, "feet"),
  13057. weight: math.unit(32, "lb"),
  13058. name: "Back",
  13059. image: {
  13060. source: "./media/characters/rufran/back.svg",
  13061. extra: 1280/878,
  13062. bottom: 131/1411
  13063. }
  13064. },
  13065. mouth: {
  13066. height: math.unit(1.13, "feet"),
  13067. name: "Mouth",
  13068. image: {
  13069. source: "./media/characters/rufran/mouth.svg"
  13070. }
  13071. },
  13072. foot: {
  13073. height: math.unit(1.33, "feet"),
  13074. name: "Foot",
  13075. image: {
  13076. source: "./media/characters/rufran/foot.svg"
  13077. }
  13078. },
  13079. koboldFront: {
  13080. height: math.unit(2 + 6 / 12, "feet"),
  13081. weight: math.unit(20, "lb"),
  13082. name: "Front (Kobold)",
  13083. image: {
  13084. source: "./media/characters/rufran/kobold-front.svg",
  13085. extra: 2041 / 1839,
  13086. bottom: 0.055
  13087. }
  13088. },
  13089. koboldBack: {
  13090. height: math.unit(2 + 6 / 12, "feet"),
  13091. weight: math.unit(20, "lb"),
  13092. name: "Back (Kobold)",
  13093. image: {
  13094. source: "./media/characters/rufran/kobold-back.svg",
  13095. extra: 2054 / 1839,
  13096. bottom: 0.01
  13097. }
  13098. },
  13099. koboldHand: {
  13100. height: math.unit(0.2166, "meters"),
  13101. name: "Hand (Kobold)",
  13102. image: {
  13103. source: "./media/characters/rufran/kobold-hand.svg"
  13104. }
  13105. },
  13106. koboldFoot: {
  13107. height: math.unit(0.185, "meters"),
  13108. name: "Foot (Kobold)",
  13109. image: {
  13110. source: "./media/characters/rufran/kobold-foot.svg"
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Micro",
  13117. height: math.unit(1, "inch")
  13118. },
  13119. {
  13120. name: "Normal",
  13121. height: math.unit(2 + 6 / 12, "feet"),
  13122. default: true
  13123. },
  13124. {
  13125. name: "Big",
  13126. height: math.unit(60, "feet")
  13127. },
  13128. {
  13129. name: "Macro",
  13130. height: math.unit(325, "feet")
  13131. },
  13132. ]
  13133. ))
  13134. characterMakers.push(() => makeCharacter(
  13135. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13136. {
  13137. front: {
  13138. height: math.unit(0.3, "meters"),
  13139. weight: math.unit(3.5, "kg"),
  13140. name: "Front",
  13141. image: {
  13142. source: "./media/characters/chip/front.svg",
  13143. extra: 748 / 674
  13144. }
  13145. },
  13146. },
  13147. [
  13148. {
  13149. name: "Micro",
  13150. height: math.unit(1, "inch"),
  13151. default: true
  13152. },
  13153. ]
  13154. ))
  13155. characterMakers.push(() => makeCharacter(
  13156. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13157. {
  13158. side: {
  13159. height: math.unit(2.3, "meters"),
  13160. weight: math.unit(3500, "lb"),
  13161. name: "Side",
  13162. image: {
  13163. source: "./media/characters/torvid/side.svg",
  13164. extra: 1972 / 722,
  13165. bottom: 0.035
  13166. }
  13167. },
  13168. },
  13169. [
  13170. {
  13171. name: "Normal",
  13172. height: math.unit(2.3, "meters"),
  13173. default: true
  13174. },
  13175. ]
  13176. ))
  13177. characterMakers.push(() => makeCharacter(
  13178. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13179. {
  13180. front: {
  13181. height: math.unit(2, "meters"),
  13182. weight: math.unit(150.5, "kg"),
  13183. name: "Front",
  13184. image: {
  13185. source: "./media/characters/susan/front.svg",
  13186. extra: 693 / 635,
  13187. bottom: 0.05
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Megamacro",
  13194. height: math.unit(505, "miles"),
  13195. default: true
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(150, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/raindrops/front.svg",
  13208. extra: 2655 / 2461,
  13209. bottom: 49 / 2705
  13210. }
  13211. },
  13212. back: {
  13213. height: math.unit(6, "feet"),
  13214. weight: math.unit(150, "lb"),
  13215. name: "Back",
  13216. image: {
  13217. source: "./media/characters/raindrops/back.svg",
  13218. extra: 2574 / 2400,
  13219. bottom: 65 / 2634
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Micro",
  13226. height: math.unit(6, "inches")
  13227. },
  13228. {
  13229. name: "Normal",
  13230. height: math.unit(6 + 2 / 12, "feet")
  13231. },
  13232. {
  13233. name: "Macro",
  13234. height: math.unit(131, "feet"),
  13235. default: true
  13236. },
  13237. {
  13238. name: "Megamacro",
  13239. height: math.unit(15, "miles")
  13240. },
  13241. {
  13242. name: "Gigamacro",
  13243. height: math.unit(4000, "miles")
  13244. },
  13245. {
  13246. name: "Teramacro",
  13247. height: math.unit(315000, "miles")
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(2.794, "meters"),
  13256. weight: math.unit(325, "kg"),
  13257. name: "Front",
  13258. image: {
  13259. source: "./media/characters/tezwa/front.svg",
  13260. extra: 2083 / 1906,
  13261. bottom: 0.031
  13262. }
  13263. },
  13264. foot: {
  13265. height: math.unit(0.687, "meters"),
  13266. name: "Foot",
  13267. image: {
  13268. source: "./media/characters/tezwa/foot.svg"
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Normal",
  13275. height: math.unit(9 + 2 / 12, "feet"),
  13276. default: true
  13277. },
  13278. ]
  13279. ))
  13280. characterMakers.push(() => makeCharacter(
  13281. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13282. {
  13283. front: {
  13284. height: math.unit(58, "feet"),
  13285. weight: math.unit(89000, "lb"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/typhus/front.svg",
  13289. extra: 816 / 800,
  13290. bottom: 0.065
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(58, "feet"),
  13298. default: true
  13299. },
  13300. ]
  13301. ))
  13302. characterMakers.push(() => makeCharacter(
  13303. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13304. {
  13305. front: {
  13306. height: math.unit(12, "feet"),
  13307. weight: math.unit(6, "tonnes"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/lyra-von-wulf/front.svg",
  13311. extra: 1,
  13312. bottom: 0.10
  13313. }
  13314. },
  13315. frontMecha: {
  13316. height: math.unit(12, "feet"),
  13317. weight: math.unit(12, "tonnes"),
  13318. name: "Front (Mecha)",
  13319. image: {
  13320. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13321. extra: 1,
  13322. bottom: 0.042
  13323. }
  13324. },
  13325. maw: {
  13326. height: math.unit(2.2, "feet"),
  13327. name: "Maw",
  13328. image: {
  13329. source: "./media/characters/lyra-von-wulf/maw.svg"
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(12, "feet"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Classic",
  13341. height: math.unit(50, "feet")
  13342. },
  13343. {
  13344. name: "Macro",
  13345. height: math.unit(500, "feet")
  13346. },
  13347. {
  13348. name: "Megamacro",
  13349. height: math.unit(1, "mile")
  13350. },
  13351. {
  13352. name: "Gigamacro",
  13353. height: math.unit(400, "miles")
  13354. },
  13355. {
  13356. name: "Teramacro",
  13357. height: math.unit(22000, "miles")
  13358. },
  13359. {
  13360. name: "Solarmacro",
  13361. height: math.unit(8600000, "miles")
  13362. },
  13363. {
  13364. name: "Galactic",
  13365. height: math.unit(1057000, "lightyears")
  13366. },
  13367. ]
  13368. ))
  13369. characterMakers.push(() => makeCharacter(
  13370. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13371. {
  13372. front: {
  13373. height: math.unit(6 + 10 / 12, "feet"),
  13374. weight: math.unit(150, "lb"),
  13375. name: "Front",
  13376. image: {
  13377. source: "./media/characters/dixon/front.svg",
  13378. extra: 3361 / 3209,
  13379. bottom: 0.01
  13380. }
  13381. },
  13382. },
  13383. [
  13384. {
  13385. name: "Normal",
  13386. height: math.unit(6 + 10 / 12, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Big",
  13391. height: math.unit(12, "meters")
  13392. },
  13393. {
  13394. name: "Macro",
  13395. height: math.unit(500, "meters")
  13396. },
  13397. {
  13398. name: "Megamacro",
  13399. height: math.unit(2, "km")
  13400. },
  13401. ]
  13402. ))
  13403. characterMakers.push(() => makeCharacter(
  13404. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13405. {
  13406. front: {
  13407. height: math.unit(185, "cm"),
  13408. weight: math.unit(68, "kg"),
  13409. name: "Front",
  13410. image: {
  13411. source: "./media/characters/kauko/front.svg",
  13412. extra: 1455 / 1421,
  13413. bottom: 0.03
  13414. }
  13415. },
  13416. back: {
  13417. height: math.unit(185, "cm"),
  13418. weight: math.unit(68, "kg"),
  13419. name: "Back",
  13420. image: {
  13421. source: "./media/characters/kauko/back.svg",
  13422. extra: 1455 / 1421,
  13423. bottom: 0.004
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(185, "cm"),
  13431. default: true
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "kg"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/varg/front.svg",
  13444. extra: 1108 / 1018,
  13445. bottom: 0.0375
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(5, "meters")
  13453. },
  13454. {
  13455. name: "Macro",
  13456. height: math.unit(200, "meters")
  13457. },
  13458. {
  13459. name: "Megamacro",
  13460. height: math.unit(20, "kilometers")
  13461. },
  13462. {
  13463. name: "True Size",
  13464. height: math.unit(211, "km"),
  13465. default: true
  13466. },
  13467. {
  13468. name: "Gigamacro",
  13469. height: math.unit(1000, "km")
  13470. },
  13471. {
  13472. name: "Gigamacro+",
  13473. height: math.unit(8000, "km")
  13474. },
  13475. {
  13476. name: "Teramacro",
  13477. height: math.unit(1000000, "km")
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(7 + 7 / 12, "feet"),
  13486. weight: math.unit(267, "lb"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/dayza/front.svg",
  13490. extra: 1262 / 1200,
  13491. bottom: 0.035
  13492. }
  13493. },
  13494. side: {
  13495. height: math.unit(7 + 7 / 12, "feet"),
  13496. weight: math.unit(267, "lb"),
  13497. name: "Side",
  13498. image: {
  13499. source: "./media/characters/dayza/side.svg",
  13500. extra: 1295 / 1245,
  13501. bottom: 0.05
  13502. }
  13503. },
  13504. back: {
  13505. height: math.unit(7 + 7 / 12, "feet"),
  13506. weight: math.unit(267, "lb"),
  13507. name: "Back",
  13508. image: {
  13509. source: "./media/characters/dayza/back.svg",
  13510. extra: 1241 / 1170
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Normal",
  13517. height: math.unit(7 + 7 / 12, "feet"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Macro",
  13522. height: math.unit(155, "feet")
  13523. },
  13524. ]
  13525. ))
  13526. characterMakers.push(() => makeCharacter(
  13527. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13528. {
  13529. front: {
  13530. height: math.unit(6 + 5 / 12, "feet"),
  13531. weight: math.unit(160, "lb"),
  13532. name: "Front",
  13533. image: {
  13534. source: "./media/characters/xanthos/front.svg",
  13535. extra: 1,
  13536. bottom: 0.04
  13537. }
  13538. },
  13539. back: {
  13540. height: math.unit(6 + 5 / 12, "feet"),
  13541. weight: math.unit(160, "lb"),
  13542. name: "Back",
  13543. image: {
  13544. source: "./media/characters/xanthos/back.svg",
  13545. extra: 1,
  13546. bottom: 0.03
  13547. }
  13548. },
  13549. hand: {
  13550. height: math.unit(0.928, "feet"),
  13551. name: "Hand",
  13552. image: {
  13553. source: "./media/characters/xanthos/hand.svg"
  13554. }
  13555. },
  13556. foot: {
  13557. height: math.unit(1.286, "feet"),
  13558. name: "Foot",
  13559. image: {
  13560. source: "./media/characters/xanthos/foot.svg"
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Normal",
  13567. height: math.unit(6 + 5 / 12, "feet"),
  13568. default: true
  13569. },
  13570. {
  13571. name: "Normal+",
  13572. height: math.unit(6, "meters")
  13573. },
  13574. {
  13575. name: "Macro",
  13576. height: math.unit(40, "feet")
  13577. },
  13578. {
  13579. name: "Macro+",
  13580. height: math.unit(200, "meters")
  13581. },
  13582. {
  13583. name: "Megamacro",
  13584. height: math.unit(20, "km")
  13585. },
  13586. {
  13587. name: "Megamacro+",
  13588. height: math.unit(100, "km")
  13589. },
  13590. {
  13591. name: "Gigamacro",
  13592. height: math.unit(200, "megameters")
  13593. },
  13594. {
  13595. name: "Gigamacro+",
  13596. height: math.unit(1.5, "gigameters")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(6 + 3 / 12, "feet"),
  13605. weight: math.unit(215, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/grynn/front.svg",
  13609. extra: 4627 / 4209,
  13610. bottom: 0.047
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Micro",
  13617. height: math.unit(6, "inches")
  13618. },
  13619. {
  13620. name: "Normal",
  13621. height: math.unit(6 + 3 / 12, "feet"),
  13622. default: true
  13623. },
  13624. {
  13625. name: "Big",
  13626. height: math.unit(104, "feet")
  13627. },
  13628. {
  13629. name: "Macro",
  13630. height: math.unit(944, "feet")
  13631. },
  13632. {
  13633. name: "Macro+",
  13634. height: math.unit(9480, "feet")
  13635. },
  13636. {
  13637. name: "Megamacro",
  13638. height: math.unit(78752, "feet")
  13639. },
  13640. {
  13641. name: "Megamacro+",
  13642. height: math.unit(630128, "feet")
  13643. },
  13644. {
  13645. name: "Megamacro++",
  13646. height: math.unit(3150695, "feet")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(7 + 5 / 12, "feet"),
  13655. weight: math.unit(450, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/mocha-aura/front.svg",
  13659. extra: 1907 / 1817,
  13660. bottom: 0.04
  13661. }
  13662. },
  13663. back: {
  13664. height: math.unit(7 + 5 / 12, "feet"),
  13665. weight: math.unit(450, "lb"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/mocha-aura/back.svg",
  13669. extra: 1900 / 1825,
  13670. bottom: 0.045
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Nano",
  13677. height: math.unit(1, "nm")
  13678. },
  13679. {
  13680. name: "Megamicro",
  13681. height: math.unit(1, "mm")
  13682. },
  13683. {
  13684. name: "Micro",
  13685. height: math.unit(3, "inches")
  13686. },
  13687. {
  13688. name: "Normal",
  13689. height: math.unit(7 + 5 / 12, "feet"),
  13690. default: true
  13691. },
  13692. {
  13693. name: "Macro",
  13694. height: math.unit(30, "feet")
  13695. },
  13696. {
  13697. name: "Megamacro",
  13698. height: math.unit(3500, "feet")
  13699. },
  13700. {
  13701. name: "Teramacro",
  13702. height: math.unit(500000, "miles")
  13703. },
  13704. {
  13705. name: "Petamacro",
  13706. height: math.unit(50000000000000000, "parsecs")
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(6, "feet"),
  13715. weight: math.unit(150, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/ilisha-devya/front.svg",
  13719. extra: 1053/1049,
  13720. bottom: 270/1323
  13721. }
  13722. },
  13723. back: {
  13724. height: math.unit(6, "feet"),
  13725. weight: math.unit(150, "lb"),
  13726. name: "Back",
  13727. image: {
  13728. source: "./media/characters/ilisha-devya/back.svg",
  13729. extra: 1131/1128,
  13730. bottom: 39/1170
  13731. }
  13732. },
  13733. },
  13734. [
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(500, "feet"),
  13738. default: true
  13739. },
  13740. {
  13741. name: "Megamacro",
  13742. height: math.unit(10, "miles")
  13743. },
  13744. {
  13745. name: "Gigamacro",
  13746. height: math.unit(100000, "miles")
  13747. },
  13748. {
  13749. name: "Examacro",
  13750. height: math.unit(1e9, "lightyears")
  13751. },
  13752. {
  13753. name: "Omniversal",
  13754. height: math.unit(1e33, "lightyears")
  13755. },
  13756. {
  13757. name: "Beyond Infinite",
  13758. height: math.unit(1e100, "lightyears")
  13759. },
  13760. ]
  13761. ))
  13762. characterMakers.push(() => makeCharacter(
  13763. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13764. {
  13765. Side: {
  13766. height: math.unit(6, "feet"),
  13767. weight: math.unit(150, "lb"),
  13768. name: "Side",
  13769. image: {
  13770. source: "./media/characters/mira/side.svg",
  13771. extra: 900 / 799,
  13772. bottom: 0.02
  13773. }
  13774. },
  13775. },
  13776. [
  13777. {
  13778. name: "Human Size",
  13779. height: math.unit(6, "feet")
  13780. },
  13781. {
  13782. name: "Macro",
  13783. height: math.unit(100, "feet"),
  13784. default: true
  13785. },
  13786. {
  13787. name: "Megamacro",
  13788. height: math.unit(10, "miles")
  13789. },
  13790. {
  13791. name: "Gigamacro",
  13792. height: math.unit(25000, "miles")
  13793. },
  13794. {
  13795. name: "Teramacro",
  13796. height: math.unit(300, "AU")
  13797. },
  13798. {
  13799. name: "Full Size",
  13800. height: math.unit(4.5e10, "lightyears")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13806. {
  13807. front: {
  13808. height: math.unit(6, "feet"),
  13809. weight: math.unit(150, "lb"),
  13810. name: "Front",
  13811. image: {
  13812. source: "./media/characters/holly/front.svg",
  13813. extra: 639 / 606
  13814. }
  13815. },
  13816. back: {
  13817. height: math.unit(6, "feet"),
  13818. weight: math.unit(150, "lb"),
  13819. name: "Back",
  13820. image: {
  13821. source: "./media/characters/holly/back.svg",
  13822. extra: 623 / 598
  13823. }
  13824. },
  13825. frontWorking: {
  13826. height: math.unit(6, "feet"),
  13827. weight: math.unit(150, "lb"),
  13828. name: "Front (Working)",
  13829. image: {
  13830. source: "./media/characters/holly/front-working.svg",
  13831. extra: 607 / 577,
  13832. bottom: 0.048
  13833. }
  13834. },
  13835. },
  13836. [
  13837. {
  13838. name: "Normal",
  13839. height: math.unit(12 + 3 / 12, "feet"),
  13840. default: true
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13846. {
  13847. front: {
  13848. height: math.unit(6, "feet"),
  13849. weight: math.unit(150, "lb"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/porter/front.svg",
  13853. extra: 1,
  13854. bottom: 0.01
  13855. }
  13856. },
  13857. frontRobes: {
  13858. height: math.unit(6, "feet"),
  13859. weight: math.unit(150, "lb"),
  13860. name: "Front (Robes)",
  13861. image: {
  13862. source: "./media/characters/porter/front-robes.svg",
  13863. extra: 1.01,
  13864. bottom: 0.01
  13865. }
  13866. },
  13867. },
  13868. [
  13869. {
  13870. name: "Normal",
  13871. height: math.unit(11 + 9 / 12, "feet"),
  13872. default: true
  13873. },
  13874. ]
  13875. ))
  13876. characterMakers.push(() => makeCharacter(
  13877. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13878. {
  13879. legendary: {
  13880. height: math.unit(6, "feet"),
  13881. weight: math.unit(150, "lb"),
  13882. name: "Legendary",
  13883. image: {
  13884. source: "./media/characters/lucy/legendary.svg",
  13885. extra: 1355 / 1100,
  13886. bottom: 0.045
  13887. }
  13888. },
  13889. },
  13890. [
  13891. {
  13892. name: "Legendary",
  13893. height: math.unit(86882 * 2, "miles"),
  13894. default: true
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13900. {
  13901. front: {
  13902. height: math.unit(6, "feet"),
  13903. weight: math.unit(150, "lb"),
  13904. name: "Front",
  13905. image: {
  13906. source: "./media/characters/drusilla/front.svg",
  13907. extra: 678 / 635,
  13908. bottom: 0.03
  13909. }
  13910. },
  13911. back: {
  13912. height: math.unit(6, "feet"),
  13913. weight: math.unit(150, "lb"),
  13914. name: "Back",
  13915. image: {
  13916. source: "./media/characters/drusilla/back.svg",
  13917. extra: 678 / 635,
  13918. bottom: 0.005
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Macro",
  13925. height: math.unit(100, "feet")
  13926. },
  13927. {
  13928. name: "Canon Height",
  13929. height: math.unit(2000, "feet"),
  13930. default: true
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(180, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/renard-thatch/front.svg",
  13943. extra: 2411 / 2275,
  13944. bottom: 0.01
  13945. }
  13946. },
  13947. frontPosing: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(180, "lb"),
  13950. name: "Front (Posing)",
  13951. image: {
  13952. source: "./media/characters/renard-thatch/front-posing.svg",
  13953. extra: 2381 / 2261,
  13954. bottom: 0.01
  13955. }
  13956. },
  13957. back: {
  13958. height: math.unit(6, "feet"),
  13959. weight: math.unit(180, "lb"),
  13960. name: "Back",
  13961. image: {
  13962. source: "./media/characters/renard-thatch/back.svg",
  13963. extra: 2428 / 2288
  13964. }
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Micro",
  13970. height: math.unit(3, "inches")
  13971. },
  13972. {
  13973. name: "Default",
  13974. height: math.unit(6, "feet"),
  13975. default: true
  13976. },
  13977. {
  13978. name: "Macro",
  13979. height: math.unit(75, "feet")
  13980. },
  13981. ]
  13982. ))
  13983. characterMakers.push(() => makeCharacter(
  13984. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13985. {
  13986. front: {
  13987. height: math.unit(1450, "feet"),
  13988. weight: math.unit(1.21e6, "tons"),
  13989. name: "Front",
  13990. image: {
  13991. source: "./media/characters/sekvra/front.svg",
  13992. extra: 1193/1190,
  13993. bottom: 78/1271
  13994. }
  13995. },
  13996. side: {
  13997. height: math.unit(1450, "feet"),
  13998. weight: math.unit(1.21e6, "tons"),
  13999. name: "Side",
  14000. image: {
  14001. source: "./media/characters/sekvra/side.svg",
  14002. extra: 1193/1190,
  14003. bottom: 52/1245
  14004. }
  14005. },
  14006. back: {
  14007. height: math.unit(1450, "feet"),
  14008. weight: math.unit(1.21e6, "tons"),
  14009. name: "Back",
  14010. image: {
  14011. source: "./media/characters/sekvra/back.svg",
  14012. extra: 1219/1216,
  14013. bottom: 21/1240
  14014. }
  14015. },
  14016. frontClothed: {
  14017. height: math.unit(1450, "feet"),
  14018. weight: math.unit(1.21e6, "tons"),
  14019. name: "Front (Clothed)",
  14020. image: {
  14021. source: "./media/characters/sekvra/front-clothed.svg",
  14022. extra: 1192/1189,
  14023. bottom: 79/1271
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Macro",
  14030. height: math.unit(1450, "feet"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Megamacro",
  14035. height: math.unit(15000, "feet")
  14036. },
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14041. {
  14042. front: {
  14043. height: math.unit(6, "feet"),
  14044. weight: math.unit(150, "lb"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/carmine/front.svg",
  14048. extra: 1,
  14049. bottom: 0.035
  14050. }
  14051. },
  14052. frontArmor: {
  14053. height: math.unit(6, "feet"),
  14054. weight: math.unit(150, "lb"),
  14055. name: "Front (Armor)",
  14056. image: {
  14057. source: "./media/characters/carmine/front-armor.svg",
  14058. extra: 1,
  14059. bottom: 0.035
  14060. }
  14061. },
  14062. },
  14063. [
  14064. {
  14065. name: "Large",
  14066. height: math.unit(1, "mile")
  14067. },
  14068. {
  14069. name: "Huge",
  14070. height: math.unit(40, "miles"),
  14071. default: true
  14072. },
  14073. {
  14074. name: "Colossal",
  14075. height: math.unit(2500, "miles")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(6, "feet"),
  14084. weight: math.unit(150, "lb"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/elyssia/front.svg",
  14088. extra: 2201 / 2035,
  14089. bottom: 0.05
  14090. }
  14091. },
  14092. frontClothed: {
  14093. height: math.unit(6, "feet"),
  14094. weight: math.unit(150, "lb"),
  14095. name: "Front (Clothed)",
  14096. image: {
  14097. source: "./media/characters/elyssia/front-clothed.svg",
  14098. extra: 2201 / 2035,
  14099. bottom: 0.05
  14100. }
  14101. },
  14102. back: {
  14103. height: math.unit(6, "feet"),
  14104. weight: math.unit(150, "lb"),
  14105. name: "Back",
  14106. image: {
  14107. source: "./media/characters/elyssia/back.svg",
  14108. extra: 2201 / 2035,
  14109. bottom: 0.013
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "Smaller",
  14116. height: math.unit(150, "feet")
  14117. },
  14118. {
  14119. name: "Standard",
  14120. height: math.unit(1400, "feet"),
  14121. default: true
  14122. },
  14123. {
  14124. name: "Distracted",
  14125. height: math.unit(15000, "feet")
  14126. },
  14127. ]
  14128. ))
  14129. characterMakers.push(() => makeCharacter(
  14130. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14131. {
  14132. front: {
  14133. height: math.unit(7 + 4/12, "feet"),
  14134. weight: math.unit(690, "lb"),
  14135. name: "Front",
  14136. image: {
  14137. source: "./media/characters/geno-maxwell/front.svg",
  14138. extra: 984/856,
  14139. bottom: 87/1071
  14140. }
  14141. },
  14142. back: {
  14143. height: math.unit(7 + 4/12, "feet"),
  14144. weight: math.unit(690, "lb"),
  14145. name: "Back",
  14146. image: {
  14147. source: "./media/characters/geno-maxwell/back.svg",
  14148. extra: 981/854,
  14149. bottom: 57/1038
  14150. }
  14151. },
  14152. frontCostume: {
  14153. height: math.unit(7 + 4/12, "feet"),
  14154. weight: math.unit(690, "lb"),
  14155. name: "Front (Costume)",
  14156. image: {
  14157. source: "./media/characters/geno-maxwell/front-costume.svg",
  14158. extra: 984/856,
  14159. bottom: 87/1071
  14160. }
  14161. },
  14162. backcostume: {
  14163. height: math.unit(7 + 4/12, "feet"),
  14164. weight: math.unit(690, "lb"),
  14165. name: "Back (Costume)",
  14166. image: {
  14167. source: "./media/characters/geno-maxwell/back-costume.svg",
  14168. extra: 981/854,
  14169. bottom: 57/1038
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Micro",
  14176. height: math.unit(3, "inches")
  14177. },
  14178. {
  14179. name: "Normal",
  14180. height: math.unit(7 + 4 / 12, "feet"),
  14181. default: true
  14182. },
  14183. {
  14184. name: "Macro",
  14185. height: math.unit(220, "feet")
  14186. },
  14187. {
  14188. name: "Megamacro",
  14189. height: math.unit(11, "miles")
  14190. },
  14191. ]
  14192. ))
  14193. characterMakers.push(() => makeCharacter(
  14194. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14195. {
  14196. front: {
  14197. height: math.unit(7 + 4/12, "feet"),
  14198. weight: math.unit(750, "lb"),
  14199. name: "Front",
  14200. image: {
  14201. source: "./media/characters/regena-maxwell/front.svg",
  14202. extra: 984/856,
  14203. bottom: 87/1071
  14204. }
  14205. },
  14206. back: {
  14207. height: math.unit(7 + 4/12, "feet"),
  14208. weight: math.unit(750, "lb"),
  14209. name: "Back",
  14210. image: {
  14211. source: "./media/characters/regena-maxwell/back.svg",
  14212. extra: 981/854,
  14213. bottom: 57/1038
  14214. }
  14215. },
  14216. frontCostume: {
  14217. height: math.unit(7 + 4/12, "feet"),
  14218. weight: math.unit(750, "lb"),
  14219. name: "Front (Costume)",
  14220. image: {
  14221. source: "./media/characters/regena-maxwell/front-costume.svg",
  14222. extra: 984/856,
  14223. bottom: 87/1071
  14224. }
  14225. },
  14226. backcostume: {
  14227. height: math.unit(7 + 4/12, "feet"),
  14228. weight: math.unit(750, "lb"),
  14229. name: "Back (Costume)",
  14230. image: {
  14231. source: "./media/characters/regena-maxwell/back-costume.svg",
  14232. extra: 981/854,
  14233. bottom: 57/1038
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(7 + 4 / 12, "feet"),
  14241. default: true
  14242. },
  14243. {
  14244. name: "Macro",
  14245. height: math.unit(220, "feet")
  14246. },
  14247. {
  14248. name: "Megamacro",
  14249. height: math.unit(11, "miles")
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(6, "feet"),
  14258. weight: math.unit(150, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14262. extra: 860 / 690,
  14263. bottom: 0.03
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(1.7, "meters"),
  14271. default: true
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14277. {
  14278. front: {
  14279. height: math.unit(6, "feet"),
  14280. weight: math.unit(150, "lb"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/quilly/front.svg",
  14284. extra: 890 / 776
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Gigamacro",
  14291. height: math.unit(404090, "miles"),
  14292. default: true
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(7 + 8 / 12, "feet"),
  14301. weight: math.unit(350, "lb"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/tempest/front.svg",
  14305. extra: 1175 / 1086,
  14306. bottom: 0.02
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Normal",
  14313. height: math.unit(7 + 8 / 12, "feet"),
  14314. default: true
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14320. {
  14321. side: {
  14322. height: math.unit(4 + 5 / 12, "feet"),
  14323. weight: math.unit(80, "lb"),
  14324. name: "Side",
  14325. image: {
  14326. source: "./media/characters/rodger/side.svg",
  14327. extra: 1235 / 1118
  14328. }
  14329. },
  14330. },
  14331. [
  14332. {
  14333. name: "Micro",
  14334. height: math.unit(1, "inch")
  14335. },
  14336. {
  14337. name: "Normal",
  14338. height: math.unit(4 + 5 / 12, "feet"),
  14339. default: true
  14340. },
  14341. {
  14342. name: "Macro",
  14343. height: math.unit(120, "feet")
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(6, "feet"),
  14352. weight: math.unit(150, "lb"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/danyel/front.svg",
  14356. extra: 1185 / 1123,
  14357. bottom: 0.05
  14358. }
  14359. },
  14360. },
  14361. [
  14362. {
  14363. name: "Shrunken",
  14364. height: math.unit(0.5, "mm")
  14365. },
  14366. {
  14367. name: "Micro",
  14368. height: math.unit(1, "mm"),
  14369. default: true
  14370. },
  14371. {
  14372. name: "Upsized",
  14373. height: math.unit(5 + 5 / 12, "feet")
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14379. {
  14380. front: {
  14381. height: math.unit(5 + 6 / 12, "feet"),
  14382. weight: math.unit(200, "lb"),
  14383. name: "Front",
  14384. image: {
  14385. source: "./media/characters/vivian-bijoux/front.svg",
  14386. extra: 1217/1209,
  14387. bottom: 76/1293
  14388. }
  14389. },
  14390. back: {
  14391. height: math.unit(5 + 6 / 12, "feet"),
  14392. weight: math.unit(200, "lb"),
  14393. name: "Back",
  14394. image: {
  14395. source: "./media/characters/vivian-bijoux/back.svg",
  14396. extra: 1214/1208,
  14397. bottom: 51/1265
  14398. }
  14399. },
  14400. dressed: {
  14401. height: math.unit(5 + 6 / 12, "feet"),
  14402. weight: math.unit(200, "lb"),
  14403. name: "Dressed",
  14404. image: {
  14405. source: "./media/characters/vivian-bijoux/dressed.svg",
  14406. extra: 1217/1209,
  14407. bottom: 76/1293
  14408. }
  14409. },
  14410. },
  14411. [
  14412. {
  14413. name: "Normal",
  14414. height: math.unit(5 + 6 / 12, "feet"),
  14415. default: true
  14416. },
  14417. {
  14418. name: "Bad Dream",
  14419. height: math.unit(500, "feet")
  14420. },
  14421. {
  14422. name: "Nightmare",
  14423. height: math.unit(500, "miles")
  14424. },
  14425. ]
  14426. ))
  14427. characterMakers.push(() => makeCharacter(
  14428. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14429. {
  14430. front: {
  14431. height: math.unit(6 + 1 / 12, "feet"),
  14432. weight: math.unit(260, "lb"),
  14433. name: "Front",
  14434. image: {
  14435. source: "./media/characters/zeta/front.svg",
  14436. extra: 1968 / 1889,
  14437. bottom: 0.06
  14438. }
  14439. },
  14440. back: {
  14441. height: math.unit(6 + 1 / 12, "feet"),
  14442. weight: math.unit(260, "lb"),
  14443. name: "Back",
  14444. image: {
  14445. source: "./media/characters/zeta/back.svg",
  14446. extra: 1944 / 1858,
  14447. bottom: 0.03
  14448. }
  14449. },
  14450. hand: {
  14451. height: math.unit(1.112, "feet"),
  14452. name: "Hand",
  14453. image: {
  14454. source: "./media/characters/zeta/hand.svg"
  14455. }
  14456. },
  14457. foot: {
  14458. height: math.unit(1.48, "feet"),
  14459. name: "Foot",
  14460. image: {
  14461. source: "./media/characters/zeta/foot.svg"
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Micro",
  14468. height: math.unit(6, "inches")
  14469. },
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(6 + 1 / 12, "feet"),
  14473. default: true
  14474. },
  14475. {
  14476. name: "Macro",
  14477. height: math.unit(20, "feet")
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14483. {
  14484. front: {
  14485. height: math.unit(6, "feet"),
  14486. weight: math.unit(150, "lb"),
  14487. name: "Front",
  14488. image: {
  14489. source: "./media/characters/jamie-larsen/front.svg",
  14490. extra: 962 / 933,
  14491. bottom: 0.02
  14492. }
  14493. },
  14494. back: {
  14495. height: math.unit(6, "feet"),
  14496. weight: math.unit(150, "lb"),
  14497. name: "Back",
  14498. image: {
  14499. source: "./media/characters/jamie-larsen/back.svg",
  14500. extra: 997 / 946
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Macro",
  14507. height: math.unit(28 + 7 / 12, "feet"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Macro+",
  14512. height: math.unit(180, "feet")
  14513. },
  14514. {
  14515. name: "Megamacro",
  14516. height: math.unit(10, "miles")
  14517. },
  14518. {
  14519. name: "Gigamacro",
  14520. height: math.unit(200000, "miles")
  14521. },
  14522. ]
  14523. ))
  14524. characterMakers.push(() => makeCharacter(
  14525. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14526. {
  14527. front: {
  14528. height: math.unit(6, "feet"),
  14529. weight: math.unit(120, "lb"),
  14530. name: "Front",
  14531. image: {
  14532. source: "./media/characters/vance/front.svg",
  14533. extra: 1980 / 1890,
  14534. bottom: 0.09
  14535. }
  14536. },
  14537. back: {
  14538. height: math.unit(6, "feet"),
  14539. weight: math.unit(120, "lb"),
  14540. name: "Back",
  14541. image: {
  14542. source: "./media/characters/vance/back.svg",
  14543. extra: 2081 / 1994,
  14544. bottom: 0.014
  14545. }
  14546. },
  14547. hand: {
  14548. height: math.unit(0.88, "feet"),
  14549. name: "Hand",
  14550. image: {
  14551. source: "./media/characters/vance/hand.svg"
  14552. }
  14553. },
  14554. foot: {
  14555. height: math.unit(0.64, "feet"),
  14556. name: "Foot",
  14557. image: {
  14558. source: "./media/characters/vance/foot.svg"
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Small",
  14565. height: math.unit(90, "feet"),
  14566. default: true
  14567. },
  14568. {
  14569. name: "Macro",
  14570. height: math.unit(100, "meters")
  14571. },
  14572. {
  14573. name: "Megamacro",
  14574. height: math.unit(15, "miles")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(6, "feet"),
  14583. weight: math.unit(180, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/xochitl/front.svg",
  14587. extra: 2297 / 2261,
  14588. bottom: 0.065
  14589. }
  14590. },
  14591. back: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(180, "lb"),
  14594. name: "Back",
  14595. image: {
  14596. source: "./media/characters/xochitl/back.svg",
  14597. extra: 2386 / 2354,
  14598. bottom: 0.01
  14599. }
  14600. },
  14601. foot: {
  14602. height: math.unit(6 / 5 * 1.15, "feet"),
  14603. weight: math.unit(150, "lb"),
  14604. name: "Foot",
  14605. image: {
  14606. source: "./media/characters/xochitl/foot.svg"
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Macro",
  14613. height: math.unit(80, "feet")
  14614. },
  14615. {
  14616. name: "Macro+",
  14617. height: math.unit(400, "feet"),
  14618. default: true
  14619. },
  14620. {
  14621. name: "Gigamacro",
  14622. height: math.unit(80000, "miles")
  14623. },
  14624. {
  14625. name: "Gigamacro+",
  14626. height: math.unit(400000, "miles")
  14627. },
  14628. {
  14629. name: "Teramacro",
  14630. height: math.unit(300, "AU")
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14636. {
  14637. front: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(150, "lb"),
  14640. name: "Front",
  14641. image: {
  14642. source: "./media/characters/vincent/front.svg",
  14643. extra: 1130 / 1080,
  14644. bottom: 0.055
  14645. }
  14646. },
  14647. beak: {
  14648. height: math.unit(6 * 0.1, "feet"),
  14649. name: "Beak",
  14650. image: {
  14651. source: "./media/characters/vincent/beak.svg"
  14652. }
  14653. },
  14654. hand: {
  14655. height: math.unit(6 * 0.85, "feet"),
  14656. weight: math.unit(150, "lb"),
  14657. name: "Hand",
  14658. image: {
  14659. source: "./media/characters/vincent/hand.svg"
  14660. }
  14661. },
  14662. foot: {
  14663. height: math.unit(6 * 0.19, "feet"),
  14664. weight: math.unit(150, "lb"),
  14665. name: "Foot",
  14666. image: {
  14667. source: "./media/characters/vincent/foot.svg"
  14668. }
  14669. },
  14670. },
  14671. [
  14672. {
  14673. name: "Base",
  14674. height: math.unit(6 + 5 / 12, "feet"),
  14675. default: true
  14676. },
  14677. {
  14678. name: "Macro",
  14679. height: math.unit(300, "feet")
  14680. },
  14681. {
  14682. name: "Megamacro",
  14683. height: math.unit(2, "miles")
  14684. },
  14685. {
  14686. name: "Gigamacro",
  14687. height: math.unit(1000, "miles")
  14688. },
  14689. ]
  14690. ))
  14691. characterMakers.push(() => makeCharacter(
  14692. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14693. {
  14694. front: {
  14695. height: math.unit(2, "meters"),
  14696. weight: math.unit(500, "kg"),
  14697. name: "Front",
  14698. image: {
  14699. source: "./media/characters/coatl/front.svg",
  14700. extra: 3948 / 3500,
  14701. bottom: 0.082
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Normal",
  14708. height: math.unit(4, "meters")
  14709. },
  14710. {
  14711. name: "Macro",
  14712. height: math.unit(100, "meters"),
  14713. default: true
  14714. },
  14715. {
  14716. name: "Macro+",
  14717. height: math.unit(300, "meters")
  14718. },
  14719. {
  14720. name: "Megamacro",
  14721. height: math.unit(3, "gigameters")
  14722. },
  14723. {
  14724. name: "Megamacro+",
  14725. height: math.unit(300, "terameters")
  14726. },
  14727. {
  14728. name: "Megamacro++",
  14729. height: math.unit(3, "lightyears")
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14735. {
  14736. front: {
  14737. height: math.unit(6, "feet"),
  14738. weight: math.unit(50, "kg"),
  14739. name: "front",
  14740. image: {
  14741. source: "./media/characters/shiroryu/front.svg",
  14742. extra: 1990 / 1935
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Mortal Mingling",
  14749. height: math.unit(3, "meters")
  14750. },
  14751. {
  14752. name: "Kaiju-ish",
  14753. height: math.unit(250, "meters")
  14754. },
  14755. {
  14756. name: "Somewhat Godly",
  14757. height: math.unit(400, "km"),
  14758. default: true
  14759. },
  14760. {
  14761. name: "Planetary",
  14762. height: math.unit(300, "megameters")
  14763. },
  14764. {
  14765. name: "Galaxy-dwarfing",
  14766. height: math.unit(450, "kiloparsecs")
  14767. },
  14768. {
  14769. name: "Universe Eater",
  14770. height: math.unit(150, "gigaparsecs")
  14771. },
  14772. {
  14773. name: "Almost Immeasurable",
  14774. height: math.unit(1.3e266, "yottaparsecs")
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(6, "feet"),
  14783. weight: math.unit(150, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/umeko/front.svg",
  14787. extra: 1,
  14788. bottom: 0.019
  14789. }
  14790. },
  14791. frontArmored: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Front (Armored)",
  14795. image: {
  14796. source: "./media/characters/umeko/front-armored.svg",
  14797. extra: 1,
  14798. bottom: 0.021
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Macro",
  14805. height: math.unit(220, "feet"),
  14806. default: true
  14807. },
  14808. {
  14809. name: "Guardian Dragon",
  14810. height: math.unit(50, "miles")
  14811. },
  14812. {
  14813. name: "Cosmic",
  14814. height: math.unit(800000, "miles")
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(6, "feet"),
  14823. weight: math.unit(150, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/cassidy/front.svg",
  14827. extra: 810/808,
  14828. bottom: 41/851
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Canon Height",
  14835. height: math.unit(120, "feet"),
  14836. default: true
  14837. },
  14838. {
  14839. name: "Macro+",
  14840. height: math.unit(400, "feet")
  14841. },
  14842. {
  14843. name: "Macro++",
  14844. height: math.unit(4000, "feet")
  14845. },
  14846. {
  14847. name: "Megamacro",
  14848. height: math.unit(3, "miles")
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(6, "feet"),
  14857. weight: math.unit(150, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/isaac/front.svg",
  14861. extra: 896 / 815,
  14862. bottom: 0.11
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Human Size",
  14869. height: math.unit(8, "feet"),
  14870. default: true
  14871. },
  14872. {
  14873. name: "Macro",
  14874. height: math.unit(400, "feet")
  14875. },
  14876. {
  14877. name: "Megamacro",
  14878. height: math.unit(50, "miles")
  14879. },
  14880. {
  14881. name: "Canon Height",
  14882. height: math.unit(200, "AU")
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14888. {
  14889. front: {
  14890. height: math.unit(6, "feet"),
  14891. weight: math.unit(72, "kg"),
  14892. name: "Front",
  14893. image: {
  14894. source: "./media/characters/sleekit/front.svg",
  14895. extra: 4693 / 4487,
  14896. bottom: 0.012
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Minimum Height",
  14903. height: math.unit(10, "meters")
  14904. },
  14905. {
  14906. name: "Smaller",
  14907. height: math.unit(25, "meters")
  14908. },
  14909. {
  14910. name: "Larger",
  14911. height: math.unit(38, "meters"),
  14912. default: true
  14913. },
  14914. {
  14915. name: "Maximum height",
  14916. height: math.unit(100, "meters")
  14917. },
  14918. ]
  14919. ))
  14920. characterMakers.push(() => makeCharacter(
  14921. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14922. {
  14923. front: {
  14924. height: math.unit(6, "feet"),
  14925. weight: math.unit(150, "lb"),
  14926. name: "Front",
  14927. image: {
  14928. source: "./media/characters/nillia/front.svg",
  14929. extra: 2195 / 2037,
  14930. bottom: 0.005
  14931. }
  14932. },
  14933. back: {
  14934. height: math.unit(6, "feet"),
  14935. weight: math.unit(150, "lb"),
  14936. name: "Back",
  14937. image: {
  14938. source: "./media/characters/nillia/back.svg",
  14939. extra: 2195 / 2037,
  14940. bottom: 0.005
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Canon Height",
  14947. height: math.unit(489, "feet"),
  14948. default: true
  14949. }
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14954. {
  14955. front: {
  14956. height: math.unit(6, "feet"),
  14957. weight: math.unit(150, "lb"),
  14958. name: "Front",
  14959. image: {
  14960. source: "./media/characters/mesmyriza/front.svg",
  14961. extra: 2067 / 1784,
  14962. bottom: 0.035
  14963. }
  14964. },
  14965. foot: {
  14966. height: math.unit(6 / (250 / 35), "feet"),
  14967. name: "Foot",
  14968. image: {
  14969. source: "./media/characters/mesmyriza/foot.svg"
  14970. }
  14971. },
  14972. },
  14973. [
  14974. {
  14975. name: "Macro",
  14976. height: math.unit(457, "meters"),
  14977. default: true
  14978. },
  14979. {
  14980. name: "Megamacro",
  14981. height: math.unit(8, "megameters")
  14982. },
  14983. ]
  14984. ))
  14985. characterMakers.push(() => makeCharacter(
  14986. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14987. {
  14988. front: {
  14989. height: math.unit(6, "feet"),
  14990. weight: math.unit(250, "lb"),
  14991. name: "Front",
  14992. image: {
  14993. source: "./media/characters/saudade/front.svg",
  14994. extra: 1172 / 1139,
  14995. bottom: 0.035
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Micro",
  15002. height: math.unit(3, "inches")
  15003. },
  15004. {
  15005. name: "Normal",
  15006. height: math.unit(6, "feet"),
  15007. default: true
  15008. },
  15009. {
  15010. name: "Macro",
  15011. height: math.unit(50, "feet")
  15012. },
  15013. {
  15014. name: "Megamacro",
  15015. height: math.unit(2800, "feet")
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(5 + 4 / 12, "feet"),
  15024. weight: math.unit(100, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/keireer/front.svg",
  15028. extra: 716 / 666,
  15029. bottom: 0.05
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Normal",
  15036. height: math.unit(5 + 4 / 12, "feet"),
  15037. default: true
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15043. {
  15044. front: {
  15045. height: math.unit(6, "feet"),
  15046. weight: math.unit(90, "kg"),
  15047. name: "Front",
  15048. image: {
  15049. source: "./media/characters/mirja/front.svg",
  15050. extra: 1789 / 1683,
  15051. bottom: 0.05
  15052. }
  15053. },
  15054. frontDressed: {
  15055. height: math.unit(6, "feet"),
  15056. weight: math.unit(90, "lb"),
  15057. name: "Front (Dressed)",
  15058. image: {
  15059. source: "./media/characters/mirja/front-dressed.svg",
  15060. extra: 1789 / 1683,
  15061. bottom: 0.05
  15062. }
  15063. },
  15064. back: {
  15065. height: math.unit(6, "feet"),
  15066. weight: math.unit(90, "lb"),
  15067. name: "Back",
  15068. image: {
  15069. source: "./media/characters/mirja/back.svg",
  15070. extra: 953 / 917,
  15071. bottom: 0.017
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "\"Incognito\"",
  15078. height: math.unit(3, "meters")
  15079. },
  15080. {
  15081. name: "Strolling Size",
  15082. height: math.unit(15, "km")
  15083. },
  15084. {
  15085. name: "Larger Strolling Size",
  15086. height: math.unit(400, "km")
  15087. },
  15088. {
  15089. name: "Preferred Size",
  15090. height: math.unit(5000, "km")
  15091. },
  15092. {
  15093. name: "True Size",
  15094. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15095. default: true
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(15, "feet"),
  15104. weight: math.unit(880, "kg"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/nightraver/front.svg",
  15108. extra: 2444 / 2160,
  15109. bottom: 0.027
  15110. }
  15111. },
  15112. back: {
  15113. height: math.unit(15, "feet"),
  15114. weight: math.unit(880, "kg"),
  15115. name: "Back",
  15116. image: {
  15117. source: "./media/characters/nightraver/back.svg",
  15118. extra: 2309 / 2180,
  15119. bottom: 0.005
  15120. }
  15121. },
  15122. sole: {
  15123. height: math.unit(2.878, "feet"),
  15124. name: "Sole",
  15125. image: {
  15126. source: "./media/characters/nightraver/sole.svg"
  15127. }
  15128. },
  15129. foot: {
  15130. height: math.unit(2.285, "feet"),
  15131. name: "Foot",
  15132. image: {
  15133. source: "./media/characters/nightraver/foot.svg"
  15134. }
  15135. },
  15136. maw: {
  15137. height: math.unit(2.67, "feet"),
  15138. name: "Maw",
  15139. image: {
  15140. source: "./media/characters/nightraver/maw.svg"
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Micro",
  15147. height: math.unit(1, "cm")
  15148. },
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(15, "feet"),
  15152. default: true
  15153. },
  15154. {
  15155. name: "Macro",
  15156. height: math.unit(300, "feet")
  15157. },
  15158. {
  15159. name: "Megamacro",
  15160. height: math.unit(300, "miles")
  15161. },
  15162. {
  15163. name: "Gigamacro",
  15164. height: math.unit(10000, "miles")
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15170. {
  15171. side: {
  15172. height: math.unit(2, "inches"),
  15173. weight: math.unit(5, "grams"),
  15174. name: "Side",
  15175. image: {
  15176. source: "./media/characters/arc/side.svg"
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Micro",
  15183. height: math.unit(2, "inches"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(1.1938, "meters"),
  15193. weight: math.unit(54, "kg"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/nebula-shahar/front.svg",
  15197. extra: 1642 / 1436,
  15198. bottom: 0.06
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Megamicro",
  15205. height: math.unit(0.3, "mm")
  15206. },
  15207. {
  15208. name: "Micro",
  15209. height: math.unit(3, "cm")
  15210. },
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(138, "cm"),
  15214. default: true
  15215. },
  15216. {
  15217. name: "Macro",
  15218. height: math.unit(30, "m")
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(5.24, "feet"),
  15227. weight: math.unit(150, "lb"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/shayla/front.svg",
  15231. extra: 1512 / 1414,
  15232. bottom: 0.01
  15233. }
  15234. },
  15235. back: {
  15236. height: math.unit(5.24, "feet"),
  15237. weight: math.unit(150, "lb"),
  15238. name: "Back",
  15239. image: {
  15240. source: "./media/characters/shayla/back.svg",
  15241. extra: 1512 / 1414
  15242. }
  15243. },
  15244. hand: {
  15245. height: math.unit(0.7781496062992126, "feet"),
  15246. name: "Hand",
  15247. image: {
  15248. source: "./media/characters/shayla/hand.svg"
  15249. }
  15250. },
  15251. foot: {
  15252. height: math.unit(1.4206036745406823, "feet"),
  15253. name: "Foot",
  15254. image: {
  15255. source: "./media/characters/shayla/foot.svg"
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Micro",
  15262. height: math.unit(0.32, "feet")
  15263. },
  15264. {
  15265. name: "Normal",
  15266. height: math.unit(5.24, "feet"),
  15267. default: true
  15268. },
  15269. {
  15270. name: "Macro",
  15271. height: math.unit(492.12, "feet")
  15272. },
  15273. {
  15274. name: "Megamacro",
  15275. height: math.unit(186.41, "miles")
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(2.2, "m"),
  15284. weight: math.unit(120, "kg"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/pia-jr/front.svg",
  15288. extra: 1000 / 970,
  15289. bottom: 0.035
  15290. }
  15291. },
  15292. hand: {
  15293. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15294. name: "Hand",
  15295. image: {
  15296. source: "./media/characters/pia-jr/hand.svg"
  15297. }
  15298. },
  15299. paw: {
  15300. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15301. name: "Paw",
  15302. image: {
  15303. source: "./media/characters/pia-jr/paw.svg"
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Micro",
  15310. height: math.unit(1.2, "cm")
  15311. },
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(2.2, "m"),
  15315. default: true
  15316. },
  15317. {
  15318. name: "Macro",
  15319. height: math.unit(180, "m")
  15320. },
  15321. {
  15322. name: "Megamacro",
  15323. height: math.unit(420, "km")
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(2, "m"),
  15332. weight: math.unit(115, "kg"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/pia-sr/front.svg",
  15336. extra: 760 / 730,
  15337. bottom: 0.015
  15338. }
  15339. },
  15340. back: {
  15341. height: math.unit(2, "m"),
  15342. weight: math.unit(115, "kg"),
  15343. name: "Back",
  15344. image: {
  15345. source: "./media/characters/pia-sr/back.svg",
  15346. extra: 760 / 730,
  15347. bottom: 0.01
  15348. }
  15349. },
  15350. hand: {
  15351. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15352. name: "Hand",
  15353. image: {
  15354. source: "./media/characters/pia-sr/hand.svg"
  15355. }
  15356. },
  15357. foot: {
  15358. height: math.unit(1.83, "feet"),
  15359. name: "Foot",
  15360. image: {
  15361. source: "./media/characters/pia-sr/foot.svg"
  15362. }
  15363. },
  15364. },
  15365. [
  15366. {
  15367. name: "Micro",
  15368. height: math.unit(88, "mm")
  15369. },
  15370. {
  15371. name: "Normal",
  15372. height: math.unit(2, "m"),
  15373. default: true
  15374. },
  15375. {
  15376. name: "Macro",
  15377. height: math.unit(200, "m")
  15378. },
  15379. {
  15380. name: "Megamacro",
  15381. height: math.unit(420, "km")
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(8 + 2 / 12, "feet"),
  15390. weight: math.unit(300, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/kibibyte/front.svg",
  15394. extra: 2221 / 2098,
  15395. bottom: 0.04
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(8 + 2 / 12, "feet"),
  15403. default: true
  15404. },
  15405. {
  15406. name: "Socialable Macro",
  15407. height: math.unit(50, "feet")
  15408. },
  15409. {
  15410. name: "Macro",
  15411. height: math.unit(300, "feet")
  15412. },
  15413. {
  15414. name: "Megamacro",
  15415. height: math.unit(500, "miles")
  15416. },
  15417. ]
  15418. ))
  15419. characterMakers.push(() => makeCharacter(
  15420. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15421. {
  15422. front: {
  15423. height: math.unit(6, "feet"),
  15424. weight: math.unit(150, "lb"),
  15425. name: "Front",
  15426. image: {
  15427. source: "./media/characters/felix/front.svg",
  15428. extra: 762 / 722,
  15429. bottom: 0.02
  15430. }
  15431. },
  15432. frontClothed: {
  15433. height: math.unit(6, "feet"),
  15434. weight: math.unit(150, "lb"),
  15435. name: "Front (Clothed)",
  15436. image: {
  15437. source: "./media/characters/felix/front-clothed.svg",
  15438. extra: 762 / 722,
  15439. bottom: 0.02
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Normal",
  15446. height: math.unit(6 + 8 / 12, "feet"),
  15447. default: true
  15448. },
  15449. {
  15450. name: "Macro",
  15451. height: math.unit(2600, "feet")
  15452. },
  15453. {
  15454. name: "Megamacro",
  15455. height: math.unit(450, "miles")
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15461. {
  15462. front: {
  15463. height: math.unit(6 + 1 / 12, "feet"),
  15464. weight: math.unit(250, "lb"),
  15465. name: "Front",
  15466. image: {
  15467. source: "./media/characters/tobo/front.svg",
  15468. extra: 608 / 586,
  15469. bottom: 0.023
  15470. }
  15471. },
  15472. back: {
  15473. height: math.unit(6 + 1 / 12, "feet"),
  15474. weight: math.unit(250, "lb"),
  15475. name: "Back",
  15476. image: {
  15477. source: "./media/characters/tobo/back.svg",
  15478. extra: 608 / 586
  15479. }
  15480. },
  15481. },
  15482. [
  15483. {
  15484. name: "Nano",
  15485. height: math.unit(2, "nm")
  15486. },
  15487. {
  15488. name: "Megamicro",
  15489. height: math.unit(0.1, "mm")
  15490. },
  15491. {
  15492. name: "Micro",
  15493. height: math.unit(1, "inch"),
  15494. default: true
  15495. },
  15496. {
  15497. name: "Human-sized",
  15498. height: math.unit(6 + 1 / 12, "feet")
  15499. },
  15500. {
  15501. name: "Macro",
  15502. height: math.unit(250, "feet")
  15503. },
  15504. {
  15505. name: "Megamacro",
  15506. height: math.unit(75, "miles")
  15507. },
  15508. {
  15509. name: "Texas-sized",
  15510. height: math.unit(750, "miles")
  15511. },
  15512. {
  15513. name: "Teramacro",
  15514. height: math.unit(50000, "miles")
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(6, "feet"),
  15523. weight: math.unit(269, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/danny-kapowsky/front.svg",
  15527. extra: 766 / 736,
  15528. bottom: 0.044
  15529. }
  15530. },
  15531. back: {
  15532. height: math.unit(6, "feet"),
  15533. weight: math.unit(269, "lb"),
  15534. name: "Back",
  15535. image: {
  15536. source: "./media/characters/danny-kapowsky/back.svg",
  15537. extra: 797 / 760,
  15538. bottom: 0.025
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Macro",
  15545. height: math.unit(150, "feet"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Macro+",
  15550. height: math.unit(200, "feet")
  15551. },
  15552. {
  15553. name: "Macro++",
  15554. height: math.unit(300, "feet")
  15555. },
  15556. {
  15557. name: "Macro+++",
  15558. height: math.unit(400, "feet")
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15564. {
  15565. side: {
  15566. height: math.unit(6, "feet"),
  15567. weight: math.unit(170, "lb"),
  15568. name: "Side",
  15569. image: {
  15570. source: "./media/characters/finn/side.svg",
  15571. extra: 1953 / 1807,
  15572. bottom: 0.057
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Megamacro",
  15579. height: math.unit(14445, "feet"),
  15580. default: true
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(5 + 6 / 12, "feet"),
  15589. weight: math.unit(125, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/roy/front.svg",
  15593. extra: 1,
  15594. bottom: 0.11
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Micro",
  15601. height: math.unit(3, "inches"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(5 + 6 / 12, "feet")
  15607. },
  15608. {
  15609. name: "Lesser Macro",
  15610. height: math.unit(60, "feet")
  15611. },
  15612. {
  15613. name: "Greater Macro",
  15614. height: math.unit(120, "feet")
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(100, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/aevsivs/front.svg",
  15627. extra: 1,
  15628. bottom: 0.03
  15629. }
  15630. },
  15631. back: {
  15632. height: math.unit(6, "feet"),
  15633. weight: math.unit(100, "lb"),
  15634. name: "Back",
  15635. image: {
  15636. source: "./media/characters/aevsivs/back.svg"
  15637. }
  15638. },
  15639. },
  15640. [
  15641. {
  15642. name: "Micro",
  15643. height: math.unit(2, "inches"),
  15644. default: true
  15645. },
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(5, "feet")
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(5 + 7 / 12, "feet"),
  15657. weight: math.unit(159, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/hildegard/front.svg",
  15661. extra: 289 / 269,
  15662. bottom: 7.63 / 297.8
  15663. }
  15664. },
  15665. back: {
  15666. height: math.unit(5 + 7 / 12, "feet"),
  15667. weight: math.unit(159, "lb"),
  15668. name: "Back",
  15669. image: {
  15670. source: "./media/characters/hildegard/back.svg",
  15671. extra: 280 / 260,
  15672. bottom: 2.3 / 282
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Normal",
  15679. height: math.unit(5 + 7 / 12, "feet"),
  15680. default: true
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15686. {
  15687. bernard: {
  15688. height: math.unit(2 + 7 / 12, "feet"),
  15689. weight: math.unit(66, "lb"),
  15690. name: "Bernard",
  15691. rename: true,
  15692. image: {
  15693. source: "./media/characters/bernard-wilder/bernard.svg",
  15694. extra: 192 / 128,
  15695. bottom: 0.05
  15696. }
  15697. },
  15698. wilder: {
  15699. height: math.unit(5 + 8 / 12, "feet"),
  15700. weight: math.unit(143, "lb"),
  15701. name: "Wilder",
  15702. rename: true,
  15703. image: {
  15704. source: "./media/characters/bernard-wilder/wilder.svg",
  15705. extra: 361 / 312,
  15706. bottom: 0.02
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(2 + 7 / 12, "feet"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15720. {
  15721. anthro: {
  15722. height: math.unit(6 + 1 / 12, "feet"),
  15723. weight: math.unit(155, "lb"),
  15724. name: "Anthro",
  15725. image: {
  15726. source: "./media/characters/hearth/anthro.svg",
  15727. extra: 1178/1136,
  15728. bottom: 28/1206
  15729. }
  15730. },
  15731. feral: {
  15732. height: math.unit(3.78, "feet"),
  15733. weight: math.unit(35, "kg"),
  15734. name: "Feral",
  15735. image: {
  15736. source: "./media/characters/hearth/feral.svg",
  15737. extra: 153 / 135,
  15738. bottom: 0.03
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(6 + 1 / 12, "feet"),
  15746. default: true
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(6, "feet"),
  15755. weight: math.unit(182, "lb"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/ingrid/front.svg",
  15759. extra: 294 / 268,
  15760. bottom: 0.027
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(6, "feet"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15774. {
  15775. eevee: {
  15776. height: math.unit(2 + 10 / 12, "feet"),
  15777. weight: math.unit(86, "lb"),
  15778. name: "Malgam",
  15779. image: {
  15780. source: "./media/characters/malgam/eevee.svg",
  15781. extra: 952/784,
  15782. bottom: 38/990
  15783. }
  15784. },
  15785. sylveon: {
  15786. height: math.unit(4, "feet"),
  15787. weight: math.unit(101, "lb"),
  15788. name: "Future Malgam",
  15789. rename: true,
  15790. image: {
  15791. source: "./media/characters/malgam/sylveon.svg",
  15792. extra: 371 / 325,
  15793. bottom: 0.015
  15794. }
  15795. },
  15796. gigantamax: {
  15797. height: math.unit(50, "feet"),
  15798. name: "Gigantamax Malgam",
  15799. rename: true,
  15800. image: {
  15801. source: "./media/characters/malgam/gigantamax.svg"
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Normal",
  15808. height: math.unit(2 + 10 / 12, "feet"),
  15809. default: true
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15815. {
  15816. front: {
  15817. height: math.unit(5 + 11 / 12, "feet"),
  15818. weight: math.unit(188, "lb"),
  15819. name: "Front",
  15820. image: {
  15821. source: "./media/characters/fleur/front.svg",
  15822. extra: 309 / 283,
  15823. bottom: 0.007
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(5 + 11 / 12, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(5 + 4 / 12, "feet"),
  15840. weight: math.unit(122, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/jude/front.svg",
  15844. extra: 288 / 273,
  15845. bottom: 0.03
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(5 + 4 / 12, "feet"),
  15853. default: true
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(5 + 11 / 12, "feet"),
  15862. weight: math.unit(190, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/seara/front.svg",
  15866. extra: 1,
  15867. bottom: 0.05
  15868. }
  15869. },
  15870. },
  15871. [
  15872. {
  15873. name: "Normal",
  15874. height: math.unit(5 + 11 / 12, "feet"),
  15875. default: true
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(16 + 5 / 12, "feet"),
  15884. weight: math.unit(524, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/caspian-lugia/front.svg",
  15888. extra: 1,
  15889. bottom: 0.04
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(16 + 5 / 12, "feet"),
  15897. default: true
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15903. {
  15904. front: {
  15905. height: math.unit(5 + 7 / 12, "feet"),
  15906. weight: math.unit(170, "lb"),
  15907. name: "Front",
  15908. image: {
  15909. source: "./media/characters/mika/front.svg",
  15910. extra: 1,
  15911. bottom: 0.016
  15912. }
  15913. },
  15914. },
  15915. [
  15916. {
  15917. name: "Normal",
  15918. height: math.unit(5 + 7 / 12, "feet"),
  15919. default: true
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(6 + 2 / 12, "feet"),
  15928. weight: math.unit(268, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/sol/front.svg",
  15932. extra: 247 / 231,
  15933. bottom: 0.05
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Normal",
  15940. height: math.unit(6 + 2 / 12, "feet"),
  15941. default: true
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15947. {
  15948. buizel: {
  15949. height: math.unit(2 + 5 / 12, "feet"),
  15950. weight: math.unit(87, "lb"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/umiko/buizel.svg",
  15954. extra: 172 / 157,
  15955. bottom: 0.01
  15956. },
  15957. form: "buizel",
  15958. default: true
  15959. },
  15960. floatzel: {
  15961. height: math.unit(5 + 9 / 12, "feet"),
  15962. weight: math.unit(250, "lb"),
  15963. name: "Front",
  15964. image: {
  15965. source: "./media/characters/umiko/floatzel.svg",
  15966. extra: 1076/1006,
  15967. bottom: 15/1091
  15968. },
  15969. form: "floatzel",
  15970. default: true
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Normal",
  15976. height: math.unit(2 + 5 / 12, "feet"),
  15977. form: "buizel",
  15978. default: true
  15979. },
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(5 + 9 / 12, "feet"),
  15983. form: "floatzel",
  15984. default: true
  15985. },
  15986. ],
  15987. {
  15988. "buizel": {
  15989. name: "Buizel"
  15990. },
  15991. "floatzel": {
  15992. name: "Floatzel",
  15993. default: true
  15994. }
  15995. }
  15996. ))
  15997. characterMakers.push(() => makeCharacter(
  15998. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15999. {
  16000. front: {
  16001. height: math.unit(6 + 2 / 12, "feet"),
  16002. weight: math.unit(146, "lb"),
  16003. name: "Front",
  16004. image: {
  16005. source: "./media/characters/iliac/front.svg",
  16006. extra: 389 / 365,
  16007. bottom: 0.035
  16008. }
  16009. },
  16010. },
  16011. [
  16012. {
  16013. name: "Normal",
  16014. height: math.unit(6 + 2 / 12, "feet"),
  16015. default: true
  16016. },
  16017. ]
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16021. {
  16022. front: {
  16023. height: math.unit(6, "feet"),
  16024. weight: math.unit(170, "lb"),
  16025. name: "Front",
  16026. image: {
  16027. source: "./media/characters/topaz/front.svg",
  16028. extra: 317 / 303,
  16029. bottom: 0.055
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Normal",
  16036. height: math.unit(6, "feet"),
  16037. default: true
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16043. {
  16044. front: {
  16045. height: math.unit(5 + 11 / 12, "feet"),
  16046. weight: math.unit(144, "lb"),
  16047. name: "Front",
  16048. image: {
  16049. source: "./media/characters/gabriel/front.svg",
  16050. extra: 285 / 262,
  16051. bottom: 0.004
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(5 + 11 / 12, "feet"),
  16059. default: true
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16065. {
  16066. side: {
  16067. height: math.unit(6 + 5 / 12, "feet"),
  16068. weight: math.unit(300, "lb"),
  16069. name: "Side",
  16070. image: {
  16071. source: "./media/characters/tempest-suicune/side.svg",
  16072. extra: 195 / 154,
  16073. bottom: 0.04
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(6 + 5 / 12, "feet"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16087. {
  16088. front: {
  16089. height: math.unit(7 + 2 / 12, "feet"),
  16090. weight: math.unit(322, "lb"),
  16091. name: "Front",
  16092. image: {
  16093. source: "./media/characters/vulcan/front.svg",
  16094. extra: 154 / 147,
  16095. bottom: 0.04
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(7 + 2 / 12, "feet"),
  16103. default: true
  16104. },
  16105. ]
  16106. ))
  16107. characterMakers.push(() => makeCharacter(
  16108. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16109. {
  16110. front: {
  16111. height: math.unit(5 + 10 / 12, "feet"),
  16112. weight: math.unit(264, "lb"),
  16113. name: "Front",
  16114. image: {
  16115. source: "./media/characters/gault/front.svg",
  16116. extra: 161 / 140,
  16117. bottom: 0.028
  16118. }
  16119. },
  16120. },
  16121. [
  16122. {
  16123. name: "Normal",
  16124. height: math.unit(5 + 10 / 12, "feet"),
  16125. default: true
  16126. },
  16127. ]
  16128. ))
  16129. characterMakers.push(() => makeCharacter(
  16130. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16131. {
  16132. front: {
  16133. height: math.unit(6, "feet"),
  16134. weight: math.unit(150, "lb"),
  16135. name: "Front",
  16136. image: {
  16137. source: "./media/characters/shard/front.svg",
  16138. extra: 273 / 238,
  16139. bottom: 0.02
  16140. }
  16141. },
  16142. },
  16143. [
  16144. {
  16145. name: "Normal",
  16146. height: math.unit(3 + 6 / 12, "feet"),
  16147. default: true
  16148. },
  16149. ]
  16150. ))
  16151. characterMakers.push(() => makeCharacter(
  16152. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16153. {
  16154. front: {
  16155. height: math.unit(5 + 11 / 12, "feet"),
  16156. weight: math.unit(146, "lb"),
  16157. name: "Front",
  16158. image: {
  16159. source: "./media/characters/ashe/front.svg",
  16160. extra: 400 / 373,
  16161. bottom: 0.01
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(5 + 11 / 12, "feet"),
  16169. default: true
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(5 + 5 / 12, "feet"),
  16178. weight: math.unit(135, "lb"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/beatrix/front.svg",
  16182. extra: 392 / 379,
  16183. bottom: 0.01
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Normal",
  16190. height: math.unit(6, "feet"),
  16191. default: true
  16192. },
  16193. ]
  16194. ))
  16195. characterMakers.push(() => makeCharacter(
  16196. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16197. {
  16198. front: {
  16199. height: math.unit(6 + 2/12, "feet"),
  16200. weight: math.unit(135, "lb"),
  16201. name: "Front",
  16202. image: {
  16203. source: "./media/characters/ignatius/front.svg",
  16204. extra: 1380/1259,
  16205. bottom: 27/1407
  16206. }
  16207. },
  16208. },
  16209. [
  16210. {
  16211. name: "Normal",
  16212. height: math.unit(6 + 2/12, "feet"),
  16213. default: true
  16214. },
  16215. ]
  16216. ))
  16217. characterMakers.push(() => makeCharacter(
  16218. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16219. {
  16220. front: {
  16221. height: math.unit(6 + 2 / 12, "feet"),
  16222. weight: math.unit(138, "lb"),
  16223. name: "Front",
  16224. image: {
  16225. source: "./media/characters/mei-li/front.svg",
  16226. extra: 237 / 229,
  16227. bottom: 0.03
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Normal",
  16234. height: math.unit(6 + 2 / 12, "feet"),
  16235. default: true
  16236. },
  16237. ]
  16238. ))
  16239. characterMakers.push(() => makeCharacter(
  16240. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16241. {
  16242. front: {
  16243. height: math.unit(2 + 4 / 12, "feet"),
  16244. weight: math.unit(62, "lb"),
  16245. name: "Front",
  16246. image: {
  16247. source: "./media/characters/puru/front.svg",
  16248. extra: 206 / 149,
  16249. bottom: 0.06
  16250. }
  16251. },
  16252. },
  16253. [
  16254. {
  16255. name: "Normal",
  16256. height: math.unit(2 + 4 / 12, "feet"),
  16257. default: true
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16263. {
  16264. anthro: {
  16265. height: math.unit(5 + 8/12, "feet"),
  16266. weight: math.unit(200, "lb"),
  16267. energyNeed: math.unit(2000, "kcal"),
  16268. name: "Anthro",
  16269. image: {
  16270. source: "./media/characters/kee/anthro.svg",
  16271. extra: 3251/3184,
  16272. bottom: 250/3501
  16273. }
  16274. },
  16275. taur: {
  16276. height: math.unit(11, "feet"),
  16277. weight: math.unit(500, "lb"),
  16278. energyNeed: math.unit(5000, "kcal"),
  16279. name: "Taur",
  16280. image: {
  16281. source: "./media/characters/kee/taur.svg",
  16282. extra: 1362/1320,
  16283. bottom: 83/1445
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Normal",
  16290. height: math.unit(5 + 8/12, "feet"),
  16291. default: true
  16292. },
  16293. {
  16294. name: "Macro",
  16295. height: math.unit(35, "feet")
  16296. },
  16297. ]
  16298. ))
  16299. characterMakers.push(() => makeCharacter(
  16300. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16301. {
  16302. anthro: {
  16303. height: math.unit(7, "feet"),
  16304. weight: math.unit(190, "lb"),
  16305. name: "Anthro",
  16306. image: {
  16307. source: "./media/characters/cobalt-dracha/anthro.svg",
  16308. extra: 231 / 225,
  16309. bottom: 0.04
  16310. }
  16311. },
  16312. feral: {
  16313. height: math.unit(9 + 7 / 12, "feet"),
  16314. weight: math.unit(294, "lb"),
  16315. name: "Feral",
  16316. image: {
  16317. source: "./media/characters/cobalt-dracha/feral.svg",
  16318. extra: 692 / 633,
  16319. bottom: 0.05
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(7, "feet"),
  16327. default: true
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16333. {
  16334. fallen: {
  16335. height: math.unit(11 + 8 / 12, "feet"),
  16336. weight: math.unit(485, "lb"),
  16337. name: "Java (Fallen)",
  16338. rename: true,
  16339. image: {
  16340. source: "./media/characters/java/fallen.svg",
  16341. extra: 226 / 208,
  16342. bottom: 0.005
  16343. }
  16344. },
  16345. godkin: {
  16346. height: math.unit(10 + 6 / 12, "feet"),
  16347. weight: math.unit(328, "lb"),
  16348. name: "Java (Godkin)",
  16349. rename: true,
  16350. image: {
  16351. source: "./media/characters/java/godkin.svg",
  16352. extra: 1104/1068,
  16353. bottom: 36/1140
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "Normal",
  16360. height: math.unit(11 + 8 / 12, "feet"),
  16361. default: true
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(5 + 9 / 12, "feet"),
  16370. weight: math.unit(170, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/purna/front.svg",
  16374. extra: 239 / 229,
  16375. bottom: 0.01
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(5 + 9 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(5 + 9 / 12, "feet"),
  16392. weight: math.unit(142, "lb"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/kuva/front.svg",
  16396. extra: 281 / 271,
  16397. bottom: 0.006
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(5 + 9 / 12, "feet"),
  16405. default: true
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16411. {
  16412. anthro: {
  16413. height: math.unit(9 + 2 / 12, "feet"),
  16414. weight: math.unit(270, "lb"),
  16415. name: "Anthro",
  16416. image: {
  16417. source: "./media/characters/embra/anthro.svg",
  16418. extra: 200 / 187,
  16419. bottom: 0.02
  16420. }
  16421. },
  16422. feral: {
  16423. height: math.unit(18 + 8 / 12, "feet"),
  16424. weight: math.unit(576, "lb"),
  16425. name: "Feral",
  16426. image: {
  16427. source: "./media/characters/embra/feral.svg",
  16428. extra: 152 / 137,
  16429. bottom: 0.037
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Normal",
  16436. height: math.unit(9 + 2 / 12, "feet"),
  16437. default: true
  16438. },
  16439. ]
  16440. ))
  16441. characterMakers.push(() => makeCharacter(
  16442. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16443. {
  16444. anthro: {
  16445. height: math.unit(10 + 9 / 12, "feet"),
  16446. weight: math.unit(224, "lb"),
  16447. name: "Anthro",
  16448. image: {
  16449. source: "./media/characters/grottos/anthro.svg",
  16450. extra: 350 / 332,
  16451. bottom: 0.045
  16452. }
  16453. },
  16454. feral: {
  16455. height: math.unit(20 + 7 / 12, "feet"),
  16456. weight: math.unit(629, "lb"),
  16457. name: "Feral",
  16458. image: {
  16459. source: "./media/characters/grottos/feral.svg",
  16460. extra: 207 / 190,
  16461. bottom: 0.05
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Normal",
  16468. height: math.unit(10 + 9 / 12, "feet"),
  16469. default: true
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16475. {
  16476. anthro: {
  16477. height: math.unit(9 + 6 / 12, "feet"),
  16478. weight: math.unit(298, "lb"),
  16479. name: "Anthro",
  16480. image: {
  16481. source: "./media/characters/frifna/anthro.svg",
  16482. extra: 282 / 269,
  16483. bottom: 0.015
  16484. }
  16485. },
  16486. feral: {
  16487. height: math.unit(16 + 2 / 12, "feet"),
  16488. weight: math.unit(624, "lb"),
  16489. name: "Feral",
  16490. image: {
  16491. source: "./media/characters/frifna/feral.svg"
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(9 + 6 / 12, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16505. {
  16506. front: {
  16507. height: math.unit(6 + 2 / 12, "feet"),
  16508. weight: math.unit(168, "lb"),
  16509. name: "Front",
  16510. image: {
  16511. source: "./media/characters/elise/front.svg",
  16512. extra: 276 / 271
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Normal",
  16519. height: math.unit(6 + 2 / 12, "feet"),
  16520. default: true
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16526. {
  16527. front: {
  16528. height: math.unit(5 + 10 / 12, "feet"),
  16529. weight: math.unit(210, "lb"),
  16530. name: "Front",
  16531. image: {
  16532. source: "./media/characters/glade/front.svg",
  16533. extra: 258 / 247,
  16534. bottom: 0.008
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(5 + 10 / 12, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(5 + 10 / 12, "feet"),
  16551. weight: math.unit(129, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/rina/front.svg",
  16555. extra: 266 / 255,
  16556. bottom: 0.005
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(5 + 10 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(6 + 1 / 12, "feet"),
  16573. weight: math.unit(192, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/veronica/front.svg",
  16577. extra: 319 / 309,
  16578. bottom: 0.005
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(6 + 1 / 12, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16592. {
  16593. front: {
  16594. height: math.unit(9 + 3 / 12, "feet"),
  16595. weight: math.unit(1100, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/braxton/front.svg",
  16599. extra: 1057 / 984,
  16600. bottom: 0.05
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(9 + 3 / 12, "feet")
  16608. },
  16609. {
  16610. name: "Giant",
  16611. height: math.unit(300, "feet"),
  16612. default: true
  16613. },
  16614. {
  16615. name: "Macro",
  16616. height: math.unit(700, "feet")
  16617. },
  16618. {
  16619. name: "Megamacro",
  16620. height: math.unit(6000, "feet")
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16626. {
  16627. front: {
  16628. height: math.unit(6 + 7 / 12, "feet"),
  16629. weight: math.unit(150, "lb"),
  16630. name: "Front",
  16631. image: {
  16632. source: "./media/characters/blue-feyonics/front.svg",
  16633. extra: 1403 / 1306,
  16634. bottom: 0.047
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Normal",
  16641. height: math.unit(6 + 7 / 12, "feet"),
  16642. default: true
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16648. {
  16649. front: {
  16650. height: math.unit(1.8, "meters"),
  16651. weight: math.unit(60, "kg"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/maxwell/front.svg",
  16655. extra: 2060 / 1873
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Micro",
  16662. height: math.unit(1, "mm")
  16663. },
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(1.8, "meter"),
  16667. default: true
  16668. },
  16669. {
  16670. name: "Macro",
  16671. height: math.unit(30, "meters")
  16672. },
  16673. {
  16674. name: "Megamacro",
  16675. height: math.unit(10, "km")
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(6, "feet"),
  16684. weight: math.unit(150, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/jack/front.svg",
  16688. extra: 1754 / 1640,
  16689. bottom: 0.01
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(80000, "feet"),
  16697. default: true
  16698. },
  16699. {
  16700. name: "Max size",
  16701. height: math.unit(10, "lightyears")
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16707. {
  16708. urban: {
  16709. height: math.unit(5, "feet"),
  16710. weight: math.unit(240, "lb"),
  16711. name: "Urban",
  16712. image: {
  16713. source: "./media/characters/cafat/urban.svg",
  16714. extra: 1223/1126,
  16715. bottom: 205/1428
  16716. }
  16717. },
  16718. summer: {
  16719. height: math.unit(5, "feet"),
  16720. weight: math.unit(240, "lb"),
  16721. name: "Summer",
  16722. image: {
  16723. source: "./media/characters/cafat/summer.svg",
  16724. extra: 1223/1126,
  16725. bottom: 205/1428
  16726. }
  16727. },
  16728. winter: {
  16729. height: math.unit(5, "feet"),
  16730. weight: math.unit(240, "lb"),
  16731. name: "Winter",
  16732. image: {
  16733. source: "./media/characters/cafat/winter.svg",
  16734. extra: 1223/1126,
  16735. bottom: 205/1428
  16736. }
  16737. },
  16738. lingerie: {
  16739. height: math.unit(5, "feet"),
  16740. weight: math.unit(240, "lb"),
  16741. name: "Lingerie",
  16742. image: {
  16743. source: "./media/characters/cafat/lingerie.svg",
  16744. extra: 1223/1126,
  16745. bottom: 205/1428
  16746. }
  16747. },
  16748. upright: {
  16749. height: math.unit(6.3, "feet"),
  16750. weight: math.unit(240, "lb"),
  16751. name: "Upright",
  16752. image: {
  16753. source: "./media/characters/cafat/upright.svg",
  16754. bottom: 0.01
  16755. }
  16756. },
  16757. uprightFull: {
  16758. height: math.unit(6.3, "feet"),
  16759. weight: math.unit(240, "lb"),
  16760. name: "Upright (Full)",
  16761. image: {
  16762. source: "./media/characters/cafat/upright-full.svg",
  16763. bottom: 0.01
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Small",
  16770. height: math.unit(5, "feet"),
  16771. default: true
  16772. },
  16773. {
  16774. name: "Large",
  16775. height: math.unit(13, "feet")
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(6, "feet"),
  16784. weight: math.unit(150, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/verin-raharra/front.svg",
  16788. extra: 5019 / 4835,
  16789. bottom: 0.023
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(7 + 5 / 12, "feet"),
  16797. default: true
  16798. },
  16799. {
  16800. name: "Upsized",
  16801. height: math.unit(20, "feet")
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16807. {
  16808. front: {
  16809. height: math.unit(7, "feet"),
  16810. weight: math.unit(230, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/nakata/front.svg",
  16814. extra: 1.005,
  16815. bottom: 0.01
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(7, "feet"),
  16823. default: true
  16824. },
  16825. {
  16826. name: "Big",
  16827. height: math.unit(14, "feet")
  16828. },
  16829. {
  16830. name: "Macro",
  16831. height: math.unit(400, "feet")
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16837. {
  16838. front: {
  16839. height: math.unit(4.91, "feet"),
  16840. weight: math.unit(100, "lb"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/lily/front.svg",
  16844. extra: 1585 / 1415,
  16845. bottom: 0.02
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(4.91, "feet"),
  16853. default: true
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16859. {
  16860. laying: {
  16861. height: math.unit(4 + 4 / 12, "feet"),
  16862. weight: math.unit(600, "lb"),
  16863. name: "Laying",
  16864. image: {
  16865. source: "./media/characters/sheila/laying.svg",
  16866. extra: 1333 / 1265,
  16867. bottom: 0.16
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(4 + 4 / 12, "feet"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16881. {
  16882. front: {
  16883. height: math.unit(6, "feet"),
  16884. weight: math.unit(190, "lb"),
  16885. name: "Front",
  16886. image: {
  16887. source: "./media/characters/sax/front.svg",
  16888. extra: 1187 / 973,
  16889. bottom: 0.042
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Micro",
  16896. height: math.unit(4, "inches"),
  16897. default: true
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16903. {
  16904. front: {
  16905. height: math.unit(6, "feet"),
  16906. weight: math.unit(150, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/pandora/front.svg",
  16910. extra: 2720 / 2556,
  16911. bottom: 0.015
  16912. }
  16913. },
  16914. back: {
  16915. height: math.unit(6, "feet"),
  16916. weight: math.unit(150, "lb"),
  16917. name: "Back",
  16918. image: {
  16919. source: "./media/characters/pandora/back.svg",
  16920. extra: 2720 / 2556,
  16921. bottom: 0.01
  16922. }
  16923. },
  16924. beans: {
  16925. height: math.unit(6 / 8, "feet"),
  16926. name: "Beans",
  16927. image: {
  16928. source: "./media/characters/pandora/beans.svg"
  16929. }
  16930. },
  16931. collar: {
  16932. height: math.unit(0.31, "feet"),
  16933. name: "Collar",
  16934. image: {
  16935. source: "./media/characters/pandora/collar.svg"
  16936. }
  16937. },
  16938. skirt: {
  16939. height: math.unit(6, "feet"),
  16940. weight: math.unit(150, "lb"),
  16941. name: "Skirt",
  16942. image: {
  16943. source: "./media/characters/pandora/skirt.svg",
  16944. extra: 1622 / 1525,
  16945. bottom: 0.015
  16946. }
  16947. },
  16948. hoodie: {
  16949. height: math.unit(6, "feet"),
  16950. weight: math.unit(150, "lb"),
  16951. name: "Hoodie",
  16952. image: {
  16953. source: "./media/characters/pandora/hoodie.svg",
  16954. extra: 1622 / 1525,
  16955. bottom: 0.015
  16956. }
  16957. },
  16958. casual: {
  16959. height: math.unit(6, "feet"),
  16960. weight: math.unit(150, "lb"),
  16961. name: "Casual",
  16962. image: {
  16963. source: "./media/characters/pandora/casual.svg",
  16964. extra: 1622 / 1525,
  16965. bottom: 0.015
  16966. }
  16967. },
  16968. },
  16969. [
  16970. {
  16971. name: "Normal",
  16972. height: math.unit(6, "feet")
  16973. },
  16974. {
  16975. name: "Big Steppy",
  16976. height: math.unit(1, "km"),
  16977. default: true
  16978. },
  16979. {
  16980. name: "Galactic Steppy",
  16981. height: math.unit(2, "gigameters")
  16982. },
  16983. ]
  16984. ))
  16985. characterMakers.push(() => makeCharacter(
  16986. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16987. {
  16988. side: {
  16989. height: math.unit(10, "feet"),
  16990. weight: math.unit(800, "kg"),
  16991. name: "Side",
  16992. image: {
  16993. source: "./media/characters/venio-darcony/side.svg",
  16994. extra: 1373 / 1003,
  16995. bottom: 0.037
  16996. }
  16997. },
  16998. front: {
  16999. height: math.unit(19, "feet"),
  17000. weight: math.unit(800, "kg"),
  17001. name: "Front",
  17002. image: {
  17003. source: "./media/characters/venio-darcony/front.svg"
  17004. }
  17005. },
  17006. back: {
  17007. height: math.unit(19, "feet"),
  17008. weight: math.unit(800, "kg"),
  17009. name: "Back",
  17010. image: {
  17011. source: "./media/characters/venio-darcony/back.svg"
  17012. }
  17013. },
  17014. sideNsfw: {
  17015. height: math.unit(10, "feet"),
  17016. weight: math.unit(800, "kg"),
  17017. name: "Side (NSFW)",
  17018. image: {
  17019. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17020. extra: 1373 / 1003,
  17021. bottom: 0.037
  17022. }
  17023. },
  17024. frontNsfw: {
  17025. height: math.unit(19, "feet"),
  17026. weight: math.unit(800, "kg"),
  17027. name: "Front (NSFW)",
  17028. image: {
  17029. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17030. }
  17031. },
  17032. backNsfw: {
  17033. height: math.unit(19, "feet"),
  17034. weight: math.unit(800, "kg"),
  17035. name: "Back (NSFW)",
  17036. image: {
  17037. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17038. }
  17039. },
  17040. sideArmored: {
  17041. height: math.unit(10, "feet"),
  17042. weight: math.unit(800, "kg"),
  17043. name: "Side (Armored)",
  17044. image: {
  17045. source: "./media/characters/venio-darcony/side-armored.svg",
  17046. extra: 1373 / 1003,
  17047. bottom: 0.037
  17048. }
  17049. },
  17050. frontArmored: {
  17051. height: math.unit(19, "feet"),
  17052. weight: math.unit(900, "kg"),
  17053. name: "Front (Armored)",
  17054. image: {
  17055. source: "./media/characters/venio-darcony/front-armored.svg"
  17056. }
  17057. },
  17058. backArmored: {
  17059. height: math.unit(19, "feet"),
  17060. weight: math.unit(900, "kg"),
  17061. name: "Back (Armored)",
  17062. image: {
  17063. source: "./media/characters/venio-darcony/back-armored.svg"
  17064. }
  17065. },
  17066. sword: {
  17067. height: math.unit(10, "feet"),
  17068. weight: math.unit(50, "lb"),
  17069. name: "Sword",
  17070. image: {
  17071. source: "./media/characters/venio-darcony/sword.svg"
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(10, "feet")
  17079. },
  17080. {
  17081. name: "Macro",
  17082. height: math.unit(130, "feet"),
  17083. default: true
  17084. },
  17085. {
  17086. name: "Macro+",
  17087. height: math.unit(240, "feet")
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17093. {
  17094. front: {
  17095. height: math.unit(6, "feet"),
  17096. weight: math.unit(150, "lb"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/veski/front.svg",
  17100. extra: 1299 / 1225,
  17101. bottom: 0.04
  17102. }
  17103. },
  17104. back: {
  17105. height: math.unit(6, "feet"),
  17106. weight: math.unit(150, "lb"),
  17107. name: "Back",
  17108. image: {
  17109. source: "./media/characters/veski/back.svg",
  17110. extra: 1299 / 1225,
  17111. bottom: 0.008
  17112. }
  17113. },
  17114. maw: {
  17115. height: math.unit(1.5 * 1.21, "feet"),
  17116. name: "Maw",
  17117. image: {
  17118. source: "./media/characters/veski/maw.svg"
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Macro",
  17125. height: math.unit(2, "km"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(5 + 7 / 12, "feet"),
  17135. name: "Front",
  17136. image: {
  17137. source: "./media/characters/isabelle/front.svg",
  17138. extra: 2130 / 1976,
  17139. bottom: 0.05
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Supermicro",
  17146. height: math.unit(10, "micrometers")
  17147. },
  17148. {
  17149. name: "Micro",
  17150. height: math.unit(1, "inch")
  17151. },
  17152. {
  17153. name: "Tiny",
  17154. height: math.unit(5, "inches")
  17155. },
  17156. {
  17157. name: "Standard",
  17158. height: math.unit(5 + 7 / 12, "inches")
  17159. },
  17160. {
  17161. name: "Macro",
  17162. height: math.unit(80, "meters"),
  17163. default: true
  17164. },
  17165. {
  17166. name: "Megamacro",
  17167. height: math.unit(250, "meters")
  17168. },
  17169. {
  17170. name: "Gigamacro",
  17171. height: math.unit(5, "km")
  17172. },
  17173. {
  17174. name: "Cosmic",
  17175. height: math.unit(2.5e6, "miles")
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(6, "feet"),
  17184. weight: math.unit(150, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/hanzo/front.svg",
  17188. extra: 374 / 344,
  17189. bottom: 0.02
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(8, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(7, "feet"),
  17206. weight: math.unit(130, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/anna/front.svg",
  17210. extra: 169 / 145,
  17211. bottom: 0.06
  17212. }
  17213. },
  17214. full: {
  17215. height: math.unit(4.96, "feet"),
  17216. weight: math.unit(220, "lb"),
  17217. name: "Full",
  17218. image: {
  17219. source: "./media/characters/anna/full.svg",
  17220. extra: 138 / 114,
  17221. bottom: 0.15
  17222. }
  17223. },
  17224. tongue: {
  17225. height: math.unit(2.53, "feet"),
  17226. name: "Tongue",
  17227. image: {
  17228. source: "./media/characters/anna/tongue.svg"
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(7, "feet"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17242. {
  17243. front: {
  17244. height: math.unit(7, "feet"),
  17245. weight: math.unit(150, "lb"),
  17246. name: "Front",
  17247. image: {
  17248. source: "./media/characters/ian-corvid/front.svg",
  17249. extra: 150 / 142,
  17250. bottom: 0.02
  17251. }
  17252. },
  17253. back: {
  17254. height: math.unit(7, "feet"),
  17255. weight: math.unit(150, "lb"),
  17256. name: "Back",
  17257. image: {
  17258. source: "./media/characters/ian-corvid/back.svg",
  17259. extra: 150 / 143,
  17260. bottom: 0.01
  17261. }
  17262. },
  17263. stomping: {
  17264. height: math.unit(7, "feet"),
  17265. weight: math.unit(150, "lb"),
  17266. name: "Stomping",
  17267. image: {
  17268. source: "./media/characters/ian-corvid/stomping.svg",
  17269. extra: 76 / 72
  17270. }
  17271. },
  17272. sitting: {
  17273. height: math.unit(7 / 1.8, "feet"),
  17274. weight: math.unit(150, "lb"),
  17275. name: "Sitting",
  17276. image: {
  17277. source: "./media/characters/ian-corvid/sitting.svg",
  17278. extra: 1400 / 1269,
  17279. bottom: 0.15
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Tiny Microw",
  17286. height: math.unit(1, "inch")
  17287. },
  17288. {
  17289. name: "Microw",
  17290. height: math.unit(6, "inches")
  17291. },
  17292. {
  17293. name: "Crow",
  17294. height: math.unit(7 + 1 / 12, "feet"),
  17295. default: true
  17296. },
  17297. {
  17298. name: "Macrow",
  17299. height: math.unit(176, "feet")
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17305. {
  17306. front: {
  17307. height: math.unit(5 + 7 / 12, "feet"),
  17308. weight: math.unit(147, "lb"),
  17309. name: "Front",
  17310. image: {
  17311. source: "./media/characters/natalie-kellon/front.svg",
  17312. extra: 1214 / 1141,
  17313. bottom: 0.02
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Micro",
  17320. height: math.unit(1 / 16, "inch")
  17321. },
  17322. {
  17323. name: "Tiny",
  17324. height: math.unit(4, "inches")
  17325. },
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(5 + 7 / 12, "feet"),
  17329. default: true
  17330. },
  17331. {
  17332. name: "Amazon",
  17333. height: math.unit(12, "feet")
  17334. },
  17335. {
  17336. name: "Giantess",
  17337. height: math.unit(160, "meters")
  17338. },
  17339. {
  17340. name: "Titaness",
  17341. height: math.unit(800, "meters")
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17347. {
  17348. front: {
  17349. height: math.unit(6, "feet"),
  17350. weight: math.unit(150, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/alluria/front.svg",
  17354. extra: 806 / 738,
  17355. bottom: 0.01
  17356. }
  17357. },
  17358. side: {
  17359. height: math.unit(6, "feet"),
  17360. weight: math.unit(150, "lb"),
  17361. name: "Side",
  17362. image: {
  17363. source: "./media/characters/alluria/side.svg",
  17364. extra: 800 / 750,
  17365. }
  17366. },
  17367. back: {
  17368. height: math.unit(6, "feet"),
  17369. weight: math.unit(150, "lb"),
  17370. name: "Back",
  17371. image: {
  17372. source: "./media/characters/alluria/back.svg",
  17373. extra: 806 / 738,
  17374. }
  17375. },
  17376. frontMaid: {
  17377. height: math.unit(6, "feet"),
  17378. weight: math.unit(150, "lb"),
  17379. name: "Front (Maid)",
  17380. image: {
  17381. source: "./media/characters/alluria/front-maid.svg",
  17382. extra: 806 / 738,
  17383. bottom: 0.01
  17384. }
  17385. },
  17386. sideMaid: {
  17387. height: math.unit(6, "feet"),
  17388. weight: math.unit(150, "lb"),
  17389. name: "Side (Maid)",
  17390. image: {
  17391. source: "./media/characters/alluria/side-maid.svg",
  17392. extra: 800 / 750,
  17393. bottom: 0.005
  17394. }
  17395. },
  17396. backMaid: {
  17397. height: math.unit(6, "feet"),
  17398. weight: math.unit(150, "lb"),
  17399. name: "Back (Maid)",
  17400. image: {
  17401. source: "./media/characters/alluria/back-maid.svg",
  17402. extra: 806 / 738,
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Micro",
  17409. height: math.unit(6, "inches"),
  17410. default: true
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(6, "feet"),
  17419. weight: math.unit(150, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/kyle/front.svg",
  17423. extra: 1069 / 962,
  17424. bottom: 77.228 / 1727.45
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Macro",
  17431. height: math.unit(150, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(6, "feet"),
  17441. weight: math.unit(300, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/duncan/front.svg",
  17445. extra: 1650 / 1482,
  17446. bottom: 0.05
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Macro",
  17453. height: math.unit(100, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(5 + 4 / 12, "feet"),
  17463. weight: math.unit(220, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/memory/front.svg",
  17467. extra: 3641 / 3545,
  17468. bottom: 0.03
  17469. }
  17470. },
  17471. back: {
  17472. height: math.unit(5 + 4 / 12, "feet"),
  17473. weight: math.unit(220, "lb"),
  17474. name: "Back",
  17475. image: {
  17476. source: "./media/characters/memory/back.svg",
  17477. extra: 3641 / 3545,
  17478. bottom: 0.025
  17479. }
  17480. },
  17481. frontSkirt: {
  17482. height: math.unit(5 + 4 / 12, "feet"),
  17483. weight: math.unit(220, "lb"),
  17484. name: "Front (Skirt)",
  17485. image: {
  17486. source: "./media/characters/memory/front-skirt.svg",
  17487. extra: 3641 / 3545,
  17488. bottom: 0.03
  17489. }
  17490. },
  17491. frontDress: {
  17492. height: math.unit(5 + 4 / 12, "feet"),
  17493. weight: math.unit(220, "lb"),
  17494. name: "Front (Dress)",
  17495. image: {
  17496. source: "./media/characters/memory/front-dress.svg",
  17497. extra: 3641 / 3545,
  17498. bottom: 0.03
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Micro",
  17505. height: math.unit(6, "inches"),
  17506. default: true
  17507. },
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(5 + 4 / 12, "feet")
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(4 + 11 / 12, "feet"),
  17519. weight: math.unit(100, "lb"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/luno/front.svg",
  17523. extra: 1535 / 1487,
  17524. bottom: 0.03
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Micro",
  17531. height: math.unit(3, "inches")
  17532. },
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(4 + 11 / 12, "feet"),
  17536. default: true
  17537. },
  17538. {
  17539. name: "Macro",
  17540. height: math.unit(300, "feet")
  17541. },
  17542. {
  17543. name: "Megamacro",
  17544. height: math.unit(700, "miles")
  17545. },
  17546. ]
  17547. ))
  17548. characterMakers.push(() => makeCharacter(
  17549. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17550. {
  17551. front: {
  17552. height: math.unit(6 + 2 / 12, "feet"),
  17553. weight: math.unit(170, "lb"),
  17554. name: "Front",
  17555. image: {
  17556. source: "./media/characters/jamesy/front.svg",
  17557. extra: 440 / 382,
  17558. bottom: 0.005
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Micro",
  17565. height: math.unit(3, "inches")
  17566. },
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(6 + 2 / 12, "feet"),
  17570. default: true
  17571. },
  17572. {
  17573. name: "Macro",
  17574. height: math.unit(300, "feet")
  17575. },
  17576. {
  17577. name: "Megamacro",
  17578. height: math.unit(700, "miles")
  17579. },
  17580. ]
  17581. ))
  17582. characterMakers.push(() => makeCharacter(
  17583. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17584. {
  17585. front: {
  17586. height: math.unit(6, "feet"),
  17587. weight: math.unit(160, "lb"),
  17588. name: "Front",
  17589. image: {
  17590. source: "./media/characters/mark/front.svg",
  17591. extra: 3300 / 3100,
  17592. bottom: 136.42 / 3440.47
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Macro",
  17599. height: math.unit(120, "meters")
  17600. },
  17601. {
  17602. name: "Bigger Macro",
  17603. height: math.unit(350, "meters")
  17604. },
  17605. {
  17606. name: "Megamacro",
  17607. height: math.unit(8, "km"),
  17608. default: true
  17609. },
  17610. {
  17611. name: "Continental",
  17612. height: math.unit(4550, "km")
  17613. },
  17614. {
  17615. name: "Planetary",
  17616. height: math.unit(65000, "km")
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17622. {
  17623. front: {
  17624. height: math.unit(6, "feet"),
  17625. weight: math.unit(400, "lb"),
  17626. name: "Front",
  17627. image: {
  17628. source: "./media/characters/mac/front.svg",
  17629. extra: 1048 / 987.7,
  17630. bottom: 60 / 1107.6,
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Macro",
  17637. height: math.unit(500, "feet"),
  17638. default: true
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17644. {
  17645. front: {
  17646. height: math.unit(5 + 2 / 12, "feet"),
  17647. weight: math.unit(190, "lb"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/bari/front.svg",
  17651. extra: 3156 / 2880,
  17652. bottom: 0.03
  17653. }
  17654. },
  17655. back: {
  17656. height: math.unit(5 + 2 / 12, "feet"),
  17657. weight: math.unit(190, "lb"),
  17658. name: "Back",
  17659. image: {
  17660. source: "./media/characters/bari/back.svg",
  17661. extra: 3260 / 2834,
  17662. bottom: 0.025
  17663. }
  17664. },
  17665. frontPlush: {
  17666. height: math.unit(5 + 2 / 12, "feet"),
  17667. weight: math.unit(190, "lb"),
  17668. name: "Front (Plush)",
  17669. image: {
  17670. source: "./media/characters/bari/front-plush.svg",
  17671. extra: 1112 / 1061,
  17672. bottom: 0.002
  17673. }
  17674. },
  17675. },
  17676. [
  17677. {
  17678. name: "Micro",
  17679. height: math.unit(3, "inches")
  17680. },
  17681. {
  17682. name: "Normal",
  17683. height: math.unit(5 + 2 / 12, "feet"),
  17684. default: true
  17685. },
  17686. {
  17687. name: "Macro",
  17688. height: math.unit(20, "feet")
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(6 + 1 / 12, "feet"),
  17697. weight: math.unit(275, "lb"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/hunter-misha-raven/front.svg"
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Mortal",
  17707. height: math.unit(6 + 1 / 12, "feet")
  17708. },
  17709. {
  17710. name: "Divine",
  17711. height: math.unit(1.12134e34, "parsecs"),
  17712. default: true
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(6 + 3 / 12, "feet"),
  17721. weight: math.unit(220, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/max-calore/front.svg",
  17725. extra: 1700 / 1648,
  17726. bottom: 0.01
  17727. }
  17728. },
  17729. back: {
  17730. height: math.unit(6 + 3 / 12, "feet"),
  17731. weight: math.unit(220, "lb"),
  17732. name: "Back",
  17733. image: {
  17734. source: "./media/characters/max-calore/back.svg",
  17735. extra: 1700 / 1648,
  17736. bottom: 0.01
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Normal",
  17743. height: math.unit(6 + 3 / 12, "feet"),
  17744. default: true
  17745. },
  17746. ]
  17747. ))
  17748. characterMakers.push(() => makeCharacter(
  17749. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17750. {
  17751. side: {
  17752. height: math.unit(2 + 8 / 12, "feet"),
  17753. weight: math.unit(99, "lb"),
  17754. name: "Side",
  17755. image: {
  17756. source: "./media/characters/aspen/side.svg",
  17757. extra: 152 / 138,
  17758. bottom: 0.032
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(2 + 8 / 12, "feet"),
  17766. default: true
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17772. {
  17773. side: {
  17774. height: math.unit(3 + 2 / 12, "feet"),
  17775. weight: math.unit(224, "lb"),
  17776. name: "Side",
  17777. image: {
  17778. source: "./media/characters/sheila-feral-wolf/side.svg",
  17779. extra: 179 / 166,
  17780. bottom: 0.03
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(3 + 2 / 12, "feet"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17794. {
  17795. side: {
  17796. height: math.unit(1 + 9 / 12, "feet"),
  17797. weight: math.unit(38, "lb"),
  17798. name: "Side",
  17799. image: {
  17800. source: "./media/characters/michelle/side.svg",
  17801. extra: 147 / 136.7,
  17802. bottom: 0.03
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(1 + 9 / 12, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17816. {
  17817. front: {
  17818. height: math.unit(1.54, "feet"),
  17819. weight: math.unit(50, "lb"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/nino/front.svg"
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(1.54, "feet"),
  17830. default: true
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17836. {
  17837. front: {
  17838. height: math.unit(1.49, "feet"),
  17839. weight: math.unit(45, "lb"),
  17840. name: "Front",
  17841. image: {
  17842. source: "./media/characters/viola/front.svg"
  17843. }
  17844. },
  17845. },
  17846. [
  17847. {
  17848. name: "Normal",
  17849. height: math.unit(1.49, "feet"),
  17850. default: true
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(6 + 5 / 12, "feet"),
  17859. weight: math.unit(580, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/atlas/front.svg",
  17863. extra: 298.5 / 290,
  17864. bottom: 0.015
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(6 + 5 / 12, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17878. {
  17879. side: {
  17880. height: math.unit(15.6, "inches"),
  17881. weight: math.unit(10, "lb"),
  17882. name: "Side",
  17883. image: {
  17884. source: "./media/characters/davy/side.svg",
  17885. extra: 200 / 170,
  17886. bottom: 0.01
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(15.6, "inches"),
  17894. default: true
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17900. {
  17901. side: {
  17902. height: math.unit(4 + 8 / 12, "feet"),
  17903. weight: math.unit(166, "lb"),
  17904. name: "Side",
  17905. image: {
  17906. source: "./media/characters/fiona/side.svg",
  17907. extra: 232 / 220,
  17908. bottom: 0.03
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(4 + 8 / 12, "feet"),
  17916. default: true
  17917. },
  17918. ]
  17919. ))
  17920. characterMakers.push(() => makeCharacter(
  17921. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17922. {
  17923. front: {
  17924. height: math.unit(26, "inches"),
  17925. weight: math.unit(35, "lb"),
  17926. name: "Front",
  17927. image: {
  17928. source: "./media/characters/lyla/front.svg",
  17929. bottom: 0.1
  17930. }
  17931. },
  17932. },
  17933. [
  17934. {
  17935. name: "Normal",
  17936. height: math.unit(3, "feet"),
  17937. default: true
  17938. },
  17939. ]
  17940. ))
  17941. characterMakers.push(() => makeCharacter(
  17942. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17943. {
  17944. side: {
  17945. height: math.unit(1.8, "feet"),
  17946. weight: math.unit(44, "lb"),
  17947. name: "Side",
  17948. image: {
  17949. source: "./media/characters/perseus/side.svg",
  17950. bottom: 0.21
  17951. }
  17952. },
  17953. },
  17954. [
  17955. {
  17956. name: "Normal",
  17957. height: math.unit(1.8, "feet"),
  17958. default: true
  17959. },
  17960. ]
  17961. ))
  17962. characterMakers.push(() => makeCharacter(
  17963. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17964. {
  17965. side: {
  17966. height: math.unit(4 + 2 / 12, "feet"),
  17967. weight: math.unit(20, "lb"),
  17968. name: "Side",
  17969. image: {
  17970. source: "./media/characters/remus/side.svg"
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Normal",
  17977. height: math.unit(4 + 2 / 12, "feet"),
  17978. default: true
  17979. },
  17980. ]
  17981. ))
  17982. characterMakers.push(() => makeCharacter(
  17983. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17984. {
  17985. front: {
  17986. height: math.unit(4 + 11 / 12, "feet"),
  17987. weight: math.unit(114, "lb"),
  17988. name: "Front",
  17989. image: {
  17990. source: "./media/characters/raf/front.svg",
  17991. extra: 1504/1339,
  17992. bottom: 26/1530
  17993. }
  17994. },
  17995. side: {
  17996. height: math.unit(4 + 11 / 12, "feet"),
  17997. weight: math.unit(114, "lb"),
  17998. name: "Side",
  17999. image: {
  18000. source: "./media/characters/raf/side.svg",
  18001. extra: 1466/1316,
  18002. bottom: 29/1495
  18003. }
  18004. },
  18005. paw: {
  18006. height: math.unit(1.45, "feet"),
  18007. name: "Paw",
  18008. image: {
  18009. source: "./media/characters/raf/paw.svg"
  18010. },
  18011. extraAttributes: {
  18012. "toeSize": {
  18013. name: "Toe Size",
  18014. power: 2,
  18015. type: "area",
  18016. base: math.unit(0.004, "m^2")
  18017. },
  18018. "padSize": {
  18019. name: "Pad Size",
  18020. power: 2,
  18021. type: "area",
  18022. base: math.unit(0.04, "m^2")
  18023. },
  18024. "footSize": {
  18025. name: "Foot Size",
  18026. power: 2,
  18027. type: "area",
  18028. base: math.unit(0.08, "m^2")
  18029. },
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Micro",
  18036. height: math.unit(2, "inches")
  18037. },
  18038. {
  18039. name: "Normal",
  18040. height: math.unit(4 + 11 / 12, "feet"),
  18041. default: true
  18042. },
  18043. {
  18044. name: "Macro",
  18045. height: math.unit(70, "feet")
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(1.5, "meters"),
  18054. weight: math.unit(68, "kg"),
  18055. name: "Front",
  18056. image: {
  18057. source: "./media/characters/liam-einarr/front.svg",
  18058. extra: 2822 / 2666
  18059. }
  18060. },
  18061. back: {
  18062. height: math.unit(1.5, "meters"),
  18063. weight: math.unit(68, "kg"),
  18064. name: "Back",
  18065. image: {
  18066. source: "./media/characters/liam-einarr/back.svg",
  18067. extra: 2822 / 2666,
  18068. bottom: 0.015
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Normal",
  18075. height: math.unit(1.5, "meters"),
  18076. default: true
  18077. },
  18078. {
  18079. name: "Macro",
  18080. height: math.unit(150, "meters")
  18081. },
  18082. {
  18083. name: "Megamacro",
  18084. height: math.unit(35, "km")
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18090. {
  18091. front: {
  18092. height: math.unit(6, "feet"),
  18093. weight: math.unit(75, "kg"),
  18094. name: "Front",
  18095. image: {
  18096. source: "./media/characters/linda/front.svg",
  18097. extra: 930 / 874,
  18098. bottom: 0.004
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(6, "feet"),
  18106. default: true
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(6 + 8 / 12, "feet"),
  18115. weight: math.unit(220, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/caylex/front.svg",
  18119. extra: 821 / 772,
  18120. bottom: 0.07
  18121. }
  18122. },
  18123. back: {
  18124. height: math.unit(6 + 8 / 12, "feet"),
  18125. weight: math.unit(220, "lb"),
  18126. name: "Back",
  18127. image: {
  18128. source: "./media/characters/caylex/back.svg",
  18129. extra: 821 / 772,
  18130. bottom: 0.022
  18131. }
  18132. },
  18133. hand: {
  18134. height: math.unit(1.25, "feet"),
  18135. name: "Hand",
  18136. image: {
  18137. source: "./media/characters/caylex/hand.svg"
  18138. }
  18139. },
  18140. foot: {
  18141. height: math.unit(1.6, "feet"),
  18142. name: "Foot",
  18143. image: {
  18144. source: "./media/characters/caylex/foot.svg"
  18145. }
  18146. },
  18147. armored: {
  18148. height: math.unit(6 + 8 / 12, "feet"),
  18149. weight: math.unit(250, "lb"),
  18150. name: "Armored",
  18151. image: {
  18152. source: "./media/characters/caylex/armored.svg",
  18153. extra: 1420 / 1310,
  18154. bottom: 0.045
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Normal",
  18161. height: math.unit(6 + 8 / 12, "feet"),
  18162. default: true
  18163. },
  18164. {
  18165. name: "Normal+",
  18166. height: math.unit(12, "feet")
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(7 + 6 / 12, "feet"),
  18175. weight: math.unit(288, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/alana/front.svg",
  18179. extra: 679 / 653,
  18180. bottom: 22.5 / 701
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(7 + 6 / 12, "feet")
  18188. },
  18189. {
  18190. name: "Large",
  18191. height: math.unit(50, "feet")
  18192. },
  18193. {
  18194. name: "Macro",
  18195. height: math.unit(100, "feet"),
  18196. default: true
  18197. },
  18198. {
  18199. name: "Macro+",
  18200. height: math.unit(200, "feet")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(6 + 1 / 12, "feet"),
  18209. weight: math.unit(210, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/hasani/front.svg",
  18213. extra: 244 / 232,
  18214. bottom: 0.01
  18215. }
  18216. },
  18217. back: {
  18218. height: math.unit(6 + 1 / 12, "feet"),
  18219. weight: math.unit(210, "lb"),
  18220. name: "Back",
  18221. image: {
  18222. source: "./media/characters/hasani/back.svg",
  18223. extra: 244 / 232,
  18224. bottom: 0.01
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Normal",
  18231. height: math.unit(6 + 1 / 12, "feet")
  18232. },
  18233. {
  18234. name: "Macro",
  18235. height: math.unit(175, "feet"),
  18236. default: true
  18237. },
  18238. ]
  18239. ))
  18240. characterMakers.push(() => makeCharacter(
  18241. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18242. {
  18243. front: {
  18244. height: math.unit(1.82, "meters"),
  18245. weight: math.unit(140, "lb"),
  18246. name: "Front",
  18247. image: {
  18248. source: "./media/characters/nita/front.svg",
  18249. extra: 2473 / 2363,
  18250. bottom: 0.01
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(1.82, "m")
  18258. },
  18259. {
  18260. name: "Macro",
  18261. height: math.unit(300, "m")
  18262. },
  18263. {
  18264. name: "Mistake Canon",
  18265. height: math.unit(0.5, "miles"),
  18266. default: true
  18267. },
  18268. {
  18269. name: "Big Mistake",
  18270. height: math.unit(13, "miles")
  18271. },
  18272. {
  18273. name: "Playing God",
  18274. height: math.unit(2450, "miles")
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18280. {
  18281. front: {
  18282. height: math.unit(4, "feet"),
  18283. weight: math.unit(120, "lb"),
  18284. name: "Front",
  18285. image: {
  18286. source: "./media/characters/shiriko/front.svg",
  18287. extra: 970/934,
  18288. bottom: 5/975
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(4, "feet"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(6, "feet"),
  18305. name: "front",
  18306. image: {
  18307. source: "./media/characters/deja/front.svg",
  18308. extra: 926 / 840,
  18309. bottom: 0.07
  18310. }
  18311. },
  18312. },
  18313. [
  18314. {
  18315. name: "Planck Length",
  18316. height: math.unit(1.6e-35, "meters")
  18317. },
  18318. {
  18319. name: "Normal",
  18320. height: math.unit(30.48, "meters"),
  18321. default: true
  18322. },
  18323. {
  18324. name: "Universal",
  18325. height: math.unit(8.8e26, "meters")
  18326. },
  18327. ]
  18328. ))
  18329. characterMakers.push(() => makeCharacter(
  18330. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18331. {
  18332. side: {
  18333. height: math.unit(8, "feet"),
  18334. weight: math.unit(6300, "lb"),
  18335. name: "Side",
  18336. image: {
  18337. source: "./media/characters/anima/side.svg",
  18338. bottom: 0.035
  18339. }
  18340. },
  18341. },
  18342. [
  18343. {
  18344. name: "Normal",
  18345. height: math.unit(8, "feet"),
  18346. default: true
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18352. {
  18353. front: {
  18354. height: math.unit(8, "feet"),
  18355. weight: math.unit(350, "lb"),
  18356. name: "Front",
  18357. image: {
  18358. source: "./media/characters/bianca/front.svg",
  18359. extra: 234 / 225,
  18360. bottom: 0.03
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(8, "feet"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(11 + 5/12, "feet"),
  18377. weight: math.unit(1200, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/adinia/front.svg",
  18381. extra: 1767/1641,
  18382. bottom: 44/1811
  18383. },
  18384. extraAttributes: {
  18385. "energyIntake": {
  18386. name: "Energy Intake",
  18387. power: 3,
  18388. type: "energy",
  18389. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18390. },
  18391. }
  18392. },
  18393. back: {
  18394. height: math.unit(11 + 5/12, "feet"),
  18395. weight: math.unit(1200, "lb"),
  18396. name: "Back",
  18397. image: {
  18398. source: "./media/characters/adinia/back.svg",
  18399. extra: 1834/1684,
  18400. bottom: 14/1848
  18401. },
  18402. extraAttributes: {
  18403. "energyIntake": {
  18404. name: "Energy Intake",
  18405. power: 3,
  18406. type: "energy",
  18407. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18408. },
  18409. }
  18410. },
  18411. maw: {
  18412. height: math.unit(3.79, "feet"),
  18413. name: "Maw",
  18414. image: {
  18415. source: "./media/characters/adinia/maw.svg"
  18416. }
  18417. },
  18418. rump: {
  18419. height: math.unit(4.6, "feet"),
  18420. name: "Rump",
  18421. image: {
  18422. source: "./media/characters/adinia/rump.svg"
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(11 + 5 / 12, "feet"),
  18430. default: true
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(3, "meters"),
  18439. weight: math.unit(200, "kg"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/lykasa/front.svg",
  18443. extra: 1076 / 976,
  18444. bottom: 0.06
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(3, "meters")
  18452. },
  18453. {
  18454. name: "Kaiju",
  18455. height: math.unit(120, "meters"),
  18456. default: true
  18457. },
  18458. {
  18459. name: "Mega Kaiju",
  18460. height: math.unit(240, "km")
  18461. },
  18462. {
  18463. name: "Giga Kaiju",
  18464. height: math.unit(400, "megameters")
  18465. },
  18466. {
  18467. name: "Tera Kaiju",
  18468. height: math.unit(800, "gigameters")
  18469. },
  18470. {
  18471. name: "Kaiju Dragon Goddess",
  18472. height: math.unit(26, "zettaparsecs")
  18473. },
  18474. ]
  18475. ))
  18476. characterMakers.push(() => makeCharacter(
  18477. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18478. {
  18479. side: {
  18480. height: math.unit(283 / 124 * 6, "feet"),
  18481. weight: math.unit(35000, "lb"),
  18482. name: "Side",
  18483. image: {
  18484. source: "./media/characters/malfaren/side.svg",
  18485. extra: 1310/529,
  18486. bottom: 24/1334
  18487. }
  18488. },
  18489. front: {
  18490. height: math.unit(22.36, "feet"),
  18491. weight: math.unit(35000, "lb"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/malfaren/front.svg",
  18495. extra: 1237/1115,
  18496. bottom: 32/1269
  18497. }
  18498. },
  18499. maw: {
  18500. height: math.unit(6.9, "feet"),
  18501. name: "Maw",
  18502. image: {
  18503. source: "./media/characters/malfaren/maw.svg"
  18504. }
  18505. },
  18506. dick: {
  18507. height: math.unit(6.19, "feet"),
  18508. name: "Dick",
  18509. image: {
  18510. source: "./media/characters/malfaren/dick.svg"
  18511. }
  18512. },
  18513. eye: {
  18514. height: math.unit(0.69, "feet"),
  18515. name: "Eye",
  18516. image: {
  18517. source: "./media/characters/malfaren/eye.svg"
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Big",
  18524. height: math.unit(283 / 162 * 6, "feet"),
  18525. },
  18526. {
  18527. name: "Bigger",
  18528. height: math.unit(283 / 124 * 6, "feet")
  18529. },
  18530. {
  18531. name: "Massive",
  18532. height: math.unit(283 / 92 * 6, "feet"),
  18533. default: true
  18534. },
  18535. {
  18536. name: "👀💦",
  18537. height: math.unit(283 / 73 * 6, "feet"),
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(1.7, "m"),
  18546. weight: math.unit(70, "kg"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/kernel/front.svg",
  18550. extra: 222 / 210,
  18551. bottom: 0.007
  18552. }
  18553. },
  18554. },
  18555. [
  18556. {
  18557. name: "Nano",
  18558. height: math.unit(17, "micrometers")
  18559. },
  18560. {
  18561. name: "Micro",
  18562. height: math.unit(1.7, "mm")
  18563. },
  18564. {
  18565. name: "Small",
  18566. height: math.unit(1.7, "cm")
  18567. },
  18568. {
  18569. name: "Normal",
  18570. height: math.unit(1.7, "m"),
  18571. default: true
  18572. },
  18573. ]
  18574. ))
  18575. characterMakers.push(() => makeCharacter(
  18576. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18577. {
  18578. front: {
  18579. height: math.unit(1.75, "meters"),
  18580. weight: math.unit(65, "kg"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/jayne-folest/front.svg",
  18584. extra: 2115 / 2007,
  18585. bottom: 0.02
  18586. }
  18587. },
  18588. back: {
  18589. height: math.unit(1.75, "meters"),
  18590. weight: math.unit(65, "kg"),
  18591. name: "Back",
  18592. image: {
  18593. source: "./media/characters/jayne-folest/back.svg",
  18594. extra: 2115 / 2007,
  18595. bottom: 0.005
  18596. }
  18597. },
  18598. frontClothed: {
  18599. height: math.unit(1.75, "meters"),
  18600. weight: math.unit(65, "kg"),
  18601. name: "Front (Clothed)",
  18602. image: {
  18603. source: "./media/characters/jayne-folest/front-clothed.svg",
  18604. extra: 2115 / 2007,
  18605. bottom: 0.035
  18606. }
  18607. },
  18608. hand: {
  18609. height: math.unit(1 / 1.260, "feet"),
  18610. name: "Hand",
  18611. image: {
  18612. source: "./media/characters/jayne-folest/hand.svg"
  18613. }
  18614. },
  18615. foot: {
  18616. height: math.unit(1 / 0.918, "feet"),
  18617. name: "Foot",
  18618. image: {
  18619. source: "./media/characters/jayne-folest/foot.svg"
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Micro",
  18626. height: math.unit(4, "cm")
  18627. },
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(1.75, "meters")
  18631. },
  18632. {
  18633. name: "Macro",
  18634. height: math.unit(47.5, "meters"),
  18635. default: true
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18641. {
  18642. front: {
  18643. height: math.unit(180, "cm"),
  18644. weight: math.unit(70, "kg"),
  18645. name: "Front",
  18646. image: {
  18647. source: "./media/characters/algier/front.svg",
  18648. extra: 596 / 572,
  18649. bottom: 0.04
  18650. }
  18651. },
  18652. back: {
  18653. height: math.unit(180, "cm"),
  18654. weight: math.unit(70, "kg"),
  18655. name: "Back",
  18656. image: {
  18657. source: "./media/characters/algier/back.svg",
  18658. extra: 596 / 572,
  18659. bottom: 0.025
  18660. }
  18661. },
  18662. frontdressed: {
  18663. height: math.unit(180, "cm"),
  18664. weight: math.unit(150, "kg"),
  18665. name: "Front-dressed",
  18666. image: {
  18667. source: "./media/characters/algier/front-dressed.svg",
  18668. extra: 596 / 572,
  18669. bottom: 0.038
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Micro",
  18676. height: math.unit(5, "cm")
  18677. },
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(180, "cm"),
  18681. default: true
  18682. },
  18683. {
  18684. name: "Macro",
  18685. height: math.unit(64, "m")
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18691. {
  18692. upright: {
  18693. height: math.unit(7, "feet"),
  18694. weight: math.unit(300, "lb"),
  18695. name: "Upright",
  18696. image: {
  18697. source: "./media/characters/pretzel/upright.svg",
  18698. extra: 534 / 522,
  18699. bottom: 0.065
  18700. }
  18701. },
  18702. sprawling: {
  18703. height: math.unit(3.75, "feet"),
  18704. weight: math.unit(300, "lb"),
  18705. name: "Sprawling",
  18706. image: {
  18707. source: "./media/characters/pretzel/sprawling.svg",
  18708. extra: 314 / 281,
  18709. bottom: 0.1
  18710. }
  18711. },
  18712. tongue: {
  18713. height: math.unit(2, "feet"),
  18714. name: "Tongue",
  18715. image: {
  18716. source: "./media/characters/pretzel/tongue.svg"
  18717. }
  18718. },
  18719. },
  18720. [
  18721. {
  18722. name: "Normal",
  18723. height: math.unit(7, "feet"),
  18724. default: true
  18725. },
  18726. {
  18727. name: "Oversized",
  18728. height: math.unit(15, "feet")
  18729. },
  18730. {
  18731. name: "Huge",
  18732. height: math.unit(30, "feet")
  18733. },
  18734. {
  18735. name: "Macro",
  18736. height: math.unit(250, "feet")
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18742. {
  18743. sideFront: {
  18744. height: math.unit(5 + 2 / 12, "feet"),
  18745. weight: math.unit(120, "lb"),
  18746. name: "Front Side",
  18747. image: {
  18748. source: "./media/characters/roxi/side-front.svg",
  18749. extra: 2924 / 2717,
  18750. bottom: 0.08
  18751. }
  18752. },
  18753. sideBack: {
  18754. height: math.unit(5 + 2 / 12, "feet"),
  18755. weight: math.unit(120, "lb"),
  18756. name: "Back Side",
  18757. image: {
  18758. source: "./media/characters/roxi/side-back.svg",
  18759. extra: 2904 / 2693,
  18760. bottom: 0.06
  18761. }
  18762. },
  18763. front: {
  18764. height: math.unit(5 + 2 / 12, "feet"),
  18765. weight: math.unit(120, "lb"),
  18766. name: "Front",
  18767. image: {
  18768. source: "./media/characters/roxi/front.svg",
  18769. extra: 2028 / 1907,
  18770. bottom: 0.01
  18771. }
  18772. },
  18773. frontAlt: {
  18774. height: math.unit(5 + 2 / 12, "feet"),
  18775. weight: math.unit(120, "lb"),
  18776. name: "Front (Alt)",
  18777. image: {
  18778. source: "./media/characters/roxi/front-alt.svg",
  18779. extra: 1828 / 1798,
  18780. bottom: 0.01
  18781. }
  18782. },
  18783. sitting: {
  18784. height: math.unit(2.8, "feet"),
  18785. weight: math.unit(120, "lb"),
  18786. name: "Sitting",
  18787. image: {
  18788. source: "./media/characters/roxi/sitting.svg",
  18789. extra: 2660 / 2462,
  18790. bottom: 0.1
  18791. }
  18792. },
  18793. },
  18794. [
  18795. {
  18796. name: "Normal",
  18797. height: math.unit(5 + 2 / 12, "feet"),
  18798. default: true
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18804. {
  18805. side: {
  18806. height: math.unit(55, "feet"),
  18807. weight: math.unit(153, "tons"),
  18808. name: "Side",
  18809. image: {
  18810. source: "./media/characters/shadow/side.svg",
  18811. extra: 701 / 628,
  18812. bottom: 0.02
  18813. }
  18814. },
  18815. flying: {
  18816. height: math.unit(145, "feet"),
  18817. weight: math.unit(153, "tons"),
  18818. name: "Flying",
  18819. image: {
  18820. source: "./media/characters/shadow/flying.svg"
  18821. }
  18822. },
  18823. },
  18824. [
  18825. {
  18826. name: "Normal",
  18827. height: math.unit(55, "feet"),
  18828. default: true
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18834. {
  18835. front: {
  18836. height: math.unit(6, "feet"),
  18837. weight: math.unit(200, "lb"),
  18838. name: "Front",
  18839. image: {
  18840. source: "./media/characters/marcie/front.svg",
  18841. extra: 960 / 876,
  18842. bottom: 58 / 1017.87
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Macro",
  18849. height: math.unit(1, "mile"),
  18850. default: true
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(7, "feet"),
  18859. weight: math.unit(200, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/kachina/front.svg",
  18863. extra: 1290.68 / 1119,
  18864. bottom: 36.5 / 1327.18
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(7, "feet"),
  18872. default: true
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18878. {
  18879. looking: {
  18880. height: math.unit(2, "meters"),
  18881. weight: math.unit(300, "kg"),
  18882. name: "Looking",
  18883. image: {
  18884. source: "./media/characters/kash/looking.svg",
  18885. extra: 474 / 344,
  18886. bottom: 0.03
  18887. }
  18888. },
  18889. side: {
  18890. height: math.unit(2, "meters"),
  18891. weight: math.unit(300, "kg"),
  18892. name: "Side",
  18893. image: {
  18894. source: "./media/characters/kash/side.svg",
  18895. extra: 302 / 251,
  18896. bottom: 0.03
  18897. }
  18898. },
  18899. front: {
  18900. height: math.unit(2, "meters"),
  18901. weight: math.unit(300, "kg"),
  18902. name: "Front",
  18903. image: {
  18904. source: "./media/characters/kash/front.svg",
  18905. extra: 495 / 360,
  18906. bottom: 0.015
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(2, "meters"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Big",
  18918. height: math.unit(3, "meters")
  18919. },
  18920. {
  18921. name: "Large",
  18922. height: math.unit(5, "meters")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18928. {
  18929. feeding: {
  18930. height: math.unit(6.7, "feet"),
  18931. weight: math.unit(350, "lb"),
  18932. name: "Feeding",
  18933. image: {
  18934. source: "./media/characters/lalim/feeding.svg",
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(6.7, "feet"),
  18942. default: true
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(9.5, "feet"),
  18951. weight: math.unit(600, "lb"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/de'vout/front.svg",
  18955. extra: 1443 / 1328,
  18956. bottom: 0.025
  18957. }
  18958. },
  18959. back: {
  18960. height: math.unit(9.5, "feet"),
  18961. weight: math.unit(600, "lb"),
  18962. name: "Back",
  18963. image: {
  18964. source: "./media/characters/de'vout/back.svg",
  18965. extra: 1443 / 1328
  18966. }
  18967. },
  18968. frontDressed: {
  18969. height: math.unit(9.5, "feet"),
  18970. weight: math.unit(600, "lb"),
  18971. name: "Front (Dressed",
  18972. image: {
  18973. source: "./media/characters/de'vout/front-dressed.svg",
  18974. extra: 1443 / 1328,
  18975. bottom: 0.025
  18976. }
  18977. },
  18978. backDressed: {
  18979. height: math.unit(9.5, "feet"),
  18980. weight: math.unit(600, "lb"),
  18981. name: "Back (Dressed",
  18982. image: {
  18983. source: "./media/characters/de'vout/back-dressed.svg",
  18984. extra: 1443 / 1328
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(9.5, "feet"),
  18992. default: true
  18993. },
  18994. ]
  18995. ))
  18996. characterMakers.push(() => makeCharacter(
  18997. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18998. {
  18999. front: {
  19000. height: math.unit(8, "feet"),
  19001. weight: math.unit(225, "lb"),
  19002. name: "Front",
  19003. image: {
  19004. source: "./media/characters/talana/front.svg",
  19005. extra: 1410 / 1300,
  19006. bottom: 0.015
  19007. }
  19008. },
  19009. frontDressed: {
  19010. height: math.unit(8, "feet"),
  19011. weight: math.unit(225, "lb"),
  19012. name: "Front (Dressed",
  19013. image: {
  19014. source: "./media/characters/talana/front-dressed.svg",
  19015. extra: 1410 / 1300,
  19016. bottom: 0.015
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(8, "feet"),
  19024. default: true
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19030. {
  19031. side: {
  19032. height: math.unit(7.2, "feet"),
  19033. weight: math.unit(150, "lb"),
  19034. name: "Side",
  19035. image: {
  19036. source: "./media/characters/xeauvok/side.svg",
  19037. extra: 1975 / 1523,
  19038. bottom: 0.07
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(7.2, "feet"),
  19046. default: true
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19052. {
  19053. side: {
  19054. height: math.unit(4, "meters"),
  19055. weight: math.unit(2200, "kg"),
  19056. name: "Side",
  19057. image: {
  19058. source: "./media/characters/zara/side.svg",
  19059. extra: 765/744,
  19060. bottom: 156/921
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(4, "meters"),
  19068. default: true
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19074. {
  19075. side: {
  19076. height: math.unit(6, "feet"),
  19077. weight: math.unit(150, "lb"),
  19078. name: "Side",
  19079. image: {
  19080. source: "./media/characters/richard-dragon/side.svg",
  19081. extra: 845 / 340,
  19082. bottom: 0.017
  19083. }
  19084. },
  19085. maw: {
  19086. height: math.unit(2.97, "feet"),
  19087. name: "Maw",
  19088. image: {
  19089. source: "./media/characters/richard-dragon/maw.svg"
  19090. }
  19091. },
  19092. },
  19093. [
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19098. {
  19099. front: {
  19100. height: math.unit(4, "feet"),
  19101. weight: math.unit(100, "lb"),
  19102. name: "Front",
  19103. image: {
  19104. source: "./media/characters/richard-smeargle/front.svg",
  19105. extra: 2952 / 2820,
  19106. bottom: 0.028
  19107. }
  19108. },
  19109. },
  19110. [
  19111. {
  19112. name: "Normal",
  19113. height: math.unit(4, "feet"),
  19114. default: true
  19115. },
  19116. {
  19117. name: "Dynamax",
  19118. height: math.unit(20, "meters")
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(6, "feet"),
  19127. weight: math.unit(110, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/klay/front.svg",
  19131. extra: 962 / 883,
  19132. bottom: 0.04
  19133. }
  19134. },
  19135. back: {
  19136. height: math.unit(6, "feet"),
  19137. weight: math.unit(110, "lb"),
  19138. name: "Back",
  19139. image: {
  19140. source: "./media/characters/klay/back.svg",
  19141. extra: 962 / 883
  19142. }
  19143. },
  19144. beans: {
  19145. height: math.unit(1.15, "feet"),
  19146. name: "Beans",
  19147. image: {
  19148. source: "./media/characters/klay/beans.svg"
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Micro",
  19155. height: math.unit(6, "inches")
  19156. },
  19157. {
  19158. name: "Mini",
  19159. height: math.unit(3, "feet")
  19160. },
  19161. {
  19162. name: "Normal",
  19163. height: math.unit(6, "feet"),
  19164. default: true
  19165. },
  19166. {
  19167. name: "Big",
  19168. height: math.unit(25, "feet")
  19169. },
  19170. {
  19171. name: "Macro",
  19172. height: math.unit(100, "feet")
  19173. },
  19174. {
  19175. name: "Megamacro",
  19176. height: math.unit(400, "feet")
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19182. {
  19183. front: {
  19184. height: math.unit(6, "feet"),
  19185. weight: math.unit(160, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/marcus/front.svg",
  19189. extra: 734 / 676,
  19190. bottom: 0.03
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Little",
  19197. height: math.unit(6, "feet")
  19198. },
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(110, "feet"),
  19202. default: true
  19203. },
  19204. {
  19205. name: "Macro",
  19206. height: math.unit(250, "feet")
  19207. },
  19208. {
  19209. name: "Megamacro",
  19210. height: math.unit(1000, "feet")
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(7, "feet"),
  19219. weight: math.unit(275, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/claude-delroute/front.svg",
  19223. extra: 902/827,
  19224. bottom: 26/928
  19225. }
  19226. },
  19227. side: {
  19228. height: math.unit(7, "feet"),
  19229. weight: math.unit(275, "lb"),
  19230. name: "Side",
  19231. image: {
  19232. source: "./media/characters/claude-delroute/side.svg",
  19233. extra: 908/853,
  19234. bottom: 16/924
  19235. }
  19236. },
  19237. back: {
  19238. height: math.unit(7, "feet"),
  19239. weight: math.unit(275, "lb"),
  19240. name: "Back",
  19241. image: {
  19242. source: "./media/characters/claude-delroute/back.svg",
  19243. extra: 911/829,
  19244. bottom: 18/929
  19245. }
  19246. },
  19247. maw: {
  19248. height: math.unit(0.6407, "meters"),
  19249. name: "Maw",
  19250. image: {
  19251. source: "./media/characters/claude-delroute/maw.svg"
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(7, "feet"),
  19259. default: true
  19260. },
  19261. {
  19262. name: "Lorge",
  19263. height: math.unit(20, "feet")
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19269. {
  19270. front: {
  19271. height: math.unit(8 + 4 / 12, "feet"),
  19272. weight: math.unit(600, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/dragonien/front.svg",
  19276. extra: 100 / 94,
  19277. bottom: 3.3 / 103.3445
  19278. }
  19279. },
  19280. back: {
  19281. height: math.unit(8 + 4 / 12, "feet"),
  19282. weight: math.unit(600, "lb"),
  19283. name: "Back",
  19284. image: {
  19285. source: "./media/characters/dragonien/back.svg",
  19286. extra: 776 / 746,
  19287. bottom: 6.4 / 782.0616
  19288. }
  19289. },
  19290. foot: {
  19291. height: math.unit(1.54, "feet"),
  19292. name: "Foot",
  19293. image: {
  19294. source: "./media/characters/dragonien/foot.svg",
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(8 + 4 / 12, "feet"),
  19302. default: true
  19303. },
  19304. {
  19305. name: "Macro",
  19306. height: math.unit(200, "feet")
  19307. },
  19308. {
  19309. name: "Megamacro",
  19310. height: math.unit(1, "mile")
  19311. },
  19312. {
  19313. name: "Gigamacro",
  19314. height: math.unit(1000, "miles")
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19320. {
  19321. front: {
  19322. height: math.unit(5 + 2 / 12, "feet"),
  19323. weight: math.unit(110, "lb"),
  19324. name: "Front",
  19325. image: {
  19326. source: "./media/characters/desta/front.svg",
  19327. extra: 767 / 726,
  19328. bottom: 11.7 / 779
  19329. }
  19330. },
  19331. back: {
  19332. height: math.unit(5 + 2 / 12, "feet"),
  19333. weight: math.unit(110, "lb"),
  19334. name: "Back",
  19335. image: {
  19336. source: "./media/characters/desta/back.svg",
  19337. extra: 777 / 728,
  19338. bottom: 6 / 784
  19339. }
  19340. },
  19341. frontAlt: {
  19342. height: math.unit(5 + 2 / 12, "feet"),
  19343. weight: math.unit(110, "lb"),
  19344. name: "Front",
  19345. image: {
  19346. source: "./media/characters/desta/front-alt.svg",
  19347. extra: 1482 / 1417
  19348. }
  19349. },
  19350. side: {
  19351. height: math.unit(5 + 2 / 12, "feet"),
  19352. weight: math.unit(110, "lb"),
  19353. name: "Side",
  19354. image: {
  19355. source: "./media/characters/desta/side.svg",
  19356. extra: 2579 / 2491,
  19357. bottom: 0.053
  19358. }
  19359. },
  19360. },
  19361. [
  19362. {
  19363. name: "Micro",
  19364. height: math.unit(6, "inches")
  19365. },
  19366. {
  19367. name: "Normal",
  19368. height: math.unit(5 + 2 / 12, "feet"),
  19369. default: true
  19370. },
  19371. {
  19372. name: "Macro",
  19373. height: math.unit(62, "feet")
  19374. },
  19375. {
  19376. name: "Megamacro",
  19377. height: math.unit(1800, "feet")
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19383. {
  19384. front: {
  19385. height: math.unit(10, "feet"),
  19386. weight: math.unit(700, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/storm-alystar/front.svg",
  19390. extra: 2112 / 1898,
  19391. bottom: 0.034
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Micro",
  19398. height: math.unit(3.5, "inches")
  19399. },
  19400. {
  19401. name: "Normal",
  19402. height: math.unit(10, "feet"),
  19403. default: true
  19404. },
  19405. {
  19406. name: "Macro",
  19407. height: math.unit(400, "feet")
  19408. },
  19409. {
  19410. name: "Deific",
  19411. height: math.unit(60, "miles")
  19412. },
  19413. ]
  19414. ))
  19415. characterMakers.push(() => makeCharacter(
  19416. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19417. {
  19418. front: {
  19419. height: math.unit(2.35, "meters"),
  19420. weight: math.unit(119, "kg"),
  19421. name: "Front",
  19422. image: {
  19423. source: "./media/characters/ilia/front.svg",
  19424. extra: 1285 / 1255,
  19425. bottom: 0.06
  19426. }
  19427. },
  19428. },
  19429. [
  19430. {
  19431. name: "Normal",
  19432. height: math.unit(2.35, "meters")
  19433. },
  19434. {
  19435. name: "Macro",
  19436. height: math.unit(140, "meters"),
  19437. default: true
  19438. },
  19439. {
  19440. name: "Megamacro",
  19441. height: math.unit(100, "miles")
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19447. {
  19448. front: {
  19449. height: math.unit(6 + 5 / 12, "feet"),
  19450. weight: math.unit(190, "lb"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/kingdead/front.svg",
  19454. extra: 1228 / 1177
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Micro",
  19461. height: math.unit(7, "inches")
  19462. },
  19463. {
  19464. name: "Normal",
  19465. height: math.unit(6 + 5 / 12, "feet")
  19466. },
  19467. {
  19468. name: "Macro",
  19469. height: math.unit(150, "feet"),
  19470. default: true
  19471. },
  19472. {
  19473. name: "Megamacro",
  19474. height: math.unit(200, "miles")
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19480. {
  19481. front: {
  19482. height: math.unit(8, "feet"),
  19483. weight: math.unit(600, "lb"),
  19484. name: "Front",
  19485. image: {
  19486. source: "./media/characters/kyrehx/front.svg",
  19487. extra: 1195 / 1095,
  19488. bottom: 0.034
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Micro",
  19495. height: math.unit(2, "inches")
  19496. },
  19497. {
  19498. name: "Normal",
  19499. height: math.unit(8, "feet"),
  19500. default: true
  19501. },
  19502. {
  19503. name: "Macro",
  19504. height: math.unit(255, "feet")
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19510. {
  19511. front: {
  19512. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19513. weight: math.unit(184, "lb"),
  19514. name: "Front",
  19515. image: {
  19516. source: "./media/characters/xang/front.svg",
  19517. extra: 845 / 755
  19518. }
  19519. },
  19520. },
  19521. [
  19522. {
  19523. name: "Normal",
  19524. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19525. default: true
  19526. },
  19527. {
  19528. name: "Macro",
  19529. height: math.unit(0.935 * 146, "feet")
  19530. },
  19531. {
  19532. name: "Megamacro",
  19533. height: math.unit(0.935 * 3, "miles")
  19534. },
  19535. ]
  19536. ))
  19537. characterMakers.push(() => makeCharacter(
  19538. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19539. {
  19540. frontDressed: {
  19541. height: math.unit(5 + 7 / 12, "feet"),
  19542. weight: math.unit(140, "lb"),
  19543. name: "Front (Dressed)",
  19544. image: {
  19545. source: "./media/characters/doc-weardno/front-dressed.svg",
  19546. extra: 263 / 234
  19547. }
  19548. },
  19549. backDressed: {
  19550. height: math.unit(5 + 7 / 12, "feet"),
  19551. weight: math.unit(140, "lb"),
  19552. name: "Back (Dressed)",
  19553. image: {
  19554. source: "./media/characters/doc-weardno/back-dressed.svg",
  19555. extra: 266 / 238
  19556. }
  19557. },
  19558. front: {
  19559. height: math.unit(5 + 7 / 12, "feet"),
  19560. weight: math.unit(140, "lb"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/doc-weardno/front.svg",
  19564. extra: 254 / 233
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Micro",
  19571. height: math.unit(3, "inches")
  19572. },
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(5 + 7 / 12, "feet"),
  19576. default: true
  19577. },
  19578. {
  19579. name: "Macro",
  19580. height: math.unit(25, "feet")
  19581. },
  19582. {
  19583. name: "Megamacro",
  19584. height: math.unit(2, "miles")
  19585. },
  19586. ]
  19587. ))
  19588. characterMakers.push(() => makeCharacter(
  19589. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19590. {
  19591. front: {
  19592. height: math.unit(6 + 2 / 12, "feet"),
  19593. weight: math.unit(153, "lb"),
  19594. name: "Front",
  19595. image: {
  19596. source: "./media/characters/seth-whilst/front.svg",
  19597. bottom: 0.07
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Micro",
  19604. height: math.unit(5, "inches")
  19605. },
  19606. {
  19607. name: "Normal",
  19608. height: math.unit(6 + 2 / 12, "feet"),
  19609. default: true
  19610. },
  19611. ]
  19612. ))
  19613. characterMakers.push(() => makeCharacter(
  19614. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19615. {
  19616. front: {
  19617. height: math.unit(3, "inches"),
  19618. weight: math.unit(8, "grams"),
  19619. name: "Front",
  19620. image: {
  19621. source: "./media/characters/pocket-jabari/front.svg",
  19622. extra: 1024 / 974,
  19623. bottom: 0.039
  19624. }
  19625. },
  19626. },
  19627. [
  19628. {
  19629. name: "Minimicro",
  19630. height: math.unit(8, "mm")
  19631. },
  19632. {
  19633. name: "Micro",
  19634. height: math.unit(3, "inches"),
  19635. default: true
  19636. },
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(3, "feet")
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19645. {
  19646. frontDressed: {
  19647. height: math.unit(15, "feet"),
  19648. weight: math.unit(3280, "lb"),
  19649. name: "Front (Dressed)",
  19650. image: {
  19651. source: "./media/characters/sapphy/front-dressed.svg",
  19652. extra: 1951/1654,
  19653. bottom: 194/2145
  19654. },
  19655. form: "anthro",
  19656. default: true
  19657. },
  19658. backDressed: {
  19659. height: math.unit(15, "feet"),
  19660. weight: math.unit(3280, "lb"),
  19661. name: "Back (Dressed)",
  19662. image: {
  19663. source: "./media/characters/sapphy/back-dressed.svg",
  19664. extra: 2058/1918,
  19665. bottom: 125/2183
  19666. },
  19667. form: "anthro"
  19668. },
  19669. frontNude: {
  19670. height: math.unit(15, "feet"),
  19671. weight: math.unit(3280, "lb"),
  19672. name: "Front (Nude)",
  19673. image: {
  19674. source: "./media/characters/sapphy/front-nude.svg",
  19675. extra: 1951/1654,
  19676. bottom: 194/2145
  19677. },
  19678. form: "anthro"
  19679. },
  19680. backNude: {
  19681. height: math.unit(15, "feet"),
  19682. weight: math.unit(3280, "lb"),
  19683. name: "Back (Nude)",
  19684. image: {
  19685. source: "./media/characters/sapphy/back-nude.svg",
  19686. extra: 2058/1918,
  19687. bottom: 125/2183
  19688. },
  19689. form: "anthro"
  19690. },
  19691. full: {
  19692. height: math.unit(15, "feet"),
  19693. weight: math.unit(3280, "lb"),
  19694. name: "Full",
  19695. image: {
  19696. source: "./media/characters/sapphy/full.svg",
  19697. extra: 1396/1317,
  19698. bottom: 44/1440
  19699. },
  19700. form: "anthro"
  19701. },
  19702. dick: {
  19703. height: math.unit(3.8, "feet"),
  19704. name: "Dick",
  19705. image: {
  19706. source: "./media/characters/sapphy/dick.svg"
  19707. },
  19708. form: "anthro"
  19709. },
  19710. feral: {
  19711. height: math.unit(35, "feet"),
  19712. weight: math.unit(160, "tons"),
  19713. name: "Feral",
  19714. image: {
  19715. source: "./media/characters/sapphy/feral.svg",
  19716. extra: 1050/573,
  19717. bottom: 60/1110
  19718. },
  19719. form: "feral",
  19720. default: true
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(15, "feet"),
  19727. form: "anthro"
  19728. },
  19729. {
  19730. name: "Casual Macro",
  19731. height: math.unit(120, "feet"),
  19732. form: "anthro"
  19733. },
  19734. {
  19735. name: "Macro",
  19736. height: math.unit(2150, "feet"),
  19737. default: true,
  19738. form: "anthro"
  19739. },
  19740. {
  19741. name: "Megamacro",
  19742. height: math.unit(8, "miles"),
  19743. form: "anthro"
  19744. },
  19745. {
  19746. name: "Galaxy Mom",
  19747. height: math.unit(6, "megalightyears"),
  19748. form: "anthro"
  19749. },
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(35, "feet"),
  19753. form: "feral",
  19754. default: true
  19755. },
  19756. {
  19757. name: "Macro",
  19758. height: math.unit(300, "feet"),
  19759. form: "feral"
  19760. },
  19761. {
  19762. name: "Galaxy Mom",
  19763. height: math.unit(10, "megalightyears"),
  19764. form: "feral"
  19765. },
  19766. ],
  19767. {
  19768. "anthro": {
  19769. name: "Anthro",
  19770. default: true
  19771. },
  19772. "feral": {
  19773. name: "Feral"
  19774. }
  19775. }
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(6, "feet"),
  19782. weight: math.unit(170, "lb"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/kiro/front.svg",
  19786. extra: 1064 / 1012,
  19787. bottom: 0.052
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Micro",
  19794. height: math.unit(6, "inches")
  19795. },
  19796. {
  19797. name: "Normal",
  19798. height: math.unit(6, "feet"),
  19799. default: true
  19800. },
  19801. {
  19802. name: "Macro",
  19803. height: math.unit(72, "feet")
  19804. },
  19805. ]
  19806. ))
  19807. characterMakers.push(() => makeCharacter(
  19808. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19809. {
  19810. front: {
  19811. height: math.unit(5 + 9 / 12, "feet"),
  19812. weight: math.unit(175, "lb"),
  19813. name: "Front",
  19814. image: {
  19815. source: "./media/characters/irishfox/front.svg",
  19816. extra: 1912 / 1680,
  19817. bottom: 0.02
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Nano",
  19824. height: math.unit(1, "mm")
  19825. },
  19826. {
  19827. name: "Micro",
  19828. height: math.unit(2, "inches")
  19829. },
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(5 + 9 / 12, "feet"),
  19833. default: true
  19834. },
  19835. {
  19836. name: "Macro",
  19837. height: math.unit(45, "feet")
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(6 + 1 / 12, "feet"),
  19846. weight: math.unit(75, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/aronai-sieyes/front.svg",
  19850. extra: 1532/1450,
  19851. bottom: 42/1574
  19852. }
  19853. },
  19854. side: {
  19855. height: math.unit(6 + 1 / 12, "feet"),
  19856. weight: math.unit(75, "lb"),
  19857. name: "Side",
  19858. image: {
  19859. source: "./media/characters/aronai-sieyes/side.svg",
  19860. extra: 1422/1365,
  19861. bottom: 148/1570
  19862. }
  19863. },
  19864. back: {
  19865. height: math.unit(6 + 1 / 12, "feet"),
  19866. weight: math.unit(75, "lb"),
  19867. name: "Back",
  19868. image: {
  19869. source: "./media/characters/aronai-sieyes/back.svg",
  19870. extra: 1526/1464,
  19871. bottom: 51/1577
  19872. }
  19873. },
  19874. dressed: {
  19875. height: math.unit(6 + 1 / 12, "feet"),
  19876. weight: math.unit(75, "lb"),
  19877. name: "Dressed",
  19878. image: {
  19879. source: "./media/characters/aronai-sieyes/dressed.svg",
  19880. extra: 1559/1483,
  19881. bottom: 39/1598
  19882. }
  19883. },
  19884. slit: {
  19885. height: math.unit(1.3, "feet"),
  19886. name: "Slit",
  19887. image: {
  19888. source: "./media/characters/aronai-sieyes/slit.svg"
  19889. }
  19890. },
  19891. slitSpread: {
  19892. height: math.unit(0.9, "feet"),
  19893. name: "Slit (Spread)",
  19894. image: {
  19895. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19896. }
  19897. },
  19898. rump: {
  19899. height: math.unit(1.3, "feet"),
  19900. name: "Rump",
  19901. image: {
  19902. source: "./media/characters/aronai-sieyes/rump.svg"
  19903. }
  19904. },
  19905. maw: {
  19906. height: math.unit(1.25, "feet"),
  19907. name: "Maw",
  19908. image: {
  19909. source: "./media/characters/aronai-sieyes/maw.svg"
  19910. }
  19911. },
  19912. feral: {
  19913. height: math.unit(18, "feet"),
  19914. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19915. name: "Feral",
  19916. image: {
  19917. source: "./media/characters/aronai-sieyes/feral.svg",
  19918. extra: 1530 / 1240,
  19919. bottom: 0.035
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Micro",
  19926. height: math.unit(2, "inches")
  19927. },
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(6 + 1 / 12, "feet"),
  19931. default: true
  19932. }
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(12, "feet"),
  19940. weight: math.unit(410, "kg"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/xuna/front.svg",
  19944. extra: 2184 / 1980
  19945. }
  19946. },
  19947. side: {
  19948. height: math.unit(12, "feet"),
  19949. weight: math.unit(410, "kg"),
  19950. name: "Side",
  19951. image: {
  19952. source: "./media/characters/xuna/side.svg",
  19953. extra: 2184 / 1980
  19954. }
  19955. },
  19956. back: {
  19957. height: math.unit(12, "feet"),
  19958. weight: math.unit(410, "kg"),
  19959. name: "Back",
  19960. image: {
  19961. source: "./media/characters/xuna/back.svg",
  19962. extra: 2184 / 1980
  19963. }
  19964. },
  19965. },
  19966. [
  19967. {
  19968. name: "Nano glow",
  19969. height: math.unit(10, "nm")
  19970. },
  19971. {
  19972. name: "Micro floof",
  19973. height: math.unit(0.3, "m")
  19974. },
  19975. {
  19976. name: "Huggable softy boi",
  19977. height: math.unit(3.6576, "m"),
  19978. default: true
  19979. },
  19980. {
  19981. name: "Admirable floof",
  19982. height: math.unit(80, "meters")
  19983. },
  19984. {
  19985. name: "Gentle macro",
  19986. height: math.unit(300, "meters")
  19987. },
  19988. {
  19989. name: "Very careful floof",
  19990. height: math.unit(3200, "meters")
  19991. },
  19992. {
  19993. name: "The mega floof",
  19994. height: math.unit(36000, "meters")
  19995. },
  19996. {
  19997. name: "Giga-fur-Wicker",
  19998. height: math.unit(4800000, "meters")
  19999. },
  20000. {
  20001. name: "Licky world",
  20002. height: math.unit(20000000, "meters")
  20003. },
  20004. {
  20005. name: "Floofy cyan sun",
  20006. height: math.unit(1500000000, "meters")
  20007. },
  20008. {
  20009. name: "Milky Wicker",
  20010. height: math.unit(1000000000000000000000, "meters")
  20011. },
  20012. {
  20013. name: "The observing Wicker",
  20014. height: math.unit(999999999999999999999999999, "meters")
  20015. },
  20016. ]
  20017. ))
  20018. characterMakers.push(() => makeCharacter(
  20019. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20020. {
  20021. front: {
  20022. height: math.unit(5 + 9 / 12, "feet"),
  20023. weight: math.unit(150, "lb"),
  20024. name: "Front",
  20025. image: {
  20026. source: "./media/characters/arokha-sieyes/front.svg",
  20027. extra: 1425 / 1284,
  20028. bottom: 0.05
  20029. }
  20030. },
  20031. },
  20032. [
  20033. {
  20034. name: "Normal",
  20035. height: math.unit(5 + 9 / 12, "feet")
  20036. },
  20037. {
  20038. name: "Macro",
  20039. height: math.unit(30, "meters"),
  20040. default: true
  20041. },
  20042. ]
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20046. {
  20047. front: {
  20048. height: math.unit(6, "feet"),
  20049. weight: math.unit(180, "lb"),
  20050. name: "Front",
  20051. image: {
  20052. source: "./media/characters/arokh-sieyes/front.svg",
  20053. extra: 1830 / 1769,
  20054. bottom: 0.01
  20055. }
  20056. },
  20057. },
  20058. [
  20059. {
  20060. name: "Normal",
  20061. height: math.unit(6, "feet")
  20062. },
  20063. {
  20064. name: "Macro",
  20065. height: math.unit(30, "meters"),
  20066. default: true
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20072. {
  20073. side: {
  20074. height: math.unit(13 + 1 / 12, "feet"),
  20075. weight: math.unit(8.5, "tonnes"),
  20076. name: "Side",
  20077. image: {
  20078. source: "./media/characters/goldeneye/side.svg",
  20079. extra: 1182 / 778,
  20080. bottom: 0.067
  20081. }
  20082. },
  20083. paw: {
  20084. height: math.unit(3.4, "feet"),
  20085. name: "Paw",
  20086. image: {
  20087. source: "./media/characters/goldeneye/paw.svg"
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(13 + 1 / 12, "feet"),
  20095. default: true
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20101. {
  20102. front: {
  20103. height: math.unit(6 + 1 / 12, "feet"),
  20104. weight: math.unit(210, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/leonardo-lycheborne/front.svg",
  20108. extra: 776/723,
  20109. bottom: 34/810
  20110. }
  20111. },
  20112. side: {
  20113. height: math.unit(6 + 1 / 12, "feet"),
  20114. weight: math.unit(210, "lb"),
  20115. name: "Side",
  20116. image: {
  20117. source: "./media/characters/leonardo-lycheborne/side.svg",
  20118. extra: 780/728,
  20119. bottom: 12/792
  20120. }
  20121. },
  20122. back: {
  20123. height: math.unit(6 + 1 / 12, "feet"),
  20124. weight: math.unit(210, "lb"),
  20125. name: "Back",
  20126. image: {
  20127. source: "./media/characters/leonardo-lycheborne/back.svg",
  20128. extra: 775/721,
  20129. bottom: 17/792
  20130. }
  20131. },
  20132. hand: {
  20133. height: math.unit(1.08, "feet"),
  20134. name: "Hand",
  20135. image: {
  20136. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20137. }
  20138. },
  20139. foot: {
  20140. height: math.unit(1.32, "feet"),
  20141. name: "Foot",
  20142. image: {
  20143. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20144. }
  20145. },
  20146. maw: {
  20147. height: math.unit(1, "feet"),
  20148. name: "Maw",
  20149. image: {
  20150. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20151. }
  20152. },
  20153. were: {
  20154. height: math.unit(20, "feet"),
  20155. weight: math.unit(7800, "lb"),
  20156. name: "Were",
  20157. image: {
  20158. source: "./media/characters/leonardo-lycheborne/were.svg",
  20159. extra: 1224/1165,
  20160. bottom: 72/1296
  20161. }
  20162. },
  20163. feral: {
  20164. height: math.unit(7.5, "feet"),
  20165. weight: math.unit(600, "lb"),
  20166. name: "Feral",
  20167. image: {
  20168. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20169. extra: 797/702,
  20170. bottom: 139/936
  20171. }
  20172. },
  20173. taur: {
  20174. height: math.unit(11, "feet"),
  20175. weight: math.unit(3300, "lb"),
  20176. name: "Taur",
  20177. image: {
  20178. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20179. extra: 1271/1197,
  20180. bottom: 47/1318
  20181. }
  20182. },
  20183. barghest: {
  20184. height: math.unit(11, "feet"),
  20185. weight: math.unit(1300, "lb"),
  20186. name: "Barghest",
  20187. image: {
  20188. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20189. extra: 1291/1204,
  20190. bottom: 37/1328
  20191. }
  20192. },
  20193. dick: {
  20194. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20195. name: "Dick",
  20196. image: {
  20197. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20198. }
  20199. },
  20200. dickWere: {
  20201. height: math.unit((20) / 3.8, "feet"),
  20202. name: "Dick (Were)",
  20203. image: {
  20204. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Normal",
  20211. height: math.unit(6 + 1 / 12, "feet"),
  20212. default: true
  20213. },
  20214. ]
  20215. ))
  20216. characterMakers.push(() => makeCharacter(
  20217. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20218. {
  20219. front: {
  20220. height: math.unit(10, "feet"),
  20221. weight: math.unit(350, "lb"),
  20222. name: "Front",
  20223. image: {
  20224. source: "./media/characters/jet/front.svg",
  20225. extra: 2050 / 1980,
  20226. bottom: 0.013
  20227. }
  20228. },
  20229. back: {
  20230. height: math.unit(10, "feet"),
  20231. weight: math.unit(350, "lb"),
  20232. name: "Back",
  20233. image: {
  20234. source: "./media/characters/jet/back.svg",
  20235. extra: 2050 / 1980,
  20236. bottom: 0.013
  20237. }
  20238. },
  20239. },
  20240. [
  20241. {
  20242. name: "Micro",
  20243. height: math.unit(6, "inches")
  20244. },
  20245. {
  20246. name: "Normal",
  20247. height: math.unit(10, "feet"),
  20248. default: true
  20249. },
  20250. {
  20251. name: "Macro",
  20252. height: math.unit(100, "feet")
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(15, "feet"),
  20261. weight: math.unit(2800, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/tanarath/front.svg",
  20265. extra: 2392 / 2220,
  20266. bottom: 0.03
  20267. }
  20268. },
  20269. back: {
  20270. height: math.unit(15, "feet"),
  20271. weight: math.unit(2800, "lb"),
  20272. name: "Back",
  20273. image: {
  20274. source: "./media/characters/tanarath/back.svg",
  20275. extra: 2392 / 2220,
  20276. bottom: 0.03
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(15, "feet"),
  20284. default: true
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20290. {
  20291. front: {
  20292. height: math.unit(7 + 1 / 12, "feet"),
  20293. weight: math.unit(175, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/patty-cattybatty/front.svg",
  20297. extra: 908 / 874,
  20298. bottom: 0.025
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Micro",
  20305. height: math.unit(1, "inch")
  20306. },
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(7 + 1 / 12, "feet")
  20310. },
  20311. {
  20312. name: "Mini Macro",
  20313. height: math.unit(155, "feet")
  20314. },
  20315. {
  20316. name: "Macro",
  20317. height: math.unit(1077, "feet")
  20318. },
  20319. {
  20320. name: "Mega Macro",
  20321. height: math.unit(47650, "feet"),
  20322. default: true
  20323. },
  20324. {
  20325. name: "Giga Macro",
  20326. height: math.unit(440, "miles")
  20327. },
  20328. {
  20329. name: "Tera Macro",
  20330. height: math.unit(8700, "miles")
  20331. },
  20332. {
  20333. name: "Planetary Macro",
  20334. height: math.unit(32700, "miles")
  20335. },
  20336. {
  20337. name: "Solar Macro",
  20338. height: math.unit(550000, "miles")
  20339. },
  20340. {
  20341. name: "Celestial Macro",
  20342. height: math.unit(2.5, "AU")
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20348. {
  20349. front: {
  20350. height: math.unit(4 + 5 / 12, "feet"),
  20351. weight: math.unit(90, "lb"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/cappu/front.svg",
  20355. extra: 1247 / 1152,
  20356. bottom: 0.012
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "Normal",
  20363. height: math.unit(4 + 5 / 12, "feet"),
  20364. default: true
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20370. {
  20371. frontDressed: {
  20372. height: math.unit(70, "cm"),
  20373. weight: math.unit(6, "kg"),
  20374. name: "Front (Dressed)",
  20375. image: {
  20376. source: "./media/characters/sebi/front-dressed.svg",
  20377. extra: 713.5 / 686.5,
  20378. bottom: 0.003
  20379. }
  20380. },
  20381. front: {
  20382. height: math.unit(70, "cm"),
  20383. weight: math.unit(5, "kg"),
  20384. name: "Front",
  20385. image: {
  20386. source: "./media/characters/sebi/front.svg",
  20387. extra: 713.5 / 686.5,
  20388. bottom: 0.003
  20389. }
  20390. }
  20391. },
  20392. [
  20393. {
  20394. name: "Normal",
  20395. height: math.unit(70, "cm"),
  20396. default: true
  20397. },
  20398. {
  20399. name: "Macro",
  20400. height: math.unit(8, "meters")
  20401. },
  20402. ]
  20403. ))
  20404. characterMakers.push(() => makeCharacter(
  20405. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20406. {
  20407. front: {
  20408. height: math.unit(6, "feet"),
  20409. weight: math.unit(150, "lb"),
  20410. name: "Front",
  20411. image: {
  20412. source: "./media/characters/typhek/front.svg",
  20413. extra: 1948 / 1929,
  20414. bottom: 0.025
  20415. }
  20416. },
  20417. side: {
  20418. height: math.unit(6, "feet"),
  20419. weight: math.unit(150, "lb"),
  20420. name: "Side",
  20421. image: {
  20422. source: "./media/characters/typhek/side.svg",
  20423. extra: 2034 / 2010,
  20424. bottom: 0.003
  20425. }
  20426. },
  20427. back: {
  20428. height: math.unit(6, "feet"),
  20429. weight: math.unit(150, "lb"),
  20430. name: "Back",
  20431. image: {
  20432. source: "./media/characters/typhek/back.svg",
  20433. extra: 2005 / 1978,
  20434. bottom: 0.004
  20435. }
  20436. },
  20437. palm: {
  20438. height: math.unit(1.2, "feet"),
  20439. name: "Palm",
  20440. image: {
  20441. source: "./media/characters/typhek/palm.svg"
  20442. }
  20443. },
  20444. fist: {
  20445. height: math.unit(1.1, "feet"),
  20446. name: "Fist",
  20447. image: {
  20448. source: "./media/characters/typhek/fist.svg"
  20449. }
  20450. },
  20451. foot: {
  20452. height: math.unit(1.57, "feet"),
  20453. name: "Foot",
  20454. image: {
  20455. source: "./media/characters/typhek/foot.svg"
  20456. }
  20457. },
  20458. sole: {
  20459. height: math.unit(2.05, "feet"),
  20460. name: "Sole",
  20461. image: {
  20462. source: "./media/characters/typhek/sole.svg"
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Macro",
  20469. height: math.unit(40, "stories"),
  20470. default: true
  20471. },
  20472. {
  20473. name: "Megamacro",
  20474. height: math.unit(1, "mile")
  20475. },
  20476. {
  20477. name: "Gigamacro",
  20478. height: math.unit(4000, "solarradii")
  20479. },
  20480. {
  20481. name: "Universal",
  20482. height: math.unit(1.1, "universes")
  20483. }
  20484. ]
  20485. ))
  20486. characterMakers.push(() => makeCharacter(
  20487. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20488. {
  20489. side: {
  20490. height: math.unit(5 + 7 / 12, "feet"),
  20491. weight: math.unit(150, "lb"),
  20492. name: "Side",
  20493. image: {
  20494. source: "./media/characters/kassy/side.svg",
  20495. extra: 1280 / 1225,
  20496. bottom: 0.002
  20497. }
  20498. },
  20499. front: {
  20500. height: math.unit(5 + 7 / 12, "feet"),
  20501. weight: math.unit(150, "lb"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/kassy/front.svg",
  20505. extra: 1280 / 1225,
  20506. bottom: 0.025
  20507. }
  20508. },
  20509. back: {
  20510. height: math.unit(5 + 7 / 12, "feet"),
  20511. weight: math.unit(150, "lb"),
  20512. name: "Back",
  20513. image: {
  20514. source: "./media/characters/kassy/back.svg",
  20515. extra: 1280 / 1225,
  20516. bottom: 0.002
  20517. }
  20518. },
  20519. foot: {
  20520. height: math.unit(1.266, "feet"),
  20521. name: "Foot",
  20522. image: {
  20523. source: "./media/characters/kassy/foot.svg"
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Normal",
  20530. height: math.unit(5 + 7 / 12, "feet")
  20531. },
  20532. {
  20533. name: "Macro",
  20534. height: math.unit(137, "feet"),
  20535. default: true
  20536. },
  20537. {
  20538. name: "Megamacro",
  20539. height: math.unit(1, "mile")
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20545. {
  20546. front: {
  20547. height: math.unit(6 + 1 / 12, "feet"),
  20548. weight: math.unit(200, "lb"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/neil/front.svg",
  20552. extra: 1326 / 1250,
  20553. bottom: 0.023
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(6 + 1 / 12, "feet"),
  20561. default: true
  20562. },
  20563. {
  20564. name: "Macro",
  20565. height: math.unit(200, "feet")
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20571. {
  20572. front: {
  20573. height: math.unit(5 + 9 / 12, "feet"),
  20574. weight: math.unit(190, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/atticus/front.svg",
  20578. extra: 2934 / 2785,
  20579. bottom: 0.025
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(5 + 9 / 12, "feet"),
  20587. default: true
  20588. },
  20589. {
  20590. name: "Macro",
  20591. height: math.unit(180, "feet")
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20597. {
  20598. side: {
  20599. height: math.unit(9, "feet"),
  20600. weight: math.unit(650, "lb"),
  20601. name: "Side",
  20602. image: {
  20603. source: "./media/characters/milo/side.svg",
  20604. extra: 2644 / 2310,
  20605. bottom: 0.032
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(9, "feet"),
  20613. default: true
  20614. },
  20615. {
  20616. name: "Macro",
  20617. height: math.unit(300, "feet")
  20618. },
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20623. {
  20624. side: {
  20625. height: math.unit(8, "meters"),
  20626. weight: math.unit(90000, "kg"),
  20627. name: "Side",
  20628. image: {
  20629. source: "./media/characters/ijzer/side.svg",
  20630. extra: 2756 / 1600,
  20631. bottom: 0.01
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Small",
  20638. height: math.unit(3, "meters")
  20639. },
  20640. {
  20641. name: "Normal",
  20642. height: math.unit(8, "meters"),
  20643. default: true
  20644. },
  20645. {
  20646. name: "Normal+",
  20647. height: math.unit(10, "meters")
  20648. },
  20649. {
  20650. name: "Bigger",
  20651. height: math.unit(24, "meters")
  20652. },
  20653. {
  20654. name: "Huge",
  20655. height: math.unit(80, "meters")
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20661. {
  20662. front: {
  20663. height: math.unit(6 + 2 / 12, "feet"),
  20664. weight: math.unit(153, "lb"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/luca-cervicum/front.svg",
  20668. extra: 370 / 327,
  20669. bottom: 0.015
  20670. }
  20671. },
  20672. back: {
  20673. height: math.unit(6 + 2 / 12, "feet"),
  20674. weight: math.unit(153, "lb"),
  20675. name: "Back",
  20676. image: {
  20677. source: "./media/characters/luca-cervicum/back.svg",
  20678. extra: 367 / 333,
  20679. bottom: 0.005
  20680. }
  20681. },
  20682. frontGear: {
  20683. height: math.unit(6 + 2 / 12, "feet"),
  20684. weight: math.unit(173, "lb"),
  20685. name: "Front (Gear)",
  20686. image: {
  20687. source: "./media/characters/luca-cervicum/front-gear.svg",
  20688. extra: 377 / 333,
  20689. bottom: 0.006
  20690. }
  20691. },
  20692. },
  20693. [
  20694. {
  20695. name: "Normal",
  20696. height: math.unit(6 + 2 / 12, "feet"),
  20697. default: true
  20698. },
  20699. ]
  20700. ))
  20701. characterMakers.push(() => makeCharacter(
  20702. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20703. {
  20704. front: {
  20705. height: math.unit(6 + 1 / 12, "feet"),
  20706. weight: math.unit(304, "lb"),
  20707. name: "Front",
  20708. image: {
  20709. source: "./media/characters/oliver/front.svg",
  20710. extra: 157 / 143,
  20711. bottom: 0.08
  20712. }
  20713. },
  20714. },
  20715. [
  20716. {
  20717. name: "Normal",
  20718. height: math.unit(6 + 1 / 12, "feet"),
  20719. default: true
  20720. },
  20721. ]
  20722. ))
  20723. characterMakers.push(() => makeCharacter(
  20724. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20725. {
  20726. front: {
  20727. height: math.unit(5 + 7 / 12, "feet"),
  20728. weight: math.unit(140, "lb"),
  20729. name: "Front",
  20730. image: {
  20731. source: "./media/characters/shane/front.svg",
  20732. extra: 304 / 289,
  20733. bottom: 0.005
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(5 + 7 / 12, "feet"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20747. {
  20748. front: {
  20749. height: math.unit(5 + 9 / 12, "feet"),
  20750. weight: math.unit(178, "lb"),
  20751. name: "Front",
  20752. image: {
  20753. source: "./media/characters/shin/front.svg",
  20754. extra: 159 / 151,
  20755. bottom: 0.015
  20756. }
  20757. },
  20758. },
  20759. [
  20760. {
  20761. name: "Normal",
  20762. height: math.unit(5 + 9 / 12, "feet"),
  20763. default: true
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20769. {
  20770. front: {
  20771. height: math.unit(5 + 10 / 12, "feet"),
  20772. weight: math.unit(168, "lb"),
  20773. name: "Front",
  20774. image: {
  20775. source: "./media/characters/xerxes/front.svg",
  20776. extra: 282 / 260,
  20777. bottom: 0.045
  20778. }
  20779. },
  20780. },
  20781. [
  20782. {
  20783. name: "Normal",
  20784. height: math.unit(5 + 10 / 12, "feet"),
  20785. default: true
  20786. },
  20787. ]
  20788. ))
  20789. characterMakers.push(() => makeCharacter(
  20790. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20791. {
  20792. front: {
  20793. height: math.unit(6 + 7 / 12, "feet"),
  20794. weight: math.unit(208, "lb"),
  20795. name: "Front",
  20796. image: {
  20797. source: "./media/characters/chaska/front.svg",
  20798. extra: 332 / 319,
  20799. bottom: 0.015
  20800. }
  20801. },
  20802. },
  20803. [
  20804. {
  20805. name: "Normal",
  20806. height: math.unit(6 + 7 / 12, "feet"),
  20807. default: true
  20808. },
  20809. ]
  20810. ))
  20811. characterMakers.push(() => makeCharacter(
  20812. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20813. {
  20814. front: {
  20815. height: math.unit(5 + 8 / 12, "feet"),
  20816. weight: math.unit(208, "lb"),
  20817. name: "Front",
  20818. image: {
  20819. source: "./media/characters/enuk/front.svg",
  20820. extra: 437 / 406,
  20821. bottom: 0.02
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(5 + 8 / 12, "feet"),
  20829. default: true
  20830. },
  20831. ]
  20832. ))
  20833. characterMakers.push(() => makeCharacter(
  20834. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20835. {
  20836. front: {
  20837. height: math.unit(5 + 10 / 12, "feet"),
  20838. weight: math.unit(252, "lb"),
  20839. name: "Front",
  20840. image: {
  20841. source: "./media/characters/bruun/front.svg",
  20842. extra: 197 / 187,
  20843. bottom: 0.012
  20844. }
  20845. },
  20846. },
  20847. [
  20848. {
  20849. name: "Normal",
  20850. height: math.unit(5 + 10 / 12, "feet"),
  20851. default: true
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20857. {
  20858. front: {
  20859. height: math.unit(6 + 10 / 12, "feet"),
  20860. weight: math.unit(255, "lb"),
  20861. name: "Front",
  20862. image: {
  20863. source: "./media/characters/alexeev/front.svg",
  20864. extra: 213 / 200,
  20865. bottom: 0.05
  20866. }
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(6 + 10 / 12, "feet"),
  20873. default: true
  20874. },
  20875. ]
  20876. ))
  20877. characterMakers.push(() => makeCharacter(
  20878. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20879. {
  20880. front: {
  20881. height: math.unit(2 + 8 / 12, "feet"),
  20882. weight: math.unit(22, "lb"),
  20883. name: "Front",
  20884. image: {
  20885. source: "./media/characters/evelyn/front.svg",
  20886. extra: 208 / 180
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Normal",
  20893. height: math.unit(2 + 8 / 12, "feet"),
  20894. default: true
  20895. },
  20896. ]
  20897. ))
  20898. characterMakers.push(() => makeCharacter(
  20899. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20900. {
  20901. front: {
  20902. height: math.unit(5 + 9 / 12, "feet"),
  20903. weight: math.unit(139, "lb"),
  20904. name: "Front",
  20905. image: {
  20906. source: "./media/characters/inca/front.svg",
  20907. extra: 294 / 291,
  20908. bottom: 0.03
  20909. }
  20910. },
  20911. },
  20912. [
  20913. {
  20914. name: "Normal",
  20915. height: math.unit(5 + 9 / 12, "feet"),
  20916. default: true
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(6 + 3 / 12, "feet"),
  20925. weight: math.unit(185, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/mera/front.svg",
  20929. extra: 291 / 277,
  20930. bottom: 0.03
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(6 + 3 / 12, "feet"),
  20938. default: true
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20944. {
  20945. front: {
  20946. height: math.unit(6 + 7 / 12, "feet"),
  20947. weight: math.unit(160, "lb"),
  20948. name: "Front",
  20949. image: {
  20950. source: "./media/characters/ceres/front.svg",
  20951. extra: 1023 / 950,
  20952. bottom: 0.027
  20953. }
  20954. },
  20955. back: {
  20956. height: math.unit(6 + 7 / 12, "feet"),
  20957. weight: math.unit(160, "lb"),
  20958. name: "Back",
  20959. image: {
  20960. source: "./media/characters/ceres/back.svg",
  20961. extra: 1023 / 950
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Normal",
  20968. height: math.unit(6 + 7 / 12, "feet"),
  20969. default: true
  20970. },
  20971. ]
  20972. ))
  20973. characterMakers.push(() => makeCharacter(
  20974. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20975. {
  20976. front: {
  20977. height: math.unit(5 + 10 / 12, "feet"),
  20978. weight: math.unit(150, "lb"),
  20979. name: "Front",
  20980. image: {
  20981. source: "./media/characters/kris/front.svg",
  20982. extra: 885 / 803,
  20983. bottom: 0.03
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Normal",
  20990. height: math.unit(5 + 10 / 12, "feet"),
  20991. default: true
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20997. {
  20998. front: {
  20999. height: math.unit(7, "feet"),
  21000. weight: math.unit(120, "kg"),
  21001. name: "Front",
  21002. image: {
  21003. source: "./media/characters/taluthus/front.svg",
  21004. extra: 903 / 833,
  21005. bottom: 0.015
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(7, "feet"),
  21013. default: true
  21014. },
  21015. {
  21016. name: "Macro",
  21017. height: math.unit(300, "feet")
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21023. {
  21024. front: {
  21025. height: math.unit(5 + 9 / 12, "feet"),
  21026. weight: math.unit(145, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/dawn/front.svg",
  21030. extra: 2094 / 2016,
  21031. bottom: 0.025
  21032. }
  21033. },
  21034. back: {
  21035. height: math.unit(5 + 9 / 12, "feet"),
  21036. weight: math.unit(160, "lb"),
  21037. name: "Back",
  21038. image: {
  21039. source: "./media/characters/dawn/back.svg",
  21040. extra: 2112 / 2080,
  21041. bottom: 0.005
  21042. }
  21043. },
  21044. },
  21045. [
  21046. {
  21047. name: "Normal",
  21048. height: math.unit(6 + 7 / 12, "feet"),
  21049. default: true
  21050. },
  21051. ]
  21052. ))
  21053. characterMakers.push(() => makeCharacter(
  21054. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21055. {
  21056. anthro: {
  21057. height: math.unit(8 + 3 / 12, "feet"),
  21058. weight: math.unit(450, "lb"),
  21059. name: "Anthro",
  21060. image: {
  21061. source: "./media/characters/arador/anthro.svg",
  21062. extra: 1835 / 1718,
  21063. bottom: 0.025
  21064. }
  21065. },
  21066. feral: {
  21067. height: math.unit(4, "feet"),
  21068. weight: math.unit(200, "lb"),
  21069. name: "Feral",
  21070. image: {
  21071. source: "./media/characters/arador/feral.svg",
  21072. extra: 1683 / 1514,
  21073. bottom: 0.07
  21074. }
  21075. },
  21076. },
  21077. [
  21078. {
  21079. name: "Normal",
  21080. height: math.unit(8 + 3 / 12, "feet")
  21081. },
  21082. {
  21083. name: "Macro",
  21084. height: math.unit(82.5, "feet"),
  21085. default: true
  21086. },
  21087. ]
  21088. ))
  21089. characterMakers.push(() => makeCharacter(
  21090. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21091. {
  21092. front: {
  21093. height: math.unit(5 + 10 / 12, "feet"),
  21094. weight: math.unit(125, "lb"),
  21095. name: "Front",
  21096. image: {
  21097. source: "./media/characters/dharsi/front.svg",
  21098. extra: 716 / 630,
  21099. bottom: 0.035
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Nano",
  21106. height: math.unit(100, "nm")
  21107. },
  21108. {
  21109. name: "Micro",
  21110. height: math.unit(2, "inches")
  21111. },
  21112. {
  21113. name: "Normal",
  21114. height: math.unit(5 + 10 / 12, "feet"),
  21115. default: true
  21116. },
  21117. {
  21118. name: "Macro",
  21119. height: math.unit(1000, "feet")
  21120. },
  21121. {
  21122. name: "Megamacro",
  21123. height: math.unit(10, "miles")
  21124. },
  21125. {
  21126. name: "Gigamacro",
  21127. height: math.unit(3000, "miles")
  21128. },
  21129. {
  21130. name: "Teramacro",
  21131. height: math.unit(500000, "miles")
  21132. },
  21133. {
  21134. name: "Teramacro+",
  21135. height: math.unit(30, "galaxies")
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21141. {
  21142. front: {
  21143. height: math.unit(6, "feet"),
  21144. weight: math.unit(150, "lb"),
  21145. name: "Front",
  21146. image: {
  21147. source: "./media/characters/deathy/front.svg",
  21148. extra: 1552 / 1463,
  21149. bottom: 0.025
  21150. }
  21151. },
  21152. side: {
  21153. height: math.unit(6, "feet"),
  21154. weight: math.unit(150, "lb"),
  21155. name: "Side",
  21156. image: {
  21157. source: "./media/characters/deathy/side.svg",
  21158. extra: 1604 / 1455,
  21159. bottom: 0.025
  21160. }
  21161. },
  21162. back: {
  21163. height: math.unit(6, "feet"),
  21164. weight: math.unit(150, "lb"),
  21165. name: "Back",
  21166. image: {
  21167. source: "./media/characters/deathy/back.svg",
  21168. extra: 1580 / 1463,
  21169. bottom: 0.005
  21170. }
  21171. },
  21172. },
  21173. [
  21174. {
  21175. name: "Micro",
  21176. height: math.unit(5, "millimeters")
  21177. },
  21178. {
  21179. name: "Normal",
  21180. height: math.unit(6 + 5 / 12, "feet"),
  21181. default: true
  21182. },
  21183. ]
  21184. ))
  21185. characterMakers.push(() => makeCharacter(
  21186. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21187. {
  21188. front: {
  21189. height: math.unit(16, "feet"),
  21190. weight: math.unit(4000, "lb"),
  21191. name: "Front",
  21192. image: {
  21193. source: "./media/characters/juniper/front.svg",
  21194. bottom: 0.04
  21195. }
  21196. },
  21197. },
  21198. [
  21199. {
  21200. name: "Normal",
  21201. height: math.unit(16, "feet"),
  21202. default: true
  21203. },
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21208. {
  21209. front: {
  21210. height: math.unit(6, "feet"),
  21211. weight: math.unit(150, "lb"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/hipster/front.svg",
  21215. extra: 1312 / 1209,
  21216. bottom: 0.025
  21217. }
  21218. },
  21219. back: {
  21220. height: math.unit(6, "feet"),
  21221. weight: math.unit(150, "lb"),
  21222. name: "Back",
  21223. image: {
  21224. source: "./media/characters/hipster/back.svg",
  21225. extra: 1281 / 1196,
  21226. bottom: 0.01
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Micro",
  21233. height: math.unit(1, "mm")
  21234. },
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(4, "inches"),
  21238. default: true
  21239. },
  21240. {
  21241. name: "Macro",
  21242. height: math.unit(500, "feet")
  21243. },
  21244. {
  21245. name: "Megamacro",
  21246. height: math.unit(1000, "miles")
  21247. },
  21248. ]
  21249. ))
  21250. characterMakers.push(() => makeCharacter(
  21251. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21252. {
  21253. front: {
  21254. height: math.unit(6, "feet"),
  21255. weight: math.unit(150, "lb"),
  21256. name: "Front",
  21257. image: {
  21258. source: "./media/characters/tendirmuldr/front.svg",
  21259. extra: 1878 / 1772,
  21260. bottom: 0.015
  21261. }
  21262. },
  21263. },
  21264. [
  21265. {
  21266. name: "Megamacro",
  21267. height: math.unit(1500, "miles"),
  21268. default: true
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21274. {
  21275. front: {
  21276. height: math.unit(14, "feet"),
  21277. weight: math.unit(12000, "lb"),
  21278. name: "Front",
  21279. image: {
  21280. source: "./media/characters/mort/front.svg",
  21281. extra: 365 / 318,
  21282. bottom: 0.01
  21283. }
  21284. },
  21285. side: {
  21286. height: math.unit(14, "feet"),
  21287. weight: math.unit(12000, "lb"),
  21288. name: "Side",
  21289. image: {
  21290. source: "./media/characters/mort/side.svg",
  21291. extra: 365 / 318,
  21292. bottom: 0.052
  21293. },
  21294. default: true
  21295. },
  21296. back: {
  21297. height: math.unit(14, "feet"),
  21298. weight: math.unit(12000, "lb"),
  21299. name: "Back",
  21300. image: {
  21301. source: "./media/characters/mort/back.svg",
  21302. extra: 371 / 332,
  21303. bottom: 0.18
  21304. }
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Normal",
  21310. height: math.unit(14, "feet"),
  21311. default: true
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21317. {
  21318. front: {
  21319. height: math.unit(8, "feet"),
  21320. weight: math.unit(1, "ton"),
  21321. name: "Front",
  21322. image: {
  21323. source: "./media/characters/lycoa/front.svg",
  21324. extra: 1836/1728,
  21325. bottom: 81/1917
  21326. }
  21327. },
  21328. back: {
  21329. height: math.unit(8, "feet"),
  21330. weight: math.unit(1, "ton"),
  21331. name: "Back",
  21332. image: {
  21333. source: "./media/characters/lycoa/back.svg",
  21334. extra: 1785/1720,
  21335. bottom: 91/1876
  21336. }
  21337. },
  21338. head: {
  21339. height: math.unit(1.6243, "feet"),
  21340. name: "Head",
  21341. image: {
  21342. source: "./media/characters/lycoa/head.svg",
  21343. extra: 1011/782,
  21344. bottom: 0/1011
  21345. }
  21346. },
  21347. tailmaw: {
  21348. height: math.unit(1.9, "feet"),
  21349. name: "Tailmaw",
  21350. image: {
  21351. source: "./media/characters/lycoa/tailmaw.svg"
  21352. }
  21353. },
  21354. tentacles: {
  21355. height: math.unit(2.1, "feet"),
  21356. name: "Tentacles",
  21357. image: {
  21358. source: "./media/characters/lycoa/tentacles.svg"
  21359. }
  21360. },
  21361. dick: {
  21362. height: math.unit(1.73, "feet"),
  21363. name: "Dick",
  21364. image: {
  21365. source: "./media/characters/lycoa/dick.svg"
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Normal",
  21372. height: math.unit(8, "feet"),
  21373. default: true
  21374. },
  21375. {
  21376. name: "Macro",
  21377. height: math.unit(30, "feet")
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21383. {
  21384. front: {
  21385. height: math.unit(4 + 2 / 12, "feet"),
  21386. weight: math.unit(70, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/naldara/front.svg",
  21390. extra: 1664/1387,
  21391. bottom: 81/1745
  21392. },
  21393. form: "anthro",
  21394. default: true
  21395. },
  21396. naga: {
  21397. height: math.unit(20, "feet"),
  21398. weight: math.unit(15000, "kg"),
  21399. name: "Front",
  21400. image: {
  21401. source: "./media/characters/naldara/naga.svg",
  21402. extra: 1590/1396,
  21403. bottom: 285/1875
  21404. },
  21405. form: "naga",
  21406. default: true
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(4 + 2 / 12, "feet"),
  21413. form: "anthro",
  21414. default: true
  21415. },
  21416. {
  21417. name: "Normal",
  21418. height: math.unit(20, "feet"),
  21419. form: "naga",
  21420. default: true
  21421. },
  21422. ],
  21423. {
  21424. "anthro": {
  21425. name: "Anthro",
  21426. default: true
  21427. },
  21428. "naga": {
  21429. name: "Naga"
  21430. }
  21431. }
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21435. {
  21436. front: {
  21437. height: math.unit(13 + 7 / 12, "feet"),
  21438. weight: math.unit(1500, "lb"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/briar/front.svg",
  21442. extra: 1223/1157,
  21443. bottom: 123/1346
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(13 + 7 / 12, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21457. {
  21458. side: {
  21459. height: math.unit(16, "feet"),
  21460. weight: math.unit(500, "lb"),
  21461. name: "Side",
  21462. image: {
  21463. source: "./media/characters/vanguard/side.svg",
  21464. extra: 1022/914,
  21465. bottom: 30/1052
  21466. }
  21467. },
  21468. sideAlt: {
  21469. height: math.unit(10, "feet"),
  21470. weight: math.unit(500, "lb"),
  21471. name: "Side (Alt)",
  21472. image: {
  21473. source: "./media/characters/vanguard/side-alt.svg",
  21474. extra: 502 / 425,
  21475. bottom: 0.087
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(17.71, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(7.5, "feet"),
  21492. weight: math.unit(2, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/artemis/work-safe-front.svg",
  21496. extra: 1192 / 1075,
  21497. bottom: 0.07
  21498. },
  21499. form: "work-safe",
  21500. default: true
  21501. },
  21502. frontNsfw: {
  21503. height: math.unit(7.5, "feet"),
  21504. weight: math.unit(2, "lb"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/artemis/calibrating-front.svg",
  21508. extra: 1192 / 1075,
  21509. bottom: 0.07
  21510. },
  21511. form: "calibrating",
  21512. default: true
  21513. },
  21514. frontNsfwer: {
  21515. height: math.unit(7.5, "feet"),
  21516. weight: math.unit(2, "lb"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/artemis/oversize-load-front.svg",
  21520. extra: 1192 / 1075,
  21521. bottom: 0.07
  21522. },
  21523. form: "oversize-load",
  21524. default: true
  21525. },
  21526. side: {
  21527. height: math.unit(7.5, "feet"),
  21528. weight: math.unit(2, "lb"),
  21529. name: "Side",
  21530. image: {
  21531. source: "./media/characters/artemis/work-safe-side.svg",
  21532. extra: 1192 / 1075,
  21533. bottom: 0.07
  21534. },
  21535. form: "work-safe"
  21536. },
  21537. sideNsfw: {
  21538. height: math.unit(7.5, "feet"),
  21539. weight: math.unit(2, "lb"),
  21540. name: "Side",
  21541. image: {
  21542. source: "./media/characters/artemis/calibrating-side.svg",
  21543. extra: 1192 / 1075,
  21544. bottom: 0.07
  21545. },
  21546. form: "calibrating"
  21547. },
  21548. sideNsfwer: {
  21549. height: math.unit(7.5, "feet"),
  21550. weight: math.unit(2, "lb"),
  21551. name: "Side",
  21552. image: {
  21553. source: "./media/characters/artemis/oversize-load-side.svg",
  21554. extra: 1192 / 1075,
  21555. bottom: 0.07
  21556. },
  21557. form: "oversize-load"
  21558. },
  21559. maw: {
  21560. height: math.unit(1.1, "feet"),
  21561. name: "Maw",
  21562. image: {
  21563. source: "./media/characters/artemis/maw.svg"
  21564. },
  21565. form: "work-safe"
  21566. },
  21567. stomach: {
  21568. height: math.unit(0.95, "feet"),
  21569. name: "Stomach",
  21570. image: {
  21571. source: "./media/characters/artemis/stomach.svg"
  21572. },
  21573. form: "work-safe"
  21574. },
  21575. dickCanine: {
  21576. height: math.unit(1, "feet"),
  21577. name: "Dick (Canine)",
  21578. image: {
  21579. source: "./media/characters/artemis/dick-canine.svg"
  21580. },
  21581. form: "calibrating"
  21582. },
  21583. dickEquine: {
  21584. height: math.unit(0.85, "feet"),
  21585. name: "Dick (Equine)",
  21586. image: {
  21587. source: "./media/characters/artemis/dick-equine.svg"
  21588. },
  21589. form: "calibrating"
  21590. },
  21591. dickExotic: {
  21592. height: math.unit(0.85, "feet"),
  21593. name: "Dick (Exotic)",
  21594. image: {
  21595. source: "./media/characters/artemis/dick-exotic.svg"
  21596. },
  21597. form: "calibrating"
  21598. },
  21599. dickCanineBigger: {
  21600. height: math.unit(1 * 1.33, "feet"),
  21601. name: "Dick (Canine)",
  21602. image: {
  21603. source: "./media/characters/artemis/dick-canine.svg"
  21604. },
  21605. form: "oversize-load"
  21606. },
  21607. dickEquineBigger: {
  21608. height: math.unit(0.85 * 1.33, "feet"),
  21609. name: "Dick (Equine)",
  21610. image: {
  21611. source: "./media/characters/artemis/dick-equine.svg"
  21612. },
  21613. form: "oversize-load"
  21614. },
  21615. dickExoticBigger: {
  21616. height: math.unit(0.85 * 1.33, "feet"),
  21617. name: "Dick (Exotic)",
  21618. image: {
  21619. source: "./media/characters/artemis/dick-exotic.svg"
  21620. },
  21621. form: "oversize-load"
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Normal",
  21627. height: math.unit(7.5, "feet"),
  21628. form: "work-safe",
  21629. default: true
  21630. },
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(7.5, "feet"),
  21634. form: "calibrating",
  21635. default: true
  21636. },
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(7.5, "feet"),
  21640. form: "oversize-load",
  21641. default: true
  21642. },
  21643. {
  21644. name: "Enlarged",
  21645. height: math.unit(12, "feet"),
  21646. form: "work-safe",
  21647. },
  21648. {
  21649. name: "Enlarged",
  21650. height: math.unit(12, "feet"),
  21651. form: "calibrating",
  21652. },
  21653. {
  21654. name: "Enlarged",
  21655. height: math.unit(12, "feet"),
  21656. form: "oversize-load",
  21657. },
  21658. ],
  21659. {
  21660. "work-safe": {
  21661. name: "Work-Safe",
  21662. default: true
  21663. },
  21664. "calibrating": {
  21665. name: "Calibrating"
  21666. },
  21667. "oversize-load": {
  21668. name: "Oversize Load"
  21669. }
  21670. }
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21674. {
  21675. front: {
  21676. height: math.unit(5 + 3 / 12, "feet"),
  21677. weight: math.unit(160, "lb"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/kira/front.svg",
  21681. extra: 906 / 786,
  21682. bottom: 0.01
  21683. }
  21684. },
  21685. back: {
  21686. height: math.unit(5 + 3 / 12, "feet"),
  21687. weight: math.unit(160, "lb"),
  21688. name: "Back",
  21689. image: {
  21690. source: "./media/characters/kira/back.svg",
  21691. extra: 882 / 757,
  21692. bottom: 0.005
  21693. }
  21694. },
  21695. frontDressed: {
  21696. height: math.unit(5 + 3 / 12, "feet"),
  21697. weight: math.unit(160, "lb"),
  21698. name: "Front (Dressed)",
  21699. image: {
  21700. source: "./media/characters/kira/front-dressed.svg",
  21701. extra: 906 / 786,
  21702. bottom: 0.01
  21703. }
  21704. },
  21705. beans: {
  21706. height: math.unit(0.92, "feet"),
  21707. name: "Beans",
  21708. image: {
  21709. source: "./media/characters/kira/beans.svg"
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(5 + 3 / 12, "feet"),
  21717. default: true
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21723. {
  21724. front: {
  21725. height: math.unit(5 + 4 / 12, "feet"),
  21726. weight: math.unit(145, "lb"),
  21727. name: "Front",
  21728. image: {
  21729. source: "./media/characters/scramble/front.svg",
  21730. extra: 763 / 727,
  21731. bottom: 0.05
  21732. }
  21733. },
  21734. back: {
  21735. height: math.unit(5 + 4 / 12, "feet"),
  21736. weight: math.unit(145, "lb"),
  21737. name: "Back",
  21738. image: {
  21739. source: "./media/characters/scramble/back.svg",
  21740. extra: 826 / 737,
  21741. bottom: 0.002
  21742. }
  21743. },
  21744. },
  21745. [
  21746. {
  21747. name: "Normal",
  21748. height: math.unit(5 + 4 / 12, "feet"),
  21749. default: true
  21750. },
  21751. ]
  21752. ))
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21755. {
  21756. side: {
  21757. height: math.unit(6 + 2 / 12, "feet"),
  21758. weight: math.unit(190, "lb"),
  21759. name: "Side",
  21760. image: {
  21761. source: "./media/characters/biscuit/side.svg",
  21762. extra: 858 / 791,
  21763. bottom: 0.044
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(6 + 2 / 12, "feet"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(5 + 2 / 12, "feet"),
  21780. weight: math.unit(120, "lb"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/poffin/front.svg",
  21784. extra: 786 / 680,
  21785. bottom: 0.005
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(5 + 2 / 12, "feet"),
  21793. default: true
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21799. {
  21800. front: {
  21801. height: math.unit(6 + 3 / 12, "feet"),
  21802. weight: math.unit(519, "lb"),
  21803. name: "Front",
  21804. image: {
  21805. source: "./media/characters/dhari/front.svg",
  21806. extra: 1048 / 946,
  21807. bottom: 0.015
  21808. }
  21809. },
  21810. back: {
  21811. height: math.unit(6 + 3 / 12, "feet"),
  21812. weight: math.unit(519, "lb"),
  21813. name: "Back",
  21814. image: {
  21815. source: "./media/characters/dhari/back.svg",
  21816. extra: 1048 / 931,
  21817. bottom: 0.005
  21818. }
  21819. },
  21820. frontDressed: {
  21821. height: math.unit(6 + 3 / 12, "feet"),
  21822. weight: math.unit(519, "lb"),
  21823. name: "Front (Dressed)",
  21824. image: {
  21825. source: "./media/characters/dhari/front-dressed.svg",
  21826. extra: 1713 / 1546,
  21827. bottom: 0.02
  21828. }
  21829. },
  21830. backDressed: {
  21831. height: math.unit(6 + 3 / 12, "feet"),
  21832. weight: math.unit(519, "lb"),
  21833. name: "Back (Dressed)",
  21834. image: {
  21835. source: "./media/characters/dhari/back-dressed.svg",
  21836. extra: 1699 / 1537,
  21837. bottom: 0.01
  21838. }
  21839. },
  21840. maw: {
  21841. height: math.unit(0.95, "feet"),
  21842. name: "Maw",
  21843. image: {
  21844. source: "./media/characters/dhari/maw.svg"
  21845. }
  21846. },
  21847. wereFront: {
  21848. height: math.unit(12 + 8 / 12, "feet"),
  21849. weight: math.unit(4000, "lb"),
  21850. name: "Front (Were)",
  21851. image: {
  21852. source: "./media/characters/dhari/were-front.svg",
  21853. extra: 1065 / 969,
  21854. bottom: 0.015
  21855. }
  21856. },
  21857. wereBack: {
  21858. height: math.unit(12 + 8 / 12, "feet"),
  21859. weight: math.unit(4000, "lb"),
  21860. name: "Back (Were)",
  21861. image: {
  21862. source: "./media/characters/dhari/were-back.svg",
  21863. extra: 1065 / 969,
  21864. bottom: 0.012
  21865. }
  21866. },
  21867. wereMaw: {
  21868. height: math.unit(0.625, "meters"),
  21869. name: "Maw (Were)",
  21870. image: {
  21871. source: "./media/characters/dhari/were-maw.svg"
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Normal",
  21878. height: math.unit(6 + 3 / 12, "feet"),
  21879. default: true
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21885. {
  21886. anthro: {
  21887. height: math.unit(5 + 7 / 12, "feet"),
  21888. weight: math.unit(175, "lb"),
  21889. name: "Anthro",
  21890. image: {
  21891. source: "./media/characters/rena-dyne/anthro.svg",
  21892. extra: 1849 / 1785,
  21893. bottom: 0.005
  21894. }
  21895. },
  21896. taur: {
  21897. height: math.unit(15 + 6 / 12, "feet"),
  21898. weight: math.unit(8000, "lb"),
  21899. name: "Taur",
  21900. image: {
  21901. source: "./media/characters/rena-dyne/taur.svg",
  21902. extra: 2315 / 2234,
  21903. bottom: 0.033
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Normal",
  21910. height: math.unit(5 + 7 / 12, "feet"),
  21911. default: true
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21917. {
  21918. front: {
  21919. height: math.unit(8, "feet"),
  21920. weight: math.unit(600, "lb"),
  21921. name: "Front",
  21922. image: {
  21923. source: "./media/characters/weremeep/front.svg",
  21924. extra: 970/849,
  21925. bottom: 7/977
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(8, "feet"),
  21933. default: true
  21934. },
  21935. {
  21936. name: "Lorg",
  21937. height: math.unit(12, "feet")
  21938. },
  21939. {
  21940. name: "Oh Lawd She Comin'",
  21941. height: math.unit(20, "feet")
  21942. },
  21943. ]
  21944. ))
  21945. characterMakers.push(() => makeCharacter(
  21946. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21947. {
  21948. front: {
  21949. height: math.unit(4, "feet"),
  21950. weight: math.unit(90, "lb"),
  21951. name: "Front",
  21952. image: {
  21953. source: "./media/characters/reza/front.svg",
  21954. extra: 1183 / 1111,
  21955. bottom: 0.017
  21956. }
  21957. },
  21958. back: {
  21959. height: math.unit(4, "feet"),
  21960. weight: math.unit(90, "lb"),
  21961. name: "Back",
  21962. image: {
  21963. source: "./media/characters/reza/back.svg",
  21964. extra: 1183 / 1111,
  21965. bottom: 0.01
  21966. }
  21967. },
  21968. drake: {
  21969. height: math.unit(30, "feet"),
  21970. weight: math.unit(246960, "lb"),
  21971. name: "Drake",
  21972. image: {
  21973. source: "./media/characters/reza/drake.svg",
  21974. extra: 2350 / 2024,
  21975. bottom: 60.7 / 2403
  21976. }
  21977. },
  21978. },
  21979. [
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(4, "feet"),
  21983. default: true
  21984. },
  21985. ]
  21986. ))
  21987. characterMakers.push(() => makeCharacter(
  21988. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21989. {
  21990. side: {
  21991. height: math.unit(15, "feet"),
  21992. weight: math.unit(14, "tons"),
  21993. name: "Side",
  21994. image: {
  21995. source: "./media/characters/athea/side.svg",
  21996. extra: 960 / 540,
  21997. bottom: 0.003
  21998. }
  21999. },
  22000. sitting: {
  22001. height: math.unit(6 * 2.85, "feet"),
  22002. weight: math.unit(14, "tons"),
  22003. name: "Sitting",
  22004. image: {
  22005. source: "./media/characters/athea/sitting.svg",
  22006. extra: 621 / 581,
  22007. bottom: 0.075
  22008. }
  22009. },
  22010. maw: {
  22011. height: math.unit(7.59498031496063, "feet"),
  22012. name: "Maw",
  22013. image: {
  22014. source: "./media/characters/athea/maw.svg"
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Lap Cat",
  22021. height: math.unit(2.5, "feet")
  22022. },
  22023. {
  22024. name: "Minimacro",
  22025. height: math.unit(15, "feet"),
  22026. default: true
  22027. },
  22028. {
  22029. name: "Macro",
  22030. height: math.unit(120, "feet")
  22031. },
  22032. {
  22033. name: "Macro+",
  22034. height: math.unit(640, "feet")
  22035. },
  22036. {
  22037. name: "Colossus",
  22038. height: math.unit(2.2, "miles")
  22039. },
  22040. ]
  22041. ))
  22042. characterMakers.push(() => makeCharacter(
  22043. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22044. {
  22045. front: {
  22046. height: math.unit(8 + 8 / 12, "feet"),
  22047. weight: math.unit(130, "kg"),
  22048. name: "Front",
  22049. image: {
  22050. source: "./media/characters/seroko/front.svg",
  22051. extra: 1385 / 1280,
  22052. bottom: 0.025
  22053. }
  22054. },
  22055. back: {
  22056. height: math.unit(8 + 8 / 12, "feet"),
  22057. weight: math.unit(130, "kg"),
  22058. name: "Back",
  22059. image: {
  22060. source: "./media/characters/seroko/back.svg",
  22061. extra: 1369 / 1238,
  22062. bottom: 0.018
  22063. }
  22064. },
  22065. frontDressed: {
  22066. height: math.unit(8 + 8 / 12, "feet"),
  22067. weight: math.unit(130, "kg"),
  22068. name: "Front (Dressed)",
  22069. image: {
  22070. source: "./media/characters/seroko/front-dressed.svg",
  22071. extra: 1366 / 1275,
  22072. bottom: 0.03
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(8 + 8 / 12, "feet"),
  22080. default: true
  22081. },
  22082. ]
  22083. ))
  22084. characterMakers.push(() => makeCharacter(
  22085. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22086. {
  22087. front: {
  22088. height: math.unit(5.5, "feet"),
  22089. weight: math.unit(160, "lb"),
  22090. name: "Front",
  22091. image: {
  22092. source: "./media/characters/quatzi/front.svg",
  22093. extra: 2346 / 2242,
  22094. bottom: 0.015
  22095. }
  22096. },
  22097. },
  22098. [
  22099. {
  22100. name: "Normal",
  22101. height: math.unit(5.5, "feet"),
  22102. default: true
  22103. },
  22104. {
  22105. name: "Big",
  22106. height: math.unit(7.7, "feet")
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(5 + 11 / 12, "feet"),
  22115. weight: math.unit(180, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/sen/front.svg",
  22119. extra: 1321 / 1254,
  22120. bottom: 0.015
  22121. }
  22122. },
  22123. side: {
  22124. height: math.unit(5 + 11 / 12, "feet"),
  22125. weight: math.unit(180, "lb"),
  22126. name: "Side",
  22127. image: {
  22128. source: "./media/characters/sen/side.svg",
  22129. extra: 1321 / 1254,
  22130. bottom: 0.007
  22131. }
  22132. },
  22133. back: {
  22134. height: math.unit(5 + 11 / 12, "feet"),
  22135. weight: math.unit(180, "lb"),
  22136. name: "Back",
  22137. image: {
  22138. source: "./media/characters/sen/back.svg",
  22139. extra: 1321 / 1254
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(5 + 11 / 12, "feet"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22153. {
  22154. front: {
  22155. height: math.unit(166.6, "cm"),
  22156. weight: math.unit(66.6, "kg"),
  22157. name: "Front",
  22158. image: {
  22159. source: "./media/characters/fruity/front.svg",
  22160. extra: 1510 / 1386,
  22161. bottom: 0.04
  22162. }
  22163. },
  22164. back: {
  22165. height: math.unit(166.6, "cm"),
  22166. weight: math.unit(66.6, "lb"),
  22167. name: "Back",
  22168. image: {
  22169. source: "./media/characters/fruity/back.svg",
  22170. extra: 1563 / 1435,
  22171. bottom: 0.005
  22172. }
  22173. },
  22174. },
  22175. [
  22176. {
  22177. name: "Normal",
  22178. height: math.unit(166.6, "cm"),
  22179. default: true
  22180. },
  22181. {
  22182. name: "Demonic",
  22183. height: math.unit(166.6, "feet")
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22189. {
  22190. side: {
  22191. height: math.unit(10, "feet"),
  22192. weight: math.unit(500, "lb"),
  22193. name: "Side",
  22194. image: {
  22195. source: "./media/characters/zost/side.svg",
  22196. extra: 2870/2533,
  22197. bottom: 252/3122
  22198. }
  22199. },
  22200. mawFront: {
  22201. height: math.unit(1.08, "meters"),
  22202. name: "Maw (Front)",
  22203. image: {
  22204. source: "./media/characters/zost/maw-front.svg"
  22205. }
  22206. },
  22207. mawSide: {
  22208. height: math.unit(2.66, "feet"),
  22209. name: "Maw (Side)",
  22210. image: {
  22211. source: "./media/characters/zost/maw-side.svg"
  22212. }
  22213. },
  22214. wingspan: {
  22215. height: math.unit(7.4, "feet"),
  22216. name: "Wingspan",
  22217. image: {
  22218. source: "./media/characters/zost/wingspan.svg"
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Normal",
  22225. height: math.unit(10, "feet"),
  22226. default: true
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22232. {
  22233. front: {
  22234. height: math.unit(5 + 4 / 12, "feet"),
  22235. weight: math.unit(120, "lb"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/luci/front.svg",
  22239. extra: 1985 / 1884,
  22240. bottom: 0.04
  22241. }
  22242. },
  22243. back: {
  22244. height: math.unit(5 + 4 / 12, "feet"),
  22245. weight: math.unit(120, "lb"),
  22246. name: "Back",
  22247. image: {
  22248. source: "./media/characters/luci/back.svg",
  22249. extra: 1892 / 1791,
  22250. bottom: 0.002
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(5 + 4 / 12, "feet"),
  22258. default: true
  22259. },
  22260. ]
  22261. ))
  22262. characterMakers.push(() => makeCharacter(
  22263. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22264. {
  22265. front: {
  22266. height: math.unit(1500, "feet"),
  22267. weight: math.unit(3.8e6, "tons"),
  22268. name: "Front",
  22269. image: {
  22270. source: "./media/characters/2th/front.svg",
  22271. extra: 3489 / 3350,
  22272. bottom: 0.1
  22273. }
  22274. },
  22275. foot: {
  22276. height: math.unit(461, "feet"),
  22277. name: "Foot",
  22278. image: {
  22279. source: "./media/characters/2th/foot.svg"
  22280. }
  22281. },
  22282. },
  22283. [
  22284. {
  22285. name: "\"Micro\"",
  22286. height: math.unit(15 + 7 / 12, "feet")
  22287. },
  22288. {
  22289. name: "Normal",
  22290. height: math.unit(1500, "feet"),
  22291. default: true
  22292. },
  22293. {
  22294. name: "Macro",
  22295. height: math.unit(5000, "feet")
  22296. },
  22297. {
  22298. name: "Megamacro",
  22299. height: math.unit(15, "miles")
  22300. },
  22301. {
  22302. name: "Gigamacro",
  22303. height: math.unit(4000, "miles")
  22304. },
  22305. {
  22306. name: "Galactic",
  22307. height: math.unit(50, "AU")
  22308. },
  22309. ]
  22310. ))
  22311. characterMakers.push(() => makeCharacter(
  22312. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22313. {
  22314. front: {
  22315. height: math.unit(5 + 6 / 12, "feet"),
  22316. weight: math.unit(220, "lb"),
  22317. name: "Front",
  22318. image: {
  22319. source: "./media/characters/amethyst/front.svg",
  22320. extra: 2078 / 2040,
  22321. bottom: 0.045
  22322. }
  22323. },
  22324. back: {
  22325. height: math.unit(5 + 6 / 12, "feet"),
  22326. weight: math.unit(220, "lb"),
  22327. name: "Back",
  22328. image: {
  22329. source: "./media/characters/amethyst/back.svg",
  22330. extra: 2021 / 1989,
  22331. bottom: 0.02
  22332. }
  22333. },
  22334. },
  22335. [
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(5 + 6 / 12, "feet"),
  22339. default: true
  22340. },
  22341. ]
  22342. ))
  22343. characterMakers.push(() => makeCharacter(
  22344. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22345. {
  22346. front: {
  22347. height: math.unit(4 + 11 / 12, "feet"),
  22348. weight: math.unit(120, "lb"),
  22349. name: "Front",
  22350. image: {
  22351. source: "./media/characters/yumi-akiyama/front.svg",
  22352. extra: 1327 / 1235,
  22353. bottom: 0.02
  22354. }
  22355. },
  22356. back: {
  22357. height: math.unit(4 + 11 / 12, "feet"),
  22358. weight: math.unit(120, "lb"),
  22359. name: "Back",
  22360. image: {
  22361. source: "./media/characters/yumi-akiyama/back.svg",
  22362. extra: 1287 / 1245,
  22363. bottom: 0.002
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Galactic",
  22370. height: math.unit(50, "galaxies"),
  22371. default: true
  22372. },
  22373. {
  22374. name: "Universal",
  22375. height: math.unit(100, "universes")
  22376. },
  22377. ]
  22378. ))
  22379. characterMakers.push(() => makeCharacter(
  22380. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22381. {
  22382. front: {
  22383. height: math.unit(8, "feet"),
  22384. weight: math.unit(500, "lb"),
  22385. name: "Front",
  22386. image: {
  22387. source: "./media/characters/rifter-yrmori/front.svg",
  22388. extra: 1180 / 1125,
  22389. bottom: 0.02
  22390. }
  22391. },
  22392. back: {
  22393. height: math.unit(8, "feet"),
  22394. weight: math.unit(500, "lb"),
  22395. name: "Back",
  22396. image: {
  22397. source: "./media/characters/rifter-yrmori/back.svg",
  22398. extra: 1190 / 1145,
  22399. bottom: 0.001
  22400. }
  22401. },
  22402. wings: {
  22403. height: math.unit(7.75, "feet"),
  22404. weight: math.unit(500, "lb"),
  22405. name: "Wings",
  22406. image: {
  22407. source: "./media/characters/rifter-yrmori/wings.svg",
  22408. extra: 1357 / 1285
  22409. }
  22410. },
  22411. maw: {
  22412. height: math.unit(0.8, "feet"),
  22413. name: "Maw",
  22414. image: {
  22415. source: "./media/characters/rifter-yrmori/maw.svg"
  22416. }
  22417. },
  22418. mawfront: {
  22419. height: math.unit(1.45, "feet"),
  22420. name: "Maw (Front)",
  22421. image: {
  22422. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Normal",
  22429. height: math.unit(8, "feet"),
  22430. default: true
  22431. },
  22432. {
  22433. name: "Macro",
  22434. height: math.unit(42, "meters")
  22435. },
  22436. ]
  22437. ))
  22438. characterMakers.push(() => makeCharacter(
  22439. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22440. {
  22441. were: {
  22442. height: math.unit(25 + 6 / 12, "feet"),
  22443. weight: math.unit(10000, "lb"),
  22444. name: "Were",
  22445. image: {
  22446. source: "./media/characters/tahajin/were.svg",
  22447. extra: 801 / 770,
  22448. bottom: 0.042
  22449. }
  22450. },
  22451. aquatic: {
  22452. height: math.unit(6 + 4 / 12, "feet"),
  22453. weight: math.unit(160, "lb"),
  22454. name: "Aquatic",
  22455. image: {
  22456. source: "./media/characters/tahajin/aquatic.svg",
  22457. extra: 572 / 542,
  22458. bottom: 0.04
  22459. }
  22460. },
  22461. chow: {
  22462. height: math.unit(8 + 11 / 12, "feet"),
  22463. weight: math.unit(450, "lb"),
  22464. name: "Chow",
  22465. image: {
  22466. source: "./media/characters/tahajin/chow.svg",
  22467. extra: 660 / 640,
  22468. bottom: 0.015
  22469. }
  22470. },
  22471. demiNaga: {
  22472. height: math.unit(6 + 8 / 12, "feet"),
  22473. weight: math.unit(300, "lb"),
  22474. name: "Demi Naga",
  22475. image: {
  22476. source: "./media/characters/tahajin/demi-naga.svg",
  22477. extra: 643 / 615,
  22478. bottom: 0.1
  22479. }
  22480. },
  22481. data: {
  22482. height: math.unit(5, "inches"),
  22483. weight: math.unit(0.1, "lb"),
  22484. name: "Data",
  22485. image: {
  22486. source: "./media/characters/tahajin/data.svg"
  22487. }
  22488. },
  22489. fluu: {
  22490. height: math.unit(5 + 7 / 12, "feet"),
  22491. weight: math.unit(140, "lb"),
  22492. name: "Fluu",
  22493. image: {
  22494. source: "./media/characters/tahajin/fluu.svg",
  22495. extra: 628 / 592,
  22496. bottom: 0.02
  22497. }
  22498. },
  22499. starWarrior: {
  22500. height: math.unit(4 + 5 / 12, "feet"),
  22501. weight: math.unit(50, "lb"),
  22502. name: "Star Warrior",
  22503. image: {
  22504. source: "./media/characters/tahajin/star-warrior.svg"
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Normal",
  22511. height: math.unit(25 + 6 / 12, "feet"),
  22512. default: true
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22518. {
  22519. front: {
  22520. height: math.unit(8, "feet"),
  22521. weight: math.unit(350, "lb"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/gabira/front.svg",
  22525. extra: 1261/1154,
  22526. bottom: 51/1312
  22527. }
  22528. },
  22529. back: {
  22530. height: math.unit(8, "feet"),
  22531. weight: math.unit(350, "lb"),
  22532. name: "Back",
  22533. image: {
  22534. source: "./media/characters/gabira/back.svg",
  22535. extra: 1265/1163,
  22536. bottom: 46/1311
  22537. }
  22538. },
  22539. head: {
  22540. height: math.unit(2.85, "feet"),
  22541. name: "Head",
  22542. image: {
  22543. source: "./media/characters/gabira/head.svg"
  22544. }
  22545. },
  22546. },
  22547. [
  22548. {
  22549. name: "Normal",
  22550. height: math.unit(8, "feet"),
  22551. default: true
  22552. },
  22553. ]
  22554. ))
  22555. characterMakers.push(() => makeCharacter(
  22556. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22557. {
  22558. front: {
  22559. height: math.unit(5 + 3 / 12, "feet"),
  22560. weight: math.unit(137, "lb"),
  22561. name: "Front",
  22562. image: {
  22563. source: "./media/characters/sasha-katraine/front.svg",
  22564. extra: 1745/1694,
  22565. bottom: 37/1782
  22566. }
  22567. },
  22568. back: {
  22569. height: math.unit(5 + 3 / 12, "feet"),
  22570. weight: math.unit(137, "lb"),
  22571. name: "Back",
  22572. image: {
  22573. source: "./media/characters/sasha-katraine/back.svg",
  22574. extra: 1776/1699,
  22575. bottom: 26/1802
  22576. }
  22577. },
  22578. },
  22579. [
  22580. {
  22581. name: "Micro",
  22582. height: math.unit(5, "inches")
  22583. },
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(5 + 3 / 12, "feet"),
  22587. default: true
  22588. },
  22589. ]
  22590. ))
  22591. characterMakers.push(() => makeCharacter(
  22592. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22593. {
  22594. side: {
  22595. height: math.unit(4, "inches"),
  22596. weight: math.unit(200, "grams"),
  22597. name: "Side",
  22598. image: {
  22599. source: "./media/characters/der/side.svg",
  22600. extra: 719 / 400,
  22601. bottom: 30.6 / 749.9187
  22602. }
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Micro",
  22608. height: math.unit(4, "inches"),
  22609. default: true
  22610. },
  22611. ]
  22612. ))
  22613. characterMakers.push(() => makeCharacter(
  22614. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22615. {
  22616. side: {
  22617. height: math.unit(30, "meters"),
  22618. weight: math.unit(700, "tonnes"),
  22619. name: "Side",
  22620. image: {
  22621. source: "./media/characters/fixerdragon/side.svg",
  22622. extra: (1293.0514 - 116.03) / 1106.86,
  22623. bottom: 116.03 / 1293.0514
  22624. }
  22625. },
  22626. },
  22627. [
  22628. {
  22629. name: "Planck",
  22630. height: math.unit(1.6e-35, "meters")
  22631. },
  22632. {
  22633. name: "Micro",
  22634. height: math.unit(0.4, "meters")
  22635. },
  22636. {
  22637. name: "Normal",
  22638. height: math.unit(30, "meters"),
  22639. default: true
  22640. },
  22641. {
  22642. name: "Megamacro",
  22643. height: math.unit(1.2, "megameters")
  22644. },
  22645. {
  22646. name: "Teramacro",
  22647. height: math.unit(130, "terameters")
  22648. },
  22649. {
  22650. name: "Yottamacro",
  22651. height: math.unit(6200, "yottameters")
  22652. },
  22653. ]
  22654. ));
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22657. {
  22658. front: {
  22659. height: math.unit(8, "feet"),
  22660. weight: math.unit(250, "lb"),
  22661. name: "Front",
  22662. image: {
  22663. source: "./media/characters/kite/front.svg",
  22664. extra: 2796 / 2659,
  22665. bottom: 0.002
  22666. }
  22667. },
  22668. },
  22669. [
  22670. {
  22671. name: "Normal",
  22672. height: math.unit(8, "feet"),
  22673. default: true
  22674. },
  22675. {
  22676. name: "Macro",
  22677. height: math.unit(360, "feet")
  22678. },
  22679. {
  22680. name: "Megamacro",
  22681. height: math.unit(1500, "feet")
  22682. },
  22683. ]
  22684. ))
  22685. characterMakers.push(() => makeCharacter(
  22686. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22687. {
  22688. front: {
  22689. height: math.unit(5 + 11/12, "feet"),
  22690. weight: math.unit(170, "lb"),
  22691. name: "Front",
  22692. image: {
  22693. source: "./media/characters/poojawa-vynar/front.svg",
  22694. extra: 1735/1585,
  22695. bottom: 96/1831
  22696. }
  22697. },
  22698. back: {
  22699. height: math.unit(5 + 11/12, "feet"),
  22700. weight: math.unit(170, "lb"),
  22701. name: "Back",
  22702. image: {
  22703. source: "./media/characters/poojawa-vynar/back.svg",
  22704. extra: 1749/1607,
  22705. bottom: 28/1777
  22706. }
  22707. },
  22708. male: {
  22709. height: math.unit(5 + 11/12, "feet"),
  22710. weight: math.unit(170, "lb"),
  22711. name: "Male",
  22712. image: {
  22713. source: "./media/characters/poojawa-vynar/male.svg",
  22714. extra: 1855/1713,
  22715. bottom: 63/1918
  22716. }
  22717. },
  22718. taur: {
  22719. height: math.unit(5 + 11/12, "feet"),
  22720. weight: math.unit(170, "lb"),
  22721. name: "Taur",
  22722. image: {
  22723. source: "./media/characters/poojawa-vynar/taur.svg",
  22724. extra: 1151/1059,
  22725. bottom: 356/1507
  22726. }
  22727. },
  22728. frontDressed: {
  22729. height: math.unit(5 + 11/12, "feet"),
  22730. weight: math.unit(170, "lb"),
  22731. name: "Front (Dressed)",
  22732. image: {
  22733. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22734. extra: 1735/1585,
  22735. bottom: 96/1831
  22736. }
  22737. },
  22738. backDressed: {
  22739. height: math.unit(5 + 11/12, "feet"),
  22740. weight: math.unit(170, "lb"),
  22741. name: "Back (Dressed)",
  22742. image: {
  22743. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22744. extra: 1749/1607,
  22745. bottom: 28/1777
  22746. }
  22747. },
  22748. maleDressed: {
  22749. height: math.unit(5 + 11/12, "feet"),
  22750. weight: math.unit(170, "lb"),
  22751. name: "Male (Dressed)",
  22752. image: {
  22753. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22754. extra: 1855/1713,
  22755. bottom: 63/1918
  22756. }
  22757. },
  22758. taurDressed: {
  22759. height: math.unit(5 + 11/12, "feet"),
  22760. weight: math.unit(170, "lb"),
  22761. name: "Taur (Dressed)",
  22762. image: {
  22763. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22764. extra: 1151/1059,
  22765. bottom: 356/1507
  22766. }
  22767. },
  22768. maw: {
  22769. height: math.unit(1.46, "feet"),
  22770. name: "Maw",
  22771. image: {
  22772. source: "./media/characters/poojawa-vynar/maw.svg"
  22773. }
  22774. },
  22775. head: {
  22776. height: math.unit(2.34, "feet"),
  22777. name: "Head",
  22778. image: {
  22779. source: "./media/characters/poojawa-vynar/head.svg"
  22780. }
  22781. },
  22782. paw: {
  22783. height: math.unit(1.61, "feet"),
  22784. name: "Paw",
  22785. image: {
  22786. source: "./media/characters/poojawa-vynar/paw.svg"
  22787. }
  22788. },
  22789. pawToering: {
  22790. height: math.unit(1.72, "feet"),
  22791. name: "Paw (Toering)",
  22792. image: {
  22793. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22794. }
  22795. },
  22796. toering: {
  22797. height: math.unit(2.9, "inches"),
  22798. name: "Toering",
  22799. image: {
  22800. source: "./media/characters/poojawa-vynar/toering.svg"
  22801. }
  22802. },
  22803. shaft: {
  22804. height: math.unit(0.625, "feet"),
  22805. name: "Shaft",
  22806. image: {
  22807. source: "./media/characters/poojawa-vynar/shaft.svg"
  22808. }
  22809. },
  22810. spade: {
  22811. height: math.unit(0.42, "feet"),
  22812. name: "Spade",
  22813. image: {
  22814. source: "./media/characters/poojawa-vynar/spade.svg"
  22815. }
  22816. },
  22817. },
  22818. [
  22819. {
  22820. name: "Shortstack",
  22821. height: math.unit(4, "feet")
  22822. },
  22823. {
  22824. name: "Normal",
  22825. height: math.unit(5 + 11 / 12, "feet"),
  22826. default: true
  22827. },
  22828. {
  22829. name: "Tauric",
  22830. height: math.unit(4, "meters")
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22836. {
  22837. front: {
  22838. height: math.unit(293, "meters"),
  22839. weight: math.unit(70400, "tons"),
  22840. name: "Front",
  22841. image: {
  22842. source: "./media/characters/violette/front.svg",
  22843. extra: 1227 / 1180,
  22844. bottom: 0.005
  22845. }
  22846. },
  22847. back: {
  22848. height: math.unit(293, "meters"),
  22849. weight: math.unit(70400, "tons"),
  22850. name: "Back",
  22851. image: {
  22852. source: "./media/characters/violette/back.svg",
  22853. extra: 1227 / 1180,
  22854. bottom: 0.005
  22855. }
  22856. },
  22857. },
  22858. [
  22859. {
  22860. name: "Macro",
  22861. height: math.unit(293, "meters"),
  22862. default: true
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22868. {
  22869. front: {
  22870. height: math.unit(1050, "feet"),
  22871. weight: math.unit(200000, "tons"),
  22872. name: "Front",
  22873. image: {
  22874. source: "./media/characters/alessandra/front.svg",
  22875. extra: 960 / 912,
  22876. bottom: 0.06
  22877. }
  22878. },
  22879. },
  22880. [
  22881. {
  22882. name: "Macro",
  22883. height: math.unit(1050, "feet")
  22884. },
  22885. {
  22886. name: "Macro+",
  22887. height: math.unit(900, "meters"),
  22888. default: true
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22894. {
  22895. front: {
  22896. height: math.unit(5, "feet"),
  22897. weight: math.unit(187, "lb"),
  22898. name: "Front",
  22899. image: {
  22900. source: "./media/characters/person/front.svg",
  22901. extra: 3087 / 2945,
  22902. bottom: 91 / 3181
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Micro",
  22909. height: math.unit(3, "inches")
  22910. },
  22911. {
  22912. name: "Normal",
  22913. height: math.unit(5, "feet"),
  22914. default: true
  22915. },
  22916. {
  22917. name: "Macro",
  22918. height: math.unit(90, "feet")
  22919. },
  22920. {
  22921. name: "Max Size",
  22922. height: math.unit(280, "feet")
  22923. },
  22924. ]
  22925. ))
  22926. characterMakers.push(() => makeCharacter(
  22927. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22928. {
  22929. front: {
  22930. height: math.unit(4.5, "meters"),
  22931. weight: math.unit(3200, "lb"),
  22932. name: "Front",
  22933. image: {
  22934. source: "./media/characters/ty/front.svg",
  22935. extra: 1038 / 960,
  22936. bottom: 31.156 / 1068
  22937. }
  22938. },
  22939. back: {
  22940. height: math.unit(4.5, "meters"),
  22941. weight: math.unit(3200, "lb"),
  22942. name: "Back",
  22943. image: {
  22944. source: "./media/characters/ty/back.svg",
  22945. extra: 1044 / 966,
  22946. bottom: 7.48 / 1049
  22947. }
  22948. },
  22949. },
  22950. [
  22951. {
  22952. name: "Normal",
  22953. height: math.unit(4.5, "meters"),
  22954. default: true
  22955. },
  22956. ]
  22957. ))
  22958. characterMakers.push(() => makeCharacter(
  22959. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22960. {
  22961. front: {
  22962. height: math.unit(5 + 4 / 12, "feet"),
  22963. weight: math.unit(115, "lb"),
  22964. name: "Front",
  22965. image: {
  22966. source: "./media/characters/rocky/front.svg",
  22967. extra: 1012 / 975,
  22968. bottom: 54 / 1066
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Normal",
  22975. height: math.unit(5 + 4 / 12, "feet"),
  22976. default: true
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22982. {
  22983. upright: {
  22984. height: math.unit(6, "meters"),
  22985. weight: math.unit(4000, "kg"),
  22986. name: "Upright",
  22987. image: {
  22988. source: "./media/characters/ruin/upright.svg",
  22989. extra: 668 / 661,
  22990. bottom: 42 / 799.8396
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Normal",
  22997. height: math.unit(6, "meters"),
  22998. default: true
  22999. },
  23000. ]
  23001. ))
  23002. characterMakers.push(() => makeCharacter(
  23003. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23004. {
  23005. front: {
  23006. height: math.unit(5, "feet"),
  23007. weight: math.unit(106, "lb"),
  23008. name: "Front",
  23009. image: {
  23010. source: "./media/characters/robin/front.svg",
  23011. extra: 862 / 799,
  23012. bottom: 42.4 / 914.8856
  23013. }
  23014. },
  23015. },
  23016. [
  23017. {
  23018. name: "Normal",
  23019. height: math.unit(5, "feet"),
  23020. default: true
  23021. },
  23022. ]
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23026. {
  23027. side: {
  23028. height: math.unit(3, "feet"),
  23029. weight: math.unit(225, "lb"),
  23030. name: "Side",
  23031. image: {
  23032. source: "./media/characters/saian/side.svg",
  23033. extra: 566 / 356,
  23034. bottom: 79.7 / 643
  23035. }
  23036. },
  23037. maw: {
  23038. height: math.unit(2.85, "feet"),
  23039. name: "Maw",
  23040. image: {
  23041. source: "./media/characters/saian/maw.svg"
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Normal",
  23048. height: math.unit(3, "feet"),
  23049. default: true
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23055. {
  23056. side: {
  23057. height: math.unit(8, "feet"),
  23058. weight: math.unit(300, "lb"),
  23059. name: "Side",
  23060. image: {
  23061. source: "./media/characters/equus-silvermane/side.svg",
  23062. extra: 2176 / 2050,
  23063. bottom: 65.7 / 2245
  23064. }
  23065. },
  23066. front: {
  23067. height: math.unit(8, "feet"),
  23068. weight: math.unit(300, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/equus-silvermane/front.svg",
  23072. extra: 4633 / 4400,
  23073. bottom: 71.3 / 4706.915
  23074. }
  23075. },
  23076. sideStepping: {
  23077. height: math.unit(8, "feet"),
  23078. weight: math.unit(300, "lb"),
  23079. name: "Side (Stepping)",
  23080. image: {
  23081. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23082. extra: 1968 / 1860,
  23083. bottom: 16.4 / 1989
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Normal",
  23090. height: math.unit(8, "feet")
  23091. },
  23092. {
  23093. name: "Minimacro",
  23094. height: math.unit(75, "feet"),
  23095. default: true
  23096. },
  23097. {
  23098. name: "Macro",
  23099. height: math.unit(150, "feet")
  23100. },
  23101. {
  23102. name: "Macro+",
  23103. height: math.unit(1000, "feet")
  23104. },
  23105. {
  23106. name: "Megamacro",
  23107. height: math.unit(1, "mile")
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23113. {
  23114. side: {
  23115. height: math.unit(20, "feet"),
  23116. weight: math.unit(30000, "kg"),
  23117. name: "Side",
  23118. image: {
  23119. source: "./media/characters/windar/side.svg",
  23120. extra: 1491 / 1248,
  23121. bottom: 82.56 / 1568
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Normal",
  23128. height: math.unit(20, "feet"),
  23129. default: true
  23130. },
  23131. ]
  23132. ))
  23133. characterMakers.push(() => makeCharacter(
  23134. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23135. {
  23136. side: {
  23137. height: math.unit(15.66, "feet"),
  23138. weight: math.unit(150, "lb"),
  23139. name: "Side",
  23140. image: {
  23141. source: "./media/characters/melody/side.svg",
  23142. extra: 1097 / 944,
  23143. bottom: 11.8 / 1109
  23144. }
  23145. },
  23146. sideOutfit: {
  23147. height: math.unit(15.66, "feet"),
  23148. weight: math.unit(150, "lb"),
  23149. name: "Side (Outfit)",
  23150. image: {
  23151. source: "./media/characters/melody/side-outfit.svg",
  23152. extra: 1097 / 944,
  23153. bottom: 11.8 / 1109
  23154. }
  23155. },
  23156. },
  23157. [
  23158. {
  23159. name: "Normal",
  23160. height: math.unit(15.66, "feet"),
  23161. default: true
  23162. },
  23163. ]
  23164. ))
  23165. characterMakers.push(() => makeCharacter(
  23166. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23167. {
  23168. armoredFront: {
  23169. height: math.unit(8, "feet"),
  23170. weight: math.unit(325, "lb"),
  23171. name: "Front",
  23172. image: {
  23173. source: "./media/characters/windera/armored-front.svg",
  23174. extra: 1830/1598,
  23175. bottom: 151/1981
  23176. },
  23177. form: "armored",
  23178. default: true
  23179. },
  23180. macroFront: {
  23181. height: math.unit(70, "feet"),
  23182. weight: math.unit(315453, "lb"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/windera/macro-front.svg",
  23186. extra: 963/883,
  23187. bottom: 23/986
  23188. },
  23189. form: "macro",
  23190. default: true
  23191. },
  23192. },
  23193. [
  23194. {
  23195. name: "Normal",
  23196. height: math.unit(8, "feet"),
  23197. default: true,
  23198. form: "armored"
  23199. },
  23200. {
  23201. name: "Normal",
  23202. height: math.unit(70, "feet"),
  23203. default: true,
  23204. form: "macro"
  23205. },
  23206. ],
  23207. {
  23208. "armored": {
  23209. name: "Armored",
  23210. default: true
  23211. },
  23212. "macro": {
  23213. name: "Macro",
  23214. },
  23215. }
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23219. {
  23220. front: {
  23221. height: math.unit(28.75, "feet"),
  23222. weight: math.unit(2000, "kg"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/sonear/front.svg",
  23226. extra: 1041.1 / 964.9,
  23227. bottom: 53.7 / 1096.6
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Normal",
  23234. height: math.unit(28.75, "feet"),
  23235. default: true
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23241. {
  23242. side: {
  23243. height: math.unit(25.5, "feet"),
  23244. weight: math.unit(23000, "kg"),
  23245. name: "Side",
  23246. image: {
  23247. source: "./media/characters/kanara/side.svg"
  23248. }
  23249. },
  23250. },
  23251. [
  23252. {
  23253. name: "Normal",
  23254. height: math.unit(25.5, "feet"),
  23255. default: true
  23256. },
  23257. ]
  23258. ))
  23259. characterMakers.push(() => makeCharacter(
  23260. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23261. {
  23262. side: {
  23263. height: math.unit(10, "feet"),
  23264. weight: math.unit(1000, "kg"),
  23265. name: "Side",
  23266. image: {
  23267. source: "./media/characters/ereus/side.svg",
  23268. extra: 1157 / 959,
  23269. bottom: 153 / 1312.5
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Normal",
  23276. height: math.unit(10, "feet"),
  23277. default: true
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23283. {
  23284. side: {
  23285. height: math.unit(4.5, "feet"),
  23286. weight: math.unit(500, "lb"),
  23287. name: "Side",
  23288. image: {
  23289. source: "./media/characters/e-ter/side.svg",
  23290. extra: 1550 / 1248,
  23291. bottom: 146 / 1694
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Normal",
  23298. height: math.unit(4.5, "feet"),
  23299. default: true
  23300. },
  23301. ]
  23302. ))
  23303. characterMakers.push(() => makeCharacter(
  23304. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23305. {
  23306. side: {
  23307. height: math.unit(9.7, "feet"),
  23308. weight: math.unit(4000, "kg"),
  23309. name: "Side",
  23310. image: {
  23311. source: "./media/characters/yamie/side.svg"
  23312. }
  23313. },
  23314. },
  23315. [
  23316. {
  23317. name: "Normal",
  23318. height: math.unit(9.7, "feet"),
  23319. default: true
  23320. },
  23321. ]
  23322. ))
  23323. characterMakers.push(() => makeCharacter(
  23324. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23325. {
  23326. front: {
  23327. height: math.unit(50, "feet"),
  23328. weight: math.unit(50000, "kg"),
  23329. name: "Front",
  23330. image: {
  23331. source: "./media/characters/anders/front.svg",
  23332. extra: 570 / 539,
  23333. bottom: 14.7 / 586.7
  23334. }
  23335. },
  23336. },
  23337. [
  23338. {
  23339. name: "Large",
  23340. height: math.unit(50, "feet")
  23341. },
  23342. {
  23343. name: "Macro",
  23344. height: math.unit(2000, "feet"),
  23345. default: true
  23346. },
  23347. {
  23348. name: "Megamacro",
  23349. height: math.unit(12, "miles")
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23355. {
  23356. front: {
  23357. height: math.unit(7 + 2 / 12, "feet"),
  23358. weight: math.unit(300, "lb"),
  23359. name: "Front",
  23360. image: {
  23361. source: "./media/characters/reban/front.svg",
  23362. extra: 1287/1212,
  23363. bottom: 148/1435
  23364. }
  23365. },
  23366. head: {
  23367. height: math.unit(1.95, "feet"),
  23368. name: "Head",
  23369. image: {
  23370. source: "./media/characters/reban/head.svg"
  23371. }
  23372. },
  23373. maw: {
  23374. height: math.unit(0.95, "feet"),
  23375. name: "Maw",
  23376. image: {
  23377. source: "./media/characters/reban/maw.svg"
  23378. }
  23379. },
  23380. foot: {
  23381. height: math.unit(1.65, "feet"),
  23382. name: "Foot",
  23383. image: {
  23384. source: "./media/characters/reban/foot.svg"
  23385. }
  23386. },
  23387. dick: {
  23388. height: math.unit(7 / 5, "feet"),
  23389. name: "Dick",
  23390. image: {
  23391. source: "./media/characters/reban/dick.svg"
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Natural Height",
  23398. height: math.unit(7 + 2 / 12, "feet")
  23399. },
  23400. {
  23401. name: "Macro",
  23402. height: math.unit(500, "feet"),
  23403. default: true
  23404. },
  23405. {
  23406. name: "Canon Height",
  23407. height: math.unit(50, "AU")
  23408. },
  23409. ]
  23410. ))
  23411. characterMakers.push(() => makeCharacter(
  23412. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23413. {
  23414. front: {
  23415. height: math.unit(6, "feet"),
  23416. weight: math.unit(150, "lb"),
  23417. name: "Front",
  23418. image: {
  23419. source: "./media/characters/terrance-keayes/front.svg",
  23420. extra: 1.005,
  23421. bottom: 151 / 1615
  23422. }
  23423. },
  23424. side: {
  23425. height: math.unit(6, "feet"),
  23426. weight: math.unit(150, "lb"),
  23427. name: "Side",
  23428. image: {
  23429. source: "./media/characters/terrance-keayes/side.svg",
  23430. extra: 1.005,
  23431. bottom: 129.4 / 1544
  23432. }
  23433. },
  23434. back: {
  23435. height: math.unit(6, "feet"),
  23436. weight: math.unit(150, "lb"),
  23437. name: "Back",
  23438. image: {
  23439. source: "./media/characters/terrance-keayes/back.svg",
  23440. extra: 1.005,
  23441. bottom: 58.4 / 1557.3
  23442. }
  23443. },
  23444. dick: {
  23445. height: math.unit(6 * 0.208, "feet"),
  23446. name: "Dick",
  23447. image: {
  23448. source: "./media/characters/terrance-keayes/dick.svg"
  23449. }
  23450. },
  23451. },
  23452. [
  23453. {
  23454. name: "Canon Height",
  23455. height: math.unit(35, "miles"),
  23456. default: true
  23457. },
  23458. ]
  23459. ))
  23460. characterMakers.push(() => makeCharacter(
  23461. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23462. {
  23463. front: {
  23464. height: math.unit(6, "feet"),
  23465. weight: math.unit(150, "lb"),
  23466. name: "Front",
  23467. image: {
  23468. source: "./media/characters/ofelia/front.svg",
  23469. extra: 1130/1117,
  23470. bottom: 91/1221
  23471. }
  23472. },
  23473. back: {
  23474. height: math.unit(6, "feet"),
  23475. weight: math.unit(150, "lb"),
  23476. name: "Back",
  23477. image: {
  23478. source: "./media/characters/ofelia/back.svg",
  23479. extra: 1172/1159,
  23480. bottom: 28/1200
  23481. }
  23482. },
  23483. maw: {
  23484. height: math.unit(1, "feet"),
  23485. name: "Maw",
  23486. image: {
  23487. source: "./media/characters/ofelia/maw.svg"
  23488. }
  23489. },
  23490. foot: {
  23491. height: math.unit(1.949, "feet"),
  23492. name: "Foot",
  23493. image: {
  23494. source: "./media/characters/ofelia/foot.svg"
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Canon Height",
  23501. height: math.unit(2000, "miles"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(6, "feet"),
  23511. weight: math.unit(150, "lb"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/samuel/front.svg",
  23515. extra: 265 / 258,
  23516. bottom: 2 / 266.1566
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Macro",
  23523. height: math.unit(100, "feet"),
  23524. default: true
  23525. },
  23526. {
  23527. name: "Full Size",
  23528. height: math.unit(1000, "miles")
  23529. },
  23530. ]
  23531. ))
  23532. characterMakers.push(() => makeCharacter(
  23533. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23534. {
  23535. front: {
  23536. height: math.unit(6, "feet"),
  23537. weight: math.unit(300, "lb"),
  23538. name: "Front",
  23539. image: {
  23540. source: "./media/characters/beishir-kiel/front.svg",
  23541. extra: 569 / 547,
  23542. bottom: 41.9 / 609
  23543. }
  23544. },
  23545. maw: {
  23546. height: math.unit(6 * 0.202, "feet"),
  23547. name: "Maw",
  23548. image: {
  23549. source: "./media/characters/beishir-kiel/maw.svg"
  23550. }
  23551. },
  23552. },
  23553. [
  23554. {
  23555. name: "Macro",
  23556. height: math.unit(300, "feet"),
  23557. default: true
  23558. },
  23559. ]
  23560. ))
  23561. characterMakers.push(() => makeCharacter(
  23562. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23563. {
  23564. front: {
  23565. height: math.unit(5 + 7/12, "feet"),
  23566. weight: math.unit(120, "lb"),
  23567. name: "Front",
  23568. image: {
  23569. source: "./media/characters/logan-grey/front.svg",
  23570. extra: 1836/1738,
  23571. bottom: 108/1944
  23572. }
  23573. },
  23574. back: {
  23575. height: math.unit(5 + 7/12, "feet"),
  23576. weight: math.unit(120, "lb"),
  23577. name: "Back",
  23578. image: {
  23579. source: "./media/characters/logan-grey/back.svg",
  23580. extra: 1880/1794,
  23581. bottom: 24/1904
  23582. }
  23583. },
  23584. frontSfw: {
  23585. height: math.unit(5 + 7/12, "feet"),
  23586. weight: math.unit(120, "lb"),
  23587. name: "Front (SFW)",
  23588. image: {
  23589. source: "./media/characters/logan-grey/front-sfw.svg",
  23590. extra: 1836/1738,
  23591. bottom: 108/1944
  23592. }
  23593. },
  23594. backSfw: {
  23595. height: math.unit(5 + 7/12, "feet"),
  23596. weight: math.unit(120, "lb"),
  23597. name: "Back (SFW)",
  23598. image: {
  23599. source: "./media/characters/logan-grey/back-sfw.svg",
  23600. extra: 1880/1794,
  23601. bottom: 24/1904
  23602. }
  23603. },
  23604. hands: {
  23605. height: math.unit(0.84, "feet"),
  23606. name: "Hands",
  23607. image: {
  23608. source: "./media/characters/logan-grey/hands.svg"
  23609. }
  23610. },
  23611. paws: {
  23612. height: math.unit(0.72, "feet"),
  23613. name: "Paws",
  23614. image: {
  23615. source: "./media/characters/logan-grey/paws.svg"
  23616. }
  23617. },
  23618. cock: {
  23619. height: math.unit(1.45, "feet"),
  23620. name: "Cock",
  23621. image: {
  23622. source: "./media/characters/logan-grey/cock.svg"
  23623. }
  23624. },
  23625. cockAlt: {
  23626. height: math.unit(1.437, "feet"),
  23627. name: "Cock (alt)",
  23628. image: {
  23629. source: "./media/characters/logan-grey/cock-alt.svg"
  23630. }
  23631. },
  23632. },
  23633. [
  23634. {
  23635. name: "Normal",
  23636. height: math.unit(5 + 8 / 12, "feet")
  23637. },
  23638. {
  23639. name: "The 500 Foot Femboy",
  23640. height: math.unit(500, "feet"),
  23641. default: true
  23642. },
  23643. {
  23644. name: "Megmacro",
  23645. height: math.unit(20, "miles")
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(8 + 2 / 12, "feet"),
  23654. weight: math.unit(275, "lb"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/draganta/front.svg",
  23658. extra: 1177 / 1135,
  23659. bottom: 33.46 / 1212.1
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Normal",
  23666. height: math.unit(8 + 6 / 12, "feet"),
  23667. default: true
  23668. },
  23669. {
  23670. name: "Macro",
  23671. height: math.unit(150, "feet")
  23672. },
  23673. {
  23674. name: "Megamacro",
  23675. height: math.unit(1000, "miles")
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(1.72, "m"),
  23684. weight: math.unit(80, "lb"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/voski/front.svg",
  23688. extra: 2076.22 / 2022.4,
  23689. bottom: 102.7 / 2177.3866
  23690. }
  23691. },
  23692. frontFlaccid: {
  23693. height: math.unit(1.72, "m"),
  23694. weight: math.unit(80, "lb"),
  23695. name: "Front (Flaccid)",
  23696. image: {
  23697. source: "./media/characters/voski/front-flaccid.svg",
  23698. extra: 2076.22 / 2022.4,
  23699. bottom: 102.7 / 2177.3866
  23700. }
  23701. },
  23702. frontErect: {
  23703. height: math.unit(1.72, "m"),
  23704. weight: math.unit(80, "lb"),
  23705. name: "Front (Erect)",
  23706. image: {
  23707. source: "./media/characters/voski/front-erect.svg",
  23708. extra: 2076.22 / 2022.4,
  23709. bottom: 102.7 / 2177.3866
  23710. }
  23711. },
  23712. back: {
  23713. height: math.unit(1.72, "m"),
  23714. weight: math.unit(80, "lb"),
  23715. name: "Back",
  23716. image: {
  23717. source: "./media/characters/voski/back.svg",
  23718. extra: 2104 / 2051,
  23719. bottom: 10.45 / 2113.63
  23720. }
  23721. },
  23722. },
  23723. [
  23724. {
  23725. name: "Normal",
  23726. height: math.unit(1.72, "m")
  23727. },
  23728. {
  23729. name: "Macro",
  23730. height: math.unit(55, "m"),
  23731. default: true
  23732. },
  23733. {
  23734. name: "Macro+",
  23735. height: math.unit(300, "m")
  23736. },
  23737. {
  23738. name: "Macro++",
  23739. height: math.unit(700, "m")
  23740. },
  23741. {
  23742. name: "Macro+++",
  23743. height: math.unit(4500, "m")
  23744. },
  23745. {
  23746. name: "Macro++++",
  23747. height: math.unit(45, "km")
  23748. },
  23749. {
  23750. name: "Macro+++++",
  23751. height: math.unit(1220, "km")
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(2.3, "m"),
  23760. weight: math.unit(304, "kg"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/icowom-lee/front.svg",
  23764. extra: 985 / 955,
  23765. bottom: 25.4 / 1012
  23766. }
  23767. },
  23768. fronttentacles: {
  23769. height: math.unit(2.3, "m"),
  23770. weight: math.unit(304, "kg"),
  23771. name: "Front-tentacles",
  23772. image: {
  23773. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23774. extra: 985 / 955,
  23775. bottom: 25.4 / 1012
  23776. }
  23777. },
  23778. back: {
  23779. height: math.unit(2.3, "m"),
  23780. weight: math.unit(304, "kg"),
  23781. name: "Back",
  23782. image: {
  23783. source: "./media/characters/icowom-lee/back.svg",
  23784. extra: 975 / 954,
  23785. bottom: 9.5 / 985
  23786. }
  23787. },
  23788. backtentacles: {
  23789. height: math.unit(2.3, "m"),
  23790. weight: math.unit(304, "kg"),
  23791. name: "Back-tentacles",
  23792. image: {
  23793. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23794. extra: 975 / 954,
  23795. bottom: 9.5 / 985
  23796. }
  23797. },
  23798. frontDressed: {
  23799. height: math.unit(2.3, "m"),
  23800. weight: math.unit(304, "kg"),
  23801. name: "Front (Dressed)",
  23802. image: {
  23803. source: "./media/characters/icowom-lee/front-dressed.svg",
  23804. extra: 3076 / 2933,
  23805. bottom: 51.4 / 3125.1889
  23806. }
  23807. },
  23808. rump: {
  23809. height: math.unit(0.776, "meters"),
  23810. name: "Rump",
  23811. image: {
  23812. source: "./media/characters/icowom-lee/rump.svg"
  23813. }
  23814. },
  23815. genitals: {
  23816. height: math.unit(0.78, "meters"),
  23817. name: "Genitals",
  23818. image: {
  23819. source: "./media/characters/icowom-lee/genitals.svg"
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Normal",
  23826. height: math.unit(2.3, "meters"),
  23827. default: true
  23828. },
  23829. {
  23830. name: "Macro",
  23831. height: math.unit(94, "meters"),
  23832. default: true
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23838. {
  23839. front: {
  23840. height: math.unit(22, "meters"),
  23841. weight: math.unit(21000, "kg"),
  23842. name: "Front",
  23843. image: {
  23844. source: "./media/characters/shock-diamond/front.svg",
  23845. extra: 2204 / 2053,
  23846. bottom: 65 / 2239.47
  23847. }
  23848. },
  23849. frontNude: {
  23850. height: math.unit(22, "meters"),
  23851. weight: math.unit(21000, "kg"),
  23852. name: "Front (Nude)",
  23853. image: {
  23854. source: "./media/characters/shock-diamond/front-nude.svg",
  23855. extra: 2514 / 2285,
  23856. bottom: 13 / 2527.56
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(3, "meters")
  23864. },
  23865. {
  23866. name: "Macro",
  23867. height: math.unit(22, "meters"),
  23868. default: true
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23874. {
  23875. front: {
  23876. height: math.unit(5 + 4 / 12, "feet"),
  23877. weight: math.unit(120, "lb"),
  23878. name: "Front",
  23879. image: {
  23880. source: "./media/characters/rory/front.svg",
  23881. extra: 1318/1241,
  23882. bottom: 42/1360
  23883. }
  23884. },
  23885. back: {
  23886. height: math.unit(5 + 4 / 12, "feet"),
  23887. weight: math.unit(120, "lb"),
  23888. name: "Back",
  23889. image: {
  23890. source: "./media/characters/rory/back.svg",
  23891. extra: 1318/1241,
  23892. bottom: 42/1360
  23893. }
  23894. },
  23895. butt: {
  23896. height: math.unit(1.74, "feet"),
  23897. name: "Butt",
  23898. image: {
  23899. source: "./media/characters/rory/butt.svg"
  23900. }
  23901. },
  23902. dick: {
  23903. height: math.unit(1.02, "feet"),
  23904. name: "Dick",
  23905. image: {
  23906. source: "./media/characters/rory/dick.svg"
  23907. }
  23908. },
  23909. paws: {
  23910. height: math.unit(1, "feet"),
  23911. name: "Paws",
  23912. image: {
  23913. source: "./media/characters/rory/paws.svg"
  23914. }
  23915. },
  23916. frontAlt: {
  23917. height: math.unit(5 + 4 / 12, "feet"),
  23918. weight: math.unit(120, "lb"),
  23919. name: "Front (Alt)",
  23920. image: {
  23921. source: "./media/characters/rory/front-alt.svg",
  23922. extra: 589 / 556,
  23923. bottom: 45.7 / 635.76
  23924. }
  23925. },
  23926. frontAltNude: {
  23927. height: math.unit(5 + 4 / 12, "feet"),
  23928. weight: math.unit(120, "lb"),
  23929. name: "Front (Alt, Nude)",
  23930. image: {
  23931. source: "./media/characters/rory/front-alt-nude.svg",
  23932. extra: 589 / 556,
  23933. bottom: 45.7 / 635.76
  23934. }
  23935. },
  23936. side: {
  23937. height: math.unit(5 + 4 / 12, "feet"),
  23938. weight: math.unit(120, "lb"),
  23939. name: "Side",
  23940. image: {
  23941. source: "./media/characters/rory/side.svg",
  23942. extra: 597 / 564,
  23943. bottom: 55 / 653
  23944. }
  23945. },
  23946. backAlt: {
  23947. height: math.unit(5 + 4 / 12, "feet"),
  23948. weight: math.unit(120, "lb"),
  23949. name: "Back (Alt)",
  23950. image: {
  23951. source: "./media/characters/rory/back-alt.svg",
  23952. extra: 620 / 585,
  23953. bottom: 8.86 / 630.43
  23954. }
  23955. },
  23956. dickAlt: {
  23957. height: math.unit(0.86, "feet"),
  23958. name: "Dick (Alt)",
  23959. image: {
  23960. source: "./media/characters/rory/dick-alt.svg"
  23961. }
  23962. },
  23963. },
  23964. [
  23965. {
  23966. name: "Normal",
  23967. height: math.unit(5 + 4 / 12, "feet"),
  23968. default: true
  23969. },
  23970. {
  23971. name: "Macro",
  23972. height: math.unit(100, "feet")
  23973. },
  23974. {
  23975. name: "Macro+",
  23976. height: math.unit(140, "feet")
  23977. },
  23978. {
  23979. name: "Macro++",
  23980. height: math.unit(300, "feet")
  23981. },
  23982. ]
  23983. ))
  23984. characterMakers.push(() => makeCharacter(
  23985. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23986. {
  23987. front: {
  23988. height: math.unit(5 + 9 / 12, "feet"),
  23989. weight: math.unit(190, "lb"),
  23990. name: "Front",
  23991. image: {
  23992. source: "./media/characters/sprisk/front.svg",
  23993. extra: 1225 / 1180,
  23994. bottom: 42.7 / 1266.4
  23995. }
  23996. },
  23997. frontNsfw: {
  23998. height: math.unit(5 + 9 / 12, "feet"),
  23999. weight: math.unit(190, "lb"),
  24000. name: "Front (NSFW)",
  24001. image: {
  24002. source: "./media/characters/sprisk/front-nsfw.svg",
  24003. extra: 1225 / 1180,
  24004. bottom: 42.7 / 1266.4
  24005. }
  24006. },
  24007. back: {
  24008. height: math.unit(5 + 9 / 12, "feet"),
  24009. weight: math.unit(190, "lb"),
  24010. name: "Back",
  24011. image: {
  24012. source: "./media/characters/sprisk/back.svg",
  24013. extra: 1247 / 1200,
  24014. bottom: 5.6 / 1253.04
  24015. }
  24016. },
  24017. },
  24018. [
  24019. {
  24020. name: "Tiny",
  24021. height: math.unit(2, "inches")
  24022. },
  24023. {
  24024. name: "Normal",
  24025. height: math.unit(5 + 9 / 12, "feet"),
  24026. default: true
  24027. },
  24028. {
  24029. name: "Mini Macro",
  24030. height: math.unit(18, "feet")
  24031. },
  24032. {
  24033. name: "Macro",
  24034. height: math.unit(100, "feet")
  24035. },
  24036. {
  24037. name: "MACRO",
  24038. height: math.unit(50, "miles")
  24039. },
  24040. {
  24041. name: "M A C R O",
  24042. height: math.unit(300, "miles")
  24043. },
  24044. ]
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24048. {
  24049. side: {
  24050. height: math.unit(15.6, "meters"),
  24051. weight: math.unit(700000, "kg"),
  24052. name: "Side",
  24053. image: {
  24054. source: "./media/characters/bunsen/side.svg",
  24055. extra: 1644 / 358
  24056. }
  24057. },
  24058. foot: {
  24059. height: math.unit(1.611 * 1644 / 358, "meter"),
  24060. name: "Foot",
  24061. image: {
  24062. source: "./media/characters/bunsen/foot.svg"
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Small",
  24069. height: math.unit(10, "feet")
  24070. },
  24071. {
  24072. name: "Normal",
  24073. height: math.unit(15.6, "meters"),
  24074. default: true
  24075. },
  24076. ]
  24077. ))
  24078. characterMakers.push(() => makeCharacter(
  24079. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24080. {
  24081. front: {
  24082. height: math.unit(4 + 11 / 12, "feet"),
  24083. weight: math.unit(140, "lb"),
  24084. name: "Front",
  24085. image: {
  24086. source: "./media/characters/sesh/front.svg",
  24087. extra: 3420 / 3231,
  24088. bottom: 72 / 3949.5
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Normal",
  24095. height: math.unit(4 + 11 / 12, "feet")
  24096. },
  24097. {
  24098. name: "Grown",
  24099. height: math.unit(15, "feet"),
  24100. default: true
  24101. },
  24102. {
  24103. name: "Macro",
  24104. height: math.unit(1500, "feet")
  24105. },
  24106. {
  24107. name: "Megamacro",
  24108. height: math.unit(30, "miles")
  24109. },
  24110. {
  24111. name: "Continental",
  24112. height: math.unit(3000, "miles")
  24113. },
  24114. {
  24115. name: "Gravity Mass",
  24116. height: math.unit(300000, "miles")
  24117. },
  24118. {
  24119. name: "Planet Buster",
  24120. height: math.unit(30000000, "miles")
  24121. },
  24122. {
  24123. name: "Big",
  24124. height: math.unit(3000000000, "miles")
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24130. {
  24131. front: {
  24132. height: math.unit(9, "feet"),
  24133. weight: math.unit(350, "lb"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/pepper/front.svg",
  24137. extra: 1448 / 1312,
  24138. bottom: 9.4 / 1457.88
  24139. }
  24140. },
  24141. back: {
  24142. height: math.unit(9, "feet"),
  24143. weight: math.unit(350, "lb"),
  24144. name: "Back",
  24145. image: {
  24146. source: "./media/characters/pepper/back.svg",
  24147. extra: 1423 / 1300,
  24148. bottom: 4.6 / 1429
  24149. }
  24150. },
  24151. maw: {
  24152. height: math.unit(0.932, "feet"),
  24153. name: "Maw",
  24154. image: {
  24155. source: "./media/characters/pepper/maw.svg"
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Normal",
  24162. height: math.unit(9, "feet"),
  24163. default: true
  24164. },
  24165. ]
  24166. ))
  24167. characterMakers.push(() => makeCharacter(
  24168. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24169. {
  24170. front: {
  24171. height: math.unit(6, "feet"),
  24172. weight: math.unit(150, "lb"),
  24173. name: "Front",
  24174. image: {
  24175. source: "./media/characters/maelstrom/front.svg",
  24176. extra: 2100 / 1883,
  24177. bottom: 94 / 2196.7
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Less Kaiju",
  24184. height: math.unit(200, "feet")
  24185. },
  24186. {
  24187. name: "Kaiju",
  24188. height: math.unit(400, "feet"),
  24189. default: true
  24190. },
  24191. {
  24192. name: "Kaiju-er",
  24193. height: math.unit(600, "feet")
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24199. {
  24200. front: {
  24201. height: math.unit(6 + 5 / 12, "feet"),
  24202. weight: math.unit(180, "lb"),
  24203. name: "Front",
  24204. image: {
  24205. source: "./media/characters/lexir/front.svg",
  24206. extra: 180 / 172,
  24207. bottom: 12 / 192
  24208. }
  24209. },
  24210. back: {
  24211. height: math.unit(6 + 5 / 12, "feet"),
  24212. weight: math.unit(180, "lb"),
  24213. name: "Back",
  24214. image: {
  24215. source: "./media/characters/lexir/back.svg",
  24216. extra: 1273/1201,
  24217. bottom: 39/1312
  24218. }
  24219. },
  24220. },
  24221. [
  24222. {
  24223. name: "Very Smal",
  24224. height: math.unit(1, "nm")
  24225. },
  24226. {
  24227. name: "Normal",
  24228. height: math.unit(6 + 5 / 12, "feet"),
  24229. default: true
  24230. },
  24231. {
  24232. name: "Macro",
  24233. height: math.unit(1, "mile")
  24234. },
  24235. {
  24236. name: "Megamacro",
  24237. height: math.unit(50, "miles")
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24243. {
  24244. front: {
  24245. height: math.unit(1.5, "meters"),
  24246. weight: math.unit(100, "lb"),
  24247. name: "Front",
  24248. image: {
  24249. source: "./media/characters/maksio/front.svg",
  24250. extra: 1549 / 1531,
  24251. bottom: 123.7 / 1674.5429
  24252. }
  24253. },
  24254. back: {
  24255. height: math.unit(1.5, "meters"),
  24256. weight: math.unit(100, "lb"),
  24257. name: "Back",
  24258. image: {
  24259. source: "./media/characters/maksio/back.svg",
  24260. extra: 1541 / 1509,
  24261. bottom: 97 / 1639
  24262. }
  24263. },
  24264. hand: {
  24265. height: math.unit(0.621, "feet"),
  24266. name: "Hand",
  24267. image: {
  24268. source: "./media/characters/maksio/hand.svg"
  24269. }
  24270. },
  24271. foot: {
  24272. height: math.unit(1.611, "feet"),
  24273. name: "Foot",
  24274. image: {
  24275. source: "./media/characters/maksio/foot.svg"
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Shrunken",
  24282. height: math.unit(10, "cm")
  24283. },
  24284. {
  24285. name: "Normal",
  24286. height: math.unit(150, "cm"),
  24287. default: true
  24288. },
  24289. ]
  24290. ))
  24291. characterMakers.push(() => makeCharacter(
  24292. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24293. {
  24294. front: {
  24295. height: math.unit(100, "feet"),
  24296. name: "Front",
  24297. image: {
  24298. source: "./media/characters/erza-bear/front.svg",
  24299. extra: 2449 / 2390,
  24300. bottom: 46 / 2494
  24301. }
  24302. },
  24303. back: {
  24304. height: math.unit(100, "feet"),
  24305. name: "Back",
  24306. image: {
  24307. source: "./media/characters/erza-bear/back.svg",
  24308. extra: 2489 / 2430,
  24309. bottom: 85.4 / 2480
  24310. }
  24311. },
  24312. tail: {
  24313. height: math.unit(42, "feet"),
  24314. name: "Tail",
  24315. image: {
  24316. source: "./media/characters/erza-bear/tail.svg"
  24317. }
  24318. },
  24319. tongue: {
  24320. height: math.unit(8, "feet"),
  24321. name: "Tongue",
  24322. image: {
  24323. source: "./media/characters/erza-bear/tongue.svg"
  24324. }
  24325. },
  24326. dick: {
  24327. height: math.unit(10.5, "feet"),
  24328. name: "Dick",
  24329. image: {
  24330. source: "./media/characters/erza-bear/dick.svg"
  24331. }
  24332. },
  24333. dickVertical: {
  24334. height: math.unit(16.9, "feet"),
  24335. name: "Dick (Vertical)",
  24336. image: {
  24337. source: "./media/characters/erza-bear/dick-vertical.svg"
  24338. }
  24339. },
  24340. },
  24341. [
  24342. {
  24343. name: "Macro",
  24344. height: math.unit(100, "feet"),
  24345. default: true
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24351. {
  24352. front: {
  24353. height: math.unit(172, "cm"),
  24354. weight: math.unit(73, "kg"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/violet-flor/front.svg",
  24358. extra: 1530 / 1442,
  24359. bottom: 61.9 / 1588.8
  24360. }
  24361. },
  24362. back: {
  24363. height: math.unit(180, "cm"),
  24364. weight: math.unit(73, "kg"),
  24365. name: "Back",
  24366. image: {
  24367. source: "./media/characters/violet-flor/back.svg",
  24368. extra: 1692 / 1630,
  24369. bottom: 20 / 1712
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(172, "cm"),
  24377. default: true
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24383. {
  24384. front: {
  24385. height: math.unit(6, "feet"),
  24386. weight: math.unit(220, "lb"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/lynn-rhea/front.svg",
  24390. extra: 310 / 273
  24391. }
  24392. },
  24393. back: {
  24394. height: math.unit(6, "feet"),
  24395. weight: math.unit(220, "lb"),
  24396. name: "Back",
  24397. image: {
  24398. source: "./media/characters/lynn-rhea/back.svg",
  24399. extra: 310 / 273
  24400. }
  24401. },
  24402. dicks: {
  24403. height: math.unit(0.9, "feet"),
  24404. name: "Dicks",
  24405. image: {
  24406. source: "./media/characters/lynn-rhea/dicks.svg"
  24407. }
  24408. },
  24409. slit: {
  24410. height: math.unit(0.4, "feet"),
  24411. name: "Slit",
  24412. image: {
  24413. source: "./media/characters/lynn-rhea/slit.svg"
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Micro",
  24420. height: math.unit(1, "inch")
  24421. },
  24422. {
  24423. name: "Macro",
  24424. height: math.unit(60, "feet"),
  24425. default: true
  24426. },
  24427. {
  24428. name: "Megamacro",
  24429. height: math.unit(2, "miles")
  24430. },
  24431. {
  24432. name: "Gigamacro",
  24433. height: math.unit(3, "earths")
  24434. },
  24435. {
  24436. name: "Galactic",
  24437. height: math.unit(0.8, "galaxies")
  24438. },
  24439. ]
  24440. ))
  24441. characterMakers.push(() => makeCharacter(
  24442. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24443. {
  24444. front: {
  24445. height: math.unit(1600, "feet"),
  24446. weight: math.unit(85758785169, "kg"),
  24447. name: "Front",
  24448. image: {
  24449. source: "./media/characters/valathos/front.svg",
  24450. extra: 1451 / 1339
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Macro",
  24457. height: math.unit(1600, "feet"),
  24458. default: true
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24464. {
  24465. front: {
  24466. height: math.unit(7 + 5 / 12, "feet"),
  24467. weight: math.unit(300, "lb"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/azula/front.svg",
  24471. extra: 3208 / 2880,
  24472. bottom: 80.2 / 3277
  24473. }
  24474. },
  24475. back: {
  24476. height: math.unit(7 + 5 / 12, "feet"),
  24477. weight: math.unit(300, "lb"),
  24478. name: "Back",
  24479. image: {
  24480. source: "./media/characters/azula/back.svg",
  24481. extra: 3169 / 2822,
  24482. bottom: 150.6 / 3321
  24483. }
  24484. },
  24485. },
  24486. [
  24487. {
  24488. name: "Normal",
  24489. height: math.unit(7 + 5 / 12, "feet"),
  24490. default: true
  24491. },
  24492. {
  24493. name: "Big",
  24494. height: math.unit(20, "feet")
  24495. },
  24496. ]
  24497. ))
  24498. characterMakers.push(() => makeCharacter(
  24499. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24500. {
  24501. front: {
  24502. height: math.unit(5 + 1 / 12, "feet"),
  24503. weight: math.unit(110, "lb"),
  24504. name: "Front",
  24505. image: {
  24506. source: "./media/characters/rupert/front.svg",
  24507. extra: 1549 / 1495,
  24508. bottom: 54.2 / 1604.4
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Normal",
  24515. height: math.unit(5 + 1 / 12, "feet"),
  24516. default: true
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24522. {
  24523. front: {
  24524. height: math.unit(8 + 4 / 12, "feet"),
  24525. weight: math.unit(350, "lb"),
  24526. name: "Front",
  24527. image: {
  24528. source: "./media/characters/sheera-castellar/front.svg",
  24529. extra: 1957 / 1894,
  24530. bottom: 26.97 / 1975.017
  24531. }
  24532. },
  24533. side: {
  24534. height: math.unit(8 + 4 / 12, "feet"),
  24535. weight: math.unit(350, "lb"),
  24536. name: "Side",
  24537. image: {
  24538. source: "./media/characters/sheera-castellar/side.svg",
  24539. extra: 1957 / 1894
  24540. }
  24541. },
  24542. back: {
  24543. height: math.unit(8 + 4 / 12, "feet"),
  24544. weight: math.unit(350, "lb"),
  24545. name: "Back",
  24546. image: {
  24547. source: "./media/characters/sheera-castellar/back.svg",
  24548. extra: 1957 / 1894
  24549. }
  24550. },
  24551. angled: {
  24552. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24553. weight: math.unit(350, "lb"),
  24554. name: "Angled",
  24555. image: {
  24556. source: "./media/characters/sheera-castellar/angled.svg",
  24557. extra: 1807 / 1707,
  24558. bottom: 68 / 1875
  24559. }
  24560. },
  24561. genitals: {
  24562. height: math.unit(2.2, "feet"),
  24563. name: "Genitals",
  24564. image: {
  24565. source: "./media/characters/sheera-castellar/genitals.svg"
  24566. }
  24567. },
  24568. taur: {
  24569. height: math.unit(10 + 6/12, "feet"),
  24570. name: "Taur",
  24571. image: {
  24572. source: "./media/characters/sheera-castellar/taur.svg",
  24573. extra: 2017/1909,
  24574. bottom: 185/2202
  24575. }
  24576. },
  24577. },
  24578. [
  24579. {
  24580. name: "Normal",
  24581. height: math.unit(8 + 4 / 12, "feet")
  24582. },
  24583. {
  24584. name: "Macro",
  24585. height: math.unit(150, "feet"),
  24586. default: true
  24587. },
  24588. {
  24589. name: "Macro+",
  24590. height: math.unit(800, "feet")
  24591. },
  24592. ]
  24593. ))
  24594. characterMakers.push(() => makeCharacter(
  24595. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24596. {
  24597. front: {
  24598. height: math.unit(6, "feet"),
  24599. weight: math.unit(150, "lb"),
  24600. name: "Front",
  24601. image: {
  24602. source: "./media/characters/jaipur/front.svg",
  24603. extra: 3860 / 3731,
  24604. bottom: 287 / 4140
  24605. }
  24606. },
  24607. back: {
  24608. height: math.unit(6, "feet"),
  24609. weight: math.unit(150, "lb"),
  24610. name: "Back",
  24611. image: {
  24612. source: "./media/characters/jaipur/back.svg",
  24613. extra: 1637/1561,
  24614. bottom: 154/1791
  24615. }
  24616. },
  24617. },
  24618. [
  24619. {
  24620. name: "Normal",
  24621. height: math.unit(1.85, "meters"),
  24622. default: true
  24623. },
  24624. {
  24625. name: "Macro",
  24626. height: math.unit(150, "meters")
  24627. },
  24628. {
  24629. name: "Macro+",
  24630. height: math.unit(0.5, "miles")
  24631. },
  24632. {
  24633. name: "Macro++",
  24634. height: math.unit(2.5, "miles")
  24635. },
  24636. {
  24637. name: "Macro+++",
  24638. height: math.unit(12, "miles")
  24639. },
  24640. {
  24641. name: "Macro++++",
  24642. height: math.unit(120, "miles")
  24643. },
  24644. {
  24645. name: "Macro+++++",
  24646. height: math.unit(1200, "miles")
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24652. {
  24653. front: {
  24654. height: math.unit(6, "feet"),
  24655. weight: math.unit(150, "lb"),
  24656. name: "Front",
  24657. image: {
  24658. source: "./media/characters/sheila-wolf/front.svg",
  24659. extra: 1931 / 1808,
  24660. bottom: 29.5 / 1960
  24661. }
  24662. },
  24663. dick: {
  24664. height: math.unit(1.464, "feet"),
  24665. name: "Dick",
  24666. image: {
  24667. source: "./media/characters/sheila-wolf/dick.svg"
  24668. }
  24669. },
  24670. muzzle: {
  24671. height: math.unit(0.513, "feet"),
  24672. name: "Muzzle",
  24673. image: {
  24674. source: "./media/characters/sheila-wolf/muzzle.svg"
  24675. }
  24676. },
  24677. },
  24678. [
  24679. {
  24680. name: "Macro",
  24681. height: math.unit(70, "feet"),
  24682. default: true
  24683. },
  24684. ]
  24685. ))
  24686. characterMakers.push(() => makeCharacter(
  24687. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24688. {
  24689. front: {
  24690. height: math.unit(32, "meters"),
  24691. weight: math.unit(300000, "kg"),
  24692. name: "Front",
  24693. image: {
  24694. source: "./media/characters/almor/front.svg",
  24695. extra: 1408 / 1322,
  24696. bottom: 94.6 / 1506.5
  24697. }
  24698. },
  24699. },
  24700. [
  24701. {
  24702. name: "Macro",
  24703. height: math.unit(32, "meters"),
  24704. default: true
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24710. {
  24711. front: {
  24712. height: math.unit(7, "feet"),
  24713. weight: math.unit(200, "lb"),
  24714. name: "Front",
  24715. image: {
  24716. source: "./media/characters/silver/front.svg",
  24717. extra: 472.1 / 450.5,
  24718. bottom: 26.5 / 499.424
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Normal",
  24725. height: math.unit(7, "feet"),
  24726. default: true
  24727. },
  24728. {
  24729. name: "Macro",
  24730. height: math.unit(800, "feet")
  24731. },
  24732. {
  24733. name: "Megamacro",
  24734. height: math.unit(250, "miles")
  24735. },
  24736. ]
  24737. ))
  24738. characterMakers.push(() => makeCharacter(
  24739. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24740. {
  24741. front: {
  24742. height: math.unit(6, "feet"),
  24743. weight: math.unit(150, "lb"),
  24744. name: "Front",
  24745. image: {
  24746. source: "./media/characters/pliskin/front.svg",
  24747. extra: 1469 / 1359,
  24748. bottom: 70 / 1540
  24749. }
  24750. },
  24751. },
  24752. [
  24753. {
  24754. name: "Micro",
  24755. height: math.unit(3, "inches")
  24756. },
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(5 + 11 / 12, "feet"),
  24760. default: true
  24761. },
  24762. {
  24763. name: "Macro",
  24764. height: math.unit(120, "feet")
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24770. {
  24771. front: {
  24772. height: math.unit(6, "feet"),
  24773. weight: math.unit(150, "lb"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/sammy/front.svg",
  24777. extra: 1193 / 1089,
  24778. bottom: 30.5 / 1226
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Macro",
  24785. height: math.unit(1700, "feet"),
  24786. default: true
  24787. },
  24788. {
  24789. name: "Examacro",
  24790. height: math.unit(2.5e9, "lightyears")
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24796. {
  24797. front: {
  24798. height: math.unit(21, "meters"),
  24799. weight: math.unit(12, "tonnes"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/kuru/front.svg",
  24803. extra: 4301 / 3785,
  24804. bottom: 371.3 / 4691
  24805. }
  24806. },
  24807. },
  24808. [
  24809. {
  24810. name: "Macro",
  24811. height: math.unit(21, "meters"),
  24812. default: true
  24813. },
  24814. ]
  24815. ))
  24816. characterMakers.push(() => makeCharacter(
  24817. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24818. {
  24819. front: {
  24820. height: math.unit(23, "meters"),
  24821. weight: math.unit(12.2, "tonnes"),
  24822. name: "Front",
  24823. image: {
  24824. source: "./media/characters/rakka/front.svg",
  24825. extra: 4670 / 4169,
  24826. bottom: 301 / 4968.7
  24827. }
  24828. },
  24829. },
  24830. [
  24831. {
  24832. name: "Macro",
  24833. height: math.unit(23, "meters"),
  24834. default: true
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24840. {
  24841. front: {
  24842. height: math.unit(6, "feet"),
  24843. weight: math.unit(150, "lb"),
  24844. name: "Front",
  24845. image: {
  24846. source: "./media/characters/rhys-feline/front.svg",
  24847. extra: 2488 / 2308,
  24848. bottom: 35.67 / 2519.19
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Really Small",
  24855. height: math.unit(1, "nm")
  24856. },
  24857. {
  24858. name: "Micro",
  24859. height: math.unit(4, "inches")
  24860. },
  24861. {
  24862. name: "Normal",
  24863. height: math.unit(4 + 10 / 12, "feet"),
  24864. default: true
  24865. },
  24866. {
  24867. name: "Macro",
  24868. height: math.unit(100, "feet")
  24869. },
  24870. {
  24871. name: "Megamacto",
  24872. height: math.unit(50, "miles")
  24873. },
  24874. ]
  24875. ))
  24876. characterMakers.push(() => makeCharacter(
  24877. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24878. {
  24879. side: {
  24880. height: math.unit(30, "feet"),
  24881. weight: math.unit(35000, "kg"),
  24882. name: "Side",
  24883. image: {
  24884. source: "./media/characters/alydar/side.svg",
  24885. extra: 234 / 222,
  24886. bottom: 6.5 / 241
  24887. }
  24888. },
  24889. front: {
  24890. height: math.unit(30, "feet"),
  24891. weight: math.unit(35000, "kg"),
  24892. name: "Front",
  24893. image: {
  24894. source: "./media/characters/alydar/front.svg",
  24895. extra: 223.37 / 210.2,
  24896. bottom: 22.3 / 246.76
  24897. }
  24898. },
  24899. top: {
  24900. height: math.unit(64.54, "feet"),
  24901. weight: math.unit(35000, "kg"),
  24902. name: "Top",
  24903. image: {
  24904. source: "./media/characters/alydar/top.svg"
  24905. }
  24906. },
  24907. anthro: {
  24908. height: math.unit(30, "feet"),
  24909. weight: math.unit(9000, "kg"),
  24910. name: "Anthro",
  24911. image: {
  24912. source: "./media/characters/alydar/anthro.svg",
  24913. extra: 432 / 421,
  24914. bottom: 7.18 / 440
  24915. }
  24916. },
  24917. maw: {
  24918. height: math.unit(11.693, "feet"),
  24919. name: "Maw",
  24920. image: {
  24921. source: "./media/characters/alydar/maw.svg"
  24922. }
  24923. },
  24924. head: {
  24925. height: math.unit(11.693, "feet"),
  24926. name: "Head",
  24927. image: {
  24928. source: "./media/characters/alydar/head.svg"
  24929. }
  24930. },
  24931. headAlt: {
  24932. height: math.unit(12.861, "feet"),
  24933. name: "Head (Alt)",
  24934. image: {
  24935. source: "./media/characters/alydar/head-alt.svg"
  24936. }
  24937. },
  24938. wing: {
  24939. height: math.unit(20.712, "feet"),
  24940. name: "Wing",
  24941. image: {
  24942. source: "./media/characters/alydar/wing.svg"
  24943. }
  24944. },
  24945. wingFeather: {
  24946. height: math.unit(9.662, "feet"),
  24947. name: "Wing Feather",
  24948. image: {
  24949. source: "./media/characters/alydar/wing-feather.svg"
  24950. }
  24951. },
  24952. countourFeather: {
  24953. height: math.unit(4.154, "feet"),
  24954. name: "Contour Feather",
  24955. image: {
  24956. source: "./media/characters/alydar/contour-feather.svg"
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Diplomatic",
  24963. height: math.unit(13, "feet"),
  24964. default: true
  24965. },
  24966. {
  24967. name: "Small",
  24968. height: math.unit(30, "feet")
  24969. },
  24970. {
  24971. name: "Normal",
  24972. height: math.unit(95, "feet"),
  24973. default: true
  24974. },
  24975. {
  24976. name: "Large",
  24977. height: math.unit(285, "feet")
  24978. },
  24979. {
  24980. name: "Incomprehensible",
  24981. height: math.unit(450, "megameters")
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24987. {
  24988. side: {
  24989. height: math.unit(11, "feet"),
  24990. weight: math.unit(1750, "kg"),
  24991. name: "Side",
  24992. image: {
  24993. source: "./media/characters/selicia/side.svg",
  24994. extra: 440 / 396,
  24995. bottom: 24.8 / 465.979
  24996. }
  24997. },
  24998. maw: {
  24999. height: math.unit(4.665, "feet"),
  25000. name: "Maw",
  25001. image: {
  25002. source: "./media/characters/selicia/maw.svg"
  25003. }
  25004. },
  25005. },
  25006. [
  25007. {
  25008. name: "Normal",
  25009. height: math.unit(11, "feet"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25016. {
  25017. side: {
  25018. height: math.unit(2 + 6 / 12, "feet"),
  25019. weight: math.unit(30, "lb"),
  25020. name: "Side",
  25021. image: {
  25022. source: "./media/characters/layla/side.svg",
  25023. extra: 244 / 188,
  25024. bottom: 18.2 / 262.1
  25025. }
  25026. },
  25027. back: {
  25028. height: math.unit(2 + 6 / 12, "feet"),
  25029. weight: math.unit(30, "lb"),
  25030. name: "Back",
  25031. image: {
  25032. source: "./media/characters/layla/back.svg",
  25033. extra: 308 / 241.5,
  25034. bottom: 8.9 / 316.8
  25035. }
  25036. },
  25037. cumming: {
  25038. height: math.unit(2 + 6 / 12, "feet"),
  25039. weight: math.unit(30, "lb"),
  25040. name: "Cumming",
  25041. image: {
  25042. source: "./media/characters/layla/cumming.svg",
  25043. extra: 342 / 279,
  25044. bottom: 595 / 938
  25045. }
  25046. },
  25047. dickFlaccid: {
  25048. height: math.unit(2.595, "feet"),
  25049. name: "Flaccid Genitals",
  25050. image: {
  25051. source: "./media/characters/layla/dick-flaccid.svg"
  25052. }
  25053. },
  25054. dickErect: {
  25055. height: math.unit(2.359, "feet"),
  25056. name: "Erect Genitals",
  25057. image: {
  25058. source: "./media/characters/layla/dick-erect.svg"
  25059. }
  25060. },
  25061. dragon: {
  25062. height: math.unit(40, "feet"),
  25063. name: "Dragon",
  25064. image: {
  25065. source: "./media/characters/layla/dragon.svg",
  25066. extra: 610/535,
  25067. bottom: 367/977
  25068. }
  25069. },
  25070. taur: {
  25071. height: math.unit(30, "feet"),
  25072. name: "Taur",
  25073. image: {
  25074. source: "./media/characters/layla/taur.svg",
  25075. extra: 1268/1199,
  25076. bottom: 112/1380
  25077. }
  25078. },
  25079. },
  25080. [
  25081. {
  25082. name: "Micro",
  25083. height: math.unit(1, "inch")
  25084. },
  25085. {
  25086. name: "Small",
  25087. height: math.unit(1, "foot")
  25088. },
  25089. {
  25090. name: "Normal",
  25091. height: math.unit(2 + 6 / 12, "feet"),
  25092. default: true
  25093. },
  25094. {
  25095. name: "Macro",
  25096. height: math.unit(200, "feet")
  25097. },
  25098. {
  25099. name: "Megamacro",
  25100. height: math.unit(1000, "miles")
  25101. },
  25102. {
  25103. name: "Planetary",
  25104. height: math.unit(8000, "miles")
  25105. },
  25106. {
  25107. name: "True Layla",
  25108. height: math.unit(200000 * 7, "multiverses")
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25114. {
  25115. back: {
  25116. height: math.unit(10.5, "feet"),
  25117. weight: math.unit(800, "lb"),
  25118. name: "Back",
  25119. image: {
  25120. source: "./media/characters/knox/back.svg",
  25121. extra: 1486 / 1089,
  25122. bottom: 107 / 1601.4
  25123. }
  25124. },
  25125. side: {
  25126. height: math.unit(10.5, "feet"),
  25127. weight: math.unit(800, "lb"),
  25128. name: "Side",
  25129. image: {
  25130. source: "./media/characters/knox/side.svg",
  25131. extra: 244 / 218,
  25132. bottom: 14 / 260
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Compact",
  25139. height: math.unit(10.5, "feet"),
  25140. default: true
  25141. },
  25142. {
  25143. name: "Dynamax",
  25144. height: math.unit(210, "feet")
  25145. },
  25146. {
  25147. name: "Full Macro",
  25148. height: math.unit(850, "feet")
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(28, "feet"),
  25157. weight: math.unit(10500, "lb"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/kayda/front.svg",
  25161. extra: 1536 / 1428,
  25162. bottom: 68.7 / 1603
  25163. }
  25164. },
  25165. back: {
  25166. height: math.unit(28, "feet"),
  25167. weight: math.unit(10500, "lb"),
  25168. name: "Back",
  25169. image: {
  25170. source: "./media/characters/kayda/back.svg",
  25171. extra: 1557 / 1464,
  25172. bottom: 39.5 / 1597.49
  25173. }
  25174. },
  25175. dick: {
  25176. height: math.unit(3.858, "feet"),
  25177. name: "Dick",
  25178. image: {
  25179. source: "./media/characters/kayda/dick.svg"
  25180. }
  25181. },
  25182. },
  25183. [
  25184. {
  25185. name: "Macro",
  25186. height: math.unit(28, "feet"),
  25187. default: true
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25193. {
  25194. front: {
  25195. height: math.unit(10 + 11 / 12, "feet"),
  25196. weight: math.unit(1400, "lb"),
  25197. name: "Front",
  25198. image: {
  25199. source: "./media/characters/brian/front.svg",
  25200. extra: 737 / 692,
  25201. bottom: 55.4 / 785
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(10 + 11 / 12, "feet"),
  25209. default: true
  25210. },
  25211. ]
  25212. ))
  25213. characterMakers.push(() => makeCharacter(
  25214. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25215. {
  25216. front: {
  25217. height: math.unit(5 + 8 / 12, "feet"),
  25218. weight: math.unit(140, "lb"),
  25219. name: "Front",
  25220. image: {
  25221. source: "./media/characters/khemri/front.svg",
  25222. extra: 4780 / 4059,
  25223. bottom: 80.1 / 4859.25
  25224. }
  25225. },
  25226. },
  25227. [
  25228. {
  25229. name: "Micro",
  25230. height: math.unit(6, "inches")
  25231. },
  25232. {
  25233. name: "Normal",
  25234. height: math.unit(5 + 8 / 12, "feet"),
  25235. default: true
  25236. },
  25237. ]
  25238. ))
  25239. characterMakers.push(() => makeCharacter(
  25240. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25241. {
  25242. front: {
  25243. height: math.unit(13, "feet"),
  25244. weight: math.unit(1700, "lb"),
  25245. name: "Front",
  25246. image: {
  25247. source: "./media/characters/felix-braveheart/front.svg",
  25248. extra: 1222 / 1157,
  25249. bottom: 53.2 / 1280
  25250. }
  25251. },
  25252. back: {
  25253. height: math.unit(13, "feet"),
  25254. weight: math.unit(1700, "lb"),
  25255. name: "Back",
  25256. image: {
  25257. source: "./media/characters/felix-braveheart/back.svg",
  25258. extra: 1277 / 1203,
  25259. bottom: 50.2 / 1327
  25260. }
  25261. },
  25262. feral: {
  25263. height: math.unit(6, "feet"),
  25264. weight: math.unit(400, "lb"),
  25265. name: "Feral",
  25266. image: {
  25267. source: "./media/characters/felix-braveheart/feral.svg",
  25268. extra: 682 / 625,
  25269. bottom: 6.9 / 688
  25270. }
  25271. },
  25272. },
  25273. [
  25274. {
  25275. name: "Normal",
  25276. height: math.unit(13, "feet"),
  25277. default: true
  25278. },
  25279. ]
  25280. ))
  25281. characterMakers.push(() => makeCharacter(
  25282. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25283. {
  25284. side: {
  25285. height: math.unit(5 + 11 / 12, "feet"),
  25286. weight: math.unit(1400, "lb"),
  25287. name: "Side",
  25288. image: {
  25289. source: "./media/characters/shadow-blade/side.svg",
  25290. extra: 1726 / 1267,
  25291. bottom: 58.4 / 1785
  25292. }
  25293. },
  25294. },
  25295. [
  25296. {
  25297. name: "Normal",
  25298. height: math.unit(5 + 11 / 12, "feet"),
  25299. default: true
  25300. },
  25301. ]
  25302. ))
  25303. characterMakers.push(() => makeCharacter(
  25304. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25305. {
  25306. front: {
  25307. height: math.unit(1 + 6 / 12, "feet"),
  25308. weight: math.unit(25, "lb"),
  25309. name: "Front",
  25310. image: {
  25311. source: "./media/characters/karla-halldor/front.svg",
  25312. extra: 1459 / 1383,
  25313. bottom: 12 / 1472
  25314. }
  25315. },
  25316. },
  25317. [
  25318. {
  25319. name: "Normal",
  25320. height: math.unit(1 + 6 / 12, "feet"),
  25321. default: true
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25327. {
  25328. front: {
  25329. height: math.unit(6 + 2 / 12, "feet"),
  25330. weight: math.unit(160, "lb"),
  25331. name: "Front",
  25332. image: {
  25333. source: "./media/characters/ariam/front.svg",
  25334. extra: 1073/976,
  25335. bottom: 52/1125
  25336. }
  25337. },
  25338. back: {
  25339. height: math.unit(6 + 2/12, "feet"),
  25340. weight: math.unit(160, "lb"),
  25341. name: "Back",
  25342. image: {
  25343. source: "./media/characters/ariam/back.svg",
  25344. extra: 1103/1023,
  25345. bottom: 9/1112
  25346. }
  25347. },
  25348. dressed: {
  25349. height: math.unit(6 + 2/12, "feet"),
  25350. weight: math.unit(160, "lb"),
  25351. name: "Dressed",
  25352. image: {
  25353. source: "./media/characters/ariam/dressed.svg",
  25354. extra: 1099/1009,
  25355. bottom: 25/1124
  25356. }
  25357. },
  25358. squatting: {
  25359. height: math.unit(4.1, "feet"),
  25360. weight: math.unit(160, "lb"),
  25361. name: "Squatting",
  25362. image: {
  25363. source: "./media/characters/ariam/squatting.svg",
  25364. extra: 2617 / 2112,
  25365. bottom: 61.2 / 2681,
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Normal",
  25372. height: math.unit(6 + 2 / 12, "feet"),
  25373. default: true
  25374. },
  25375. {
  25376. name: "Normal+",
  25377. height: math.unit(4, "meters")
  25378. },
  25379. {
  25380. name: "Macro",
  25381. height: math.unit(50, "meters")
  25382. },
  25383. {
  25384. name: "Macro+",
  25385. height: math.unit(100, "meters")
  25386. },
  25387. {
  25388. name: "Megamacro",
  25389. height: math.unit(20, "km")
  25390. },
  25391. {
  25392. name: "Caretaker",
  25393. height: math.unit(444, "megameters")
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25399. {
  25400. front: {
  25401. height: math.unit(1.67, "meters"),
  25402. weight: math.unit(140, "lb"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25406. extra: 438 / 410,
  25407. bottom: 0.75 / 439
  25408. }
  25409. },
  25410. },
  25411. [
  25412. {
  25413. name: "Shrunken",
  25414. height: math.unit(7.6, "cm")
  25415. },
  25416. {
  25417. name: "Human Scale",
  25418. height: math.unit(1.67, "meters")
  25419. },
  25420. {
  25421. name: "Wolxi Scale",
  25422. height: math.unit(36.7, "meters"),
  25423. default: true
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25429. {
  25430. front: {
  25431. height: math.unit(1.73, "meters"),
  25432. weight: math.unit(240, "lb"),
  25433. name: "Front",
  25434. image: {
  25435. source: "./media/characters/izue-two-mothers/front.svg",
  25436. extra: 469 / 437,
  25437. bottom: 1.24 / 470.6
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Shrunken",
  25444. height: math.unit(7.86, "cm")
  25445. },
  25446. {
  25447. name: "Human Scale",
  25448. height: math.unit(1.73, "meters")
  25449. },
  25450. {
  25451. name: "Wolxi Scale",
  25452. height: math.unit(38, "meters"),
  25453. default: true
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25459. {
  25460. front: {
  25461. height: math.unit(1.55, "meters"),
  25462. weight: math.unit(120, "lb"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/teeku-love-shack/front.svg",
  25466. extra: 387 / 362,
  25467. bottom: 1.51 / 388
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Shrunken",
  25474. height: math.unit(7, "cm")
  25475. },
  25476. {
  25477. name: "Human Scale",
  25478. height: math.unit(1.55, "meters")
  25479. },
  25480. {
  25481. name: "Wolxi Scale",
  25482. height: math.unit(34.1, "meters"),
  25483. default: true
  25484. },
  25485. ]
  25486. ))
  25487. characterMakers.push(() => makeCharacter(
  25488. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25489. {
  25490. front: {
  25491. height: math.unit(1.83, "meters"),
  25492. weight: math.unit(135, "lb"),
  25493. name: "Front",
  25494. image: {
  25495. source: "./media/characters/dejma-the-red/front.svg",
  25496. extra: 480 / 458,
  25497. bottom: 1.8 / 482
  25498. }
  25499. },
  25500. },
  25501. [
  25502. {
  25503. name: "Shrunken",
  25504. height: math.unit(8.3, "cm")
  25505. },
  25506. {
  25507. name: "Human Scale",
  25508. height: math.unit(1.83, "meters")
  25509. },
  25510. {
  25511. name: "Wolxi Scale",
  25512. height: math.unit(40, "meters"),
  25513. default: true
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(1.78, "meters"),
  25522. weight: math.unit(65, "kg"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/aki/front.svg",
  25526. extra: 452 / 415
  25527. }
  25528. },
  25529. frontNsfw: {
  25530. height: math.unit(1.78, "meters"),
  25531. weight: math.unit(65, "kg"),
  25532. name: "Front (NSFW)",
  25533. image: {
  25534. source: "./media/characters/aki/front-nsfw.svg",
  25535. extra: 452 / 415
  25536. }
  25537. },
  25538. back: {
  25539. height: math.unit(1.78, "meters"),
  25540. weight: math.unit(65, "kg"),
  25541. name: "Back",
  25542. image: {
  25543. source: "./media/characters/aki/back.svg",
  25544. extra: 452 / 415
  25545. }
  25546. },
  25547. rump: {
  25548. height: math.unit(2.05, "feet"),
  25549. name: "Rump",
  25550. image: {
  25551. source: "./media/characters/aki/rump.svg"
  25552. }
  25553. },
  25554. dick: {
  25555. height: math.unit(0.95, "feet"),
  25556. name: "Dick",
  25557. image: {
  25558. source: "./media/characters/aki/dick.svg"
  25559. }
  25560. },
  25561. },
  25562. [
  25563. {
  25564. name: "Micro",
  25565. height: math.unit(15, "cm")
  25566. },
  25567. {
  25568. name: "Normal",
  25569. height: math.unit(178, "cm"),
  25570. default: true
  25571. },
  25572. {
  25573. name: "Macro",
  25574. height: math.unit(214, "m")
  25575. },
  25576. {
  25577. name: "Macro+",
  25578. height: math.unit(534, "m")
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25584. {
  25585. front: {
  25586. height: math.unit(5 + 5 / 12, "feet"),
  25587. weight: math.unit(120, "lb"),
  25588. name: "Front",
  25589. image: {
  25590. source: "./media/characters/ari/front.svg",
  25591. extra: 1550/1471,
  25592. bottom: 39/1589
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Normal",
  25599. height: math.unit(5 + 5 / 12, "feet")
  25600. },
  25601. {
  25602. name: "Macro",
  25603. height: math.unit(100, "feet"),
  25604. default: true
  25605. },
  25606. {
  25607. name: "Megamacro",
  25608. height: math.unit(100, "miles")
  25609. },
  25610. {
  25611. name: "Gigamacro",
  25612. height: math.unit(80000, "miles")
  25613. },
  25614. ]
  25615. ))
  25616. characterMakers.push(() => makeCharacter(
  25617. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25618. {
  25619. side: {
  25620. height: math.unit(9, "feet"),
  25621. weight: math.unit(400, "kg"),
  25622. name: "Side",
  25623. image: {
  25624. source: "./media/characters/bolt/side.svg",
  25625. extra: 1126 / 896,
  25626. bottom: 60 / 1187.3,
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Micro",
  25633. height: math.unit(5, "inches")
  25634. },
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(9, "feet"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Macro",
  25642. height: math.unit(700, "feet")
  25643. },
  25644. {
  25645. name: "Max Size",
  25646. height: math.unit(1.52e22, "yottameters")
  25647. },
  25648. ]
  25649. ))
  25650. characterMakers.push(() => makeCharacter(
  25651. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25652. {
  25653. front: {
  25654. height: math.unit(4.3, "meters"),
  25655. weight: math.unit(3, "tons"),
  25656. name: "Front",
  25657. image: {
  25658. source: "./media/characters/draekon-sylviar/front.svg",
  25659. extra: 2072/1512,
  25660. bottom: 74/2146
  25661. }
  25662. },
  25663. back: {
  25664. height: math.unit(4.3, "meters"),
  25665. weight: math.unit(3, "tons"),
  25666. name: "Back",
  25667. image: {
  25668. source: "./media/characters/draekon-sylviar/back.svg",
  25669. extra: 1639/1483,
  25670. bottom: 41/1680
  25671. }
  25672. },
  25673. feral: {
  25674. height: math.unit(1.15, "meters"),
  25675. weight: math.unit(3, "tons"),
  25676. name: "Feral",
  25677. image: {
  25678. source: "./media/characters/draekon-sylviar/feral.svg",
  25679. extra: 1033/395,
  25680. bottom: 130/1163
  25681. }
  25682. },
  25683. maw: {
  25684. height: math.unit(1.3, "meters"),
  25685. name: "Maw",
  25686. image: {
  25687. source: "./media/characters/draekon-sylviar/maw.svg"
  25688. }
  25689. },
  25690. mawSeparated: {
  25691. height: math.unit(1.53, "meters"),
  25692. name: "Separated Maw",
  25693. image: {
  25694. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25695. }
  25696. },
  25697. tail: {
  25698. height: math.unit(1.15, "meters"),
  25699. name: "Tail",
  25700. image: {
  25701. source: "./media/characters/draekon-sylviar/tail.svg"
  25702. }
  25703. },
  25704. tailDick: {
  25705. height: math.unit(1.15, "meters"),
  25706. name: "Tail (Dick)",
  25707. image: {
  25708. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25709. }
  25710. },
  25711. tailDickSeparated: {
  25712. height: math.unit(1.19, "meters"),
  25713. name: "Tail (Separated Dick)",
  25714. image: {
  25715. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25716. }
  25717. },
  25718. slit: {
  25719. height: math.unit(1, "meters"),
  25720. name: "Slit",
  25721. image: {
  25722. source: "./media/characters/draekon-sylviar/slit.svg"
  25723. }
  25724. },
  25725. dick: {
  25726. height: math.unit(1.15, "meters"),
  25727. name: "Dick",
  25728. image: {
  25729. source: "./media/characters/draekon-sylviar/dick.svg"
  25730. }
  25731. },
  25732. dickSeparated: {
  25733. height: math.unit(1.1, "meters"),
  25734. name: "Separated Dick",
  25735. image: {
  25736. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25737. }
  25738. },
  25739. sheath: {
  25740. height: math.unit(1.15, "meters"),
  25741. name: "Sheath",
  25742. image: {
  25743. source: "./media/characters/draekon-sylviar/sheath.svg"
  25744. }
  25745. },
  25746. },
  25747. [
  25748. {
  25749. name: "Small",
  25750. height: math.unit(4.53 / 2, "meters"),
  25751. default: true
  25752. },
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(4.53, "meters"),
  25756. default: true
  25757. },
  25758. {
  25759. name: "Large",
  25760. height: math.unit(4.53 * 2, "meters"),
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25766. {
  25767. front: {
  25768. height: math.unit(6 + 2 / 12, "feet"),
  25769. weight: math.unit(180, "lb"),
  25770. name: "Front",
  25771. image: {
  25772. source: "./media/characters/brawler/front.svg",
  25773. extra: 3301 / 3027,
  25774. bottom: 138 / 3439
  25775. }
  25776. },
  25777. },
  25778. [
  25779. {
  25780. name: "Normal",
  25781. height: math.unit(6 + 2 / 12, "feet"),
  25782. default: true
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25788. {
  25789. front: {
  25790. height: math.unit(11, "feet"),
  25791. weight: math.unit(1000, "lb"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/alex/front.svg",
  25795. bottom: 44.5 / 620
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Micro",
  25802. height: math.unit(5, "inches")
  25803. },
  25804. {
  25805. name: "Normal",
  25806. height: math.unit(11, "feet"),
  25807. default: true
  25808. },
  25809. {
  25810. name: "Macro",
  25811. height: math.unit(9.5e9, "feet")
  25812. },
  25813. {
  25814. name: "Max Size",
  25815. height: math.unit(1.4e283, "yottameters")
  25816. },
  25817. ]
  25818. ))
  25819. characterMakers.push(() => makeCharacter(
  25820. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25821. {
  25822. female: {
  25823. height: math.unit(29.9, "m"),
  25824. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25825. name: "Female",
  25826. image: {
  25827. source: "./media/characters/zenari/female.svg",
  25828. extra: 3281.6 / 3217,
  25829. bottom: 72.2 / 3353
  25830. }
  25831. },
  25832. male: {
  25833. height: math.unit(27.7, "m"),
  25834. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25835. name: "Male",
  25836. image: {
  25837. source: "./media/characters/zenari/male.svg",
  25838. extra: 3008 / 2991,
  25839. bottom: 54.6 / 3069
  25840. }
  25841. },
  25842. },
  25843. [
  25844. {
  25845. name: "Macro",
  25846. height: math.unit(29.7, "meters"),
  25847. default: true
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25853. {
  25854. female: {
  25855. height: math.unit(23.8, "m"),
  25856. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25857. name: "Female",
  25858. image: {
  25859. source: "./media/characters/mactarian/female.svg",
  25860. extra: 2662 / 2569,
  25861. bottom: 73 / 2736
  25862. }
  25863. },
  25864. male: {
  25865. height: math.unit(23.8, "m"),
  25866. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25867. name: "Male",
  25868. image: {
  25869. source: "./media/characters/mactarian/male.svg",
  25870. extra: 2673 / 2600,
  25871. bottom: 76 / 2750
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Macro",
  25878. height: math.unit(23.8, "meters"),
  25879. default: true
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25885. {
  25886. female: {
  25887. height: math.unit(19.3, "m"),
  25888. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25889. name: "Female",
  25890. image: {
  25891. source: "./media/characters/umok/female.svg",
  25892. extra: 2186 / 2078,
  25893. bottom: 87 / 2277
  25894. }
  25895. },
  25896. male: {
  25897. height: math.unit(19.5, "m"),
  25898. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25899. name: "Male",
  25900. image: {
  25901. source: "./media/characters/umok/male.svg",
  25902. extra: 2233 / 2140,
  25903. bottom: 24.4 / 2258
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Macro",
  25910. height: math.unit(19.3, "meters"),
  25911. default: true
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25917. {
  25918. female: {
  25919. height: math.unit(26.15, "m"),
  25920. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25921. name: "Female",
  25922. image: {
  25923. source: "./media/characters/joraxian/female.svg",
  25924. extra: 2912 / 2824,
  25925. bottom: 36 / 2956
  25926. }
  25927. },
  25928. male: {
  25929. height: math.unit(25.4, "m"),
  25930. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25931. name: "Male",
  25932. image: {
  25933. source: "./media/characters/joraxian/male.svg",
  25934. extra: 2877 / 2721,
  25935. bottom: 82 / 2967
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Macro",
  25942. height: math.unit(26.15, "meters"),
  25943. default: true
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25949. {
  25950. female: {
  25951. height: math.unit(21.6, "m"),
  25952. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25953. name: "Female",
  25954. image: {
  25955. source: "./media/characters/sthara/female.svg",
  25956. extra: 2516 / 2347,
  25957. bottom: 21.5 / 2537
  25958. }
  25959. },
  25960. male: {
  25961. height: math.unit(24, "m"),
  25962. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25963. name: "Male",
  25964. image: {
  25965. source: "./media/characters/sthara/male.svg",
  25966. extra: 2732 / 2607,
  25967. bottom: 23 / 2732
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Macro",
  25974. height: math.unit(21.6, "meters"),
  25975. default: true
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25981. {
  25982. front: {
  25983. height: math.unit(6 + 4 / 12, "feet"),
  25984. weight: math.unit(175, "lb"),
  25985. name: "Front",
  25986. image: {
  25987. source: "./media/characters/luka-bryzant/front.svg",
  25988. extra: 311 / 289,
  25989. bottom: 4 / 315
  25990. }
  25991. },
  25992. back: {
  25993. height: math.unit(6 + 4 / 12, "feet"),
  25994. weight: math.unit(175, "lb"),
  25995. name: "Back",
  25996. image: {
  25997. source: "./media/characters/luka-bryzant/back.svg",
  25998. extra: 311 / 289,
  25999. bottom: 3.8 / 313.7
  26000. }
  26001. },
  26002. },
  26003. [
  26004. {
  26005. name: "Micro",
  26006. height: math.unit(10, "inches")
  26007. },
  26008. {
  26009. name: "Normal",
  26010. height: math.unit(6 + 4 / 12, "feet"),
  26011. default: true
  26012. },
  26013. {
  26014. name: "Large",
  26015. height: math.unit(12, "feet")
  26016. },
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26021. {
  26022. front: {
  26023. height: math.unit(5 + 7 / 12, "feet"),
  26024. weight: math.unit(185, "lb"),
  26025. name: "Front",
  26026. image: {
  26027. source: "./media/characters/aman-aquila/front.svg",
  26028. extra: 1013 / 976,
  26029. bottom: 45.6 / 1057
  26030. }
  26031. },
  26032. side: {
  26033. height: math.unit(5 + 7 / 12, "feet"),
  26034. weight: math.unit(185, "lb"),
  26035. name: "Side",
  26036. image: {
  26037. source: "./media/characters/aman-aquila/side.svg",
  26038. extra: 1054 / 1011,
  26039. bottom: 15 / 1070
  26040. }
  26041. },
  26042. back: {
  26043. height: math.unit(5 + 7 / 12, "feet"),
  26044. weight: math.unit(185, "lb"),
  26045. name: "Back",
  26046. image: {
  26047. source: "./media/characters/aman-aquila/back.svg",
  26048. extra: 1026 / 970,
  26049. bottom: 12 / 1039
  26050. }
  26051. },
  26052. head: {
  26053. height: math.unit(1.211, "feet"),
  26054. name: "Head",
  26055. image: {
  26056. source: "./media/characters/aman-aquila/head.svg",
  26057. }
  26058. },
  26059. },
  26060. [
  26061. {
  26062. name: "Minimicro",
  26063. height: math.unit(0.057, "inches")
  26064. },
  26065. {
  26066. name: "Micro",
  26067. height: math.unit(7, "inches")
  26068. },
  26069. {
  26070. name: "Mini",
  26071. height: math.unit(3 + 7 / 12, "feet")
  26072. },
  26073. {
  26074. name: "Normal",
  26075. height: math.unit(5 + 7 / 12, "feet"),
  26076. default: true
  26077. },
  26078. {
  26079. name: "Macro",
  26080. height: math.unit(157 + 7 / 12, "feet")
  26081. },
  26082. {
  26083. name: "Megamacro",
  26084. height: math.unit(1557 + 7 / 12, "feet")
  26085. },
  26086. {
  26087. name: "Gigamacro",
  26088. height: math.unit(15557 + 7 / 12, "feet")
  26089. },
  26090. ]
  26091. ))
  26092. characterMakers.push(() => makeCharacter(
  26093. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26094. {
  26095. front: {
  26096. height: math.unit(3 + 2 / 12, "inches"),
  26097. weight: math.unit(0.3, "ounces"),
  26098. name: "Front",
  26099. image: {
  26100. source: "./media/characters/hiphae/front.svg",
  26101. extra: 1931 / 1683,
  26102. bottom: 24 / 1955
  26103. }
  26104. },
  26105. },
  26106. [
  26107. {
  26108. name: "Normal",
  26109. height: math.unit(3 + 1 / 2, "inches"),
  26110. default: true
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26116. {
  26117. front: {
  26118. height: math.unit(5 + 10 / 12, "feet"),
  26119. weight: math.unit(165, "lb"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/nicky/front.svg",
  26123. extra: 3144 / 2886,
  26124. bottom: 45.6 / 3192
  26125. }
  26126. },
  26127. back: {
  26128. height: math.unit(5 + 10 / 12, "feet"),
  26129. weight: math.unit(165, "lb"),
  26130. name: "Back",
  26131. image: {
  26132. source: "./media/characters/nicky/back.svg",
  26133. extra: 3055 / 2804,
  26134. bottom: 28.4 / 3087
  26135. }
  26136. },
  26137. frontclothed: {
  26138. height: math.unit(5 + 10 / 12, "feet"),
  26139. weight: math.unit(165, "lb"),
  26140. name: "Front-clothed",
  26141. image: {
  26142. source: "./media/characters/nicky/front-clothed.svg",
  26143. extra: 3184.9 / 2926.9,
  26144. bottom: 86.5 / 3239.9
  26145. }
  26146. },
  26147. foot: {
  26148. height: math.unit(1.16, "feet"),
  26149. name: "Foot",
  26150. image: {
  26151. source: "./media/characters/nicky/foot.svg"
  26152. }
  26153. },
  26154. feet: {
  26155. height: math.unit(1.34, "feet"),
  26156. name: "Feet",
  26157. image: {
  26158. source: "./media/characters/nicky/feet.svg"
  26159. }
  26160. },
  26161. maw: {
  26162. height: math.unit(0.9, "feet"),
  26163. name: "Maw",
  26164. image: {
  26165. source: "./media/characters/nicky/maw.svg"
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Normal",
  26172. height: math.unit(5 + 10 / 12, "feet"),
  26173. default: true
  26174. },
  26175. {
  26176. name: "Macro",
  26177. height: math.unit(60, "feet")
  26178. },
  26179. {
  26180. name: "Megamacro",
  26181. height: math.unit(1, "mile")
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26187. {
  26188. side: {
  26189. height: math.unit(10, "feet"),
  26190. weight: math.unit(600, "lb"),
  26191. name: "Side",
  26192. image: {
  26193. source: "./media/characters/blair/side.svg",
  26194. bottom: 16.6 / 475,
  26195. extra: 458 / 431
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Micro",
  26202. height: math.unit(8, "inches")
  26203. },
  26204. {
  26205. name: "Normal",
  26206. height: math.unit(10, "feet"),
  26207. default: true
  26208. },
  26209. {
  26210. name: "Macro",
  26211. height: math.unit(180, "feet")
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26217. {
  26218. front: {
  26219. height: math.unit(5 + 4 / 12, "feet"),
  26220. weight: math.unit(125, "lb"),
  26221. name: "Front",
  26222. image: {
  26223. source: "./media/characters/fisher/front.svg",
  26224. extra: 444 / 390,
  26225. bottom: 2 / 444.8
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Micro",
  26232. height: math.unit(4, "inches")
  26233. },
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(5 + 4 / 12, "feet"),
  26237. default: true
  26238. },
  26239. {
  26240. name: "Macro",
  26241. height: math.unit(100, "feet")
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26247. {
  26248. front: {
  26249. height: math.unit(6.71, "feet"),
  26250. weight: math.unit(200, "lb"),
  26251. preyCapacity: math.unit(1000000, "people"),
  26252. name: "Front",
  26253. image: {
  26254. source: "./media/characters/gliss/front.svg",
  26255. extra: 2347 / 2231,
  26256. bottom: 113 / 2462
  26257. }
  26258. },
  26259. hammerspaceSize: {
  26260. height: math.unit(6.71 * 717, "feet"),
  26261. weight: math.unit(200, "lb"),
  26262. preyCapacity: math.unit(1000000, "people"),
  26263. name: "Hammerspace Size",
  26264. image: {
  26265. source: "./media/characters/gliss/front.svg",
  26266. extra: 2347 / 2231,
  26267. bottom: 113 / 2462
  26268. }
  26269. },
  26270. },
  26271. [
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(6.71, "feet"),
  26275. default: true
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26281. {
  26282. side: {
  26283. height: math.unit(1.44, "m"),
  26284. weight: math.unit(80, "kg"),
  26285. name: "Side",
  26286. image: {
  26287. source: "./media/characters/dune-anderson/side.svg",
  26288. bottom: 49 / 1426
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Wolf-sized",
  26295. height: math.unit(1.44, "meters")
  26296. },
  26297. {
  26298. name: "Normal",
  26299. height: math.unit(5.05, "meters"),
  26300. default: true
  26301. },
  26302. {
  26303. name: "Big",
  26304. height: math.unit(14.4, "meters")
  26305. },
  26306. {
  26307. name: "Huge",
  26308. height: math.unit(144, "meters")
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26314. {
  26315. front: {
  26316. height: math.unit(7, "feet"),
  26317. weight: math.unit(425, "lb"),
  26318. name: "Front",
  26319. image: {
  26320. source: "./media/characters/hind/front.svg",
  26321. extra: 2091 / 1860,
  26322. bottom: 129 / 2220
  26323. }
  26324. },
  26325. back: {
  26326. height: math.unit(7, "feet"),
  26327. weight: math.unit(425, "lb"),
  26328. name: "Back",
  26329. image: {
  26330. source: "./media/characters/hind/back.svg",
  26331. extra: 2091 / 1860,
  26332. bottom: 24.6 / 2309
  26333. }
  26334. },
  26335. tail: {
  26336. height: math.unit(2.8, "feet"),
  26337. name: "Tail",
  26338. image: {
  26339. source: "./media/characters/hind/tail.svg"
  26340. }
  26341. },
  26342. head: {
  26343. height: math.unit(2.55, "feet"),
  26344. name: "Head",
  26345. image: {
  26346. source: "./media/characters/hind/head.svg"
  26347. }
  26348. },
  26349. },
  26350. [
  26351. {
  26352. name: "XS",
  26353. height: math.unit(0.7, "feet")
  26354. },
  26355. {
  26356. name: "Normal",
  26357. height: math.unit(7, "feet"),
  26358. default: true
  26359. },
  26360. {
  26361. name: "XL",
  26362. height: math.unit(70, "feet")
  26363. },
  26364. ]
  26365. ))
  26366. characterMakers.push(() => makeCharacter(
  26367. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26368. {
  26369. front: {
  26370. height: math.unit(2.1, "meters"),
  26371. weight: math.unit(150, "lb"),
  26372. name: "Front",
  26373. image: {
  26374. source: "./media/characters/tharquench-sizestealer/front.svg",
  26375. extra: 1605/1470,
  26376. bottom: 36/1641
  26377. }
  26378. },
  26379. frontAlt: {
  26380. height: math.unit(2.1, "meters"),
  26381. weight: math.unit(150, "lb"),
  26382. name: "Front (Alt)",
  26383. image: {
  26384. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26385. extra: 2318 / 2063,
  26386. bottom: 93.4 / 2410
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Nano",
  26393. height: math.unit(1, "mm")
  26394. },
  26395. {
  26396. name: "Micro",
  26397. height: math.unit(1, "cm")
  26398. },
  26399. {
  26400. name: "Normal",
  26401. height: math.unit(2.1, "meters"),
  26402. default: true
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26408. {
  26409. front: {
  26410. height: math.unit(7 + 5 / 12, "feet"),
  26411. weight: math.unit(357, "lb"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/solex-draconov/front.svg",
  26415. extra: 1993 / 1865,
  26416. bottom: 117 / 2111
  26417. }
  26418. },
  26419. },
  26420. [
  26421. {
  26422. name: "Natural Height",
  26423. height: math.unit(7 + 5 / 12, "feet"),
  26424. default: true
  26425. },
  26426. {
  26427. name: "Macro",
  26428. height: math.unit(350, "feet")
  26429. },
  26430. {
  26431. name: "Macro+",
  26432. height: math.unit(1000, "feet")
  26433. },
  26434. {
  26435. name: "Megamacro",
  26436. height: math.unit(20, "km")
  26437. },
  26438. {
  26439. name: "Megamacro+",
  26440. height: math.unit(1000, "km")
  26441. },
  26442. {
  26443. name: "Gigamacro",
  26444. height: math.unit(2.5, "Gm")
  26445. },
  26446. {
  26447. name: "Teramacro",
  26448. height: math.unit(15, "Tm")
  26449. },
  26450. {
  26451. name: "Galactic",
  26452. height: math.unit(30, "Zm")
  26453. },
  26454. {
  26455. name: "Universal",
  26456. height: math.unit(21000, "Ym")
  26457. },
  26458. {
  26459. name: "Omniversal",
  26460. height: math.unit(9.861e50, "Ym")
  26461. },
  26462. {
  26463. name: "Existential",
  26464. height: math.unit(1e300, "meters")
  26465. },
  26466. ]
  26467. ))
  26468. characterMakers.push(() => makeCharacter(
  26469. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26470. {
  26471. side: {
  26472. height: math.unit(25, "feet"),
  26473. weight: math.unit(90000, "lb"),
  26474. name: "Side",
  26475. image: {
  26476. source: "./media/characters/mandarax/side.svg",
  26477. extra: 614 / 332,
  26478. bottom: 55 / 630
  26479. }
  26480. },
  26481. lounging: {
  26482. height: math.unit(15.4, "feet"),
  26483. weight: math.unit(90000, "lb"),
  26484. name: "Lounging",
  26485. image: {
  26486. source: "./media/characters/mandarax/lounging.svg",
  26487. extra: 817/609,
  26488. bottom: 685/1502
  26489. }
  26490. },
  26491. head: {
  26492. height: math.unit(11.4, "feet"),
  26493. name: "Head",
  26494. image: {
  26495. source: "./media/characters/mandarax/head.svg"
  26496. }
  26497. },
  26498. belly: {
  26499. height: math.unit(33, "feet"),
  26500. name: "Belly",
  26501. preyCapacity: math.unit(500, "people"),
  26502. image: {
  26503. source: "./media/characters/mandarax/belly.svg"
  26504. }
  26505. },
  26506. dick: {
  26507. height: math.unit(8.46, "feet"),
  26508. name: "Dick",
  26509. image: {
  26510. source: "./media/characters/mandarax/dick.svg"
  26511. }
  26512. },
  26513. top: {
  26514. height: math.unit(28, "meters"),
  26515. name: "Top",
  26516. image: {
  26517. source: "./media/characters/mandarax/top.svg"
  26518. }
  26519. },
  26520. },
  26521. [
  26522. {
  26523. name: "Normal",
  26524. height: math.unit(25, "feet"),
  26525. default: true
  26526. },
  26527. ]
  26528. ))
  26529. characterMakers.push(() => makeCharacter(
  26530. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26531. {
  26532. front: {
  26533. height: math.unit(5, "feet"),
  26534. weight: math.unit(90, "lb"),
  26535. name: "Front",
  26536. image: {
  26537. source: "./media/characters/pixil/front.svg",
  26538. extra: 2000 / 1618,
  26539. bottom: 12.3 / 2011
  26540. }
  26541. },
  26542. },
  26543. [
  26544. {
  26545. name: "Normal",
  26546. height: math.unit(5, "feet"),
  26547. default: true
  26548. },
  26549. {
  26550. name: "Megamacro",
  26551. height: math.unit(10, "miles"),
  26552. },
  26553. ]
  26554. ))
  26555. characterMakers.push(() => makeCharacter(
  26556. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26557. {
  26558. front: {
  26559. height: math.unit(7 + 2 / 12, "feet"),
  26560. weight: math.unit(200, "lb"),
  26561. name: "Front",
  26562. image: {
  26563. source: "./media/characters/angel/front.svg",
  26564. extra: 1830 / 1737,
  26565. bottom: 22.6 / 1854,
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(7 + 2 / 12, "feet"),
  26573. default: true
  26574. },
  26575. {
  26576. name: "Macro",
  26577. height: math.unit(1000, "feet")
  26578. },
  26579. {
  26580. name: "Megamacro",
  26581. height: math.unit(2, "miles")
  26582. },
  26583. {
  26584. name: "Gigamacro",
  26585. height: math.unit(20, "earths")
  26586. },
  26587. ]
  26588. ))
  26589. characterMakers.push(() => makeCharacter(
  26590. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26591. {
  26592. front: {
  26593. height: math.unit(5, "feet"),
  26594. weight: math.unit(180, "lb"),
  26595. name: "Front",
  26596. image: {
  26597. source: "./media/characters/mekana/front.svg",
  26598. extra: 1671 / 1605,
  26599. bottom: 3.5 / 1691
  26600. }
  26601. },
  26602. side: {
  26603. height: math.unit(5, "feet"),
  26604. weight: math.unit(180, "lb"),
  26605. name: "Side",
  26606. image: {
  26607. source: "./media/characters/mekana/side.svg",
  26608. extra: 1671 / 1605,
  26609. bottom: 3.5 / 1691
  26610. }
  26611. },
  26612. back: {
  26613. height: math.unit(5, "feet"),
  26614. weight: math.unit(180, "lb"),
  26615. name: "Back",
  26616. image: {
  26617. source: "./media/characters/mekana/back.svg",
  26618. extra: 1671 / 1605,
  26619. bottom: 3.5 / 1691
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Normal",
  26626. height: math.unit(5, "feet"),
  26627. default: true
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(4 + 6 / 12, "feet"),
  26636. weight: math.unit(80, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/pixie/front.svg",
  26640. extra: 1924 / 1825,
  26641. bottom: 22.4 / 1946
  26642. }
  26643. },
  26644. },
  26645. [
  26646. {
  26647. name: "Normal",
  26648. height: math.unit(4 + 6 / 12, "feet"),
  26649. default: true
  26650. },
  26651. {
  26652. name: "Macro",
  26653. height: math.unit(40, "feet")
  26654. },
  26655. ]
  26656. ))
  26657. characterMakers.push(() => makeCharacter(
  26658. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26659. {
  26660. front: {
  26661. height: math.unit(2.1, "meters"),
  26662. weight: math.unit(200, "lb"),
  26663. name: "Front",
  26664. image: {
  26665. source: "./media/characters/the-lascivious/front.svg",
  26666. extra: 1 / 0.893,
  26667. bottom: 3.5 / 573.7
  26668. }
  26669. },
  26670. },
  26671. [
  26672. {
  26673. name: "Human Scale",
  26674. height: math.unit(2.1, "meters")
  26675. },
  26676. {
  26677. name: "Wolxi Scale",
  26678. height: math.unit(46.2, "m"),
  26679. default: true
  26680. },
  26681. {
  26682. name: "Boinker of Buildings",
  26683. height: math.unit(10, "km")
  26684. },
  26685. {
  26686. name: "Shagger of Skyscrapers",
  26687. height: math.unit(40, "km")
  26688. },
  26689. {
  26690. name: "Banger of Boroughs",
  26691. height: math.unit(4000, "km")
  26692. },
  26693. {
  26694. name: "Screwer of States",
  26695. height: math.unit(100000, "km")
  26696. },
  26697. {
  26698. name: "Pounder of Planets",
  26699. height: math.unit(2000000, "km")
  26700. },
  26701. ]
  26702. ))
  26703. characterMakers.push(() => makeCharacter(
  26704. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26705. {
  26706. front: {
  26707. height: math.unit(6, "feet"),
  26708. weight: math.unit(150, "lb"),
  26709. name: "Front",
  26710. image: {
  26711. source: "./media/characters/aj/front.svg",
  26712. extra: 2039 / 1562,
  26713. bottom: 40 / 2079
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Normal",
  26720. height: math.unit(11 + 6 / 12, "feet"),
  26721. default: true
  26722. },
  26723. {
  26724. name: "Megamacro",
  26725. height: math.unit(60, "megameters")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26731. {
  26732. side: {
  26733. height: math.unit(31 + 8 / 12, "feet"),
  26734. weight: math.unit(75000, "kg"),
  26735. name: "Side",
  26736. image: {
  26737. source: "./media/characters/koros/side.svg",
  26738. extra: 1442 / 1297,
  26739. bottom: 122.7 / 1562
  26740. }
  26741. },
  26742. dicksKingsCrown: {
  26743. height: math.unit(6, "feet"),
  26744. name: "Dicks (King's Crown)",
  26745. image: {
  26746. source: "./media/characters/koros/dicks-kings-crown.svg"
  26747. }
  26748. },
  26749. dicksTailSet: {
  26750. height: math.unit(3, "feet"),
  26751. name: "Dicks (Tail Set)",
  26752. image: {
  26753. source: "./media/characters/koros/dicks-tail-set.svg"
  26754. }
  26755. },
  26756. dickCumming: {
  26757. height: math.unit(7.98, "feet"),
  26758. name: "Dick (Cumming)",
  26759. image: {
  26760. source: "./media/characters/koros/dick-cumming.svg"
  26761. }
  26762. },
  26763. dicksBack: {
  26764. height: math.unit(5.9, "feet"),
  26765. name: "Dicks (Back)",
  26766. image: {
  26767. source: "./media/characters/koros/dicks-back.svg"
  26768. }
  26769. },
  26770. dicksFront: {
  26771. height: math.unit(3.72, "feet"),
  26772. name: "Dicks (Front)",
  26773. image: {
  26774. source: "./media/characters/koros/dicks-front.svg"
  26775. }
  26776. },
  26777. dicksPeeking: {
  26778. height: math.unit(3.0, "feet"),
  26779. name: "Dicks (Peeking)",
  26780. image: {
  26781. source: "./media/characters/koros/dicks-peeking.svg"
  26782. }
  26783. },
  26784. eye: {
  26785. height: math.unit(1.7, "feet"),
  26786. name: "Eye",
  26787. image: {
  26788. source: "./media/characters/koros/eye.svg"
  26789. }
  26790. },
  26791. headFront: {
  26792. height: math.unit(11.69, "feet"),
  26793. name: "Head (Front)",
  26794. image: {
  26795. source: "./media/characters/koros/head-front.svg"
  26796. }
  26797. },
  26798. headSide: {
  26799. height: math.unit(14, "feet"),
  26800. name: "Head (Side)",
  26801. image: {
  26802. source: "./media/characters/koros/head-side.svg"
  26803. }
  26804. },
  26805. leg: {
  26806. height: math.unit(17, "feet"),
  26807. name: "Leg",
  26808. image: {
  26809. source: "./media/characters/koros/leg.svg"
  26810. }
  26811. },
  26812. mawSide: {
  26813. height: math.unit(12.8, "feet"),
  26814. name: "Maw (Side)",
  26815. image: {
  26816. source: "./media/characters/koros/maw-side.svg"
  26817. }
  26818. },
  26819. mawSpitting: {
  26820. height: math.unit(17, "feet"),
  26821. name: "Maw (Spitting)",
  26822. image: {
  26823. source: "./media/characters/koros/maw-spitting.svg"
  26824. }
  26825. },
  26826. slit: {
  26827. height: math.unit(2.8, "feet"),
  26828. name: "Slit",
  26829. image: {
  26830. source: "./media/characters/koros/slit.svg"
  26831. }
  26832. },
  26833. stomach: {
  26834. height: math.unit(6.8, "feet"),
  26835. preyCapacity: math.unit(20, "people"),
  26836. name: "Stomach",
  26837. image: {
  26838. source: "./media/characters/koros/stomach.svg"
  26839. }
  26840. },
  26841. wingspanBottom: {
  26842. height: math.unit(114, "feet"),
  26843. name: "Wingspan (Bottom)",
  26844. image: {
  26845. source: "./media/characters/koros/wingspan-bottom.svg"
  26846. }
  26847. },
  26848. wingspanTop: {
  26849. height: math.unit(104, "feet"),
  26850. name: "Wingspan (Top)",
  26851. image: {
  26852. source: "./media/characters/koros/wingspan-top.svg"
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(31 + 8 / 12, "feet"),
  26860. default: true
  26861. },
  26862. ]
  26863. ))
  26864. characterMakers.push(() => makeCharacter(
  26865. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26866. {
  26867. front: {
  26868. height: math.unit(18 + 5 / 12, "feet"),
  26869. weight: math.unit(3750, "kg"),
  26870. name: "Front",
  26871. image: {
  26872. source: "./media/characters/vexx/front.svg",
  26873. extra: 426 / 396,
  26874. bottom: 31.5 / 458
  26875. }
  26876. },
  26877. maw: {
  26878. height: math.unit(6, "feet"),
  26879. name: "Maw",
  26880. image: {
  26881. source: "./media/characters/vexx/maw.svg"
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(18 + 5 / 12, "feet"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26895. {
  26896. front: {
  26897. height: math.unit(17 + 6 / 12, "feet"),
  26898. weight: math.unit(150, "lb"),
  26899. name: "Front",
  26900. image: {
  26901. source: "./media/characters/baadra/front.svg",
  26902. extra: 1694/1553,
  26903. bottom: 179/1873
  26904. }
  26905. },
  26906. frontAlt: {
  26907. height: math.unit(17 + 6 / 12, "feet"),
  26908. weight: math.unit(150, "lb"),
  26909. name: "Front (Alt)",
  26910. image: {
  26911. source: "./media/characters/baadra/front-alt.svg",
  26912. extra: 3137 / 2890,
  26913. bottom: 168.4 / 3305
  26914. }
  26915. },
  26916. back: {
  26917. height: math.unit(17 + 6 / 12, "feet"),
  26918. weight: math.unit(150, "lb"),
  26919. name: "Back",
  26920. image: {
  26921. source: "./media/characters/baadra/back.svg",
  26922. extra: 3142 / 2890,
  26923. bottom: 220 / 3371
  26924. }
  26925. },
  26926. head: {
  26927. height: math.unit(5.45, "feet"),
  26928. name: "Head",
  26929. image: {
  26930. source: "./media/characters/baadra/head.svg"
  26931. }
  26932. },
  26933. headAngry: {
  26934. height: math.unit(4.95, "feet"),
  26935. name: "Head (Angry)",
  26936. image: {
  26937. source: "./media/characters/baadra/head-angry.svg"
  26938. }
  26939. },
  26940. headOpen: {
  26941. height: math.unit(6, "feet"),
  26942. name: "Head (Open)",
  26943. image: {
  26944. source: "./media/characters/baadra/head-open.svg"
  26945. }
  26946. },
  26947. },
  26948. [
  26949. {
  26950. name: "Normal",
  26951. height: math.unit(17 + 6 / 12, "feet"),
  26952. default: true
  26953. },
  26954. ]
  26955. ))
  26956. characterMakers.push(() => makeCharacter(
  26957. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26958. {
  26959. front: {
  26960. height: math.unit(7 + 3 / 12, "feet"),
  26961. weight: math.unit(180, "lb"),
  26962. name: "Front",
  26963. image: {
  26964. source: "./media/characters/juri/front.svg",
  26965. extra: 1401 / 1237,
  26966. bottom: 18.5 / 1418
  26967. }
  26968. },
  26969. side: {
  26970. height: math.unit(7 + 3 / 12, "feet"),
  26971. weight: math.unit(180, "lb"),
  26972. name: "Side",
  26973. image: {
  26974. source: "./media/characters/juri/side.svg",
  26975. extra: 1424 / 1242,
  26976. bottom: 18.5 / 1447
  26977. }
  26978. },
  26979. sitting: {
  26980. height: math.unit(6, "feet"),
  26981. weight: math.unit(180, "lb"),
  26982. name: "Sitting",
  26983. image: {
  26984. source: "./media/characters/juri/sitting.svg",
  26985. extra: 1270 / 1143,
  26986. bottom: 100 / 1343
  26987. }
  26988. },
  26989. back: {
  26990. height: math.unit(7 + 3 / 12, "feet"),
  26991. weight: math.unit(180, "lb"),
  26992. name: "Back",
  26993. image: {
  26994. source: "./media/characters/juri/back.svg",
  26995. extra: 1377 / 1240,
  26996. bottom: 23.7 / 1405
  26997. }
  26998. },
  26999. maw: {
  27000. height: math.unit(2.8, "feet"),
  27001. name: "Maw",
  27002. image: {
  27003. source: "./media/characters/juri/maw.svg"
  27004. }
  27005. },
  27006. stomach: {
  27007. height: math.unit(0.89, "feet"),
  27008. preyCapacity: math.unit(4, "liters"),
  27009. name: "Stomach",
  27010. image: {
  27011. source: "./media/characters/juri/stomach.svg"
  27012. }
  27013. },
  27014. },
  27015. [
  27016. {
  27017. name: "Normal",
  27018. height: math.unit(7 + 3 / 12, "feet"),
  27019. default: true
  27020. },
  27021. ]
  27022. ))
  27023. characterMakers.push(() => makeCharacter(
  27024. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27025. {
  27026. fox: {
  27027. height: math.unit(5 + 6 / 12, "feet"),
  27028. weight: math.unit(140, "lb"),
  27029. name: "Fox",
  27030. image: {
  27031. source: "./media/characters/maxene-sita/fox.svg",
  27032. extra: 146 / 138,
  27033. bottom: 2.1 / 148.19
  27034. }
  27035. },
  27036. foxLaying: {
  27037. height: math.unit(1.70, "feet"),
  27038. weight: math.unit(140, "lb"),
  27039. name: "Fox (Laying)",
  27040. image: {
  27041. source: "./media/characters/maxene-sita/fox-laying.svg",
  27042. extra: 910 / 572,
  27043. bottom: 71 / 981
  27044. }
  27045. },
  27046. kitsune: {
  27047. height: math.unit(10, "feet"),
  27048. weight: math.unit(800, "lb"),
  27049. name: "Kitsune",
  27050. image: {
  27051. source: "./media/characters/maxene-sita/kitsune.svg",
  27052. extra: 185 / 176,
  27053. bottom: 4.7 / 189.9
  27054. }
  27055. },
  27056. hellhound: {
  27057. height: math.unit(10, "feet"),
  27058. weight: math.unit(700, "lb"),
  27059. name: "Hellhound",
  27060. image: {
  27061. source: "./media/characters/maxene-sita/hellhound.svg",
  27062. extra: 1600 / 1545,
  27063. bottom: 81 / 1681
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(5 + 6 / 12, "feet"),
  27071. default: true
  27072. },
  27073. ]
  27074. ))
  27075. characterMakers.push(() => makeCharacter(
  27076. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27077. {
  27078. front: {
  27079. height: math.unit(3 + 4 / 12, "feet"),
  27080. weight: math.unit(70, "lb"),
  27081. name: "Front",
  27082. image: {
  27083. source: "./media/characters/maia/front.svg",
  27084. extra: 227 / 219.5,
  27085. bottom: 40 / 267
  27086. }
  27087. },
  27088. back: {
  27089. height: math.unit(3 + 4 / 12, "feet"),
  27090. weight: math.unit(70, "lb"),
  27091. name: "Back",
  27092. image: {
  27093. source: "./media/characters/maia/back.svg",
  27094. extra: 237 / 225
  27095. }
  27096. },
  27097. },
  27098. [
  27099. {
  27100. name: "Normal",
  27101. height: math.unit(3 + 4 / 12, "feet"),
  27102. default: true
  27103. },
  27104. ]
  27105. ))
  27106. characterMakers.push(() => makeCharacter(
  27107. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27108. {
  27109. front: {
  27110. height: math.unit(5 + 10 / 12, "feet"),
  27111. weight: math.unit(197, "lb"),
  27112. name: "Front",
  27113. image: {
  27114. source: "./media/characters/jabaro/front.svg",
  27115. extra: 225 / 216,
  27116. bottom: 5.06 / 230
  27117. }
  27118. },
  27119. back: {
  27120. height: math.unit(5 + 10 / 12, "feet"),
  27121. weight: math.unit(197, "lb"),
  27122. name: "Back",
  27123. image: {
  27124. source: "./media/characters/jabaro/back.svg",
  27125. extra: 225 / 219,
  27126. bottom: 1.9 / 227
  27127. }
  27128. },
  27129. },
  27130. [
  27131. {
  27132. name: "Normal",
  27133. height: math.unit(5 + 10 / 12, "feet"),
  27134. default: true
  27135. },
  27136. ]
  27137. ))
  27138. characterMakers.push(() => makeCharacter(
  27139. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27140. {
  27141. front: {
  27142. height: math.unit(5 + 8 / 12, "feet"),
  27143. weight: math.unit(139, "lb"),
  27144. name: "Front",
  27145. image: {
  27146. source: "./media/characters/risa/front.svg",
  27147. extra: 270 / 260,
  27148. bottom: 11.2 / 282
  27149. }
  27150. },
  27151. back: {
  27152. height: math.unit(5 + 8 / 12, "feet"),
  27153. weight: math.unit(139, "lb"),
  27154. name: "Back",
  27155. image: {
  27156. source: "./media/characters/risa/back.svg",
  27157. extra: 264 / 255,
  27158. bottom: 4 / 268
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(5 + 8 / 12, "feet"),
  27166. default: true
  27167. },
  27168. ]
  27169. ))
  27170. characterMakers.push(() => makeCharacter(
  27171. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27172. {
  27173. front: {
  27174. height: math.unit(2 + 11 / 12, "feet"),
  27175. weight: math.unit(30, "lb"),
  27176. name: "Front",
  27177. image: {
  27178. source: "./media/characters/weatley/front.svg",
  27179. bottom: 10.7 / 414,
  27180. extra: 403.5 / 362
  27181. }
  27182. },
  27183. back: {
  27184. height: math.unit(2 + 11 / 12, "feet"),
  27185. weight: math.unit(30, "lb"),
  27186. name: "Back",
  27187. image: {
  27188. source: "./media/characters/weatley/back.svg",
  27189. bottom: 10.7 / 414,
  27190. extra: 403.5 / 362
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "Normal",
  27197. height: math.unit(2 + 11 / 12, "feet"),
  27198. default: true
  27199. },
  27200. ]
  27201. ))
  27202. characterMakers.push(() => makeCharacter(
  27203. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27204. {
  27205. front: {
  27206. height: math.unit(5 + 2 / 12, "feet"),
  27207. weight: math.unit(50, "kg"),
  27208. name: "Front",
  27209. image: {
  27210. source: "./media/characters/mercury-crescent/front.svg",
  27211. extra: 1088 / 1033,
  27212. bottom: 18.9 / 1109
  27213. }
  27214. },
  27215. },
  27216. [
  27217. {
  27218. name: "Normal",
  27219. height: math.unit(5 + 2 / 12, "feet"),
  27220. default: true
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27226. {
  27227. front: {
  27228. height: math.unit(2, "feet"),
  27229. weight: math.unit(15, "kg"),
  27230. name: "Front",
  27231. image: {
  27232. source: "./media/characters/diamond-jones/front.svg",
  27233. extra: 727/723,
  27234. bottom: 46/773
  27235. }
  27236. },
  27237. },
  27238. [
  27239. {
  27240. name: "Normal",
  27241. height: math.unit(2, "feet"),
  27242. default: true
  27243. },
  27244. ]
  27245. ))
  27246. characterMakers.push(() => makeCharacter(
  27247. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27248. {
  27249. front: {
  27250. height: math.unit(3, "feet"),
  27251. weight: math.unit(30, "kg"),
  27252. name: "Front",
  27253. image: {
  27254. source: "./media/characters/sweet-bit/front.svg",
  27255. extra: 675 / 567,
  27256. bottom: 27.7 / 703
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Normal",
  27263. height: math.unit(3, "feet"),
  27264. default: true
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27270. {
  27271. side: {
  27272. height: math.unit(9.178, "feet"),
  27273. weight: math.unit(500, "lb"),
  27274. name: "Side",
  27275. image: {
  27276. source: "./media/characters/umbrazen/side.svg",
  27277. extra: 1730 / 1473,
  27278. bottom: 34.6 / 1765
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(9.178, "feet"),
  27286. default: true
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27292. {
  27293. front: {
  27294. height: math.unit(10, "feet"),
  27295. weight: math.unit(750, "lb"),
  27296. name: "Front",
  27297. image: {
  27298. source: "./media/characters/arlist/front.svg",
  27299. extra: 961 / 778,
  27300. bottom: 6.2 / 986
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(10, "feet"),
  27308. default: true
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27314. {
  27315. front: {
  27316. height: math.unit(5 + 1 / 12, "feet"),
  27317. weight: math.unit(110, "lb"),
  27318. name: "Front",
  27319. image: {
  27320. source: "./media/characters/aradel/front.svg",
  27321. extra: 324 / 303,
  27322. bottom: 3.6 / 329.4
  27323. }
  27324. },
  27325. },
  27326. [
  27327. {
  27328. name: "Normal",
  27329. height: math.unit(5 + 1 / 12, "feet"),
  27330. default: true
  27331. },
  27332. ]
  27333. ))
  27334. characterMakers.push(() => makeCharacter(
  27335. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27336. {
  27337. dressed: {
  27338. height: math.unit(3 + 8 / 12, "feet"),
  27339. weight: math.unit(50, "lb"),
  27340. name: "Dressed",
  27341. image: {
  27342. source: "./media/characters/serryn/dressed.svg",
  27343. extra: 1792 / 1656,
  27344. bottom: 43.5 / 1840
  27345. }
  27346. },
  27347. nude: {
  27348. height: math.unit(3 + 8 / 12, "feet"),
  27349. weight: math.unit(50, "lb"),
  27350. name: "Nude",
  27351. image: {
  27352. source: "./media/characters/serryn/nude.svg",
  27353. extra: 1792 / 1656,
  27354. bottom: 43.5 / 1840
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(3 + 8 / 12, "feet"),
  27362. default: true
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27368. {
  27369. front: {
  27370. height: math.unit(7 + 10 / 12, "feet"),
  27371. weight: math.unit(255, "lb"),
  27372. name: "Front",
  27373. image: {
  27374. source: "./media/characters/xavier-thyme/front.svg",
  27375. extra: 3733 / 3642,
  27376. bottom: 131 / 3869
  27377. }
  27378. },
  27379. frontRaven: {
  27380. height: math.unit(7 + 10 / 12, "feet"),
  27381. weight: math.unit(255, "lb"),
  27382. name: "Front (Raven)",
  27383. image: {
  27384. source: "./media/characters/xavier-thyme/front-raven.svg",
  27385. extra: 4385 / 3642,
  27386. bottom: 131 / 4517
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(7 + 10 / 12, "feet"),
  27394. default: true
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(1.6, "m"),
  27403. weight: math.unit(50, "kg"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/kiki/front.svg",
  27407. extra: 4682 / 3610,
  27408. bottom: 115 / 4777
  27409. }
  27410. },
  27411. },
  27412. [
  27413. {
  27414. name: "Normal",
  27415. height: math.unit(1.6, "meters"),
  27416. default: true
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27422. {
  27423. front: {
  27424. height: math.unit(50, "m"),
  27425. weight: math.unit(500, "tonnes"),
  27426. name: "Front",
  27427. image: {
  27428. source: "./media/characters/ryoko/front.svg",
  27429. extra: 4632 / 3926,
  27430. bottom: 193 / 4823
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(50, "meters"),
  27438. default: true
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(30, "m"),
  27447. weight: math.unit(22, "tonnes"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/elio/front.svg",
  27451. extra: 4582 / 3720,
  27452. bottom: 236 / 4828
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(30, "meters"),
  27460. default: true
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(6 + 3 / 12, "feet"),
  27469. weight: math.unit(120, "lb"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/azura/front.svg",
  27473. extra: 1149 / 1135,
  27474. bottom: 45 / 1194
  27475. }
  27476. },
  27477. frontClothed: {
  27478. height: math.unit(6 + 3 / 12, "feet"),
  27479. weight: math.unit(120, "lb"),
  27480. name: "Front (Clothed)",
  27481. image: {
  27482. source: "./media/characters/azura/front-clothed.svg",
  27483. extra: 1149 / 1135,
  27484. bottom: 45 / 1194
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(6 + 3 / 12, "feet"),
  27492. default: true
  27493. },
  27494. {
  27495. name: "Macro",
  27496. height: math.unit(20 + 6 / 12, "feet")
  27497. },
  27498. {
  27499. name: "Megamacro",
  27500. height: math.unit(12, "miles")
  27501. },
  27502. {
  27503. name: "Gigamacro",
  27504. height: math.unit(10000, "miles")
  27505. },
  27506. {
  27507. name: "Teramacro",
  27508. height: math.unit(900000, "miles")
  27509. },
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27514. {
  27515. front: {
  27516. height: math.unit(12, "feet"),
  27517. weight: math.unit(1, "ton"),
  27518. capacity: math.unit(660000, "gallons"),
  27519. name: "Front",
  27520. image: {
  27521. source: "./media/characters/zeus/front.svg",
  27522. extra: 5005 / 4717,
  27523. bottom: 363 / 5388
  27524. }
  27525. },
  27526. },
  27527. [
  27528. {
  27529. name: "Normal",
  27530. height: math.unit(12, "feet")
  27531. },
  27532. {
  27533. name: "Preferred Size",
  27534. height: math.unit(0.5, "miles"),
  27535. default: true
  27536. },
  27537. {
  27538. name: "Giga Horse",
  27539. height: math.unit(300, "miles")
  27540. },
  27541. {
  27542. name: "Riding Planets",
  27543. height: math.unit(30, "megameters")
  27544. },
  27545. {
  27546. name: "Cosmic Giant",
  27547. height: math.unit(3, "zettameters")
  27548. },
  27549. {
  27550. name: "Breeding God",
  27551. height: math.unit(9.92e22, "yottameters")
  27552. },
  27553. ]
  27554. ))
  27555. characterMakers.push(() => makeCharacter(
  27556. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27557. {
  27558. side: {
  27559. height: math.unit(9, "feet"),
  27560. weight: math.unit(1500, "kg"),
  27561. name: "Side",
  27562. image: {
  27563. source: "./media/characters/fang/side.svg",
  27564. extra: 924 / 866,
  27565. bottom: 47.5 / 972.3
  27566. }
  27567. },
  27568. },
  27569. [
  27570. {
  27571. name: "Normal",
  27572. height: math.unit(9, "feet"),
  27573. default: true
  27574. },
  27575. {
  27576. name: "Macro",
  27577. height: math.unit(75 + 6 / 12, "feet")
  27578. },
  27579. {
  27580. name: "Teramacro",
  27581. height: math.unit(50000, "miles")
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27587. {
  27588. front: {
  27589. height: math.unit(10, "feet"),
  27590. weight: math.unit(2, "tons"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/rekhit/front.svg",
  27594. extra: 2796 / 2590,
  27595. bottom: 225 / 3022
  27596. }
  27597. },
  27598. },
  27599. [
  27600. {
  27601. name: "Normal",
  27602. height: math.unit(10, "feet"),
  27603. default: true
  27604. },
  27605. {
  27606. name: "Macro",
  27607. height: math.unit(500, "feet")
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27613. {
  27614. front: {
  27615. height: math.unit(7 + 6.451 / 12, "feet"),
  27616. weight: math.unit(310, "lb"),
  27617. name: "Front",
  27618. image: {
  27619. source: "./media/characters/dahlia-verrick/front.svg",
  27620. extra: 1488 / 1365,
  27621. bottom: 6.2 / 1495
  27622. }
  27623. },
  27624. back: {
  27625. height: math.unit(7 + 6.451 / 12, "feet"),
  27626. weight: math.unit(310, "lb"),
  27627. name: "Back",
  27628. image: {
  27629. source: "./media/characters/dahlia-verrick/back.svg",
  27630. extra: 1472 / 1351,
  27631. bottom: 5.28 / 1477
  27632. }
  27633. },
  27634. frontBusiness: {
  27635. height: math.unit(7 + 6.451 / 12, "feet"),
  27636. weight: math.unit(200, "lb"),
  27637. name: "Front (Business)",
  27638. image: {
  27639. source: "./media/characters/dahlia-verrick/front-business.svg",
  27640. extra: 1478 / 1381,
  27641. bottom: 5.5 / 1484
  27642. }
  27643. },
  27644. frontCasual: {
  27645. height: math.unit(7 + 6.451 / 12, "feet"),
  27646. weight: math.unit(200, "lb"),
  27647. name: "Front (Casual)",
  27648. image: {
  27649. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27650. extra: 1478 / 1381,
  27651. bottom: 5.5 / 1484
  27652. }
  27653. },
  27654. },
  27655. [
  27656. {
  27657. name: "Travel-Sized",
  27658. height: math.unit(7.45, "inches")
  27659. },
  27660. {
  27661. name: "Normal",
  27662. height: math.unit(7 + 6.451 / 12, "feet"),
  27663. default: true
  27664. },
  27665. {
  27666. name: "Hitting the Town",
  27667. height: math.unit(37 + 8 / 12, "feet")
  27668. },
  27669. {
  27670. name: "Stomp in the Suburbs",
  27671. height: math.unit(964 + 9.728 / 12, "feet")
  27672. },
  27673. {
  27674. name: "Sit on the City",
  27675. height: math.unit(61747 + 10.592 / 12, "feet")
  27676. },
  27677. {
  27678. name: "Glomp the Globe",
  27679. height: math.unit(252919327 + 4.832 / 12, "feet")
  27680. },
  27681. ]
  27682. ))
  27683. characterMakers.push(() => makeCharacter(
  27684. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27685. {
  27686. front: {
  27687. height: math.unit(6 + 4 / 12, "feet"),
  27688. weight: math.unit(320, "lb"),
  27689. name: "Front",
  27690. image: {
  27691. source: "./media/characters/balina-mahigan/front.svg",
  27692. extra: 447 / 428,
  27693. bottom: 18 / 466
  27694. }
  27695. },
  27696. back: {
  27697. height: math.unit(6 + 4 / 12, "feet"),
  27698. weight: math.unit(320, "lb"),
  27699. name: "Back",
  27700. image: {
  27701. source: "./media/characters/balina-mahigan/back.svg",
  27702. extra: 445 / 428,
  27703. bottom: 4.07 / 448
  27704. }
  27705. },
  27706. arm: {
  27707. height: math.unit(1.88, "feet"),
  27708. name: "Arm",
  27709. image: {
  27710. source: "./media/characters/balina-mahigan/arm.svg"
  27711. }
  27712. },
  27713. backPort: {
  27714. height: math.unit(0.685, "feet"),
  27715. name: "Back Port",
  27716. image: {
  27717. source: "./media/characters/balina-mahigan/back-port.svg"
  27718. }
  27719. },
  27720. hoofpaw: {
  27721. height: math.unit(1.41, "feet"),
  27722. name: "Hoofpaw",
  27723. image: {
  27724. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27725. }
  27726. },
  27727. leftHandBack: {
  27728. height: math.unit(0.938, "feet"),
  27729. name: "Left Hand (Back)",
  27730. image: {
  27731. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27732. }
  27733. },
  27734. leftHandFront: {
  27735. height: math.unit(0.938, "feet"),
  27736. name: "Left Hand (Front)",
  27737. image: {
  27738. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27739. }
  27740. },
  27741. rightHandBack: {
  27742. height: math.unit(0.95, "feet"),
  27743. name: "Right Hand (Back)",
  27744. image: {
  27745. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27746. }
  27747. },
  27748. rightHandFront: {
  27749. height: math.unit(0.95, "feet"),
  27750. name: "Right Hand (Front)",
  27751. image: {
  27752. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(6 + 4 / 12, "feet"),
  27760. default: true
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(6, "feet"),
  27769. weight: math.unit(320, "lb"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/balina-mejeri/front.svg",
  27773. extra: 517 / 488,
  27774. bottom: 44.2 / 561
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(6 + 4 / 12, "feet")
  27782. },
  27783. {
  27784. name: "Business",
  27785. height: math.unit(155, "feet"),
  27786. default: true
  27787. },
  27788. ]
  27789. ))
  27790. characterMakers.push(() => makeCharacter(
  27791. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27792. {
  27793. kneeling: {
  27794. height: math.unit(6 + 4 / 12, "feet"),
  27795. weight: math.unit(300 * 20, "lb"),
  27796. name: "Kneeling",
  27797. image: {
  27798. source: "./media/characters/balbarian/kneeling.svg",
  27799. extra: 922 / 862,
  27800. bottom: 42.4 / 965
  27801. }
  27802. },
  27803. },
  27804. [
  27805. {
  27806. name: "Normal",
  27807. height: math.unit(6 + 4 / 12, "feet")
  27808. },
  27809. {
  27810. name: "Treasured",
  27811. height: math.unit(18 + 9 / 12, "feet"),
  27812. default: true
  27813. },
  27814. {
  27815. name: "Macro",
  27816. height: math.unit(900, "feet")
  27817. },
  27818. ]
  27819. ))
  27820. characterMakers.push(() => makeCharacter(
  27821. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27822. {
  27823. front: {
  27824. height: math.unit(6 + 4 / 12, "feet"),
  27825. weight: math.unit(325, "lb"),
  27826. name: "Front",
  27827. image: {
  27828. source: "./media/characters/balina-amarini/front.svg",
  27829. extra: 415 / 403,
  27830. bottom: 19 / 433.4
  27831. }
  27832. },
  27833. back: {
  27834. height: math.unit(6 + 4 / 12, "feet"),
  27835. weight: math.unit(325, "lb"),
  27836. name: "Back",
  27837. image: {
  27838. source: "./media/characters/balina-amarini/back.svg",
  27839. extra: 415 / 403,
  27840. bottom: 13.5 / 432
  27841. }
  27842. },
  27843. overdrive: {
  27844. height: math.unit(6 + 4 / 12, "feet"),
  27845. weight: math.unit(400, "lb"),
  27846. name: "Overdrive",
  27847. image: {
  27848. source: "./media/characters/balina-amarini/overdrive.svg",
  27849. extra: 269 / 259,
  27850. bottom: 12 / 282
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Boom",
  27857. height: math.unit(9 + 10 / 12, "feet"),
  27858. default: true
  27859. },
  27860. {
  27861. name: "Macro",
  27862. height: math.unit(280, "feet")
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27868. {
  27869. goddess: {
  27870. height: math.unit(600, "feet"),
  27871. weight: math.unit(2000000, "tons"),
  27872. name: "Goddess",
  27873. image: {
  27874. source: "./media/characters/lady-kubwa/goddess.svg",
  27875. extra: 1240.5 / 1223,
  27876. bottom: 22 / 1263
  27877. }
  27878. },
  27879. goddesser: {
  27880. height: math.unit(900, "feet"),
  27881. weight: math.unit(20000000, "lb"),
  27882. name: "Goddess-er",
  27883. image: {
  27884. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27885. extra: 899 / 888,
  27886. bottom: 12.6 / 912
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Macro",
  27893. height: math.unit(600, "feet"),
  27894. default: true
  27895. },
  27896. {
  27897. name: "Megamacro",
  27898. height: math.unit(250, "miles")
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(7 + 7 / 12, "feet"),
  27907. weight: math.unit(250, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/tala-grovehorn/front.svg",
  27911. extra: 2636 / 2525,
  27912. bottom: 147 / 2781
  27913. }
  27914. },
  27915. back: {
  27916. height: math.unit(7 + 7 / 12, "feet"),
  27917. weight: math.unit(250, "lb"),
  27918. name: "Back",
  27919. image: {
  27920. source: "./media/characters/tala-grovehorn/back.svg",
  27921. extra: 2635 / 2539,
  27922. bottom: 100 / 2732.8
  27923. }
  27924. },
  27925. mouth: {
  27926. height: math.unit(1.15, "feet"),
  27927. name: "Mouth",
  27928. image: {
  27929. source: "./media/characters/tala-grovehorn/mouth.svg"
  27930. }
  27931. },
  27932. dick: {
  27933. height: math.unit(2.36, "feet"),
  27934. name: "Dick",
  27935. image: {
  27936. source: "./media/characters/tala-grovehorn/dick.svg"
  27937. }
  27938. },
  27939. slit: {
  27940. height: math.unit(0.61, "feet"),
  27941. name: "Slit",
  27942. image: {
  27943. source: "./media/characters/tala-grovehorn/slit.svg"
  27944. }
  27945. },
  27946. },
  27947. [
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27952. {
  27953. front: {
  27954. height: math.unit(7 + 7 / 12, "feet"),
  27955. weight: math.unit(225, "lb"),
  27956. name: "Front",
  27957. image: {
  27958. source: "./media/characters/epona/front.svg",
  27959. extra: 2445 / 2290,
  27960. bottom: 251 / 2696
  27961. }
  27962. },
  27963. back: {
  27964. height: math.unit(7 + 7 / 12, "feet"),
  27965. weight: math.unit(225, "lb"),
  27966. name: "Back",
  27967. image: {
  27968. source: "./media/characters/epona/back.svg",
  27969. extra: 2546 / 2408,
  27970. bottom: 44 / 2589
  27971. }
  27972. },
  27973. genitals: {
  27974. height: math.unit(1.5, "feet"),
  27975. name: "Genitals",
  27976. image: {
  27977. source: "./media/characters/epona/genitals.svg"
  27978. }
  27979. },
  27980. },
  27981. [
  27982. {
  27983. name: "Normal",
  27984. height: math.unit(7 + 7 / 12, "feet"),
  27985. default: true
  27986. },
  27987. ]
  27988. ))
  27989. characterMakers.push(() => makeCharacter(
  27990. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27991. {
  27992. front: {
  27993. height: math.unit(7, "feet"),
  27994. weight: math.unit(518, "lb"),
  27995. name: "Front",
  27996. image: {
  27997. source: "./media/characters/avia-bloodbourn/front.svg",
  27998. extra: 1466 / 1350,
  27999. bottom: 65 / 1527
  28000. }
  28001. },
  28002. },
  28003. [
  28004. ]
  28005. ))
  28006. characterMakers.push(() => makeCharacter(
  28007. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28008. {
  28009. front: {
  28010. height: math.unit(9.35, "feet"),
  28011. weight: math.unit(600, "lb"),
  28012. name: "Front",
  28013. image: {
  28014. source: "./media/characters/amera/front.svg",
  28015. extra: 891 / 818,
  28016. bottom: 30 / 922.7
  28017. }
  28018. },
  28019. back: {
  28020. height: math.unit(9.35, "feet"),
  28021. weight: math.unit(600, "lb"),
  28022. name: "Back",
  28023. image: {
  28024. source: "./media/characters/amera/back.svg",
  28025. extra: 876 / 824,
  28026. bottom: 6.8 / 884
  28027. }
  28028. },
  28029. dick: {
  28030. height: math.unit(2.14, "feet"),
  28031. name: "Dick",
  28032. image: {
  28033. source: "./media/characters/amera/dick.svg"
  28034. }
  28035. },
  28036. },
  28037. [
  28038. {
  28039. name: "Normal",
  28040. height: math.unit(9.35, "feet"),
  28041. default: true
  28042. },
  28043. ]
  28044. ))
  28045. characterMakers.push(() => makeCharacter(
  28046. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28047. {
  28048. kneeling: {
  28049. height: math.unit(3 + 4 / 12, "feet"),
  28050. weight: math.unit(90, "lb"),
  28051. name: "Kneeling",
  28052. image: {
  28053. source: "./media/characters/rosewen/kneeling.svg",
  28054. extra: 1835 / 1571,
  28055. bottom: 27.7 / 1862
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Normal",
  28062. height: math.unit(3 + 4 / 12, "feet"),
  28063. default: true
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28069. {
  28070. front: {
  28071. height: math.unit(5 + 10 / 12, "feet"),
  28072. weight: math.unit(200, "lb"),
  28073. name: "Front",
  28074. image: {
  28075. source: "./media/characters/sabah/front.svg",
  28076. extra: 849 / 763,
  28077. bottom: 33.9 / 881
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(5 + 10 / 12, "feet"),
  28085. default: true
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28091. {
  28092. front: {
  28093. height: math.unit(3 + 5 / 12, "feet"),
  28094. weight: math.unit(40, "kg"),
  28095. name: "Front",
  28096. image: {
  28097. source: "./media/characters/purple-flame/front.svg",
  28098. extra: 1577 / 1412,
  28099. bottom: 97 / 1694
  28100. }
  28101. },
  28102. frontDressed: {
  28103. height: math.unit(3 + 5 / 12, "feet"),
  28104. weight: math.unit(40, "kg"),
  28105. name: "Front (Dressed)",
  28106. image: {
  28107. source: "./media/characters/purple-flame/front-dressed.svg",
  28108. extra: 1577 / 1412,
  28109. bottom: 97 / 1694
  28110. }
  28111. },
  28112. headphones: {
  28113. height: math.unit(0.85, "feet"),
  28114. name: "Headphones",
  28115. image: {
  28116. source: "./media/characters/purple-flame/headphones.svg"
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Really Small",
  28123. height: math.unit(5, "cm")
  28124. },
  28125. {
  28126. name: "Micro",
  28127. height: math.unit(1 + 5 / 12, "feet")
  28128. },
  28129. {
  28130. name: "Normal",
  28131. height: math.unit(3 + 5 / 12, "feet"),
  28132. default: true
  28133. },
  28134. {
  28135. name: "Minimacro",
  28136. height: math.unit(125, "feet")
  28137. },
  28138. {
  28139. name: "Macro",
  28140. height: math.unit(0.5, "miles")
  28141. },
  28142. {
  28143. name: "Megamacro",
  28144. height: math.unit(50, "miles")
  28145. },
  28146. {
  28147. name: "Gigantic",
  28148. height: math.unit(750, "miles")
  28149. },
  28150. {
  28151. name: "Planetary",
  28152. height: math.unit(15000, "miles")
  28153. },
  28154. ]
  28155. ))
  28156. characterMakers.push(() => makeCharacter(
  28157. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28158. {
  28159. front: {
  28160. height: math.unit(14, "feet"),
  28161. weight: math.unit(959, "lb"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/arsenal/front.svg",
  28165. extra: 2357 / 2157,
  28166. bottom: 93 / 2458
  28167. }
  28168. },
  28169. },
  28170. [
  28171. {
  28172. name: "Normal",
  28173. height: math.unit(14, "feet"),
  28174. default: true
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28180. {
  28181. front: {
  28182. height: math.unit(6, "feet"),
  28183. weight: math.unit(150, "lb"),
  28184. name: "Front",
  28185. image: {
  28186. source: "./media/characters/adira/front.svg",
  28187. extra: 1078 / 1029,
  28188. bottom: 87 / 1166
  28189. }
  28190. },
  28191. },
  28192. [
  28193. {
  28194. name: "Micro",
  28195. height: math.unit(4, "inches"),
  28196. default: true
  28197. },
  28198. {
  28199. name: "Macro",
  28200. height: math.unit(50, "feet")
  28201. },
  28202. ]
  28203. ))
  28204. characterMakers.push(() => makeCharacter(
  28205. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28206. {
  28207. front: {
  28208. height: math.unit(16, "feet"),
  28209. weight: math.unit(1000, "lb"),
  28210. name: "Front",
  28211. image: {
  28212. source: "./media/characters/grim/front.svg",
  28213. extra: 622 / 614,
  28214. bottom: 18.1 / 642
  28215. }
  28216. },
  28217. back: {
  28218. height: math.unit(16, "feet"),
  28219. weight: math.unit(1000, "lb"),
  28220. name: "Back",
  28221. image: {
  28222. source: "./media/characters/grim/back.svg",
  28223. extra: 610.6 / 602,
  28224. bottom: 40.8 / 652
  28225. }
  28226. },
  28227. hunched: {
  28228. height: math.unit(9.75, "feet"),
  28229. weight: math.unit(1000, "lb"),
  28230. name: "Hunched",
  28231. image: {
  28232. source: "./media/characters/grim/hunched.svg",
  28233. extra: 304 / 297,
  28234. bottom: 35.4 / 394
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Normal",
  28241. height: math.unit(16, "feet"),
  28242. default: true
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28248. {
  28249. front: {
  28250. height: math.unit(2.3, "meters"),
  28251. weight: math.unit(300, "lb"),
  28252. name: "Front",
  28253. image: {
  28254. source: "./media/characters/sinja/front-sfw.svg",
  28255. extra: 1393 / 1294,
  28256. bottom: 70 / 1463
  28257. }
  28258. },
  28259. frontNsfw: {
  28260. height: math.unit(2.3, "meters"),
  28261. weight: math.unit(300, "lb"),
  28262. name: "Front (NSFW)",
  28263. image: {
  28264. source: "./media/characters/sinja/front-nsfw.svg",
  28265. extra: 1393 / 1294,
  28266. bottom: 70 / 1463
  28267. }
  28268. },
  28269. back: {
  28270. height: math.unit(2.3, "meters"),
  28271. weight: math.unit(300, "lb"),
  28272. name: "Back",
  28273. image: {
  28274. source: "./media/characters/sinja/back.svg",
  28275. extra: 1393 / 1294,
  28276. bottom: 70 / 1463
  28277. }
  28278. },
  28279. head: {
  28280. height: math.unit(1.771, "feet"),
  28281. name: "Head",
  28282. image: {
  28283. source: "./media/characters/sinja/head.svg"
  28284. }
  28285. },
  28286. slit: {
  28287. height: math.unit(0.8, "feet"),
  28288. name: "Slit",
  28289. image: {
  28290. source: "./media/characters/sinja/slit.svg"
  28291. }
  28292. },
  28293. },
  28294. [
  28295. {
  28296. name: "Normal",
  28297. height: math.unit(2.3, "meters")
  28298. },
  28299. {
  28300. name: "Macro",
  28301. height: math.unit(91, "meters"),
  28302. default: true
  28303. },
  28304. {
  28305. name: "Megamacro",
  28306. height: math.unit(91440, "meters")
  28307. },
  28308. {
  28309. name: "Gigamacro",
  28310. height: math.unit(60960000, "meters")
  28311. },
  28312. {
  28313. name: "Teramacro",
  28314. height: math.unit(9144000000, "meters")
  28315. },
  28316. ]
  28317. ))
  28318. characterMakers.push(() => makeCharacter(
  28319. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28320. {
  28321. front: {
  28322. height: math.unit(1.7, "meters"),
  28323. weight: math.unit(130, "lb"),
  28324. name: "Front",
  28325. image: {
  28326. source: "./media/characters/kyu/front.svg",
  28327. extra: 415 / 395,
  28328. bottom: 5 / 420
  28329. }
  28330. },
  28331. head: {
  28332. height: math.unit(1.75, "feet"),
  28333. name: "Head",
  28334. image: {
  28335. source: "./media/characters/kyu/head.svg"
  28336. }
  28337. },
  28338. foot: {
  28339. height: math.unit(0.81, "feet"),
  28340. name: "Foot",
  28341. image: {
  28342. source: "./media/characters/kyu/foot.svg"
  28343. }
  28344. },
  28345. },
  28346. [
  28347. {
  28348. name: "Normal",
  28349. height: math.unit(1.7, "meters")
  28350. },
  28351. {
  28352. name: "Macro",
  28353. height: math.unit(131, "feet"),
  28354. default: true
  28355. },
  28356. {
  28357. name: "Megamacro",
  28358. height: math.unit(91440, "meters")
  28359. },
  28360. {
  28361. name: "Gigamacro",
  28362. height: math.unit(60960000, "meters")
  28363. },
  28364. {
  28365. name: "Teramacro",
  28366. height: math.unit(9144000000, "meters")
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28372. {
  28373. front: {
  28374. height: math.unit(7 + 1 / 12, "feet"),
  28375. weight: math.unit(250, "lb"),
  28376. name: "Front",
  28377. image: {
  28378. source: "./media/characters/joey/front.svg",
  28379. extra: 1791 / 1537,
  28380. bottom: 28 / 1816
  28381. }
  28382. },
  28383. },
  28384. [
  28385. {
  28386. name: "Micro",
  28387. height: math.unit(3, "inches")
  28388. },
  28389. {
  28390. name: "Normal",
  28391. height: math.unit(7 + 1 / 12, "feet"),
  28392. default: true
  28393. },
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(165, "cm"),
  28401. weight: math.unit(140, "lb"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/sam-evans/front.svg",
  28405. extra: 3417 / 3230,
  28406. bottom: 41.3 / 3417
  28407. }
  28408. },
  28409. frontSixTails: {
  28410. height: math.unit(165, "cm"),
  28411. weight: math.unit(140, "lb"),
  28412. name: "Front-six-tails",
  28413. image: {
  28414. source: "./media/characters/sam-evans/front-six-tails.svg",
  28415. extra: 3417 / 3230,
  28416. bottom: 41.3 / 3417
  28417. }
  28418. },
  28419. back: {
  28420. height: math.unit(165, "cm"),
  28421. weight: math.unit(140, "lb"),
  28422. name: "Back",
  28423. image: {
  28424. source: "./media/characters/sam-evans/back.svg",
  28425. extra: 3227 / 3032,
  28426. bottom: 6.8 / 3234
  28427. }
  28428. },
  28429. face: {
  28430. height: math.unit(0.68, "feet"),
  28431. name: "Face",
  28432. image: {
  28433. source: "./media/characters/sam-evans/face.svg"
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(165, "cm"),
  28441. default: true
  28442. },
  28443. {
  28444. name: "Macro",
  28445. height: math.unit(100, "meters")
  28446. },
  28447. {
  28448. name: "Macro+",
  28449. height: math.unit(800, "meters")
  28450. },
  28451. {
  28452. name: "Macro++",
  28453. height: math.unit(3, "km")
  28454. },
  28455. {
  28456. name: "Macro+++",
  28457. height: math.unit(30, "km")
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(10, "feet"),
  28466. weight: math.unit(750, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/juliet-a/front.svg",
  28470. extra: 1766 / 1720,
  28471. bottom: 43 / 1809
  28472. }
  28473. },
  28474. back: {
  28475. height: math.unit(10, "feet"),
  28476. weight: math.unit(750, "lb"),
  28477. name: "Back",
  28478. image: {
  28479. source: "./media/characters/juliet-a/back.svg",
  28480. extra: 1781 / 1734,
  28481. bottom: 35 / 1810,
  28482. }
  28483. },
  28484. },
  28485. [
  28486. {
  28487. name: "Normal",
  28488. height: math.unit(10, "feet"),
  28489. default: true
  28490. },
  28491. {
  28492. name: "Dragon Form",
  28493. height: math.unit(250, "feet")
  28494. },
  28495. {
  28496. name: "Macro",
  28497. height: math.unit(1000, "feet")
  28498. },
  28499. {
  28500. name: "Megamacro",
  28501. height: math.unit(10000, "feet")
  28502. }
  28503. ]
  28504. ))
  28505. characterMakers.push(() => makeCharacter(
  28506. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28507. {
  28508. regular: {
  28509. height: math.unit(7 + 3 / 12, "feet"),
  28510. weight: math.unit(260, "lb"),
  28511. name: "Regular",
  28512. image: {
  28513. source: "./media/characters/wild/regular.svg",
  28514. extra: 97.45 / 92,
  28515. bottom: 6.8 / 104.3
  28516. }
  28517. },
  28518. biggums: {
  28519. height: math.unit(8 + 6 / 12, "feet"),
  28520. weight: math.unit(425, "lb"),
  28521. name: "Biggums",
  28522. image: {
  28523. source: "./media/characters/wild/biggums.svg",
  28524. extra: 97.45 / 92,
  28525. bottom: 7.5 / 132.34
  28526. }
  28527. },
  28528. mawRegular: {
  28529. height: math.unit(1.24, "feet"),
  28530. name: "Maw (Regular)",
  28531. image: {
  28532. source: "./media/characters/wild/maw.svg"
  28533. }
  28534. },
  28535. mawBiggums: {
  28536. height: math.unit(1.47, "feet"),
  28537. name: "Maw (Biggums)",
  28538. image: {
  28539. source: "./media/characters/wild/maw.svg"
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Normal",
  28546. height: math.unit(7 + 3 / 12, "feet"),
  28547. default: true
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28553. {
  28554. front: {
  28555. height: math.unit(2.5, "meters"),
  28556. weight: math.unit(200, "kg"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/vidar/front.svg",
  28560. extra: 2994 / 2795,
  28561. bottom: 56 / 3061
  28562. }
  28563. },
  28564. back: {
  28565. height: math.unit(2.5, "meters"),
  28566. weight: math.unit(200, "kg"),
  28567. name: "Back",
  28568. image: {
  28569. source: "./media/characters/vidar/back.svg",
  28570. extra: 3131 / 2928,
  28571. bottom: 13.5 / 3141.5
  28572. }
  28573. },
  28574. feral: {
  28575. height: math.unit(2.5, "meters"),
  28576. weight: math.unit(2000, "kg"),
  28577. name: "Feral",
  28578. image: {
  28579. source: "./media/characters/vidar/feral.svg",
  28580. extra: 2790 / 1765,
  28581. bottom: 6 / 2796
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(2.5, "meters"),
  28589. default: true
  28590. },
  28591. {
  28592. name: "Macro",
  28593. height: math.unit(100, "meters")
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28599. {
  28600. front: {
  28601. height: math.unit(5 + 9 / 12, "feet"),
  28602. weight: math.unit(120, "lb"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/ash/front.svg",
  28606. extra: 2189 / 1961,
  28607. bottom: 5.2 / 2194
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Normal",
  28614. height: math.unit(5 + 9 / 12, "feet"),
  28615. default: true
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(9, "feet"),
  28624. weight: math.unit(10000, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/gygabite/front.svg",
  28628. bottom: 31.7 / 537.8,
  28629. extra: 505 / 370
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(9, "feet"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(12, "feet"),
  28646. weight: math.unit(4000, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/p0tat0/front.svg",
  28650. extra: 1065 / 921,
  28651. bottom: 55.7 / 1121.25
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Normal",
  28658. height: math.unit(12, "feet"),
  28659. default: true
  28660. },
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28665. {
  28666. side: {
  28667. height: math.unit(6.5, "feet"),
  28668. weight: math.unit(800, "lb"),
  28669. name: "Side",
  28670. image: {
  28671. source: "./media/characters/dusk/side.svg",
  28672. extra: 615 / 373,
  28673. bottom: 53 / 664
  28674. }
  28675. },
  28676. sitting: {
  28677. height: math.unit(7, "feet"),
  28678. weight: math.unit(800, "lb"),
  28679. name: "Sitting",
  28680. image: {
  28681. source: "./media/characters/dusk/sitting.svg",
  28682. extra: 753 / 425,
  28683. bottom: 33 / 774
  28684. }
  28685. },
  28686. head: {
  28687. height: math.unit(6.1, "feet"),
  28688. name: "Head",
  28689. image: {
  28690. source: "./media/characters/dusk/head.svg"
  28691. }
  28692. },
  28693. },
  28694. [
  28695. {
  28696. name: "Normal",
  28697. height: math.unit(7, "feet"),
  28698. default: true
  28699. },
  28700. ]
  28701. ))
  28702. characterMakers.push(() => makeCharacter(
  28703. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28704. {
  28705. front: {
  28706. height: math.unit(15, "feet"),
  28707. weight: math.unit(7000, "lb"),
  28708. name: "Front",
  28709. image: {
  28710. source: "./media/characters/jay-direwolf/front.svg",
  28711. extra: 1810 / 1732,
  28712. bottom: 66 / 1892
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Normal",
  28719. height: math.unit(15, "feet"),
  28720. default: true
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(4 + 9 / 12, "feet"),
  28729. weight: math.unit(130, "lb"),
  28730. name: "Front",
  28731. image: {
  28732. source: "./media/characters/anchovie/front.svg",
  28733. extra: 382 / 350,
  28734. bottom: 25 / 409
  28735. }
  28736. },
  28737. back: {
  28738. height: math.unit(4 + 9 / 12, "feet"),
  28739. weight: math.unit(130, "lb"),
  28740. name: "Back",
  28741. image: {
  28742. source: "./media/characters/anchovie/back.svg",
  28743. extra: 385 / 352,
  28744. bottom: 16.6 / 402
  28745. }
  28746. },
  28747. frontDressed: {
  28748. height: math.unit(4 + 9 / 12, "feet"),
  28749. weight: math.unit(130, "lb"),
  28750. name: "Front (Dressed)",
  28751. image: {
  28752. source: "./media/characters/anchovie/front-dressed.svg",
  28753. extra: 382 / 350,
  28754. bottom: 25 / 409
  28755. }
  28756. },
  28757. backDressed: {
  28758. height: math.unit(4 + 9 / 12, "feet"),
  28759. weight: math.unit(130, "lb"),
  28760. name: "Back (Dressed)",
  28761. image: {
  28762. source: "./media/characters/anchovie/back-dressed.svg",
  28763. extra: 385 / 352,
  28764. bottom: 16.6 / 402
  28765. }
  28766. },
  28767. },
  28768. [
  28769. {
  28770. name: "Micro",
  28771. height: math.unit(6.4, "inches")
  28772. },
  28773. {
  28774. name: "Normal",
  28775. height: math.unit(4 + 9 / 12, "feet"),
  28776. default: true
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(2, "meters"),
  28785. weight: math.unit(180, "lb"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/acidrenamon/front.svg",
  28789. extra: 987 / 890,
  28790. bottom: 22.8 / 1009
  28791. }
  28792. },
  28793. back: {
  28794. height: math.unit(2, "meters"),
  28795. weight: math.unit(180, "lb"),
  28796. name: "Back",
  28797. image: {
  28798. source: "./media/characters/acidrenamon/back.svg",
  28799. extra: 983 / 891,
  28800. bottom: 8.4 / 992
  28801. }
  28802. },
  28803. head: {
  28804. height: math.unit(1.92, "feet"),
  28805. name: "Head",
  28806. image: {
  28807. source: "./media/characters/acidrenamon/head.svg"
  28808. }
  28809. },
  28810. rump: {
  28811. height: math.unit(1.72, "feet"),
  28812. name: "Rump",
  28813. image: {
  28814. source: "./media/characters/acidrenamon/rump.svg"
  28815. }
  28816. },
  28817. tail: {
  28818. height: math.unit(4.2, "feet"),
  28819. name: "Tail",
  28820. image: {
  28821. source: "./media/characters/acidrenamon/tail.svg"
  28822. }
  28823. },
  28824. },
  28825. [
  28826. {
  28827. name: "Normal",
  28828. height: math.unit(2, "meters"),
  28829. default: true
  28830. },
  28831. {
  28832. name: "Minimacro",
  28833. height: math.unit(7, "meters")
  28834. },
  28835. {
  28836. name: "Macro",
  28837. height: math.unit(200, "meters")
  28838. },
  28839. {
  28840. name: "Gigamacro",
  28841. height: math.unit(0.2, "earths")
  28842. },
  28843. ]
  28844. ))
  28845. characterMakers.push(() => makeCharacter(
  28846. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28847. {
  28848. front: {
  28849. height: math.unit(152, "feet"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/kenzie-lee/front.svg",
  28853. extra: 1869/1774,
  28854. bottom: 128/1997
  28855. }
  28856. },
  28857. side: {
  28858. height: math.unit(86, "feet"),
  28859. name: "Side",
  28860. image: {
  28861. source: "./media/characters/kenzie-lee/side.svg",
  28862. extra: 930/815,
  28863. bottom: 177/1107
  28864. }
  28865. },
  28866. paw: {
  28867. height: math.unit(15, "feet"),
  28868. name: "Paw",
  28869. image: {
  28870. source: "./media/characters/kenzie-lee/paw.svg"
  28871. }
  28872. },
  28873. },
  28874. [
  28875. {
  28876. name: "Kenzie Flea",
  28877. height: math.unit(2, "mm"),
  28878. default: true
  28879. },
  28880. {
  28881. name: "Micro",
  28882. height: math.unit(2, "inches")
  28883. },
  28884. {
  28885. name: "Normal",
  28886. height: math.unit(152, "feet")
  28887. },
  28888. {
  28889. name: "Megamacro",
  28890. height: math.unit(7, "miles")
  28891. },
  28892. {
  28893. name: "Gigamacro",
  28894. height: math.unit(8000, "miles")
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28900. {
  28901. front: {
  28902. height: math.unit(6, "feet"),
  28903. name: "Front",
  28904. image: {
  28905. source: "./media/characters/withers/front.svg",
  28906. extra: 1935/1760,
  28907. bottom: 72/2007
  28908. }
  28909. },
  28910. back: {
  28911. height: math.unit(6, "feet"),
  28912. name: "Back",
  28913. image: {
  28914. source: "./media/characters/withers/back.svg",
  28915. extra: 1944/1792,
  28916. bottom: 12/1956
  28917. }
  28918. },
  28919. dressed: {
  28920. height: math.unit(6, "feet"),
  28921. name: "Dressed",
  28922. image: {
  28923. source: "./media/characters/withers/dressed.svg",
  28924. extra: 1937/1765,
  28925. bottom: 73/2010
  28926. }
  28927. },
  28928. phase1: {
  28929. height: math.unit(1.1, "feet"),
  28930. name: "Phase 1",
  28931. image: {
  28932. source: "./media/characters/withers/phase-1.svg",
  28933. extra: 1885/1232,
  28934. bottom: 0/1885
  28935. }
  28936. },
  28937. phase2: {
  28938. height: math.unit(1.05, "feet"),
  28939. name: "Phase 2",
  28940. image: {
  28941. source: "./media/characters/withers/phase-2.svg",
  28942. extra: 1792/1090,
  28943. bottom: 0/1792
  28944. }
  28945. },
  28946. partyWipe: {
  28947. height: math.unit(1.1, "feet"),
  28948. name: "Party Wipe",
  28949. image: {
  28950. source: "./media/characters/withers/party-wipe.svg",
  28951. extra: 1864/1207,
  28952. bottom: 0/1864
  28953. }
  28954. },
  28955. },
  28956. [
  28957. {
  28958. name: "Macro",
  28959. height: math.unit(167, "feet"),
  28960. default: true
  28961. },
  28962. {
  28963. name: "Megamacro",
  28964. height: math.unit(15, "miles")
  28965. }
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28970. {
  28971. front: {
  28972. height: math.unit(6 + 7 / 12, "feet"),
  28973. weight: math.unit(250, "lb"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/nemoskii/front.svg",
  28977. extra: 2270 / 1734,
  28978. bottom: 86 / 2354
  28979. }
  28980. },
  28981. back: {
  28982. height: math.unit(6 + 7 / 12, "feet"),
  28983. weight: math.unit(250, "lb"),
  28984. name: "Back",
  28985. image: {
  28986. source: "./media/characters/nemoskii/back.svg",
  28987. extra: 1845 / 1788,
  28988. bottom: 10.5 / 1852
  28989. }
  28990. },
  28991. head: {
  28992. height: math.unit(1.31, "feet"),
  28993. name: "Head",
  28994. image: {
  28995. source: "./media/characters/nemoskii/head.svg"
  28996. }
  28997. },
  28998. },
  28999. [
  29000. {
  29001. name: "Micro",
  29002. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29003. },
  29004. {
  29005. name: "Normal",
  29006. height: math.unit(6 + 7 / 12, "feet"),
  29007. default: true
  29008. },
  29009. {
  29010. name: "Macro",
  29011. height: math.unit((6 + 7 / 12) * 150, "feet")
  29012. },
  29013. {
  29014. name: "Macro+",
  29015. height: math.unit((6 + 7 / 12) * 500, "feet")
  29016. },
  29017. {
  29018. name: "Megamacro",
  29019. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29020. },
  29021. ]
  29022. ))
  29023. characterMakers.push(() => makeCharacter(
  29024. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29025. {
  29026. front: {
  29027. height: math.unit(1, "mile"),
  29028. weight: math.unit(265261.9, "lb"),
  29029. name: "Front",
  29030. image: {
  29031. source: "./media/characters/shui/front.svg",
  29032. extra: 1633 / 1564,
  29033. bottom: 91.5 / 1726
  29034. }
  29035. },
  29036. },
  29037. [
  29038. {
  29039. name: "Macro",
  29040. height: math.unit(1, "mile"),
  29041. default: true
  29042. },
  29043. ]
  29044. ))
  29045. characterMakers.push(() => makeCharacter(
  29046. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29047. {
  29048. front: {
  29049. height: math.unit(12 + 6 / 12, "feet"),
  29050. weight: math.unit(1342, "lb"),
  29051. name: "Front",
  29052. image: {
  29053. source: "./media/characters/arokh-takakura/front.svg",
  29054. extra: 1089 / 1043,
  29055. bottom: 77.4 / 1176.7
  29056. }
  29057. },
  29058. back: {
  29059. height: math.unit(12 + 6 / 12, "feet"),
  29060. weight: math.unit(1342, "lb"),
  29061. name: "Back",
  29062. image: {
  29063. source: "./media/characters/arokh-takakura/back.svg",
  29064. extra: 1046 / 1019,
  29065. bottom: 102 / 1150
  29066. }
  29067. },
  29068. },
  29069. [
  29070. {
  29071. name: "Big",
  29072. height: math.unit(12 + 6 / 12, "feet"),
  29073. default: true
  29074. },
  29075. ]
  29076. ))
  29077. characterMakers.push(() => makeCharacter(
  29078. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29079. {
  29080. front: {
  29081. height: math.unit(5 + 6 / 12, "feet"),
  29082. weight: math.unit(150, "lb"),
  29083. name: "Front",
  29084. image: {
  29085. source: "./media/characters/theo/front.svg",
  29086. extra: 1184 / 1131,
  29087. bottom: 7.4 / 1191
  29088. }
  29089. },
  29090. },
  29091. [
  29092. {
  29093. name: "Micro",
  29094. height: math.unit(5, "inches")
  29095. },
  29096. {
  29097. name: "Normal",
  29098. height: math.unit(5 + 6 / 12, "feet"),
  29099. default: true
  29100. },
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29105. {
  29106. front: {
  29107. height: math.unit(5 + 9 / 12, "feet"),
  29108. weight: math.unit(130, "lb"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/cecelia-swift/front.svg",
  29112. extra: 502 / 484,
  29113. bottom: 23 / 523
  29114. }
  29115. },
  29116. back: {
  29117. height: math.unit(5 + 9 / 12, "feet"),
  29118. weight: math.unit(130, "lb"),
  29119. name: "Back",
  29120. image: {
  29121. source: "./media/characters/cecelia-swift/back.svg",
  29122. extra: 499 / 485,
  29123. bottom: 12 / 511
  29124. }
  29125. },
  29126. head: {
  29127. height: math.unit(0.90, "feet"),
  29128. name: "Head",
  29129. image: {
  29130. source: "./media/characters/cecelia-swift/head.svg"
  29131. }
  29132. },
  29133. rump: {
  29134. height: math.unit(1.75, "feet"),
  29135. name: "Rump",
  29136. image: {
  29137. source: "./media/characters/cecelia-swift/rump.svg"
  29138. }
  29139. },
  29140. },
  29141. [
  29142. {
  29143. name: "Normal",
  29144. height: math.unit(5 + 9 / 12, "feet"),
  29145. default: true
  29146. },
  29147. {
  29148. name: "Big",
  29149. height: math.unit(50, "feet")
  29150. },
  29151. {
  29152. name: "Macro",
  29153. height: math.unit(100, "feet")
  29154. },
  29155. {
  29156. name: "Macro+",
  29157. height: math.unit(500, "feet")
  29158. },
  29159. {
  29160. name: "Macro++",
  29161. height: math.unit(1000, "feet")
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29167. {
  29168. front: {
  29169. height: math.unit(6, "feet"),
  29170. weight: math.unit(150, "lb"),
  29171. name: "Front",
  29172. image: {
  29173. source: "./media/characters/kaunan/front.svg",
  29174. extra: 2890 / 2523,
  29175. bottom: 49 / 2939
  29176. }
  29177. },
  29178. },
  29179. [
  29180. {
  29181. name: "Macro",
  29182. height: math.unit(150, "feet"),
  29183. default: true
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29189. {
  29190. dressed: {
  29191. height: math.unit(175, "cm"),
  29192. weight: math.unit(60, "kg"),
  29193. name: "Dressed",
  29194. image: {
  29195. source: "./media/characters/fei/dressed.svg",
  29196. extra: 1402/1278,
  29197. bottom: 27/1429
  29198. }
  29199. },
  29200. nude: {
  29201. height: math.unit(175, "cm"),
  29202. weight: math.unit(60, "kg"),
  29203. name: "Nude",
  29204. image: {
  29205. source: "./media/characters/fei/nude.svg",
  29206. extra: 1402/1278,
  29207. bottom: 27/1429
  29208. }
  29209. },
  29210. heels: {
  29211. height: math.unit(0.466, "feet"),
  29212. name: "Heels",
  29213. image: {
  29214. source: "./media/characters/fei/heels.svg",
  29215. extra: 156/152,
  29216. bottom: 28/184
  29217. }
  29218. },
  29219. },
  29220. [
  29221. {
  29222. name: "Mortal",
  29223. height: math.unit(175, "cm")
  29224. },
  29225. {
  29226. name: "Normal",
  29227. height: math.unit(3500, "m")
  29228. },
  29229. {
  29230. name: "Stroll",
  29231. height: math.unit(18.4, "km"),
  29232. default: true
  29233. },
  29234. {
  29235. name: "Showoff",
  29236. height: math.unit(175, "km")
  29237. },
  29238. ]
  29239. ))
  29240. characterMakers.push(() => makeCharacter(
  29241. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29242. {
  29243. front: {
  29244. height: math.unit(7, "feet"),
  29245. weight: math.unit(1000, "kg"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/edrax/front.svg",
  29249. extra: 2838 / 2550,
  29250. bottom: 130 / 2968
  29251. }
  29252. },
  29253. },
  29254. [
  29255. {
  29256. name: "Small",
  29257. height: math.unit(7, "feet")
  29258. },
  29259. {
  29260. name: "Normal",
  29261. height: math.unit(1500, "meters")
  29262. },
  29263. {
  29264. name: "Mega",
  29265. height: math.unit(12000000, "km"),
  29266. default: true
  29267. },
  29268. {
  29269. name: "Megamacro",
  29270. height: math.unit(10600000, "lightyears")
  29271. },
  29272. {
  29273. name: "Hypermacro",
  29274. height: math.unit(256, "yottameters")
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(10, "feet"),
  29283. weight: math.unit(750, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/clove/front.svg",
  29287. extra: 1918/1751,
  29288. bottom: 52/1970
  29289. }
  29290. },
  29291. back: {
  29292. height: math.unit(10, "feet"),
  29293. weight: math.unit(750, "lb"),
  29294. name: "Back",
  29295. image: {
  29296. source: "./media/characters/clove/back.svg",
  29297. extra: 1912/1747,
  29298. bottom: 50/1962
  29299. }
  29300. },
  29301. },
  29302. [
  29303. {
  29304. name: "Normal",
  29305. height: math.unit(10, "feet"),
  29306. default: true
  29307. },
  29308. ]
  29309. ))
  29310. characterMakers.push(() => makeCharacter(
  29311. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29312. {
  29313. front: {
  29314. height: math.unit(4, "feet"),
  29315. weight: math.unit(50, "lb"),
  29316. name: "Front",
  29317. image: {
  29318. source: "./media/characters/alex-rabbit/front.svg",
  29319. extra: 507 / 458,
  29320. bottom: 18.5 / 527
  29321. }
  29322. },
  29323. back: {
  29324. height: math.unit(4, "feet"),
  29325. weight: math.unit(50, "lb"),
  29326. name: "Back",
  29327. image: {
  29328. source: "./media/characters/alex-rabbit/back.svg",
  29329. extra: 502 / 460,
  29330. bottom: 18.9 / 521
  29331. }
  29332. },
  29333. },
  29334. [
  29335. {
  29336. name: "Normal",
  29337. height: math.unit(4, "feet"),
  29338. default: true
  29339. },
  29340. ]
  29341. ))
  29342. characterMakers.push(() => makeCharacter(
  29343. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29344. {
  29345. front: {
  29346. height: math.unit(1 + 3 / 12, "feet"),
  29347. weight: math.unit(80, "lb"),
  29348. name: "Front",
  29349. image: {
  29350. source: "./media/characters/zander-rose/front.svg",
  29351. extra: 916 / 797,
  29352. bottom: 17 / 933
  29353. }
  29354. },
  29355. back: {
  29356. height: math.unit(1 + 3 / 12, "feet"),
  29357. weight: math.unit(80, "lb"),
  29358. name: "Back",
  29359. image: {
  29360. source: "./media/characters/zander-rose/back.svg",
  29361. extra: 903 / 779,
  29362. bottom: 31 / 934
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Normal",
  29369. height: math.unit(1 + 3 / 12, "feet"),
  29370. default: true
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29376. {
  29377. anthro: {
  29378. height: math.unit(6, "feet"),
  29379. weight: math.unit(150, "lb"),
  29380. name: "Anthro",
  29381. image: {
  29382. source: "./media/characters/razz/anthro.svg",
  29383. extra: 1437 / 1343,
  29384. bottom: 48 / 1485
  29385. }
  29386. },
  29387. feral: {
  29388. height: math.unit(6, "feet"),
  29389. weight: math.unit(150, "lb"),
  29390. name: "Feral",
  29391. image: {
  29392. source: "./media/characters/razz/feral.svg",
  29393. extra: 2569 / 1385,
  29394. bottom: 95 / 2664
  29395. }
  29396. },
  29397. },
  29398. [
  29399. {
  29400. name: "Normal",
  29401. height: math.unit(6, "feet"),
  29402. default: true
  29403. },
  29404. ]
  29405. ))
  29406. characterMakers.push(() => makeCharacter(
  29407. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29408. {
  29409. front: {
  29410. height: math.unit(9 + 4 / 12, "feet"),
  29411. weight: math.unit(500, "lb"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/morrigan/front.svg",
  29415. extra: 2707 / 2579,
  29416. bottom: 156 / 2863
  29417. }
  29418. },
  29419. },
  29420. [
  29421. {
  29422. name: "Normal",
  29423. height: math.unit(9 + 4 / 12, "feet"),
  29424. default: true
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29430. {
  29431. front: {
  29432. height: math.unit(5, "stories"),
  29433. weight: math.unit(4000, "lb"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/jenene/front.svg",
  29437. extra: 1780 / 1710,
  29438. bottom: 57 / 1837
  29439. }
  29440. },
  29441. },
  29442. [
  29443. {
  29444. name: "Normal",
  29445. height: math.unit(5, "stories"),
  29446. default: true
  29447. },
  29448. ]
  29449. ))
  29450. characterMakers.push(() => makeCharacter(
  29451. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29452. {
  29453. taurSfw: {
  29454. height: math.unit(10, "meters"),
  29455. weight: math.unit(17500, "kg"),
  29456. name: "Taur",
  29457. image: {
  29458. source: "./media/characters/faey/taur-sfw.svg",
  29459. extra: 1200 / 968,
  29460. bottom: 41 / 1241
  29461. }
  29462. },
  29463. chestmaw: {
  29464. height: math.unit(2.01, "meters"),
  29465. name: "Chestmaw",
  29466. image: {
  29467. source: "./media/characters/faey/chestmaw.svg"
  29468. }
  29469. },
  29470. foot: {
  29471. height: math.unit(2.43, "meters"),
  29472. name: "Foot",
  29473. image: {
  29474. source: "./media/characters/faey/foot.svg"
  29475. }
  29476. },
  29477. jaws: {
  29478. height: math.unit(1.66, "meters"),
  29479. name: "Jaws",
  29480. image: {
  29481. source: "./media/characters/faey/jaws.svg"
  29482. }
  29483. },
  29484. tongues: {
  29485. height: math.unit(2.01, "meters"),
  29486. name: "Tongues",
  29487. image: {
  29488. source: "./media/characters/faey/tongues.svg"
  29489. }
  29490. },
  29491. },
  29492. [
  29493. {
  29494. name: "Small",
  29495. height: math.unit(10, "meters"),
  29496. default: true
  29497. },
  29498. {
  29499. name: "Big",
  29500. height: math.unit(500000, "km")
  29501. },
  29502. ]
  29503. ))
  29504. characterMakers.push(() => makeCharacter(
  29505. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29506. {
  29507. front: {
  29508. height: math.unit(7, "feet"),
  29509. weight: math.unit(275, "lb"),
  29510. name: "Front",
  29511. image: {
  29512. source: "./media/characters/roku/front.svg",
  29513. extra: 903 / 878,
  29514. bottom: 37 / 940
  29515. }
  29516. },
  29517. },
  29518. [
  29519. {
  29520. name: "Normal",
  29521. height: math.unit(7, "feet"),
  29522. default: true
  29523. },
  29524. {
  29525. name: "Macro",
  29526. height: math.unit(500, "feet")
  29527. },
  29528. {
  29529. name: "Megamacro",
  29530. height: math.unit(200, "miles")
  29531. },
  29532. ]
  29533. ))
  29534. characterMakers.push(() => makeCharacter(
  29535. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29536. {
  29537. front: {
  29538. height: math.unit(6 + 2 / 12, "feet"),
  29539. weight: math.unit(150, "lb"),
  29540. name: "Front",
  29541. image: {
  29542. source: "./media/characters/lira/front.svg",
  29543. extra: 1727 / 1605,
  29544. bottom: 26 / 1753
  29545. }
  29546. },
  29547. back: {
  29548. height: math.unit(6 + 2 / 12, "feet"),
  29549. weight: math.unit(150, "lb"),
  29550. name: "Back",
  29551. image: {
  29552. source: "./media/characters/lira/back.svg",
  29553. extra: 1713/1621,
  29554. bottom: 20/1733
  29555. }
  29556. },
  29557. hand: {
  29558. height: math.unit(0.75, "feet"),
  29559. name: "Hand",
  29560. image: {
  29561. source: "./media/characters/lira/hand.svg"
  29562. }
  29563. },
  29564. maw: {
  29565. height: math.unit(0.65, "feet"),
  29566. name: "Maw",
  29567. image: {
  29568. source: "./media/characters/lira/maw.svg"
  29569. }
  29570. },
  29571. pawDigi: {
  29572. height: math.unit(1.6, "feet"),
  29573. name: "Paw Digi",
  29574. image: {
  29575. source: "./media/characters/lira/paw-digi.svg"
  29576. }
  29577. },
  29578. pawPlanti: {
  29579. height: math.unit(1.4, "feet"),
  29580. name: "Paw Planti",
  29581. image: {
  29582. source: "./media/characters/lira/paw-planti.svg"
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "Normal",
  29589. height: math.unit(6 + 2 / 12, "feet"),
  29590. default: true
  29591. },
  29592. {
  29593. name: "Macro",
  29594. height: math.unit(100, "feet")
  29595. },
  29596. {
  29597. name: "Macro²",
  29598. height: math.unit(1600, "feet")
  29599. },
  29600. {
  29601. name: "Planetary",
  29602. height: math.unit(20, "earths")
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(6, "feet"),
  29611. weight: math.unit(150, "lb"),
  29612. name: "Front",
  29613. image: {
  29614. source: "./media/characters/hadjet/front.svg",
  29615. extra: 1480 / 1346,
  29616. bottom: 26 / 1506
  29617. }
  29618. },
  29619. frontNsfw: {
  29620. height: math.unit(6, "feet"),
  29621. weight: math.unit(150, "lb"),
  29622. name: "Front (NSFW)",
  29623. image: {
  29624. source: "./media/characters/hadjet/front-nsfw.svg",
  29625. extra: 1440 / 1358,
  29626. bottom: 52 / 1492
  29627. }
  29628. },
  29629. },
  29630. [
  29631. {
  29632. name: "Macro",
  29633. height: math.unit(10, "stories"),
  29634. default: true
  29635. },
  29636. {
  29637. name: "Megamacro",
  29638. height: math.unit(1.5, "miles")
  29639. },
  29640. {
  29641. name: "Megamacro+",
  29642. height: math.unit(5, "miles")
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29648. {
  29649. side: {
  29650. height: math.unit(106, "feet"),
  29651. weight: math.unit(500, "tonnes"),
  29652. name: "Side",
  29653. image: {
  29654. source: "./media/characters/kodran/side.svg",
  29655. extra: 553 / 480,
  29656. bottom: 33 / 586
  29657. }
  29658. },
  29659. front: {
  29660. height: math.unit(132, "feet"),
  29661. weight: math.unit(500, "tonnes"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/kodran/front.svg",
  29665. extra: 667 / 643,
  29666. bottom: 42 / 709
  29667. }
  29668. },
  29669. flying: {
  29670. height: math.unit(350, "feet"),
  29671. weight: math.unit(500, "tonnes"),
  29672. name: "Flying",
  29673. image: {
  29674. source: "./media/characters/kodran/flying.svg"
  29675. }
  29676. },
  29677. foot: {
  29678. height: math.unit(33, "feet"),
  29679. name: "Foot",
  29680. image: {
  29681. source: "./media/characters/kodran/foot.svg"
  29682. }
  29683. },
  29684. footFront: {
  29685. height: math.unit(19, "feet"),
  29686. name: "Foot (Front)",
  29687. image: {
  29688. source: "./media/characters/kodran/foot-front.svg",
  29689. extra: 261 / 261,
  29690. bottom: 91 / 352
  29691. }
  29692. },
  29693. headFront: {
  29694. height: math.unit(53, "feet"),
  29695. name: "Head (Front)",
  29696. image: {
  29697. source: "./media/characters/kodran/head-front.svg"
  29698. }
  29699. },
  29700. headSide: {
  29701. height: math.unit(65, "feet"),
  29702. name: "Head (Side)",
  29703. image: {
  29704. source: "./media/characters/kodran/head-side.svg"
  29705. }
  29706. },
  29707. throat: {
  29708. height: math.unit(79, "feet"),
  29709. name: "Throat",
  29710. image: {
  29711. source: "./media/characters/kodran/throat.svg"
  29712. }
  29713. },
  29714. },
  29715. [
  29716. {
  29717. name: "Large",
  29718. height: math.unit(106, "feet"),
  29719. default: true
  29720. },
  29721. ]
  29722. ))
  29723. characterMakers.push(() => makeCharacter(
  29724. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29725. {
  29726. side: {
  29727. height: math.unit(11, "feet"),
  29728. weight: math.unit(150, "lb"),
  29729. name: "Side",
  29730. image: {
  29731. source: "./media/characters/pyxaron/side.svg",
  29732. extra: 305 / 195,
  29733. bottom: 17 / 322
  29734. }
  29735. },
  29736. },
  29737. [
  29738. {
  29739. name: "Normal",
  29740. height: math.unit(11, "feet"),
  29741. default: true
  29742. },
  29743. ]
  29744. ))
  29745. characterMakers.push(() => makeCharacter(
  29746. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29747. {
  29748. front: {
  29749. height: math.unit(6, "feet"),
  29750. weight: math.unit(150, "lb"),
  29751. name: "Front",
  29752. image: {
  29753. source: "./media/characters/meep/front.svg",
  29754. extra: 88 / 80,
  29755. bottom: 6 / 94
  29756. }
  29757. },
  29758. },
  29759. [
  29760. {
  29761. name: "Fun Sized",
  29762. height: math.unit(2, "inches"),
  29763. default: true
  29764. },
  29765. {
  29766. name: "Friend Sized",
  29767. height: math.unit(8, "inches")
  29768. },
  29769. ]
  29770. ))
  29771. characterMakers.push(() => makeCharacter(
  29772. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29773. {
  29774. front: {
  29775. height: math.unit(15, "feet"),
  29776. weight: math.unit(2500, "lb"),
  29777. name: "Front",
  29778. image: {
  29779. source: "./media/characters/holly-rabbit/front.svg",
  29780. extra: 1433 / 1233,
  29781. bottom: 125 / 1558
  29782. }
  29783. },
  29784. dick: {
  29785. height: math.unit(4.6, "feet"),
  29786. name: "Dick",
  29787. image: {
  29788. source: "./media/characters/holly-rabbit/dick.svg"
  29789. }
  29790. },
  29791. },
  29792. [
  29793. {
  29794. name: "Normal",
  29795. height: math.unit(15, "feet"),
  29796. default: true
  29797. },
  29798. {
  29799. name: "Macro",
  29800. height: math.unit(250, "feet")
  29801. },
  29802. {
  29803. name: "Macro+",
  29804. height: math.unit(2500, "feet")
  29805. },
  29806. ]
  29807. ))
  29808. characterMakers.push(() => makeCharacter(
  29809. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29810. {
  29811. front: {
  29812. height: math.unit(3.02, "meters"),
  29813. weight: math.unit(500, "kg"),
  29814. name: "Front",
  29815. image: {
  29816. source: "./media/characters/drena/front.svg",
  29817. extra: 282 / 243,
  29818. bottom: 8 / 290
  29819. }
  29820. },
  29821. side: {
  29822. height: math.unit(3.02, "meters"),
  29823. weight: math.unit(500, "kg"),
  29824. name: "Side",
  29825. image: {
  29826. source: "./media/characters/drena/side.svg",
  29827. extra: 280 / 245,
  29828. bottom: 10 / 290
  29829. }
  29830. },
  29831. back: {
  29832. height: math.unit(3.02, "meters"),
  29833. weight: math.unit(500, "kg"),
  29834. name: "Back",
  29835. image: {
  29836. source: "./media/characters/drena/back.svg",
  29837. extra: 278 / 243,
  29838. bottom: 2 / 280
  29839. }
  29840. },
  29841. foot: {
  29842. height: math.unit(0.75, "meters"),
  29843. name: "Foot",
  29844. image: {
  29845. source: "./media/characters/drena/foot.svg"
  29846. }
  29847. },
  29848. maw: {
  29849. height: math.unit(0.82, "meters"),
  29850. name: "Maw",
  29851. image: {
  29852. source: "./media/characters/drena/maw.svg"
  29853. }
  29854. },
  29855. eating: {
  29856. height: math.unit(0.75, "meters"),
  29857. name: "Eating",
  29858. image: {
  29859. source: "./media/characters/drena/eating.svg"
  29860. }
  29861. },
  29862. rump: {
  29863. height: math.unit(0.93, "meters"),
  29864. name: "Rump",
  29865. image: {
  29866. source: "./media/characters/drena/rump.svg"
  29867. }
  29868. },
  29869. },
  29870. [
  29871. {
  29872. name: "Normal",
  29873. height: math.unit(3.02, "meters"),
  29874. default: true
  29875. },
  29876. ]
  29877. ))
  29878. characterMakers.push(() => makeCharacter(
  29879. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29880. {
  29881. front: {
  29882. height: math.unit(6 + 4 / 12, "feet"),
  29883. weight: math.unit(250, "lb"),
  29884. name: "Front",
  29885. image: {
  29886. source: "./media/characters/remmyzilla/front.svg",
  29887. extra: 4033 / 3588,
  29888. bottom: 123 / 4156
  29889. }
  29890. },
  29891. back: {
  29892. height: math.unit(6 + 4 / 12, "feet"),
  29893. weight: math.unit(250, "lb"),
  29894. name: "Back",
  29895. image: {
  29896. source: "./media/characters/remmyzilla/back.svg",
  29897. extra: 2687 / 2555,
  29898. bottom: 48 / 2735
  29899. }
  29900. },
  29901. paw: {
  29902. height: math.unit(1.73, "feet"),
  29903. name: "Paw",
  29904. image: {
  29905. source: "./media/characters/remmyzilla/paw.svg"
  29906. },
  29907. extraAttributes: {
  29908. "toeSize": {
  29909. name: "Toe Size",
  29910. power: 2,
  29911. type: "area",
  29912. base: math.unit(0.0035, "m^2")
  29913. },
  29914. "padSize": {
  29915. name: "Pad Size",
  29916. power: 2,
  29917. type: "area",
  29918. base: math.unit(0.015, "m^2")
  29919. },
  29920. "pawsize": {
  29921. name: "Paw Size",
  29922. power: 2,
  29923. type: "area",
  29924. base: math.unit(0.072, "m^2")
  29925. },
  29926. }
  29927. },
  29928. maw: {
  29929. height: math.unit(1.73, "feet"),
  29930. name: "Maw",
  29931. image: {
  29932. source: "./media/characters/remmyzilla/maw.svg"
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(6 + 4 / 12, "feet")
  29940. },
  29941. {
  29942. name: "Minimacro",
  29943. height: math.unit(12 + 8 / 12, "feet")
  29944. },
  29945. {
  29946. name: "Normal",
  29947. height: math.unit(640, "feet"),
  29948. default: true
  29949. },
  29950. {
  29951. name: "Megamacro",
  29952. height: math.unit(6400, "feet")
  29953. },
  29954. {
  29955. name: "Gigamacro",
  29956. height: math.unit(64000, "miles")
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(2.5, "meters"),
  29965. weight: math.unit(300, "lb"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/lawrence/front.svg",
  29969. extra: 357 / 335,
  29970. bottom: 30 / 387
  29971. }
  29972. },
  29973. back: {
  29974. height: math.unit(2.5, "meters"),
  29975. weight: math.unit(300, "lb"),
  29976. name: "Back",
  29977. image: {
  29978. source: "./media/characters/lawrence/back.svg",
  29979. extra: 357 / 338,
  29980. bottom: 16 / 373
  29981. }
  29982. },
  29983. head: {
  29984. height: math.unit(0.9, "meter"),
  29985. name: "Head",
  29986. image: {
  29987. source: "./media/characters/lawrence/head.svg"
  29988. }
  29989. },
  29990. maw: {
  29991. height: math.unit(0.7, "meter"),
  29992. name: "Maw",
  29993. image: {
  29994. source: "./media/characters/lawrence/maw.svg"
  29995. }
  29996. },
  29997. footBottom: {
  29998. height: math.unit(0.5, "meter"),
  29999. name: "Foot (Bottom)",
  30000. image: {
  30001. source: "./media/characters/lawrence/foot-bottom.svg"
  30002. }
  30003. },
  30004. footTop: {
  30005. height: math.unit(0.5, "meter"),
  30006. name: "Foot (Top)",
  30007. image: {
  30008. source: "./media/characters/lawrence/foot-top.svg"
  30009. }
  30010. },
  30011. },
  30012. [
  30013. {
  30014. name: "Normal",
  30015. height: math.unit(2.5, "meters"),
  30016. default: true
  30017. },
  30018. {
  30019. name: "Macro",
  30020. height: math.unit(95, "meters")
  30021. },
  30022. {
  30023. name: "Megamacro",
  30024. height: math.unit(150, "km")
  30025. },
  30026. ]
  30027. ))
  30028. characterMakers.push(() => makeCharacter(
  30029. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30030. {
  30031. front: {
  30032. height: math.unit(4.2, "meters"),
  30033. name: "Front",
  30034. image: {
  30035. source: "./media/characters/sydney/front.svg",
  30036. extra: 1323 / 1277,
  30037. bottom: 111 / 1434
  30038. }
  30039. },
  30040. },
  30041. [
  30042. {
  30043. name: "Normal",
  30044. height: math.unit(4.2, "meters"),
  30045. default: true
  30046. },
  30047. ]
  30048. ))
  30049. characterMakers.push(() => makeCharacter(
  30050. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30051. {
  30052. back: {
  30053. height: math.unit(201, "feet"),
  30054. name: "Back",
  30055. image: {
  30056. source: "./media/characters/jessica/back.svg",
  30057. extra: 273 / 259,
  30058. bottom: 7 / 280
  30059. }
  30060. },
  30061. },
  30062. [
  30063. {
  30064. name: "Normal",
  30065. height: math.unit(201, "feet"),
  30066. default: true
  30067. },
  30068. {
  30069. name: "Megamacro",
  30070. height: math.unit(8, "miles")
  30071. },
  30072. ]
  30073. ))
  30074. characterMakers.push(() => makeCharacter(
  30075. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30076. {
  30077. side: {
  30078. height: math.unit(5.6, "m"),
  30079. weight: math.unit(8000, "kg"),
  30080. name: "Side",
  30081. image: {
  30082. source: "./media/characters/victoria/side.svg",
  30083. extra: 1542/1229,
  30084. bottom: 124/1666
  30085. }
  30086. },
  30087. maw: {
  30088. height: math.unit(7.14, "feet"),
  30089. name: "Maw",
  30090. image: {
  30091. source: "./media/characters/victoria/maw.svg"
  30092. }
  30093. },
  30094. },
  30095. [
  30096. {
  30097. name: "Normal",
  30098. height: math.unit(5.6, "m"),
  30099. default: true
  30100. },
  30101. ]
  30102. ))
  30103. characterMakers.push(() => makeCharacter(
  30104. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30105. {
  30106. front: {
  30107. height: math.unit(5 + 6 / 12, "feet"),
  30108. name: "Front",
  30109. image: {
  30110. source: "./media/characters/cat/front.svg",
  30111. extra: 1449/1295,
  30112. bottom: 34/1483
  30113. },
  30114. form: "cat",
  30115. default: true
  30116. },
  30117. back: {
  30118. height: math.unit(5 + 6 / 12, "feet"),
  30119. name: "Back",
  30120. image: {
  30121. source: "./media/characters/cat/back.svg",
  30122. extra: 1466/1301,
  30123. bottom: 19/1485
  30124. },
  30125. form: "cat"
  30126. },
  30127. taur: {
  30128. height: math.unit(7, "feet"),
  30129. name: "Taur",
  30130. image: {
  30131. source: "./media/characters/cat/taur.svg",
  30132. extra: 1389/1233,
  30133. bottom: 83/1472
  30134. },
  30135. form: "taur",
  30136. default: true
  30137. },
  30138. lucarioFront: {
  30139. height: math.unit(4, "feet"),
  30140. name: "Lucario (Front)",
  30141. image: {
  30142. source: "./media/characters/cat/lucario-front.svg",
  30143. extra: 1149/1019,
  30144. bottom: 84/1233
  30145. },
  30146. form: "lucario",
  30147. default: true
  30148. },
  30149. lucarioBack: {
  30150. height: math.unit(4, "feet"),
  30151. name: "Lucario (Back)",
  30152. image: {
  30153. source: "./media/characters/cat/lucario-back.svg",
  30154. extra: 1190/1059,
  30155. bottom: 33/1223
  30156. },
  30157. form: "lucario"
  30158. },
  30159. megaLucario: {
  30160. height: math.unit(4, "feet"),
  30161. name: "Mega Lucario",
  30162. image: {
  30163. source: "./media/characters/cat/mega-lucario.svg",
  30164. extra: 1515 / 1319,
  30165. bottom: 63 / 1578
  30166. },
  30167. form: "lucario"
  30168. },
  30169. nickit: {
  30170. height: math.unit(2, "feet"),
  30171. name: "Nickit",
  30172. image: {
  30173. source: "./media/characters/cat/nickit.svg",
  30174. extra: 1980 / 1585,
  30175. bottom: 102 / 2082
  30176. },
  30177. form: "nickit",
  30178. default: true
  30179. },
  30180. lopunnyFront: {
  30181. height: math.unit(5, "feet"),
  30182. name: "Lopunny (Front)",
  30183. image: {
  30184. source: "./media/characters/cat/lopunny-front.svg",
  30185. extra: 1782 / 1469,
  30186. bottom: 38 / 1820
  30187. },
  30188. form: "lopunny",
  30189. default: true
  30190. },
  30191. lopunnyBack: {
  30192. height: math.unit(5, "feet"),
  30193. name: "Lopunny (Back)",
  30194. image: {
  30195. source: "./media/characters/cat/lopunny-back.svg",
  30196. extra: 1660 / 1490,
  30197. bottom: 25 / 1685
  30198. },
  30199. form: "lopunny"
  30200. },
  30201. },
  30202. [
  30203. {
  30204. name: "Really small",
  30205. height: math.unit(1, "nm")
  30206. },
  30207. {
  30208. name: "Micro",
  30209. height: math.unit(5, "inches")
  30210. },
  30211. {
  30212. name: "Normal",
  30213. height: math.unit(5 + 6 / 12, "feet"),
  30214. default: true
  30215. },
  30216. {
  30217. name: "Macro",
  30218. height: math.unit(50, "feet")
  30219. },
  30220. {
  30221. name: "Macro+",
  30222. height: math.unit(150, "feet")
  30223. },
  30224. {
  30225. name: "Megamacro",
  30226. height: math.unit(100, "miles")
  30227. },
  30228. ]
  30229. ))
  30230. characterMakers.push(() => makeCharacter(
  30231. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30232. {
  30233. front: {
  30234. height: math.unit(63.4, "meters"),
  30235. weight: math.unit(3.28349e+6, "kilograms"),
  30236. name: "Front",
  30237. image: {
  30238. source: "./media/characters/kirina-violet/front.svg",
  30239. extra: 2812 / 2725,
  30240. bottom: 0 / 2812
  30241. }
  30242. },
  30243. back: {
  30244. height: math.unit(63.4, "meters"),
  30245. weight: math.unit(3.28349e+6, "kilograms"),
  30246. name: "Back",
  30247. image: {
  30248. source: "./media/characters/kirina-violet/back.svg",
  30249. extra: 2812 / 2725,
  30250. bottom: 0 / 2812
  30251. }
  30252. },
  30253. mouth: {
  30254. height: math.unit(4.35, "meters"),
  30255. name: "Mouth",
  30256. image: {
  30257. source: "./media/characters/kirina-violet/mouth.svg"
  30258. }
  30259. },
  30260. paw: {
  30261. height: math.unit(5.6, "meters"),
  30262. name: "Paw",
  30263. image: {
  30264. source: "./media/characters/kirina-violet/paw.svg"
  30265. }
  30266. },
  30267. tail: {
  30268. height: math.unit(18, "meters"),
  30269. name: "Tail",
  30270. image: {
  30271. source: "./media/characters/kirina-violet/tail.svg"
  30272. }
  30273. },
  30274. },
  30275. [
  30276. {
  30277. name: "Macro",
  30278. height: math.unit(63.4, "meters"),
  30279. default: true
  30280. },
  30281. ]
  30282. ))
  30283. characterMakers.push(() => makeCharacter(
  30284. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30285. {
  30286. front: {
  30287. height: math.unit(75, "feet"),
  30288. name: "Front",
  30289. image: {
  30290. source: "./media/characters/cat-gigachu/front.svg",
  30291. extra: 1239/1027,
  30292. bottom: 32/1271
  30293. }
  30294. },
  30295. back: {
  30296. height: math.unit(75, "feet"),
  30297. name: "Back",
  30298. image: {
  30299. source: "./media/characters/cat-gigachu/back.svg",
  30300. extra: 1229/1030,
  30301. bottom: 9/1238
  30302. }
  30303. },
  30304. },
  30305. [
  30306. {
  30307. name: "Dynamax",
  30308. height: math.unit(75, "feet"),
  30309. default: true
  30310. },
  30311. ]
  30312. ))
  30313. characterMakers.push(() => makeCharacter(
  30314. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30315. {
  30316. front: {
  30317. height: math.unit(6, "feet"),
  30318. weight: math.unit(150, "lb"),
  30319. name: "Front",
  30320. image: {
  30321. source: "./media/characters/sfaiyan/front.svg",
  30322. extra: 999 / 978,
  30323. bottom: 5 / 1004
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Normal",
  30330. height: math.unit(1.82, "meters")
  30331. },
  30332. {
  30333. name: "Giant",
  30334. height: math.unit(2.27, "km"),
  30335. default: true
  30336. },
  30337. ]
  30338. ))
  30339. characterMakers.push(() => makeCharacter(
  30340. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30341. {
  30342. front: {
  30343. height: math.unit(179, "cm"),
  30344. weight: math.unit(100, "kg"),
  30345. name: "Front",
  30346. image: {
  30347. source: "./media/characters/raunehkeli/front.svg",
  30348. extra: 1934 / 1926,
  30349. bottom: 0 / 1934
  30350. }
  30351. },
  30352. },
  30353. [
  30354. {
  30355. name: "Normal",
  30356. height: math.unit(179, "cm")
  30357. },
  30358. {
  30359. name: "Maximum",
  30360. height: math.unit(575, "meters"),
  30361. default: true
  30362. },
  30363. ]
  30364. ))
  30365. characterMakers.push(() => makeCharacter(
  30366. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30367. {
  30368. front: {
  30369. height: math.unit(6, "feet"),
  30370. weight: math.unit(150, "lb"),
  30371. name: "Front",
  30372. image: {
  30373. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30374. extra: 2625 / 2518,
  30375. bottom: 60 / 2685
  30376. }
  30377. },
  30378. },
  30379. [
  30380. {
  30381. name: "Normal",
  30382. height: math.unit(6 + 2 / 12, "feet")
  30383. },
  30384. {
  30385. name: "Macro",
  30386. height: math.unit(1180, "feet"),
  30387. default: true
  30388. },
  30389. ]
  30390. ))
  30391. characterMakers.push(() => makeCharacter(
  30392. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30393. {
  30394. front: {
  30395. height: math.unit(5 + 6 / 12, "feet"),
  30396. weight: math.unit(108, "lb"),
  30397. name: "Front",
  30398. image: {
  30399. source: "./media/characters/lilith-zott/front.svg",
  30400. extra: 2510 / 2238,
  30401. bottom: 100 / 2610
  30402. }
  30403. },
  30404. frontDressed: {
  30405. height: math.unit(5 + 6 / 12, "feet"),
  30406. weight: math.unit(108, "lb"),
  30407. name: "Front (Dressed)",
  30408. image: {
  30409. source: "./media/characters/lilith-zott/front-dressed.svg",
  30410. extra: 2510 / 2238,
  30411. bottom: 100 / 2610
  30412. }
  30413. },
  30414. },
  30415. [
  30416. {
  30417. name: "Normal",
  30418. height: math.unit(5 + 6 / 12, "feet")
  30419. },
  30420. {
  30421. name: "Macro",
  30422. height: math.unit(1030, "feet"),
  30423. default: true
  30424. },
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30429. {
  30430. front: {
  30431. height: math.unit(6, "feet"),
  30432. weight: math.unit(150, "lb"),
  30433. name: "Front",
  30434. image: {
  30435. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30436. extra: 2567 / 2435,
  30437. bottom: 39 / 2606
  30438. }
  30439. },
  30440. frontSuper: {
  30441. height: math.unit(6, "feet"),
  30442. name: "Front (Super)",
  30443. image: {
  30444. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30445. extra: 2567 / 2435,
  30446. bottom: 39 / 2606
  30447. }
  30448. },
  30449. },
  30450. [
  30451. {
  30452. name: "Normal",
  30453. height: math.unit(5 + 10 / 12, "feet")
  30454. },
  30455. {
  30456. name: "Macro",
  30457. height: math.unit(1100, "feet"),
  30458. default: true
  30459. },
  30460. ]
  30461. ))
  30462. characterMakers.push(() => makeCharacter(
  30463. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30464. {
  30465. front: {
  30466. height: math.unit(100, "miles"),
  30467. name: "Front",
  30468. image: {
  30469. source: "./media/characters/sona/front.svg",
  30470. extra: 2433 / 2201,
  30471. bottom: 53 / 2486
  30472. }
  30473. },
  30474. foot: {
  30475. height: math.unit(16.1, "miles"),
  30476. name: "Foot",
  30477. image: {
  30478. source: "./media/characters/sona/foot.svg"
  30479. }
  30480. },
  30481. },
  30482. [
  30483. {
  30484. name: "Macro",
  30485. height: math.unit(100, "miles"),
  30486. default: true
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30492. {
  30493. front: {
  30494. height: math.unit(6, "feet"),
  30495. weight: math.unit(150, "lb"),
  30496. name: "Front",
  30497. image: {
  30498. source: "./media/characters/bailey/front.svg",
  30499. extra: 1778 / 1724,
  30500. bottom: 30 / 1808
  30501. }
  30502. },
  30503. },
  30504. [
  30505. {
  30506. name: "Micro",
  30507. height: math.unit(4, "inches")
  30508. },
  30509. {
  30510. name: "Normal",
  30511. height: math.unit(5 + 5 / 12, "feet"),
  30512. default: true
  30513. },
  30514. {
  30515. name: "Macro",
  30516. height: math.unit(250, "feet")
  30517. },
  30518. {
  30519. name: "Megamacro",
  30520. height: math.unit(100, "miles")
  30521. },
  30522. ]
  30523. ))
  30524. characterMakers.push(() => makeCharacter(
  30525. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30526. {
  30527. front: {
  30528. height: math.unit(5 + 2 / 12, "feet"),
  30529. weight: math.unit(120, "lb"),
  30530. name: "Front",
  30531. image: {
  30532. source: "./media/characters/snaps/front.svg",
  30533. extra: 2370 / 2177,
  30534. bottom: 48 / 2418
  30535. }
  30536. },
  30537. back: {
  30538. height: math.unit(5 + 2 / 12, "feet"),
  30539. weight: math.unit(120, "lb"),
  30540. name: "Back",
  30541. image: {
  30542. source: "./media/characters/snaps/back.svg",
  30543. extra: 2408 / 2258,
  30544. bottom: 15 / 2423
  30545. }
  30546. },
  30547. },
  30548. [
  30549. {
  30550. name: "Micro",
  30551. height: math.unit(9, "inches")
  30552. },
  30553. {
  30554. name: "Normal",
  30555. height: math.unit(5 + 2 / 12, "feet"),
  30556. default: true
  30557. },
  30558. {
  30559. name: "Mini Macro",
  30560. height: math.unit(10, "feet")
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(1.8, "meters"),
  30569. weight: math.unit(85, "kg"),
  30570. name: "Front",
  30571. image: {
  30572. source: "./media/characters/azteck/front.svg",
  30573. extra: 2815 / 2625,
  30574. bottom: 89 / 2904
  30575. }
  30576. },
  30577. back: {
  30578. height: math.unit(1.8, "meters"),
  30579. weight: math.unit(85, "kg"),
  30580. name: "Back",
  30581. image: {
  30582. source: "./media/characters/azteck/back.svg",
  30583. extra: 2856 / 2648,
  30584. bottom: 85 / 2941
  30585. }
  30586. },
  30587. frontDressed: {
  30588. height: math.unit(1.8, "meters"),
  30589. weight: math.unit(85, "kg"),
  30590. name: "Front (Dressed)",
  30591. image: {
  30592. source: "./media/characters/azteck/front-dressed.svg",
  30593. extra: 2147 / 2003,
  30594. bottom: 68 / 2215
  30595. }
  30596. },
  30597. head: {
  30598. height: math.unit(0.47, "meters"),
  30599. weight: math.unit(85, "kg"),
  30600. name: "Head",
  30601. image: {
  30602. source: "./media/characters/azteck/head.svg"
  30603. }
  30604. },
  30605. },
  30606. [
  30607. {
  30608. name: "Bite sized",
  30609. height: math.unit(16, "cm")
  30610. },
  30611. {
  30612. name: "Normal",
  30613. height: math.unit(1.8, "meters"),
  30614. default: true
  30615. },
  30616. ]
  30617. ))
  30618. characterMakers.push(() => makeCharacter(
  30619. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30620. {
  30621. front: {
  30622. height: math.unit(6, "feet"),
  30623. weight: math.unit(150, "lb"),
  30624. name: "Front",
  30625. image: {
  30626. source: "./media/characters/pidge/front.svg",
  30627. extra: 1936/1820,
  30628. bottom: 0/1936
  30629. }
  30630. },
  30631. back: {
  30632. height: math.unit(6, "feet"),
  30633. weight: math.unit(150, "lb"),
  30634. name: "Back",
  30635. image: {
  30636. source: "./media/characters/pidge/back.svg",
  30637. extra: 1938/1843,
  30638. bottom: 0/1938
  30639. }
  30640. },
  30641. casual: {
  30642. height: math.unit(6, "feet"),
  30643. weight: math.unit(150, "lb"),
  30644. name: "Casual",
  30645. image: {
  30646. source: "./media/characters/pidge/casual.svg",
  30647. extra: 1936/1820,
  30648. bottom: 0/1936
  30649. }
  30650. },
  30651. tech: {
  30652. height: math.unit(6, "feet"),
  30653. weight: math.unit(150, "lb"),
  30654. name: "Tech",
  30655. image: {
  30656. source: "./media/characters/pidge/tech.svg",
  30657. extra: 1802/1682,
  30658. bottom: 0/1802
  30659. }
  30660. },
  30661. head: {
  30662. height: math.unit(1.61, "feet"),
  30663. name: "Head",
  30664. image: {
  30665. source: "./media/characters/pidge/head.svg"
  30666. }
  30667. },
  30668. collar: {
  30669. height: math.unit(0.82, "feet"),
  30670. name: "Collar",
  30671. image: {
  30672. source: "./media/characters/pidge/collar.svg"
  30673. }
  30674. },
  30675. },
  30676. [
  30677. {
  30678. name: "Macro",
  30679. height: math.unit(2, "mile"),
  30680. default: true
  30681. },
  30682. {
  30683. name: "PUPPY",
  30684. height: math.unit(20, "miles")
  30685. },
  30686. ]
  30687. ))
  30688. characterMakers.push(() => makeCharacter(
  30689. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30690. {
  30691. front: {
  30692. height: math.unit(6, "feet"),
  30693. weight: math.unit(150, "lb"),
  30694. name: "Front",
  30695. image: {
  30696. source: "./media/characters/en/front.svg",
  30697. extra: 1697 / 1563,
  30698. bottom: 103 / 1800
  30699. }
  30700. },
  30701. back: {
  30702. height: math.unit(6, "feet"),
  30703. weight: math.unit(150, "lb"),
  30704. name: "Back",
  30705. image: {
  30706. source: "./media/characters/en/back.svg",
  30707. extra: 1700 / 1570,
  30708. bottom: 51 / 1751
  30709. }
  30710. },
  30711. frontDressed: {
  30712. height: math.unit(6, "feet"),
  30713. weight: math.unit(150, "lb"),
  30714. name: "Front (Dressed)",
  30715. image: {
  30716. source: "./media/characters/en/front-dressed.svg",
  30717. extra: 1697 / 1563,
  30718. bottom: 103 / 1800
  30719. }
  30720. },
  30721. backDressed: {
  30722. height: math.unit(6, "feet"),
  30723. weight: math.unit(150, "lb"),
  30724. name: "Back (Dressed)",
  30725. image: {
  30726. source: "./media/characters/en/back-dressed.svg",
  30727. extra: 1700 / 1570,
  30728. bottom: 51 / 1751
  30729. }
  30730. },
  30731. },
  30732. [
  30733. {
  30734. name: "Macro",
  30735. height: math.unit(210, "feet"),
  30736. default: true
  30737. },
  30738. ]
  30739. ))
  30740. characterMakers.push(() => makeCharacter(
  30741. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30742. {
  30743. front: {
  30744. height: math.unit(6, "feet"),
  30745. weight: math.unit(150, "lb"),
  30746. name: "Front",
  30747. image: {
  30748. source: "./media/characters/haze-orris/front.svg",
  30749. extra: 3975 / 3525,
  30750. bottom: 137 / 4112
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Micro",
  30757. height: math.unit(150, "mm"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30764. {
  30765. front: {
  30766. height: math.unit(6, "feet"),
  30767. weight: math.unit(150, "lb"),
  30768. name: "Front",
  30769. image: {
  30770. source: "./media/characters/casselene-yaro/front.svg",
  30771. extra: 4721 / 4541,
  30772. bottom: 82 / 4803
  30773. }
  30774. },
  30775. back: {
  30776. height: math.unit(6, "feet"),
  30777. weight: math.unit(150, "lb"),
  30778. name: "Back",
  30779. image: {
  30780. source: "./media/characters/casselene-yaro/back.svg",
  30781. extra: 4569 / 4377,
  30782. bottom: 69 / 4638
  30783. }
  30784. },
  30785. dressed: {
  30786. height: math.unit(6, "feet"),
  30787. weight: math.unit(150, "lb"),
  30788. name: "Dressed",
  30789. image: {
  30790. source: "./media/characters/casselene-yaro/dressed.svg",
  30791. extra: 4721 / 4541,
  30792. bottom: 82 / 4803
  30793. }
  30794. },
  30795. maw: {
  30796. height: math.unit(1, "feet"),
  30797. name: "Maw",
  30798. image: {
  30799. source: "./media/characters/casselene-yaro/maw.svg"
  30800. }
  30801. },
  30802. },
  30803. [
  30804. {
  30805. name: "Macro",
  30806. height: math.unit(190, "feet"),
  30807. default: true
  30808. },
  30809. ]
  30810. ))
  30811. characterMakers.push(() => makeCharacter(
  30812. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30813. {
  30814. front: {
  30815. height: math.unit(10, "feet"),
  30816. weight: math.unit(15015, "lb"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/platine/front.svg",
  30820. extra: 1428/1353,
  30821. bottom: 31/1459
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(10, "feet"),
  30829. default: true
  30830. },
  30831. {
  30832. name: "Macro",
  30833. height: math.unit(100, "feet")
  30834. },
  30835. {
  30836. name: "Megamacro",
  30837. height: math.unit(1000, "feet")
  30838. },
  30839. ]
  30840. ))
  30841. characterMakers.push(() => makeCharacter(
  30842. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30843. {
  30844. front: {
  30845. height: math.unit(15 + 5 / 12, "feet"),
  30846. weight: math.unit(4600, "lb"),
  30847. name: "Front",
  30848. image: {
  30849. source: "./media/characters/neapolitan-ananassa/front.svg",
  30850. extra: 2903 / 2736,
  30851. bottom: 0 / 2903
  30852. }
  30853. },
  30854. side: {
  30855. height: math.unit(15 + 5 / 12, "feet"),
  30856. weight: math.unit(4600, "lb"),
  30857. name: "Side",
  30858. image: {
  30859. source: "./media/characters/neapolitan-ananassa/side.svg",
  30860. extra: 2925 / 2719,
  30861. bottom: 0 / 2925
  30862. }
  30863. },
  30864. back: {
  30865. height: math.unit(15 + 5 / 12, "feet"),
  30866. weight: math.unit(4600, "lb"),
  30867. name: "Back",
  30868. image: {
  30869. source: "./media/characters/neapolitan-ananassa/back.svg",
  30870. extra: 2903 / 2736,
  30871. bottom: 0 / 2903
  30872. }
  30873. },
  30874. },
  30875. [
  30876. {
  30877. name: "Normal",
  30878. height: math.unit(15 + 5 / 12, "feet"),
  30879. default: true
  30880. },
  30881. {
  30882. name: "Post-Millenium",
  30883. height: math.unit(35 + 5 / 12, "feet")
  30884. },
  30885. {
  30886. name: "Post-Era",
  30887. height: math.unit(450 + 5 / 12, "feet")
  30888. },
  30889. ]
  30890. ))
  30891. characterMakers.push(() => makeCharacter(
  30892. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30893. {
  30894. front: {
  30895. height: math.unit(300, "meters"),
  30896. weight: math.unit(125000, "tonnes"),
  30897. name: "Front",
  30898. image: {
  30899. source: "./media/characters/pazuzu/front.svg",
  30900. extra: 877 / 794,
  30901. bottom: 47 / 924
  30902. }
  30903. },
  30904. },
  30905. [
  30906. {
  30907. name: "Macro",
  30908. height: math.unit(300, "meters"),
  30909. default: true
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30915. {
  30916. side: {
  30917. height: math.unit(10 + 7 / 12, "feet"),
  30918. weight: math.unit(2.5, "tons"),
  30919. name: "Side",
  30920. image: {
  30921. source: "./media/characters/aasha/side.svg",
  30922. extra: 1345 / 1245,
  30923. bottom: 111 / 1456
  30924. }
  30925. },
  30926. back: {
  30927. height: math.unit(10 + 7 / 12, "feet"),
  30928. weight: math.unit(2.5, "tons"),
  30929. name: "Back",
  30930. image: {
  30931. source: "./media/characters/aasha/back.svg",
  30932. extra: 1133 / 1057,
  30933. bottom: 257 / 1390
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Normal",
  30940. height: math.unit(10 + 7 / 12, "feet"),
  30941. default: true
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30947. {
  30948. front: {
  30949. height: math.unit(6 + 3 / 12, "feet"),
  30950. name: "Front",
  30951. image: {
  30952. source: "./media/characters/nevan/front.svg",
  30953. extra: 704 / 704,
  30954. bottom: 28 / 732
  30955. }
  30956. },
  30957. back: {
  30958. height: math.unit(6 + 3 / 12, "feet"),
  30959. name: "Back",
  30960. image: {
  30961. source: "./media/characters/nevan/back.svg",
  30962. extra: 714 / 714,
  30963. bottom: 21 / 735
  30964. }
  30965. },
  30966. frontFlaccid: {
  30967. height: math.unit(6 + 3 / 12, "feet"),
  30968. name: "Front (Flaccid)",
  30969. image: {
  30970. source: "./media/characters/nevan/front-flaccid.svg",
  30971. extra: 704 / 704,
  30972. bottom: 28 / 732
  30973. }
  30974. },
  30975. frontErect: {
  30976. height: math.unit(6 + 3 / 12, "feet"),
  30977. name: "Front (Erect)",
  30978. image: {
  30979. source: "./media/characters/nevan/front-erect.svg",
  30980. extra: 704 / 704,
  30981. bottom: 28 / 732
  30982. }
  30983. },
  30984. backFlaccid: {
  30985. height: math.unit(6 + 3 / 12, "feet"),
  30986. name: "Back (Flaccid)",
  30987. image: {
  30988. source: "./media/characters/nevan/back-flaccid.svg",
  30989. extra: 714 / 714,
  30990. bottom: 21 / 735
  30991. }
  30992. },
  30993. },
  30994. [
  30995. {
  30996. name: "Normal",
  30997. height: math.unit(6 + 3 / 12, "feet"),
  30998. default: true
  30999. },
  31000. ]
  31001. ))
  31002. characterMakers.push(() => makeCharacter(
  31003. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31004. {
  31005. front: {
  31006. height: math.unit(4, "feet"),
  31007. name: "Front",
  31008. image: {
  31009. source: "./media/characters/arhan/front.svg",
  31010. extra: 3368 / 3133,
  31011. bottom: 0 / 3368
  31012. }
  31013. },
  31014. side: {
  31015. height: math.unit(4, "feet"),
  31016. name: "Side",
  31017. image: {
  31018. source: "./media/characters/arhan/side.svg",
  31019. extra: 3347 / 3105,
  31020. bottom: 0 / 3347
  31021. }
  31022. },
  31023. tongue: {
  31024. height: math.unit(1.42, "feet"),
  31025. name: "Tongue",
  31026. image: {
  31027. source: "./media/characters/arhan/tongue.svg"
  31028. }
  31029. },
  31030. head: {
  31031. height: math.unit(0.85, "feet"),
  31032. name: "Head",
  31033. image: {
  31034. source: "./media/characters/arhan/head.svg"
  31035. }
  31036. },
  31037. },
  31038. [
  31039. {
  31040. name: "Normal",
  31041. height: math.unit(4, "feet"),
  31042. default: true
  31043. },
  31044. ]
  31045. ))
  31046. characterMakers.push(() => makeCharacter(
  31047. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31048. {
  31049. front: {
  31050. height: math.unit(5 + 7.5 / 12, "feet"),
  31051. weight: math.unit(120, "lb"),
  31052. name: "Front",
  31053. image: {
  31054. source: "./media/characters/digi-duncan/front.svg",
  31055. extra: 330 / 326,
  31056. bottom: 16 / 346
  31057. }
  31058. },
  31059. side: {
  31060. height: math.unit(5 + 7.5 / 12, "feet"),
  31061. weight: math.unit(120, "lb"),
  31062. name: "Side",
  31063. image: {
  31064. source: "./media/characters/digi-duncan/side.svg",
  31065. extra: 341 / 337,
  31066. bottom: 1 / 342
  31067. }
  31068. },
  31069. back: {
  31070. height: math.unit(5 + 7.5 / 12, "feet"),
  31071. weight: math.unit(120, "lb"),
  31072. name: "Back",
  31073. image: {
  31074. source: "./media/characters/digi-duncan/back.svg",
  31075. extra: 330 / 326,
  31076. bottom: 12 / 342
  31077. }
  31078. },
  31079. },
  31080. [
  31081. {
  31082. name: "Speck",
  31083. height: math.unit(0.25, "mm")
  31084. },
  31085. {
  31086. name: "Micro",
  31087. height: math.unit(5, "mm")
  31088. },
  31089. {
  31090. name: "Tiny",
  31091. height: math.unit(0.5, "inches"),
  31092. default: true
  31093. },
  31094. {
  31095. name: "Human",
  31096. height: math.unit(5 + 7.5 / 12, "feet")
  31097. },
  31098. {
  31099. name: "Minigiant",
  31100. height: math.unit(8 + 5.25, "feet")
  31101. },
  31102. {
  31103. name: "Giant",
  31104. height: math.unit(2000, "feet")
  31105. },
  31106. {
  31107. name: "Mega",
  31108. height: math.unit(371.1, "miles")
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31114. {
  31115. front: {
  31116. height: math.unit(2, "meters"),
  31117. weight: math.unit(350, "kg"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31121. extra: 898 / 838,
  31122. bottom: 9 / 907
  31123. }
  31124. },
  31125. },
  31126. [
  31127. {
  31128. name: "Micro",
  31129. height: math.unit(8, "meters")
  31130. },
  31131. {
  31132. name: "Normal",
  31133. height: math.unit(50, "meters"),
  31134. default: true
  31135. },
  31136. {
  31137. name: "Macro",
  31138. height: math.unit(500, "meters")
  31139. },
  31140. ]
  31141. ))
  31142. characterMakers.push(() => makeCharacter(
  31143. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31144. {
  31145. front: {
  31146. height: math.unit(6 + 6 / 12, "feet"),
  31147. name: "Front",
  31148. image: {
  31149. source: "./media/characters/khardesh/front.svg",
  31150. extra: 1788/1596,
  31151. bottom: 66/1854
  31152. }
  31153. },
  31154. back: {
  31155. height: math.unit(6 + 6 / 12, "feet"),
  31156. name: "Back",
  31157. image: {
  31158. source: "./media/characters/khardesh/back.svg",
  31159. extra: 1781/1584,
  31160. bottom: 68/1849
  31161. }
  31162. },
  31163. },
  31164. [
  31165. {
  31166. name: "Normal",
  31167. height: math.unit(6 + 6 / 12, "feet"),
  31168. default: true
  31169. },
  31170. {
  31171. name: "Normal+",
  31172. height: math.unit(4, "meters")
  31173. },
  31174. {
  31175. name: "Macro",
  31176. height: math.unit(50, "meters")
  31177. },
  31178. {
  31179. name: "Macro+",
  31180. height: math.unit(100, "meters")
  31181. },
  31182. {
  31183. name: "Megamacro",
  31184. height: math.unit(20, "km")
  31185. },
  31186. ]
  31187. ))
  31188. characterMakers.push(() => makeCharacter(
  31189. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31190. {
  31191. front: {
  31192. height: math.unit(6, "feet"),
  31193. weight: math.unit(150, "lb"),
  31194. name: "Front",
  31195. image: {
  31196. source: "./media/characters/kosho/front.svg",
  31197. extra: 1847 / 1847,
  31198. bottom: 86 / 1933
  31199. }
  31200. },
  31201. },
  31202. [
  31203. {
  31204. name: "Second-stage micro",
  31205. height: math.unit(0.5, "inches")
  31206. },
  31207. {
  31208. name: "First-stage micro",
  31209. height: math.unit(6, "inches")
  31210. },
  31211. {
  31212. name: "Normal",
  31213. height: math.unit(6, "feet"),
  31214. default: true
  31215. },
  31216. {
  31217. name: "First-stage macro",
  31218. height: math.unit(72, "feet")
  31219. },
  31220. {
  31221. name: "Second-stage macro",
  31222. height: math.unit(864, "feet")
  31223. },
  31224. ]
  31225. ))
  31226. characterMakers.push(() => makeCharacter(
  31227. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31228. {
  31229. normal: {
  31230. height: math.unit(4 + 6 / 12, "feet"),
  31231. name: "Normal",
  31232. image: {
  31233. source: "./media/characters/hydra/normal.svg",
  31234. extra: 2833 / 2634,
  31235. bottom: 68 / 2901
  31236. }
  31237. },
  31238. smol: {
  31239. height: math.unit(0.705, "inches"),
  31240. name: "Smol",
  31241. image: {
  31242. source: "./media/characters/hydra/smol.svg",
  31243. extra: 2715 / 2540,
  31244. bottom: 0 / 2715
  31245. }
  31246. },
  31247. },
  31248. [
  31249. {
  31250. name: "Normal",
  31251. height: math.unit(4 + 6 / 12, "feet"),
  31252. default: true
  31253. }
  31254. ]
  31255. ))
  31256. characterMakers.push(() => makeCharacter(
  31257. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31258. {
  31259. front: {
  31260. height: math.unit(0.6, "cm"),
  31261. name: "Front",
  31262. image: {
  31263. source: "./media/characters/daz/front.svg",
  31264. extra: 1682 / 1164,
  31265. bottom: 42 / 1724
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Normal",
  31272. height: math.unit(0.6, "cm"),
  31273. default: true
  31274. },
  31275. ]
  31276. ))
  31277. characterMakers.push(() => makeCharacter(
  31278. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31279. {
  31280. front: {
  31281. height: math.unit(6, "feet"),
  31282. weight: math.unit(235, "lb"),
  31283. name: "Front",
  31284. image: {
  31285. source: "./media/characters/theo-pangolin/front.svg",
  31286. extra: 1996 / 1969,
  31287. bottom: 115 / 2111
  31288. }
  31289. },
  31290. back: {
  31291. height: math.unit(6, "feet"),
  31292. weight: math.unit(235, "lb"),
  31293. name: "Back",
  31294. image: {
  31295. source: "./media/characters/theo-pangolin/back.svg",
  31296. extra: 1979 / 1979,
  31297. bottom: 40 / 2019
  31298. }
  31299. },
  31300. feral: {
  31301. height: math.unit(2, "feet"),
  31302. weight: math.unit(30, "lb"),
  31303. name: "Feral",
  31304. image: {
  31305. source: "./media/characters/theo-pangolin/feral.svg",
  31306. extra: 803 / 791,
  31307. bottom: 181 / 984
  31308. }
  31309. },
  31310. footFive: {
  31311. height: math.unit(1.43, "feet"),
  31312. name: "Foot (Five Toes)",
  31313. image: {
  31314. source: "./media/characters/theo-pangolin/foot-five.svg"
  31315. }
  31316. },
  31317. footFour: {
  31318. height: math.unit(1.43, "feet"),
  31319. name: "Foot (Four Toes)",
  31320. image: {
  31321. source: "./media/characters/theo-pangolin/foot-four.svg"
  31322. }
  31323. },
  31324. handFour: {
  31325. height: math.unit(0.81, "feet"),
  31326. name: "Hand (Four Fingers)",
  31327. image: {
  31328. source: "./media/characters/theo-pangolin/hand-four.svg"
  31329. }
  31330. },
  31331. handThree: {
  31332. height: math.unit(0.81, "feet"),
  31333. name: "Hand (Three Fingers)",
  31334. image: {
  31335. source: "./media/characters/theo-pangolin/hand-three.svg"
  31336. }
  31337. },
  31338. headFront: {
  31339. height: math.unit(1.37, "feet"),
  31340. name: "Head (Front)",
  31341. image: {
  31342. source: "./media/characters/theo-pangolin/head-front.svg"
  31343. }
  31344. },
  31345. headSide: {
  31346. height: math.unit(1.43, "feet"),
  31347. name: "Head (Side)",
  31348. image: {
  31349. source: "./media/characters/theo-pangolin/head-side.svg"
  31350. }
  31351. },
  31352. tongue: {
  31353. height: math.unit(2.29, "feet"),
  31354. name: "Tongue",
  31355. image: {
  31356. source: "./media/characters/theo-pangolin/tongue.svg"
  31357. }
  31358. },
  31359. },
  31360. [
  31361. {
  31362. name: "Normal",
  31363. height: math.unit(6, "feet")
  31364. },
  31365. {
  31366. name: "Macro",
  31367. height: math.unit(400, "feet"),
  31368. default: true
  31369. },
  31370. ]
  31371. ))
  31372. characterMakers.push(() => makeCharacter(
  31373. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31374. {
  31375. front: {
  31376. height: math.unit(6, "inches"),
  31377. weight: math.unit(0.036, "kg"),
  31378. name: "Front",
  31379. image: {
  31380. source: "./media/characters/renée/front.svg",
  31381. extra: 900 / 886,
  31382. bottom: 8 / 908
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Nano",
  31389. height: math.unit(1, "nm")
  31390. },
  31391. {
  31392. name: "Micro",
  31393. height: math.unit(1, "mm")
  31394. },
  31395. {
  31396. name: "Normal",
  31397. height: math.unit(6, "inches")
  31398. },
  31399. {
  31400. name: "Macro",
  31401. height: math.unit(2000, "feet"),
  31402. default: true
  31403. },
  31404. {
  31405. name: "Megamacro",
  31406. height: math.unit(2, "km")
  31407. },
  31408. {
  31409. name: "Gigamacro",
  31410. height: math.unit(2000, "km")
  31411. },
  31412. {
  31413. name: "Teramacro",
  31414. height: math.unit(250000, "km")
  31415. },
  31416. ]
  31417. ))
  31418. characterMakers.push(() => makeCharacter(
  31419. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31420. {
  31421. front: {
  31422. height: math.unit(4, "meters"),
  31423. weight: math.unit(150, "kg"),
  31424. name: "Front",
  31425. image: {
  31426. source: "./media/characters/caledvwlch/front.svg",
  31427. extra: 1760 / 1551,
  31428. bottom: 28 / 1788
  31429. }
  31430. },
  31431. side: {
  31432. height: math.unit(4, "meters"),
  31433. weight: math.unit(150, "kg"),
  31434. name: "Side",
  31435. image: {
  31436. source: "./media/characters/caledvwlch/side.svg",
  31437. extra: 1605 / 1536,
  31438. bottom: 31 / 1636
  31439. }
  31440. },
  31441. back: {
  31442. height: math.unit(4, "meters"),
  31443. weight: math.unit(150, "kg"),
  31444. name: "Back",
  31445. image: {
  31446. source: "./media/characters/caledvwlch/back.svg",
  31447. extra: 1635 / 1565,
  31448. bottom: 27 / 1662
  31449. }
  31450. },
  31451. },
  31452. [
  31453. {
  31454. name: "\"Incognito\"",
  31455. height: math.unit(4, "meters")
  31456. },
  31457. {
  31458. name: "Small rampage",
  31459. height: math.unit(600, "meters")
  31460. },
  31461. {
  31462. name: "Mega",
  31463. height: math.unit(30, "km")
  31464. },
  31465. {
  31466. name: "Home-size",
  31467. height: math.unit(50, "km"),
  31468. default: true
  31469. },
  31470. {
  31471. name: "Giga",
  31472. height: math.unit(300, "km")
  31473. },
  31474. {
  31475. name: "Lounging",
  31476. height: math.unit(11000, "km")
  31477. },
  31478. {
  31479. name: "Planet snacking",
  31480. height: math.unit(2000000, "km")
  31481. },
  31482. ]
  31483. ))
  31484. characterMakers.push(() => makeCharacter(
  31485. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31486. {
  31487. front: {
  31488. height: math.unit(6, "feet"),
  31489. weight: math.unit(215, "lb"),
  31490. name: "Front",
  31491. image: {
  31492. source: "./media/characters/sapphire-svell/front.svg",
  31493. extra: 495 / 455,
  31494. bottom: 20 / 515
  31495. }
  31496. },
  31497. back: {
  31498. height: math.unit(6, "feet"),
  31499. weight: math.unit(216, "lb"),
  31500. name: "Back",
  31501. image: {
  31502. source: "./media/characters/sapphire-svell/back.svg",
  31503. extra: 497 / 477,
  31504. bottom: 7 / 504
  31505. }
  31506. },
  31507. maw: {
  31508. height: math.unit(1.57, "feet"),
  31509. name: "Maw",
  31510. image: {
  31511. source: "./media/characters/sapphire-svell/maw.svg"
  31512. }
  31513. },
  31514. foot: {
  31515. height: math.unit(1.07, "feet"),
  31516. name: "Foot",
  31517. image: {
  31518. source: "./media/characters/sapphire-svell/foot.svg"
  31519. }
  31520. },
  31521. toering: {
  31522. height: math.unit(1.7, "inch"),
  31523. name: "Toering",
  31524. image: {
  31525. source: "./media/characters/sapphire-svell/toering.svg"
  31526. }
  31527. },
  31528. },
  31529. [
  31530. {
  31531. name: "Normal",
  31532. height: math.unit(300, "feet"),
  31533. default: true
  31534. },
  31535. {
  31536. name: "Augmented",
  31537. height: math.unit(1250, "feet")
  31538. },
  31539. {
  31540. name: "Unleashed",
  31541. height: math.unit(3000, "feet")
  31542. },
  31543. ]
  31544. ))
  31545. characterMakers.push(() => makeCharacter(
  31546. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31547. {
  31548. side: {
  31549. height: math.unit(2 + 3 / 12, "feet"),
  31550. weight: math.unit(110, "lb"),
  31551. name: "Side",
  31552. image: {
  31553. source: "./media/characters/glitch-flux/side.svg",
  31554. extra: 997 / 805,
  31555. bottom: 20 / 1017
  31556. }
  31557. },
  31558. },
  31559. [
  31560. {
  31561. name: "Normal",
  31562. height: math.unit(2 + 3 / 12, "feet"),
  31563. default: true
  31564. },
  31565. ]
  31566. ))
  31567. characterMakers.push(() => makeCharacter(
  31568. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31569. {
  31570. front: {
  31571. height: math.unit(4, "meters"),
  31572. name: "Front",
  31573. image: {
  31574. source: "./media/characters/mid/front.svg",
  31575. extra: 507 / 476,
  31576. bottom: 17 / 524
  31577. }
  31578. },
  31579. back: {
  31580. height: math.unit(4, "meters"),
  31581. name: "Back",
  31582. image: {
  31583. source: "./media/characters/mid/back.svg",
  31584. extra: 519 / 487,
  31585. bottom: 7 / 526
  31586. }
  31587. },
  31588. stuck: {
  31589. height: math.unit(2.2, "meters"),
  31590. name: "Stuck",
  31591. image: {
  31592. source: "./media/characters/mid/stuck.svg",
  31593. extra: 1951 / 1869,
  31594. bottom: 88 / 2039
  31595. }
  31596. }
  31597. },
  31598. [
  31599. {
  31600. name: "Normal",
  31601. height: math.unit(4, "meters"),
  31602. default: true
  31603. },
  31604. {
  31605. name: "Big",
  31606. height: math.unit(10, "meters")
  31607. },
  31608. {
  31609. name: "Macro",
  31610. height: math.unit(800, "meters")
  31611. },
  31612. {
  31613. name: "Megamacro",
  31614. height: math.unit(100, "km")
  31615. },
  31616. {
  31617. name: "Overgrown",
  31618. height: math.unit(1, "parsec")
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31624. {
  31625. front: {
  31626. height: math.unit(2.5, "meters"),
  31627. weight: math.unit(225, "kg"),
  31628. name: "Front",
  31629. image: {
  31630. source: "./media/characters/iris/front.svg",
  31631. extra: 3348 / 3251,
  31632. bottom: 205 / 3553
  31633. }
  31634. },
  31635. maw: {
  31636. height: math.unit(0.56, "meter"),
  31637. name: "Maw",
  31638. image: {
  31639. source: "./media/characters/iris/maw.svg"
  31640. }
  31641. },
  31642. },
  31643. [
  31644. {
  31645. name: "Mewter cat",
  31646. height: math.unit(1.2, "meters")
  31647. },
  31648. {
  31649. name: "Normal",
  31650. height: math.unit(2.5, "meters"),
  31651. default: true
  31652. },
  31653. {
  31654. name: "Minimacro",
  31655. height: math.unit(18, "feet")
  31656. },
  31657. {
  31658. name: "Macro",
  31659. height: math.unit(140, "feet")
  31660. },
  31661. {
  31662. name: "Macro+",
  31663. height: math.unit(180, "meters")
  31664. },
  31665. {
  31666. name: "Megamacro",
  31667. height: math.unit(2746, "meters")
  31668. },
  31669. ]
  31670. ))
  31671. characterMakers.push(() => makeCharacter(
  31672. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31673. {
  31674. front: {
  31675. height: math.unit(6, "feet"),
  31676. weight: math.unit(135, "lb"),
  31677. name: "Front",
  31678. image: {
  31679. source: "./media/characters/axel/front.svg",
  31680. extra: 908 / 908,
  31681. bottom: 58 / 966
  31682. }
  31683. },
  31684. side: {
  31685. height: math.unit(6, "feet"),
  31686. weight: math.unit(135, "lb"),
  31687. name: "Side",
  31688. image: {
  31689. source: "./media/characters/axel/side.svg",
  31690. extra: 958 / 958,
  31691. bottom: 11 / 969
  31692. }
  31693. },
  31694. back: {
  31695. height: math.unit(6, "feet"),
  31696. weight: math.unit(135, "lb"),
  31697. name: "Back",
  31698. image: {
  31699. source: "./media/characters/axel/back.svg",
  31700. extra: 887 / 887,
  31701. bottom: 34 / 921
  31702. }
  31703. },
  31704. head: {
  31705. height: math.unit(1.07, "feet"),
  31706. name: "Head",
  31707. image: {
  31708. source: "./media/characters/axel/head.svg"
  31709. }
  31710. },
  31711. beak: {
  31712. height: math.unit(1.4, "feet"),
  31713. name: "Beak",
  31714. image: {
  31715. source: "./media/characters/axel/beak.svg"
  31716. }
  31717. },
  31718. beakSide: {
  31719. height: math.unit(1.4, "feet"),
  31720. name: "Beak Side",
  31721. image: {
  31722. source: "./media/characters/axel/beak-side.svg"
  31723. }
  31724. },
  31725. sheath: {
  31726. height: math.unit(0.5, "feet"),
  31727. name: "Sheath",
  31728. image: {
  31729. source: "./media/characters/axel/sheath.svg"
  31730. }
  31731. },
  31732. dick: {
  31733. height: math.unit(0.98, "feet"),
  31734. name: "Dick",
  31735. image: {
  31736. source: "./media/characters/axel/dick.svg"
  31737. }
  31738. },
  31739. },
  31740. [
  31741. {
  31742. name: "Macro",
  31743. height: math.unit(68, "meters"),
  31744. default: true
  31745. },
  31746. ]
  31747. ))
  31748. characterMakers.push(() => makeCharacter(
  31749. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31750. {
  31751. front: {
  31752. height: math.unit(3.5, "meters"),
  31753. weight: math.unit(1200, "kg"),
  31754. name: "Front",
  31755. image: {
  31756. source: "./media/characters/joanna/front.svg",
  31757. extra: 1596 / 1488,
  31758. bottom: 29 / 1625
  31759. }
  31760. },
  31761. back: {
  31762. height: math.unit(3.5, "meters"),
  31763. weight: math.unit(1200, "kg"),
  31764. name: "Back",
  31765. image: {
  31766. source: "./media/characters/joanna/back.svg",
  31767. extra: 1594 / 1495,
  31768. bottom: 26 / 1620
  31769. }
  31770. },
  31771. frontShorts: {
  31772. height: math.unit(3.5, "meters"),
  31773. weight: math.unit(1200, "kg"),
  31774. name: "Front (Shorts)",
  31775. image: {
  31776. source: "./media/characters/joanna/front-shorts.svg",
  31777. extra: 1596 / 1488,
  31778. bottom: 29 / 1625
  31779. }
  31780. },
  31781. frontBiker: {
  31782. height: math.unit(3.5, "meters"),
  31783. weight: math.unit(1200, "kg"),
  31784. name: "Front (Biker)",
  31785. image: {
  31786. source: "./media/characters/joanna/front-biker.svg",
  31787. extra: 1596 / 1488,
  31788. bottom: 29 / 1625
  31789. }
  31790. },
  31791. backBiker: {
  31792. height: math.unit(3.5, "meters"),
  31793. weight: math.unit(1200, "kg"),
  31794. name: "Back (Biker)",
  31795. image: {
  31796. source: "./media/characters/joanna/back-biker.svg",
  31797. extra: 1594 / 1495,
  31798. bottom: 88 / 1682
  31799. }
  31800. },
  31801. bikeLeft: {
  31802. height: math.unit(2.4, "meters"),
  31803. weight: math.unit(1600, "kg"),
  31804. name: "Bike (Left)",
  31805. image: {
  31806. source: "./media/characters/joanna/bike-left.svg",
  31807. extra: 720 / 720,
  31808. bottom: 8 / 728
  31809. }
  31810. },
  31811. bikeRight: {
  31812. height: math.unit(2.4, "meters"),
  31813. weight: math.unit(1600, "kg"),
  31814. name: "Bike (Right)",
  31815. image: {
  31816. source: "./media/characters/joanna/bike-right.svg",
  31817. extra: 720 / 720,
  31818. bottom: 8 / 728
  31819. }
  31820. },
  31821. },
  31822. [
  31823. {
  31824. name: "Incognito",
  31825. height: math.unit(3.5, "meters")
  31826. },
  31827. {
  31828. name: "Casual Big",
  31829. height: math.unit(200, "meters")
  31830. },
  31831. {
  31832. name: "Macro",
  31833. height: math.unit(600, "meters")
  31834. },
  31835. {
  31836. name: "Original",
  31837. height: math.unit(20, "km"),
  31838. default: true
  31839. },
  31840. {
  31841. name: "Giga",
  31842. height: math.unit(400, "km")
  31843. },
  31844. {
  31845. name: "Lounging",
  31846. height: math.unit(1500, "km")
  31847. },
  31848. {
  31849. name: "Planetary",
  31850. height: math.unit(200000, "km")
  31851. },
  31852. ]
  31853. ))
  31854. characterMakers.push(() => makeCharacter(
  31855. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31856. {
  31857. front: {
  31858. height: math.unit(6, "feet"),
  31859. weight: math.unit(150, "lb"),
  31860. name: "Front",
  31861. image: {
  31862. source: "./media/characters/hugo-sigil/front.svg",
  31863. extra: 522 / 500,
  31864. bottom: 2 / 524
  31865. }
  31866. },
  31867. back: {
  31868. height: math.unit(6, "feet"),
  31869. weight: math.unit(150, "lb"),
  31870. name: "Back",
  31871. image: {
  31872. source: "./media/characters/hugo-sigil/back.svg",
  31873. extra: 519 / 495,
  31874. bottom: 5 / 524
  31875. }
  31876. },
  31877. maw: {
  31878. height: math.unit(1.4, "feet"),
  31879. weight: math.unit(150, "lb"),
  31880. name: "Maw",
  31881. image: {
  31882. source: "./media/characters/hugo-sigil/maw.svg"
  31883. }
  31884. },
  31885. feet: {
  31886. height: math.unit(1.56, "feet"),
  31887. weight: math.unit(150, "lb"),
  31888. name: "Feet",
  31889. image: {
  31890. source: "./media/characters/hugo-sigil/feet.svg",
  31891. extra: 177 / 177,
  31892. bottom: 12 / 189
  31893. }
  31894. },
  31895. },
  31896. [
  31897. {
  31898. name: "Normal",
  31899. height: math.unit(6, "feet")
  31900. },
  31901. {
  31902. name: "Macro",
  31903. height: math.unit(200, "feet"),
  31904. default: true
  31905. },
  31906. ]
  31907. ))
  31908. characterMakers.push(() => makeCharacter(
  31909. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31910. {
  31911. front: {
  31912. height: math.unit(6, "feet"),
  31913. weight: math.unit(150, "lb"),
  31914. name: "Front",
  31915. image: {
  31916. source: "./media/characters/peri/front.svg",
  31917. extra: 2354 / 2233,
  31918. bottom: 49 / 2403
  31919. }
  31920. },
  31921. },
  31922. [
  31923. {
  31924. name: "Really Small",
  31925. height: math.unit(1, "nm")
  31926. },
  31927. {
  31928. name: "Micro",
  31929. height: math.unit(4, "inches")
  31930. },
  31931. {
  31932. name: "Normal",
  31933. height: math.unit(7, "inches"),
  31934. default: true
  31935. },
  31936. {
  31937. name: "Macro",
  31938. height: math.unit(400, "feet")
  31939. },
  31940. {
  31941. name: "Megamacro",
  31942. height: math.unit(100, "miles")
  31943. },
  31944. ]
  31945. ))
  31946. characterMakers.push(() => makeCharacter(
  31947. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31948. {
  31949. frontSlim: {
  31950. height: math.unit(7, "feet"),
  31951. name: "Front (Slim)",
  31952. image: {
  31953. source: "./media/characters/issilora/front-slim.svg",
  31954. extra: 529 / 449,
  31955. bottom: 53 / 582
  31956. }
  31957. },
  31958. sideSlim: {
  31959. height: math.unit(7, "feet"),
  31960. name: "Side (Slim)",
  31961. image: {
  31962. source: "./media/characters/issilora/side-slim.svg",
  31963. extra: 570 / 480,
  31964. bottom: 30 / 600
  31965. }
  31966. },
  31967. backSlim: {
  31968. height: math.unit(7, "feet"),
  31969. name: "Back (Slim)",
  31970. image: {
  31971. source: "./media/characters/issilora/back-slim.svg",
  31972. extra: 537 / 455,
  31973. bottom: 46 / 583
  31974. }
  31975. },
  31976. frontBuff: {
  31977. height: math.unit(7, "feet"),
  31978. name: "Front (Buff)",
  31979. image: {
  31980. source: "./media/characters/issilora/front-buff.svg",
  31981. extra: 2310 / 2035,
  31982. bottom: 335 / 2645
  31983. }
  31984. },
  31985. head: {
  31986. height: math.unit(1.94, "feet"),
  31987. name: "Head",
  31988. image: {
  31989. source: "./media/characters/issilora/head.svg"
  31990. }
  31991. },
  31992. },
  31993. [
  31994. {
  31995. name: "Minimum",
  31996. height: math.unit(7, "feet")
  31997. },
  31998. {
  31999. name: "Comfortable",
  32000. height: math.unit(17, "feet")
  32001. },
  32002. {
  32003. name: "Fun Size",
  32004. height: math.unit(47, "feet")
  32005. },
  32006. {
  32007. name: "Natural Macro",
  32008. height: math.unit(137, "feet"),
  32009. default: true
  32010. },
  32011. {
  32012. name: "Maximum Kaiju",
  32013. height: math.unit(397, "feet")
  32014. },
  32015. ]
  32016. ))
  32017. characterMakers.push(() => makeCharacter(
  32018. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32019. {
  32020. front: {
  32021. height: math.unit(50 + 9/12, "feet"),
  32022. weight: math.unit(32.8, "tons"),
  32023. name: "Front",
  32024. image: {
  32025. source: "./media/characters/irb'iiritaahn/front.svg",
  32026. extra: 1878/1826,
  32027. bottom: 326/2204
  32028. }
  32029. },
  32030. back: {
  32031. height: math.unit(50 + 9/12, "feet"),
  32032. weight: math.unit(32.8, "tons"),
  32033. name: "Back",
  32034. image: {
  32035. source: "./media/characters/irb'iiritaahn/back.svg",
  32036. extra: 2052/2018,
  32037. bottom: 152/2204
  32038. }
  32039. },
  32040. head: {
  32041. height: math.unit(12.86, "feet"),
  32042. name: "Head",
  32043. image: {
  32044. source: "./media/characters/irb'iiritaahn/head.svg"
  32045. }
  32046. },
  32047. maw: {
  32048. height: math.unit(9.66, "feet"),
  32049. name: "Maw",
  32050. image: {
  32051. source: "./media/characters/irb'iiritaahn/maw.svg"
  32052. }
  32053. },
  32054. frontDick: {
  32055. height: math.unit(8.78461, "feet"),
  32056. name: "Front Dick",
  32057. image: {
  32058. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32059. }
  32060. },
  32061. rearDick: {
  32062. height: math.unit(8.78461, "feet"),
  32063. name: "Rear Dick",
  32064. image: {
  32065. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32066. }
  32067. },
  32068. rearDickUnfolded: {
  32069. height: math.unit(8.78, "feet"),
  32070. name: "Rear Dick (Unfolded)",
  32071. image: {
  32072. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32073. }
  32074. },
  32075. wings: {
  32076. height: math.unit(43, "feet"),
  32077. name: "Wings",
  32078. image: {
  32079. source: "./media/characters/irb'iiritaahn/wings.svg"
  32080. }
  32081. },
  32082. },
  32083. [
  32084. {
  32085. name: "Macro",
  32086. height: math.unit(50 + 9/12, "feet"),
  32087. default: true
  32088. },
  32089. ]
  32090. ))
  32091. characterMakers.push(() => makeCharacter(
  32092. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32093. {
  32094. front: {
  32095. height: math.unit(205, "cm"),
  32096. weight: math.unit(102, "kg"),
  32097. name: "Front",
  32098. image: {
  32099. source: "./media/characters/irbisgreif/front.svg",
  32100. extra: 785/706,
  32101. bottom: 13/798
  32102. }
  32103. },
  32104. back: {
  32105. height: math.unit(205, "cm"),
  32106. weight: math.unit(102, "kg"),
  32107. name: "Back",
  32108. image: {
  32109. source: "./media/characters/irbisgreif/back.svg",
  32110. extra: 713/701,
  32111. bottom: 26/739
  32112. }
  32113. },
  32114. frontDressed: {
  32115. height: math.unit(216, "cm"),
  32116. weight: math.unit(102, "kg"),
  32117. name: "Front-dressed",
  32118. image: {
  32119. source: "./media/characters/irbisgreif/front-dressed.svg",
  32120. extra: 902/776,
  32121. bottom: 14/916
  32122. }
  32123. },
  32124. sideDressed: {
  32125. height: math.unit(195, "cm"),
  32126. weight: math.unit(102, "kg"),
  32127. name: "Side-dressed",
  32128. image: {
  32129. source: "./media/characters/irbisgreif/side-dressed.svg",
  32130. extra: 788/688,
  32131. bottom: 21/809
  32132. }
  32133. },
  32134. backDressed: {
  32135. height: math.unit(216, "cm"),
  32136. weight: math.unit(102, "kg"),
  32137. name: "Back-dressed",
  32138. image: {
  32139. source: "./media/characters/irbisgreif/back-dressed.svg",
  32140. extra: 901/783,
  32141. bottom: 10/911
  32142. }
  32143. },
  32144. dick: {
  32145. height: math.unit(0.49, "feet"),
  32146. name: "Dick",
  32147. image: {
  32148. source: "./media/characters/irbisgreif/dick.svg"
  32149. }
  32150. },
  32151. wingTop: {
  32152. height: math.unit(1.93 , "feet"),
  32153. name: "Wing-top",
  32154. image: {
  32155. source: "./media/characters/irbisgreif/wing-top.svg"
  32156. }
  32157. },
  32158. wingBottom: {
  32159. height: math.unit(1.93 , "feet"),
  32160. name: "Wing-bottom",
  32161. image: {
  32162. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32163. }
  32164. },
  32165. },
  32166. [
  32167. {
  32168. name: "Normal",
  32169. height: math.unit(216, "cm"),
  32170. default: true
  32171. },
  32172. ]
  32173. ))
  32174. characterMakers.push(() => makeCharacter(
  32175. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32176. {
  32177. front: {
  32178. height: math.unit(6, "feet"),
  32179. weight: math.unit(150, "lb"),
  32180. name: "Front",
  32181. image: {
  32182. source: "./media/characters/pride/front.svg",
  32183. extra: 1299/1230,
  32184. bottom: 18/1317
  32185. }
  32186. },
  32187. },
  32188. [
  32189. {
  32190. name: "Normal",
  32191. height: math.unit(7, "feet")
  32192. },
  32193. {
  32194. name: "Mini-macro",
  32195. height: math.unit(11, "feet")
  32196. },
  32197. {
  32198. name: "Macro",
  32199. height: math.unit(15, "meters"),
  32200. default: true
  32201. },
  32202. {
  32203. name: "Macro+",
  32204. height: math.unit(40, "meters")
  32205. },
  32206. ]
  32207. ))
  32208. characterMakers.push(() => makeCharacter(
  32209. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32210. {
  32211. front: {
  32212. height: math.unit(4 + 2 / 12, "feet"),
  32213. weight: math.unit(95, "lb"),
  32214. name: "Front",
  32215. image: {
  32216. source: "./media/characters/vaelophis-nyx/front.svg",
  32217. extra: 2532/2330,
  32218. bottom: 0/2532
  32219. }
  32220. },
  32221. back: {
  32222. height: math.unit(4 + 2 / 12, "feet"),
  32223. weight: math.unit(95, "lb"),
  32224. name: "Back",
  32225. image: {
  32226. source: "./media/characters/vaelophis-nyx/back.svg",
  32227. extra: 2484/2361,
  32228. bottom: 0/2484
  32229. }
  32230. },
  32231. feralSide: {
  32232. height: math.unit(2 + 1/12, "feet"),
  32233. weight: math.unit(20, "lb"),
  32234. name: "Feral (Side)",
  32235. image: {
  32236. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32237. extra: 1721/1581,
  32238. bottom: 70/1791
  32239. }
  32240. },
  32241. feralLazing: {
  32242. height: math.unit(1.08, "feet"),
  32243. weight: math.unit(20, "lb"),
  32244. name: "Feral (Lazing)",
  32245. image: {
  32246. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32247. extra: 822/822,
  32248. bottom: 248/1070
  32249. }
  32250. },
  32251. ear: {
  32252. height: math.unit(0.416, "feet"),
  32253. name: "Ear",
  32254. image: {
  32255. source: "./media/characters/vaelophis-nyx/ear.svg"
  32256. }
  32257. },
  32258. eye: {
  32259. height: math.unit(0.0748, "feet"),
  32260. name: "Eye",
  32261. image: {
  32262. source: "./media/characters/vaelophis-nyx/eye.svg"
  32263. }
  32264. },
  32265. mouth: {
  32266. height: math.unit(0.378, "feet"),
  32267. name: "Mouth",
  32268. image: {
  32269. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32270. }
  32271. },
  32272. spade: {
  32273. height: math.unit(0.55, "feet"),
  32274. name: "Spade",
  32275. image: {
  32276. source: "./media/characters/vaelophis-nyx/spade.svg"
  32277. }
  32278. },
  32279. },
  32280. [
  32281. {
  32282. name: "Normal",
  32283. height: math.unit(4 + 2/12, "feet"),
  32284. default: true
  32285. },
  32286. ]
  32287. ))
  32288. characterMakers.push(() => makeCharacter(
  32289. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32290. {
  32291. front: {
  32292. height: math.unit(7, "feet"),
  32293. weight: math.unit(231, "lb"),
  32294. name: "Front",
  32295. image: {
  32296. source: "./media/characters/flux/front.svg",
  32297. extra: 919/871,
  32298. bottom: 0/919
  32299. }
  32300. },
  32301. back: {
  32302. height: math.unit(7, "feet"),
  32303. weight: math.unit(231, "lb"),
  32304. name: "Back",
  32305. image: {
  32306. source: "./media/characters/flux/back.svg",
  32307. extra: 1040/992,
  32308. bottom: 0/1040
  32309. }
  32310. },
  32311. frontDressed: {
  32312. height: math.unit(7, "feet"),
  32313. weight: math.unit(231, "lb"),
  32314. name: "Front (Dressed)",
  32315. image: {
  32316. source: "./media/characters/flux/front-dressed.svg",
  32317. extra: 919/871,
  32318. bottom: 0/919
  32319. }
  32320. },
  32321. feralSide: {
  32322. height: math.unit(5, "feet"),
  32323. weight: math.unit(150, "lb"),
  32324. name: "Feral (Side)",
  32325. image: {
  32326. source: "./media/characters/flux/feral-side.svg",
  32327. extra: 598/528,
  32328. bottom: 28/626
  32329. }
  32330. },
  32331. head: {
  32332. height: math.unit(1.585, "feet"),
  32333. name: "Head",
  32334. image: {
  32335. source: "./media/characters/flux/head.svg"
  32336. }
  32337. },
  32338. headSide: {
  32339. height: math.unit(1.74, "feet"),
  32340. name: "Head (Side)",
  32341. image: {
  32342. source: "./media/characters/flux/head-side.svg"
  32343. }
  32344. },
  32345. headSideFire: {
  32346. height: math.unit(1.76, "feet"),
  32347. name: "Head (Side, Fire)",
  32348. image: {
  32349. source: "./media/characters/flux/head-side-fire.svg"
  32350. }
  32351. },
  32352. },
  32353. [
  32354. {
  32355. name: "Normal",
  32356. height: math.unit(7, "feet"),
  32357. default: true
  32358. },
  32359. ]
  32360. ))
  32361. characterMakers.push(() => makeCharacter(
  32362. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32363. {
  32364. front: {
  32365. height: math.unit(9, "feet"),
  32366. weight: math.unit(1012, "lb"),
  32367. name: "Front",
  32368. image: {
  32369. source: "./media/characters/ulfra-lupae/front.svg",
  32370. extra: 1083/1011,
  32371. bottom: 67/1150
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Micro",
  32378. height: math.unit(6, "inches")
  32379. },
  32380. {
  32381. name: "Socializing",
  32382. height: math.unit(6 + 5/12, "feet")
  32383. },
  32384. {
  32385. name: "Normal",
  32386. height: math.unit(9, "feet"),
  32387. default: true
  32388. },
  32389. {
  32390. name: "Macro",
  32391. height: math.unit(150, "feet")
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32397. {
  32398. front: {
  32399. height: math.unit(5 + 2/12, "feet"),
  32400. weight: math.unit(120, "lb"),
  32401. name: "Front",
  32402. image: {
  32403. source: "./media/characters/timber/front.svg",
  32404. extra: 2814/2705,
  32405. bottom: 181/2995
  32406. }
  32407. },
  32408. },
  32409. [
  32410. {
  32411. name: "Normal",
  32412. height: math.unit(5 + 2/12, "feet"),
  32413. default: true
  32414. },
  32415. ]
  32416. ))
  32417. characterMakers.push(() => makeCharacter(
  32418. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32419. {
  32420. front: {
  32421. height: math.unit(9, "feet"),
  32422. name: "Front",
  32423. image: {
  32424. source: "./media/characters/nicki/front.svg",
  32425. extra: 1240/990,
  32426. bottom: 45/1285
  32427. },
  32428. form: "anthro",
  32429. default: true
  32430. },
  32431. side: {
  32432. height: math.unit(9, "feet"),
  32433. name: "Side",
  32434. image: {
  32435. source: "./media/characters/nicki/side.svg",
  32436. extra: 1047/973,
  32437. bottom: 61/1108
  32438. },
  32439. form: "anthro"
  32440. },
  32441. back: {
  32442. height: math.unit(9, "feet"),
  32443. name: "Back",
  32444. image: {
  32445. source: "./media/characters/nicki/back.svg",
  32446. extra: 1006/965,
  32447. bottom: 39/1045
  32448. },
  32449. form: "anthro"
  32450. },
  32451. taur: {
  32452. height: math.unit(15, "feet"),
  32453. name: "Taur",
  32454. image: {
  32455. source: "./media/characters/nicki/taur.svg",
  32456. extra: 1592/1347,
  32457. bottom: 0/1592
  32458. },
  32459. form: "taur",
  32460. default: true
  32461. },
  32462. },
  32463. [
  32464. {
  32465. name: "Normal",
  32466. height: math.unit(9, "feet"),
  32467. form: "anthro",
  32468. default: true
  32469. },
  32470. {
  32471. name: "Normal",
  32472. height: math.unit(15, "feet"),
  32473. form: "taur",
  32474. default: true
  32475. }
  32476. ],
  32477. {
  32478. "anthro": {
  32479. name: "Anthro",
  32480. default: true
  32481. },
  32482. "taur": {
  32483. name: "Taur"
  32484. }
  32485. }
  32486. ))
  32487. characterMakers.push(() => makeCharacter(
  32488. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32489. {
  32490. front: {
  32491. height: math.unit(7 + 10/12, "feet"),
  32492. weight: math.unit(3.5, "tons"),
  32493. name: "Front",
  32494. image: {
  32495. source: "./media/characters/lee/front.svg",
  32496. extra: 1773/1615,
  32497. bottom: 86/1859
  32498. }
  32499. },
  32500. hand: {
  32501. height: math.unit(1.78, "feet"),
  32502. name: "Hand",
  32503. image: {
  32504. source: "./media/characters/lee/hand.svg"
  32505. }
  32506. },
  32507. maw: {
  32508. height: math.unit(1.18, "feet"),
  32509. name: "Maw",
  32510. image: {
  32511. source: "./media/characters/lee/maw.svg"
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Normal",
  32518. height: math.unit(7 + 10/12, "feet"),
  32519. default: true
  32520. },
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32525. {
  32526. front: {
  32527. height: math.unit(9, "feet"),
  32528. name: "Front",
  32529. image: {
  32530. source: "./media/characters/guti/front.svg",
  32531. extra: 4551/4355,
  32532. bottom: 123/4674
  32533. }
  32534. },
  32535. tongue: {
  32536. height: math.unit(1, "feet"),
  32537. name: "Tongue",
  32538. image: {
  32539. source: "./media/characters/guti/tongue.svg"
  32540. }
  32541. },
  32542. paw: {
  32543. height: math.unit(1.18, "feet"),
  32544. name: "Paw",
  32545. image: {
  32546. source: "./media/characters/guti/paw.svg"
  32547. }
  32548. },
  32549. },
  32550. [
  32551. {
  32552. name: "Normal",
  32553. height: math.unit(9, "feet"),
  32554. default: true
  32555. },
  32556. ]
  32557. ))
  32558. characterMakers.push(() => makeCharacter(
  32559. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32560. {
  32561. side: {
  32562. height: math.unit(5, "meters"),
  32563. name: "Side",
  32564. image: {
  32565. source: "./media/characters/vesper/side.svg",
  32566. extra: 1605/1518,
  32567. bottom: 0/1605
  32568. }
  32569. },
  32570. },
  32571. [
  32572. {
  32573. name: "Small",
  32574. height: math.unit(5, "meters")
  32575. },
  32576. {
  32577. name: "Sage",
  32578. height: math.unit(100, "meters"),
  32579. default: true
  32580. },
  32581. {
  32582. name: "Fun Size",
  32583. height: math.unit(600, "meters")
  32584. },
  32585. {
  32586. name: "Goddess",
  32587. height: math.unit(20000, "km")
  32588. },
  32589. {
  32590. name: "Maximum",
  32591. height: math.unit(5, "galaxies")
  32592. },
  32593. ]
  32594. ))
  32595. characterMakers.push(() => makeCharacter(
  32596. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32597. {
  32598. front: {
  32599. height: math.unit(6 + 3/12, "feet"),
  32600. weight: math.unit(190, "lb"),
  32601. name: "Front",
  32602. image: {
  32603. source: "./media/characters/gawain/front.svg",
  32604. extra: 2222/2139,
  32605. bottom: 90/2312
  32606. }
  32607. },
  32608. back: {
  32609. height: math.unit(6 + 3/12, "feet"),
  32610. weight: math.unit(190, "lb"),
  32611. name: "Back",
  32612. image: {
  32613. source: "./media/characters/gawain/back.svg",
  32614. extra: 2199/2111,
  32615. bottom: 73/2272
  32616. }
  32617. },
  32618. },
  32619. [
  32620. {
  32621. name: "Normal",
  32622. height: math.unit(6 + 3/12, "feet"),
  32623. default: true
  32624. },
  32625. ]
  32626. ))
  32627. characterMakers.push(() => makeCharacter(
  32628. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32629. {
  32630. side: {
  32631. height: math.unit(3.5, "meters"),
  32632. weight: math.unit(16000, "lb"),
  32633. name: "Side",
  32634. image: {
  32635. source: "./media/characters/dascalti/side.svg",
  32636. extra: 392/273,
  32637. bottom: 47/439
  32638. }
  32639. },
  32640. breath: {
  32641. height: math.unit(7.4, "feet"),
  32642. name: "Breath",
  32643. image: {
  32644. source: "./media/characters/dascalti/breath.svg"
  32645. }
  32646. },
  32647. fed: {
  32648. height: math.unit(3.6, "meters"),
  32649. weight: math.unit(16000, "lb"),
  32650. name: "Fed",
  32651. image: {
  32652. source: "./media/characters/dascalti/fed.svg",
  32653. extra: 1419/820,
  32654. bottom: 95/1514
  32655. }
  32656. },
  32657. },
  32658. [
  32659. {
  32660. name: "Normal",
  32661. height: math.unit(3.5, "meters"),
  32662. default: true
  32663. },
  32664. ]
  32665. ))
  32666. characterMakers.push(() => makeCharacter(
  32667. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32668. {
  32669. front: {
  32670. height: math.unit(3 + 5/12, "feet"),
  32671. name: "Front",
  32672. image: {
  32673. source: "./media/characters/mauve/front.svg",
  32674. extra: 1126/1033,
  32675. bottom: 65/1191
  32676. }
  32677. },
  32678. side: {
  32679. height: math.unit(3 + 5/12, "feet"),
  32680. name: "Side",
  32681. image: {
  32682. source: "./media/characters/mauve/side.svg",
  32683. extra: 1089/1001,
  32684. bottom: 29/1118
  32685. }
  32686. },
  32687. back: {
  32688. height: math.unit(3 + 5/12, "feet"),
  32689. name: "Back",
  32690. image: {
  32691. source: "./media/characters/mauve/back.svg",
  32692. extra: 1173/1053,
  32693. bottom: 109/1282
  32694. }
  32695. },
  32696. },
  32697. [
  32698. {
  32699. name: "Normal",
  32700. height: math.unit(3 + 5/12, "feet"),
  32701. default: true
  32702. },
  32703. ]
  32704. ))
  32705. characterMakers.push(() => makeCharacter(
  32706. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32707. {
  32708. front: {
  32709. height: math.unit(6 + 3/12, "feet"),
  32710. weight: math.unit(430, "lb"),
  32711. name: "Front",
  32712. image: {
  32713. source: "./media/characters/carlos/front.svg",
  32714. extra: 1964/1913,
  32715. bottom: 70/2034
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(6 + 3/12, "feet"),
  32723. default: true
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32729. {
  32730. back: {
  32731. height: math.unit(5 + 10/12, "feet"),
  32732. weight: math.unit(200, "lb"),
  32733. name: "Back",
  32734. image: {
  32735. source: "./media/characters/jax/back.svg",
  32736. extra: 764/739,
  32737. bottom: 25/789
  32738. }
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Normal",
  32744. height: math.unit(5 + 10/12, "feet"),
  32745. default: true
  32746. },
  32747. ]
  32748. ))
  32749. characterMakers.push(() => makeCharacter(
  32750. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32751. {
  32752. front: {
  32753. height: math.unit(8, "feet"),
  32754. weight: math.unit(250, "lb"),
  32755. name: "Front",
  32756. image: {
  32757. source: "./media/characters/eikthynir/front.svg",
  32758. extra: 1332/1166,
  32759. bottom: 82/1414
  32760. }
  32761. },
  32762. back: {
  32763. height: math.unit(8, "feet"),
  32764. weight: math.unit(250, "lb"),
  32765. name: "Back",
  32766. image: {
  32767. source: "./media/characters/eikthynir/back.svg",
  32768. extra: 1342/1190,
  32769. bottom: 19/1361
  32770. }
  32771. },
  32772. dick: {
  32773. height: math.unit(2.35, "feet"),
  32774. name: "Dick",
  32775. image: {
  32776. source: "./media/characters/eikthynir/dick.svg"
  32777. }
  32778. },
  32779. },
  32780. [
  32781. {
  32782. name: "Normal",
  32783. height: math.unit(8, "feet"),
  32784. default: true
  32785. },
  32786. ]
  32787. ))
  32788. characterMakers.push(() => makeCharacter(
  32789. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32790. {
  32791. front: {
  32792. height: math.unit(99, "meters"),
  32793. weight: math.unit(13000, "tons"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/zlmos/front.svg",
  32797. extra: 2202/1992,
  32798. bottom: 315/2517
  32799. }
  32800. },
  32801. },
  32802. [
  32803. {
  32804. name: "Macro",
  32805. height: math.unit(99, "meters"),
  32806. default: true
  32807. },
  32808. ]
  32809. ))
  32810. characterMakers.push(() => makeCharacter(
  32811. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32812. {
  32813. front: {
  32814. height: math.unit(6 + 5/12, "feet"),
  32815. name: "Front",
  32816. image: {
  32817. source: "./media/characters/purri/front.svg",
  32818. extra: 1698/1610,
  32819. bottom: 32/1730
  32820. }
  32821. },
  32822. frontAlt: {
  32823. height: math.unit(6 + 5/12, "feet"),
  32824. name: "Front (Alt)",
  32825. image: {
  32826. source: "./media/characters/purri/front-alt.svg",
  32827. extra: 450/420,
  32828. bottom: 26/476
  32829. }
  32830. },
  32831. boots: {
  32832. height: math.unit(5.5, "feet"),
  32833. name: "Boots",
  32834. image: {
  32835. source: "./media/characters/purri/boots.svg",
  32836. extra: 905/853,
  32837. bottom: 18/923
  32838. }
  32839. },
  32840. lying: {
  32841. height: math.unit(2, "feet"),
  32842. name: "Lying",
  32843. image: {
  32844. source: "./media/characters/purri/lying.svg",
  32845. extra: 940/843,
  32846. bottom: 146/1086
  32847. }
  32848. },
  32849. devious: {
  32850. height: math.unit(1.77, "feet"),
  32851. name: "Devious",
  32852. image: {
  32853. source: "./media/characters/purri/devious.svg",
  32854. extra: 1440/1155,
  32855. bottom: 147/1587
  32856. }
  32857. },
  32858. bean: {
  32859. height: math.unit(1.94, "feet"),
  32860. name: "Bean",
  32861. image: {
  32862. source: "./media/characters/purri/bean.svg"
  32863. }
  32864. },
  32865. },
  32866. [
  32867. {
  32868. name: "Micro",
  32869. height: math.unit(1, "mm")
  32870. },
  32871. {
  32872. name: "Normal",
  32873. height: math.unit(6 + 5/12, "feet"),
  32874. default: true
  32875. },
  32876. {
  32877. name: "Macro :3c",
  32878. height: math.unit(2, "miles")
  32879. },
  32880. ]
  32881. ))
  32882. characterMakers.push(() => makeCharacter(
  32883. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32884. {
  32885. front: {
  32886. height: math.unit(6 + 2/12, "feet"),
  32887. weight: math.unit(250, "lb"),
  32888. name: "Front",
  32889. image: {
  32890. source: "./media/characters/moonlight/front.svg",
  32891. extra: 1044/908,
  32892. bottom: 56/1100
  32893. }
  32894. },
  32895. feral: {
  32896. height: math.unit(3 + 1/12, "feet"),
  32897. weight: math.unit(50, "kg"),
  32898. name: "Feral",
  32899. image: {
  32900. source: "./media/characters/moonlight/feral.svg",
  32901. extra: 3705/2791,
  32902. bottom: 145/3850
  32903. }
  32904. },
  32905. paw: {
  32906. height: math.unit(1, "feet"),
  32907. name: "Paw",
  32908. image: {
  32909. source: "./media/characters/moonlight/paw.svg"
  32910. }
  32911. },
  32912. paws: {
  32913. height: math.unit(0.98, "feet"),
  32914. name: "Paws",
  32915. image: {
  32916. source: "./media/characters/moonlight/paws.svg",
  32917. extra: 939/939,
  32918. bottom: 50/989
  32919. }
  32920. },
  32921. mouth: {
  32922. height: math.unit(0.48, "feet"),
  32923. name: "Mouth",
  32924. image: {
  32925. source: "./media/characters/moonlight/mouth.svg"
  32926. }
  32927. },
  32928. dick: {
  32929. height: math.unit(1.46, "feet"),
  32930. name: "Dick",
  32931. image: {
  32932. source: "./media/characters/moonlight/dick.svg"
  32933. }
  32934. },
  32935. },
  32936. [
  32937. {
  32938. name: "Normal",
  32939. height: math.unit(6 + 2/12, "feet"),
  32940. default: true
  32941. },
  32942. {
  32943. name: "Macro",
  32944. height: math.unit(300, "feet")
  32945. },
  32946. {
  32947. name: "Macro+",
  32948. height: math.unit(1, "mile")
  32949. },
  32950. {
  32951. name: "Mt. Moon",
  32952. height: math.unit(5, "miles")
  32953. },
  32954. {
  32955. name: "Megamacro",
  32956. height: math.unit(15, "miles")
  32957. },
  32958. ]
  32959. ))
  32960. characterMakers.push(() => makeCharacter(
  32961. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32962. {
  32963. back: {
  32964. height: math.unit(6, "feet"),
  32965. weight: math.unit(150, "lb"),
  32966. name: "Back",
  32967. image: {
  32968. source: "./media/characters/sylen/back.svg",
  32969. extra: 1335/1273,
  32970. bottom: 107/1442
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(5 + 5/12, "feet")
  32978. },
  32979. {
  32980. name: "Megamacro",
  32981. height: math.unit(3, "miles"),
  32982. default: true
  32983. },
  32984. ]
  32985. ))
  32986. characterMakers.push(() => makeCharacter(
  32987. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32988. {
  32989. front: {
  32990. height: math.unit(6, "feet"),
  32991. weight: math.unit(190, "lb"),
  32992. name: "Front",
  32993. image: {
  32994. source: "./media/characters/huttser/front.svg",
  32995. extra: 1152/1058,
  32996. bottom: 23/1175
  32997. }
  32998. },
  32999. side: {
  33000. height: math.unit(6, "feet"),
  33001. weight: math.unit(190, "lb"),
  33002. name: "Side",
  33003. image: {
  33004. source: "./media/characters/huttser/side.svg",
  33005. extra: 1174/1065,
  33006. bottom: 18/1192
  33007. }
  33008. },
  33009. back: {
  33010. height: math.unit(6, "feet"),
  33011. weight: math.unit(190, "lb"),
  33012. name: "Back",
  33013. image: {
  33014. source: "./media/characters/huttser/back.svg",
  33015. extra: 1158/1056,
  33016. bottom: 12/1170
  33017. }
  33018. },
  33019. },
  33020. [
  33021. ]
  33022. ))
  33023. characterMakers.push(() => makeCharacter(
  33024. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33025. {
  33026. side: {
  33027. height: math.unit(12 + 9/12, "feet"),
  33028. weight: math.unit(15000, "lb"),
  33029. name: "Side",
  33030. image: {
  33031. source: "./media/characters/faan/side.svg",
  33032. extra: 2747/2697,
  33033. bottom: 0/2747
  33034. }
  33035. },
  33036. front: {
  33037. height: math.unit(12 + 9/12, "feet"),
  33038. weight: math.unit(15000, "lb"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/faan/front.svg",
  33042. extra: 607/571,
  33043. bottom: 24/631
  33044. }
  33045. },
  33046. head: {
  33047. height: math.unit(2.85, "feet"),
  33048. name: "Head",
  33049. image: {
  33050. source: "./media/characters/faan/head.svg"
  33051. }
  33052. },
  33053. headAlt: {
  33054. height: math.unit(3.13, "feet"),
  33055. name: "Head-alt",
  33056. image: {
  33057. source: "./media/characters/faan/head-alt.svg"
  33058. }
  33059. },
  33060. },
  33061. [
  33062. {
  33063. name: "Normal",
  33064. height: math.unit(12 + 9/12, "feet"),
  33065. default: true
  33066. },
  33067. ]
  33068. ))
  33069. characterMakers.push(() => makeCharacter(
  33070. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33071. {
  33072. front: {
  33073. height: math.unit(6, "feet"),
  33074. weight: math.unit(300, "lb"),
  33075. name: "Front",
  33076. image: {
  33077. source: "./media/characters/tanio/front.svg",
  33078. extra: 711/673,
  33079. bottom: 25/736
  33080. }
  33081. },
  33082. },
  33083. [
  33084. {
  33085. name: "Normal",
  33086. height: math.unit(6, "feet"),
  33087. default: true
  33088. },
  33089. ]
  33090. ))
  33091. characterMakers.push(() => makeCharacter(
  33092. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33093. {
  33094. front: {
  33095. height: math.unit(3, "inches"),
  33096. name: "Front",
  33097. image: {
  33098. source: "./media/characters/noboru/front.svg",
  33099. extra: 1039/932,
  33100. bottom: 18/1057
  33101. }
  33102. },
  33103. },
  33104. [
  33105. {
  33106. name: "Micro",
  33107. height: math.unit(3, "inches"),
  33108. default: true
  33109. },
  33110. ]
  33111. ))
  33112. characterMakers.push(() => makeCharacter(
  33113. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33114. {
  33115. front: {
  33116. height: math.unit(1.85, "meters"),
  33117. weight: math.unit(80, "kg"),
  33118. name: "Front",
  33119. image: {
  33120. source: "./media/characters/daniel-barrett/front.svg",
  33121. extra: 355/337,
  33122. bottom: 9/364
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Pico",
  33129. height: math.unit(0.0433, "mm")
  33130. },
  33131. {
  33132. name: "Nano",
  33133. height: math.unit(1.5, "mm")
  33134. },
  33135. {
  33136. name: "Micro",
  33137. height: math.unit(5.3, "cm"),
  33138. default: true
  33139. },
  33140. {
  33141. name: "Normal",
  33142. height: math.unit(1.85, "meters")
  33143. },
  33144. {
  33145. name: "Macro",
  33146. height: math.unit(64.7, "meters")
  33147. },
  33148. {
  33149. name: "Megamacro",
  33150. height: math.unit(2.26, "km")
  33151. },
  33152. {
  33153. name: "Gigamacro",
  33154. height: math.unit(79, "km")
  33155. },
  33156. {
  33157. name: "Teramacro",
  33158. height: math.unit(2765, "km")
  33159. },
  33160. {
  33161. name: "Petamacro",
  33162. height: math.unit(96678, "km")
  33163. },
  33164. ]
  33165. ))
  33166. characterMakers.push(() => makeCharacter(
  33167. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33168. {
  33169. front: {
  33170. height: math.unit(30, "meters"),
  33171. weight: math.unit(400, "tons"),
  33172. name: "Front",
  33173. image: {
  33174. source: "./media/characters/zeel/front.svg",
  33175. extra: 2599/2599,
  33176. bottom: 226/2825
  33177. }
  33178. },
  33179. },
  33180. [
  33181. {
  33182. name: "Macro",
  33183. height: math.unit(30, "meters"),
  33184. default: true
  33185. },
  33186. ]
  33187. ))
  33188. characterMakers.push(() => makeCharacter(
  33189. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33190. {
  33191. front: {
  33192. height: math.unit(6 + 7/12, "feet"),
  33193. weight: math.unit(210, "lb"),
  33194. name: "Front",
  33195. image: {
  33196. source: "./media/characters/tarn/front.svg",
  33197. extra: 3517/3220,
  33198. bottom: 91/3608
  33199. }
  33200. },
  33201. back: {
  33202. height: math.unit(6 + 7/12, "feet"),
  33203. weight: math.unit(210, "lb"),
  33204. name: "Back",
  33205. image: {
  33206. source: "./media/characters/tarn/back.svg",
  33207. extra: 3566/3241,
  33208. bottom: 34/3600
  33209. }
  33210. },
  33211. dick: {
  33212. height: math.unit(1.65, "feet"),
  33213. name: "Dick",
  33214. image: {
  33215. source: "./media/characters/tarn/dick.svg"
  33216. }
  33217. },
  33218. paw: {
  33219. height: math.unit(1.80, "feet"),
  33220. name: "Paw",
  33221. image: {
  33222. source: "./media/characters/tarn/paw.svg"
  33223. }
  33224. },
  33225. tongue: {
  33226. height: math.unit(0.97, "feet"),
  33227. name: "Tongue",
  33228. image: {
  33229. source: "./media/characters/tarn/tongue.svg"
  33230. }
  33231. },
  33232. },
  33233. [
  33234. {
  33235. name: "Micro",
  33236. height: math.unit(4, "inches")
  33237. },
  33238. {
  33239. name: "Normal",
  33240. height: math.unit(6 + 7/12, "feet"),
  33241. default: true
  33242. },
  33243. {
  33244. name: "Macro",
  33245. height: math.unit(300, "feet")
  33246. },
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33251. {
  33252. front: {
  33253. height: math.unit(5 + 7/12, "feet"),
  33254. weight: math.unit(80, "kg"),
  33255. name: "Front",
  33256. image: {
  33257. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33258. extra: 3023/2865,
  33259. bottom: 33/3056
  33260. }
  33261. },
  33262. back: {
  33263. height: math.unit(5 + 7/12, "feet"),
  33264. weight: math.unit(80, "kg"),
  33265. name: "Back",
  33266. image: {
  33267. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33268. extra: 3020/2886,
  33269. bottom: 30/3050
  33270. }
  33271. },
  33272. dick: {
  33273. height: math.unit(0.98, "feet"),
  33274. name: "Dick",
  33275. image: {
  33276. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33277. }
  33278. },
  33279. anatomy: {
  33280. height: math.unit(2.86, "feet"),
  33281. name: "Anatomy",
  33282. image: {
  33283. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Really Small",
  33290. height: math.unit(2, "inches")
  33291. },
  33292. {
  33293. name: "Micro",
  33294. height: math.unit(5.583, "inches")
  33295. },
  33296. {
  33297. name: "Normal",
  33298. height: math.unit(5 + 7/12, "feet"),
  33299. default: true
  33300. },
  33301. {
  33302. name: "Macro",
  33303. height: math.unit(67, "feet")
  33304. },
  33305. {
  33306. name: "Megamacro",
  33307. height: math.unit(134, "feet")
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33313. {
  33314. front: {
  33315. height: math.unit(9, "feet"),
  33316. weight: math.unit(120, "lb"),
  33317. name: "Front",
  33318. image: {
  33319. source: "./media/characters/sally/front.svg",
  33320. extra: 1506/1349,
  33321. bottom: 66/1572
  33322. }
  33323. },
  33324. },
  33325. [
  33326. {
  33327. name: "Normal",
  33328. height: math.unit(9, "feet"),
  33329. default: true
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33335. {
  33336. front: {
  33337. height: math.unit(8, "feet"),
  33338. weight: math.unit(900, "lb"),
  33339. name: "Front",
  33340. image: {
  33341. source: "./media/characters/owen/front.svg",
  33342. extra: 1761/1657,
  33343. bottom: 74/1835
  33344. }
  33345. },
  33346. side: {
  33347. height: math.unit(8, "feet"),
  33348. weight: math.unit(900, "lb"),
  33349. name: "Side",
  33350. image: {
  33351. source: "./media/characters/owen/side.svg",
  33352. extra: 1797/1734,
  33353. bottom: 30/1827
  33354. }
  33355. },
  33356. back: {
  33357. height: math.unit(8, "feet"),
  33358. weight: math.unit(900, "lb"),
  33359. name: "Back",
  33360. image: {
  33361. source: "./media/characters/owen/back.svg",
  33362. extra: 1796/1706,
  33363. bottom: 59/1855
  33364. }
  33365. },
  33366. maw: {
  33367. height: math.unit(1.76, "feet"),
  33368. name: "Maw",
  33369. image: {
  33370. source: "./media/characters/owen/maw.svg"
  33371. }
  33372. },
  33373. },
  33374. [
  33375. {
  33376. name: "Normal",
  33377. height: math.unit(8, "feet"),
  33378. default: true
  33379. },
  33380. ]
  33381. ))
  33382. characterMakers.push(() => makeCharacter(
  33383. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33384. {
  33385. front: {
  33386. height: math.unit(4, "feet"),
  33387. weight: math.unit(400, "lb"),
  33388. name: "Front",
  33389. image: {
  33390. source: "./media/characters/ryth/front.svg",
  33391. extra: 1920/1748,
  33392. bottom: 42/1962
  33393. }
  33394. },
  33395. back: {
  33396. height: math.unit(4, "feet"),
  33397. weight: math.unit(400, "lb"),
  33398. name: "Back",
  33399. image: {
  33400. source: "./media/characters/ryth/back.svg",
  33401. extra: 1897/1690,
  33402. bottom: 89/1986
  33403. }
  33404. },
  33405. mouth: {
  33406. height: math.unit(1.39, "feet"),
  33407. name: "Mouth",
  33408. image: {
  33409. source: "./media/characters/ryth/mouth.svg"
  33410. }
  33411. },
  33412. tailmaw: {
  33413. height: math.unit(1.23, "feet"),
  33414. name: "Tailmaw",
  33415. image: {
  33416. source: "./media/characters/ryth/tailmaw.svg"
  33417. }
  33418. },
  33419. goia: {
  33420. height: math.unit(4, "meters"),
  33421. weight: math.unit(10800, "lb"),
  33422. name: "Goia",
  33423. image: {
  33424. source: "./media/characters/ryth/goia.svg",
  33425. extra: 745/640,
  33426. bottom: 107/852
  33427. }
  33428. },
  33429. goiaFront: {
  33430. height: math.unit(4, "meters"),
  33431. weight: math.unit(10800, "lb"),
  33432. name: "Goia (Front)",
  33433. image: {
  33434. source: "./media/characters/ryth/goia-front.svg",
  33435. extra: 750/586,
  33436. bottom: 114/864
  33437. }
  33438. },
  33439. goiaMaw: {
  33440. height: math.unit(5.55, "feet"),
  33441. name: "Goia Maw",
  33442. image: {
  33443. source: "./media/characters/ryth/goia-maw.svg"
  33444. }
  33445. },
  33446. goiaForepaw: {
  33447. height: math.unit(3.5, "feet"),
  33448. name: "Goia Forepaw",
  33449. image: {
  33450. source: "./media/characters/ryth/goia-forepaw.svg"
  33451. }
  33452. },
  33453. goiaHindpaw: {
  33454. height: math.unit(5.55, "feet"),
  33455. name: "Goia Hindpaw",
  33456. image: {
  33457. source: "./media/characters/ryth/goia-hindpaw.svg"
  33458. }
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Normal",
  33464. height: math.unit(4, "feet"),
  33465. default: true
  33466. },
  33467. ]
  33468. ))
  33469. characterMakers.push(() => makeCharacter(
  33470. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33471. {
  33472. front: {
  33473. height: math.unit(7, "feet"),
  33474. weight: math.unit(180, "lb"),
  33475. name: "Front",
  33476. image: {
  33477. source: "./media/characters/necrolance/front.svg",
  33478. extra: 1062/947,
  33479. bottom: 41/1103
  33480. }
  33481. },
  33482. back: {
  33483. height: math.unit(7, "feet"),
  33484. weight: math.unit(180, "lb"),
  33485. name: "Back",
  33486. image: {
  33487. source: "./media/characters/necrolance/back.svg",
  33488. extra: 1045/984,
  33489. bottom: 14/1059
  33490. }
  33491. },
  33492. wing: {
  33493. height: math.unit(2.67, "feet"),
  33494. name: "Wing",
  33495. image: {
  33496. source: "./media/characters/necrolance/wing.svg"
  33497. }
  33498. },
  33499. },
  33500. [
  33501. {
  33502. name: "Normal",
  33503. height: math.unit(7, "feet"),
  33504. default: true
  33505. },
  33506. ]
  33507. ))
  33508. characterMakers.push(() => makeCharacter(
  33509. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33510. {
  33511. front: {
  33512. height: math.unit(76, "meters"),
  33513. weight: math.unit(30000, "tons"),
  33514. name: "Front",
  33515. image: {
  33516. source: "./media/characters/tyler/front.svg",
  33517. extra: 1640/1640,
  33518. bottom: 114/1754
  33519. }
  33520. },
  33521. },
  33522. [
  33523. {
  33524. name: "Macro",
  33525. height: math.unit(76, "meters"),
  33526. default: true
  33527. },
  33528. ]
  33529. ))
  33530. characterMakers.push(() => makeCharacter(
  33531. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33532. {
  33533. front: {
  33534. height: math.unit(4 + 11/12, "feet"),
  33535. weight: math.unit(132, "lb"),
  33536. name: "Front",
  33537. image: {
  33538. source: "./media/characters/icey/front.svg",
  33539. extra: 2750/2550,
  33540. bottom: 33/2783
  33541. }
  33542. },
  33543. back: {
  33544. height: math.unit(4 + 11/12, "feet"),
  33545. weight: math.unit(132, "lb"),
  33546. name: "Back",
  33547. image: {
  33548. source: "./media/characters/icey/back.svg",
  33549. extra: 2624/2481,
  33550. bottom: 35/2659
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(4 + 11/12, "feet"),
  33558. default: true
  33559. },
  33560. ]
  33561. ))
  33562. characterMakers.push(() => makeCharacter(
  33563. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33564. {
  33565. front: {
  33566. height: math.unit(100, "feet"),
  33567. weight: math.unit(0, "lb"),
  33568. name: "Front",
  33569. image: {
  33570. source: "./media/characters/smile/front.svg",
  33571. extra: 2983/2912,
  33572. bottom: 162/3145
  33573. }
  33574. },
  33575. back: {
  33576. height: math.unit(100, "feet"),
  33577. weight: math.unit(0, "lb"),
  33578. name: "Back",
  33579. image: {
  33580. source: "./media/characters/smile/back.svg",
  33581. extra: 3143/3031,
  33582. bottom: 91/3234
  33583. }
  33584. },
  33585. head: {
  33586. height: math.unit(26.3, "feet"),
  33587. weight: math.unit(0, "lb"),
  33588. name: "Head",
  33589. image: {
  33590. source: "./media/characters/smile/head.svg"
  33591. }
  33592. },
  33593. collar: {
  33594. height: math.unit(5.3, "feet"),
  33595. weight: math.unit(0, "lb"),
  33596. name: "Collar",
  33597. image: {
  33598. source: "./media/characters/smile/collar.svg"
  33599. }
  33600. },
  33601. },
  33602. [
  33603. {
  33604. name: "Macro",
  33605. height: math.unit(100, "feet"),
  33606. default: true
  33607. },
  33608. ]
  33609. ))
  33610. characterMakers.push(() => makeCharacter(
  33611. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33612. {
  33613. dragon: {
  33614. height: math.unit(26, "feet"),
  33615. weight: math.unit(36, "tons"),
  33616. name: "Dragon",
  33617. image: {
  33618. source: "./media/characters/arimphae/dragon.svg",
  33619. extra: 1574/983,
  33620. bottom: 357/1931
  33621. }
  33622. },
  33623. drake: {
  33624. height: math.unit(9, "feet"),
  33625. weight: math.unit(1.5, "tons"),
  33626. name: "Drake",
  33627. image: {
  33628. source: "./media/characters/arimphae/drake.svg",
  33629. extra: 1120/925,
  33630. bottom: 435/1555
  33631. }
  33632. },
  33633. },
  33634. [
  33635. {
  33636. name: "Small",
  33637. height: math.unit(26*5/9, "feet")
  33638. },
  33639. {
  33640. name: "Normal",
  33641. height: math.unit(26, "feet"),
  33642. default: true
  33643. },
  33644. ]
  33645. ))
  33646. characterMakers.push(() => makeCharacter(
  33647. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33648. {
  33649. front: {
  33650. height: math.unit(8 + 9/12, "feet"),
  33651. name: "Front",
  33652. image: {
  33653. source: "./media/characters/xander/front.svg",
  33654. extra: 1237/974,
  33655. bottom: 94/1331
  33656. }
  33657. },
  33658. },
  33659. [
  33660. {
  33661. name: "Normal",
  33662. height: math.unit(8 + 9/12, "feet"),
  33663. default: true
  33664. },
  33665. {
  33666. name: "Gaze Grabber",
  33667. height: math.unit(13 + 8/12, "feet")
  33668. },
  33669. {
  33670. name: "Jaw Dropper",
  33671. height: math.unit(27, "feet")
  33672. },
  33673. {
  33674. name: "Show Stopper",
  33675. height: math.unit(136, "feet")
  33676. },
  33677. {
  33678. name: "Superstar",
  33679. height: math.unit(1.9e6, "miles")
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33685. {
  33686. side: {
  33687. height: math.unit(2100, "feet"),
  33688. name: "Side",
  33689. image: {
  33690. source: "./media/characters/osiris/side.svg",
  33691. extra: 1105/939,
  33692. bottom: 167/1272
  33693. }
  33694. },
  33695. },
  33696. [
  33697. {
  33698. name: "Macro",
  33699. height: math.unit(2100, "feet"),
  33700. default: true
  33701. },
  33702. ]
  33703. ))
  33704. characterMakers.push(() => makeCharacter(
  33705. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33706. {
  33707. front: {
  33708. height: math.unit(6 + 8/12, "feet"),
  33709. weight: math.unit(225, "lb"),
  33710. name: "Front",
  33711. image: {
  33712. source: "./media/characters/rhys-londe/front.svg",
  33713. extra: 2258/2141,
  33714. bottom: 188/2446
  33715. }
  33716. },
  33717. back: {
  33718. height: math.unit(6 + 8/12, "feet"),
  33719. weight: math.unit(225, "lb"),
  33720. name: "Back",
  33721. image: {
  33722. source: "./media/characters/rhys-londe/back.svg",
  33723. extra: 2237/2137,
  33724. bottom: 63/2300
  33725. }
  33726. },
  33727. frontNsfw: {
  33728. height: math.unit(6 + 8/12, "feet"),
  33729. weight: math.unit(225, "lb"),
  33730. name: "Front (NSFW)",
  33731. image: {
  33732. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33733. extra: 2258/2141,
  33734. bottom: 188/2446
  33735. }
  33736. },
  33737. backNsfw: {
  33738. height: math.unit(6 + 8/12, "feet"),
  33739. weight: math.unit(225, "lb"),
  33740. name: "Back (NSFW)",
  33741. image: {
  33742. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33743. extra: 2237/2137,
  33744. bottom: 63/2300
  33745. }
  33746. },
  33747. dick: {
  33748. height: math.unit(30, "inches"),
  33749. name: "Dick",
  33750. image: {
  33751. source: "./media/characters/rhys-londe/dick.svg"
  33752. }
  33753. },
  33754. maw: {
  33755. height: math.unit(1.6, "feet"),
  33756. name: "Maw",
  33757. image: {
  33758. source: "./media/characters/rhys-londe/maw.svg"
  33759. }
  33760. },
  33761. },
  33762. [
  33763. {
  33764. name: "Normal",
  33765. height: math.unit(6 + 8/12, "feet"),
  33766. default: true
  33767. },
  33768. ]
  33769. ))
  33770. characterMakers.push(() => makeCharacter(
  33771. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33772. {
  33773. front: {
  33774. height: math.unit(3 + 10/12, "feet"),
  33775. weight: math.unit(90, "lb"),
  33776. name: "Front",
  33777. image: {
  33778. source: "./media/characters/taivas-ensim/front.svg",
  33779. extra: 1327/1216,
  33780. bottom: 96/1423
  33781. }
  33782. },
  33783. back: {
  33784. height: math.unit(3 + 10/12, "feet"),
  33785. weight: math.unit(90, "lb"),
  33786. name: "Back",
  33787. image: {
  33788. source: "./media/characters/taivas-ensim/back.svg",
  33789. extra: 1355/1247,
  33790. bottom: 11/1366
  33791. }
  33792. },
  33793. frontNsfw: {
  33794. height: math.unit(3 + 10/12, "feet"),
  33795. weight: math.unit(90, "lb"),
  33796. name: "Front (NSFW)",
  33797. image: {
  33798. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33799. extra: 1327/1216,
  33800. bottom: 96/1423
  33801. }
  33802. },
  33803. backNsfw: {
  33804. height: math.unit(3 + 10/12, "feet"),
  33805. weight: math.unit(90, "lb"),
  33806. name: "Back (NSFW)",
  33807. image: {
  33808. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33809. extra: 1355/1247,
  33810. bottom: 11/1366
  33811. }
  33812. },
  33813. },
  33814. [
  33815. {
  33816. name: "Normal",
  33817. height: math.unit(3 + 10/12, "feet"),
  33818. default: true
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33824. {
  33825. front: {
  33826. height: math.unit(9 + 6/12, "feet"),
  33827. weight: math.unit(940, "lb"),
  33828. name: "Front",
  33829. image: {
  33830. source: "./media/characters/byliss/front.svg",
  33831. extra: 1327/1290,
  33832. bottom: 82/1409
  33833. }
  33834. },
  33835. back: {
  33836. height: math.unit(9 + 6/12, "feet"),
  33837. weight: math.unit(940, "lb"),
  33838. name: "Back",
  33839. image: {
  33840. source: "./media/characters/byliss/back.svg",
  33841. extra: 1376/1349,
  33842. bottom: 9/1385
  33843. }
  33844. },
  33845. frontNsfw: {
  33846. height: math.unit(9 + 6/12, "feet"),
  33847. weight: math.unit(940, "lb"),
  33848. name: "Front (NSFW)",
  33849. image: {
  33850. source: "./media/characters/byliss/front-nsfw.svg",
  33851. extra: 1327/1290,
  33852. bottom: 82/1409
  33853. }
  33854. },
  33855. backNsfw: {
  33856. height: math.unit(9 + 6/12, "feet"),
  33857. weight: math.unit(940, "lb"),
  33858. name: "Back (NSFW)",
  33859. image: {
  33860. source: "./media/characters/byliss/back-nsfw.svg",
  33861. extra: 1376/1349,
  33862. bottom: 9/1385
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Normal",
  33869. height: math.unit(9 + 6/12, "feet"),
  33870. default: true
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(5 + 2/12, "feet"),
  33879. weight: math.unit(200, "lb"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/noraly/front.svg",
  33883. extra: 4985/4773,
  33884. bottom: 150/5135
  33885. }
  33886. },
  33887. full: {
  33888. height: math.unit(5 + 2/12, "feet"),
  33889. weight: math.unit(164, "lb"),
  33890. name: "Full",
  33891. image: {
  33892. source: "./media/characters/noraly/full.svg",
  33893. extra: 1114/1059,
  33894. bottom: 35/1149
  33895. }
  33896. },
  33897. fuller: {
  33898. height: math.unit(5 + 2/12, "feet"),
  33899. weight: math.unit(230, "lb"),
  33900. name: "Fuller",
  33901. image: {
  33902. source: "./media/characters/noraly/fuller.svg",
  33903. extra: 1114/1059,
  33904. bottom: 35/1149
  33905. }
  33906. },
  33907. fullest: {
  33908. height: math.unit(5 + 2/12, "feet"),
  33909. weight: math.unit(300, "lb"),
  33910. name: "Fullest",
  33911. image: {
  33912. source: "./media/characters/noraly/fullest.svg",
  33913. extra: 1114/1059,
  33914. bottom: 35/1149
  33915. }
  33916. },
  33917. },
  33918. [
  33919. {
  33920. name: "Normal",
  33921. height: math.unit(5 + 2/12, "feet"),
  33922. default: true
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33928. {
  33929. front: {
  33930. height: math.unit(5 + 2/12, "feet"),
  33931. weight: math.unit(210, "lb"),
  33932. name: "Front",
  33933. image: {
  33934. source: "./media/characters/pera/front.svg",
  33935. extra: 1560/1531,
  33936. bottom: 165/1725
  33937. }
  33938. },
  33939. back: {
  33940. height: math.unit(5 + 2/12, "feet"),
  33941. weight: math.unit(210, "lb"),
  33942. name: "Back",
  33943. image: {
  33944. source: "./media/characters/pera/back.svg",
  33945. extra: 1523/1493,
  33946. bottom: 152/1675
  33947. }
  33948. },
  33949. dick: {
  33950. height: math.unit(2.4, "feet"),
  33951. name: "Dick",
  33952. image: {
  33953. source: "./media/characters/pera/dick.svg"
  33954. }
  33955. },
  33956. },
  33957. [
  33958. {
  33959. name: "Normal",
  33960. height: math.unit(5 + 2/12, "feet"),
  33961. default: true
  33962. },
  33963. ]
  33964. ))
  33965. characterMakers.push(() => makeCharacter(
  33966. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33967. {
  33968. front: {
  33969. height: math.unit(12, "feet"),
  33970. weight: math.unit(3200, "lb"),
  33971. name: "Front",
  33972. image: {
  33973. source: "./media/characters/julian/front.svg",
  33974. extra: 2962/2701,
  33975. bottom: 184/3146
  33976. }
  33977. },
  33978. maw: {
  33979. height: math.unit(5.35, "feet"),
  33980. name: "Maw",
  33981. image: {
  33982. source: "./media/characters/julian/maw.svg"
  33983. }
  33984. },
  33985. paw: {
  33986. height: math.unit(3.07, "feet"),
  33987. name: "Paw",
  33988. image: {
  33989. source: "./media/characters/julian/paw.svg"
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "Default",
  33996. height: math.unit(12, "feet"),
  33997. default: true
  33998. },
  33999. {
  34000. name: "Big",
  34001. height: math.unit(50, "feet")
  34002. },
  34003. {
  34004. name: "Really Big",
  34005. height: math.unit(1, "mile")
  34006. },
  34007. {
  34008. name: "Extremely Big",
  34009. height: math.unit(100, "miles")
  34010. },
  34011. {
  34012. name: "Planet Hugger",
  34013. height: math.unit(200, "megameters")
  34014. },
  34015. {
  34016. name: "Unreasonably Big",
  34017. height: math.unit(1e300, "meters")
  34018. },
  34019. ]
  34020. ))
  34021. characterMakers.push(() => makeCharacter(
  34022. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34023. {
  34024. solgooleo: {
  34025. height: math.unit(4, "meters"),
  34026. weight: math.unit(6000*1.5, "kg"),
  34027. volume: math.unit(6000, "liters"),
  34028. name: "Solgooleo",
  34029. image: {
  34030. source: "./media/characters/pi/solgooleo.svg",
  34031. extra: 388/331,
  34032. bottom: 29/417
  34033. }
  34034. },
  34035. },
  34036. [
  34037. {
  34038. name: "Normal",
  34039. height: math.unit(4, "meters"),
  34040. default: true
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34046. {
  34047. front: {
  34048. height: math.unit(8, "feet"),
  34049. weight: math.unit(4, "tons"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/shaun/front.svg",
  34053. extra: 503/495,
  34054. bottom: 20/523
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(8, "feet"),
  34059. weight: math.unit(4, "tons"),
  34060. name: "Back",
  34061. image: {
  34062. source: "./media/characters/shaun/back.svg",
  34063. extra: 487/480,
  34064. bottom: 20/507
  34065. }
  34066. },
  34067. },
  34068. [
  34069. {
  34070. name: "Lorg",
  34071. height: math.unit(8, "feet"),
  34072. default: true
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34078. {
  34079. frontAnthro: {
  34080. height: math.unit(7, "feet"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/sini/front-anthro.svg",
  34084. extra: 726/678,
  34085. bottom: 35/761
  34086. },
  34087. form: "anthro",
  34088. default: true
  34089. },
  34090. backAnthro: {
  34091. height: math.unit(7, "feet"),
  34092. name: "Back",
  34093. image: {
  34094. source: "./media/characters/sini/back-anthro.svg",
  34095. extra: 743/701,
  34096. bottom: 12/755
  34097. },
  34098. form: "anthro",
  34099. },
  34100. frontAnthroNsfw: {
  34101. height: math.unit(7, "feet"),
  34102. name: "Front (NSFW)",
  34103. image: {
  34104. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34105. extra: 726/678,
  34106. bottom: 35/761
  34107. },
  34108. form: "anthro"
  34109. },
  34110. backAnthroNsfw: {
  34111. height: math.unit(7, "feet"),
  34112. name: "Back (NSFW)",
  34113. image: {
  34114. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34115. extra: 743/701,
  34116. bottom: 12/755
  34117. },
  34118. form: "anthro",
  34119. },
  34120. mawAnthro: {
  34121. height: math.unit(2.14, "feet"),
  34122. name: "Maw",
  34123. image: {
  34124. source: "./media/characters/sini/maw-anthro.svg"
  34125. },
  34126. form: "anthro"
  34127. },
  34128. dick: {
  34129. height: math.unit(1.45, "feet"),
  34130. name: "Dick",
  34131. image: {
  34132. source: "./media/characters/sini/dick-anthro.svg"
  34133. },
  34134. form: "anthro"
  34135. },
  34136. feral: {
  34137. height: math.unit(16, "feet"),
  34138. name: "Feral",
  34139. image: {
  34140. source: "./media/characters/sini/feral.svg",
  34141. extra: 814/605,
  34142. bottom: 11/825
  34143. },
  34144. form: "feral",
  34145. default: true
  34146. },
  34147. feralNsfw: {
  34148. height: math.unit(16, "feet"),
  34149. name: "Feral (NSFW)",
  34150. image: {
  34151. source: "./media/characters/sini/feral-nsfw.svg",
  34152. extra: 814/605,
  34153. bottom: 11/825
  34154. },
  34155. form: "feral"
  34156. },
  34157. mawFeral: {
  34158. height: math.unit(5.66, "feet"),
  34159. name: "Maw",
  34160. image: {
  34161. source: "./media/characters/sini/maw-feral.svg"
  34162. },
  34163. form: "feral",
  34164. },
  34165. pawFeral: {
  34166. height: math.unit(5.17, "feet"),
  34167. name: "Paw",
  34168. image: {
  34169. source: "./media/characters/sini/paw-feral.svg"
  34170. },
  34171. form: "feral",
  34172. },
  34173. rumpFeral: {
  34174. height: math.unit(13.11, "feet"),
  34175. name: "Rump",
  34176. image: {
  34177. source: "./media/characters/sini/rump-feral.svg"
  34178. },
  34179. form: "feral",
  34180. },
  34181. dickFeral: {
  34182. height: math.unit(1, "feet"),
  34183. name: "Dick",
  34184. image: {
  34185. source: "./media/characters/sini/dick-feral.svg"
  34186. },
  34187. form: "feral",
  34188. },
  34189. eyeFeral: {
  34190. height: math.unit(1.23, "feet"),
  34191. name: "Eye",
  34192. image: {
  34193. source: "./media/characters/sini/eye-feral.svg"
  34194. },
  34195. form: "feral",
  34196. },
  34197. },
  34198. [
  34199. {
  34200. name: "Normal",
  34201. height: math.unit(7, "feet"),
  34202. default: true,
  34203. form: "anthro"
  34204. },
  34205. {
  34206. name: "Normal",
  34207. height: math.unit(16, "feet"),
  34208. default: true,
  34209. form: "feral"
  34210. },
  34211. ],
  34212. {
  34213. "anthro": {
  34214. name: "Anthro",
  34215. default: true
  34216. },
  34217. "feral": {
  34218. name: "Feral",
  34219. }
  34220. }
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34224. {
  34225. side: {
  34226. height: math.unit(47.2, "meters"),
  34227. weight: math.unit(10000, "tons"),
  34228. name: "Side",
  34229. image: {
  34230. source: "./media/characters/raylldo/side.svg",
  34231. extra: 2363/642,
  34232. bottom: 221/2584
  34233. }
  34234. },
  34235. top: {
  34236. height: math.unit(240, "meters"),
  34237. weight: math.unit(10000, "tons"),
  34238. name: "Top",
  34239. image: {
  34240. source: "./media/characters/raylldo/top.svg"
  34241. }
  34242. },
  34243. bottom: {
  34244. height: math.unit(240, "meters"),
  34245. weight: math.unit(10000, "tons"),
  34246. name: "Bottom",
  34247. image: {
  34248. source: "./media/characters/raylldo/bottom.svg"
  34249. }
  34250. },
  34251. head: {
  34252. height: math.unit(38.6, "meters"),
  34253. name: "Head",
  34254. image: {
  34255. source: "./media/characters/raylldo/head.svg",
  34256. extra: 1335/1112,
  34257. bottom: 0/1335
  34258. }
  34259. },
  34260. maw: {
  34261. height: math.unit(16.37, "meters"),
  34262. name: "Maw",
  34263. image: {
  34264. source: "./media/characters/raylldo/maw.svg",
  34265. extra: 883/660,
  34266. bottom: 0/883
  34267. },
  34268. extraAttributes: {
  34269. preyCapacity: {
  34270. name: "Capacity",
  34271. power: 3,
  34272. type: "volume",
  34273. base: math.unit(1000, "people")
  34274. },
  34275. tongueSize: {
  34276. name: "Tongue Size",
  34277. power: 2,
  34278. type: "area",
  34279. base: math.unit(21, "m^2")
  34280. }
  34281. }
  34282. },
  34283. forepaw: {
  34284. height: math.unit(18, "meters"),
  34285. name: "Forepaw",
  34286. image: {
  34287. source: "./media/characters/raylldo/forepaw.svg"
  34288. }
  34289. },
  34290. hindpaw: {
  34291. height: math.unit(23, "meters"),
  34292. name: "Hindpaw",
  34293. image: {
  34294. source: "./media/characters/raylldo/hindpaw.svg"
  34295. }
  34296. },
  34297. genitals: {
  34298. height: math.unit(42, "meters"),
  34299. name: "Genitals",
  34300. image: {
  34301. source: "./media/characters/raylldo/genitals.svg"
  34302. }
  34303. },
  34304. },
  34305. [
  34306. {
  34307. name: "Normal",
  34308. height: math.unit(47.2, "meters"),
  34309. default: true
  34310. },
  34311. ]
  34312. ))
  34313. characterMakers.push(() => makeCharacter(
  34314. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34315. {
  34316. anthroFront: {
  34317. height: math.unit(9, "feet"),
  34318. weight: math.unit(600, "lb"),
  34319. name: "Anthro (Front)",
  34320. image: {
  34321. source: "./media/characters/glint/anthro-front.svg",
  34322. extra: 1097/1018,
  34323. bottom: 28/1125
  34324. }
  34325. },
  34326. anthroBack: {
  34327. height: math.unit(9, "feet"),
  34328. weight: math.unit(600, "lb"),
  34329. name: "Anthro (Back)",
  34330. image: {
  34331. source: "./media/characters/glint/anthro-back.svg",
  34332. extra: 1154/997,
  34333. bottom: 36/1190
  34334. }
  34335. },
  34336. feral: {
  34337. height: math.unit(11, "feet"),
  34338. weight: math.unit(50000, "lb"),
  34339. name: "Feral",
  34340. image: {
  34341. source: "./media/characters/glint/feral.svg",
  34342. extra: 3035/1585,
  34343. bottom: 1169/4204
  34344. }
  34345. },
  34346. dickAnthro: {
  34347. height: math.unit(0.7, "meters"),
  34348. name: "Dick (Anthro)",
  34349. image: {
  34350. source: "./media/characters/glint/dick-anthro.svg"
  34351. }
  34352. },
  34353. dickFeral: {
  34354. height: math.unit(2.65, "meters"),
  34355. name: "Dick (Feral)",
  34356. image: {
  34357. source: "./media/characters/glint/dick-feral.svg"
  34358. }
  34359. },
  34360. slitHidden: {
  34361. height: math.unit(5.85, "meters"),
  34362. name: "Slit (Hidden)",
  34363. image: {
  34364. source: "./media/characters/glint/slit-hidden.svg"
  34365. }
  34366. },
  34367. slitErect: {
  34368. height: math.unit(5.85, "meters"),
  34369. name: "Slit (Erect)",
  34370. image: {
  34371. source: "./media/characters/glint/slit-erect.svg"
  34372. }
  34373. },
  34374. mawAnthro: {
  34375. height: math.unit(0.63, "meters"),
  34376. name: "Maw (Anthro)",
  34377. image: {
  34378. source: "./media/characters/glint/maw.svg"
  34379. }
  34380. },
  34381. mawFeral: {
  34382. height: math.unit(2.89, "meters"),
  34383. name: "Maw (Feral)",
  34384. image: {
  34385. source: "./media/characters/glint/maw.svg"
  34386. }
  34387. },
  34388. },
  34389. [
  34390. {
  34391. name: "Normal",
  34392. height: math.unit(9, "feet"),
  34393. default: true
  34394. },
  34395. ]
  34396. ))
  34397. characterMakers.push(() => makeCharacter(
  34398. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34399. {
  34400. side: {
  34401. height: math.unit(15, "feet"),
  34402. weight: math.unit(5000, "kg"),
  34403. name: "Side",
  34404. image: {
  34405. source: "./media/characters/kairne/side.svg",
  34406. extra: 979/811,
  34407. bottom: 13/992
  34408. }
  34409. },
  34410. front: {
  34411. height: math.unit(15, "feet"),
  34412. weight: math.unit(5000, "kg"),
  34413. name: "Front",
  34414. image: {
  34415. source: "./media/characters/kairne/front.svg",
  34416. extra: 908/814,
  34417. bottom: 26/934
  34418. }
  34419. },
  34420. sideNsfw: {
  34421. height: math.unit(15, "feet"),
  34422. weight: math.unit(5000, "kg"),
  34423. name: "Side (NSFW)",
  34424. image: {
  34425. source: "./media/characters/kairne/side-nsfw.svg",
  34426. extra: 979/811,
  34427. bottom: 13/992
  34428. }
  34429. },
  34430. frontNsfw: {
  34431. height: math.unit(15, "feet"),
  34432. weight: math.unit(5000, "kg"),
  34433. name: "Front (NSFW)",
  34434. image: {
  34435. source: "./media/characters/kairne/front-nsfw.svg",
  34436. extra: 908/814,
  34437. bottom: 26/934
  34438. }
  34439. },
  34440. dickCaged: {
  34441. height: math.unit(0.65, "meters"),
  34442. name: "Dick-caged",
  34443. image: {
  34444. source: "./media/characters/kairne/dick-caged.svg"
  34445. }
  34446. },
  34447. dick: {
  34448. height: math.unit(0.79, "meters"),
  34449. name: "Dick",
  34450. image: {
  34451. source: "./media/characters/kairne/dick.svg"
  34452. }
  34453. },
  34454. genitals: {
  34455. height: math.unit(1.29, "meters"),
  34456. name: "Genitals",
  34457. image: {
  34458. source: "./media/characters/kairne/genitals.svg"
  34459. }
  34460. },
  34461. maw: {
  34462. height: math.unit(1.73, "meters"),
  34463. name: "Maw",
  34464. image: {
  34465. source: "./media/characters/kairne/maw.svg"
  34466. }
  34467. },
  34468. },
  34469. [
  34470. {
  34471. name: "Normal",
  34472. height: math.unit(15, "feet"),
  34473. default: true
  34474. },
  34475. ]
  34476. ))
  34477. characterMakers.push(() => makeCharacter(
  34478. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34479. {
  34480. front: {
  34481. height: math.unit(5 + 8/12, "feet"),
  34482. weight: math.unit(139, "lb"),
  34483. name: "Front",
  34484. image: {
  34485. source: "./media/characters/biscuit-jackal/front.svg",
  34486. extra: 2106/1961,
  34487. bottom: 58/2164
  34488. }
  34489. },
  34490. back: {
  34491. height: math.unit(5 + 8/12, "feet"),
  34492. weight: math.unit(139, "lb"),
  34493. name: "Back",
  34494. image: {
  34495. source: "./media/characters/biscuit-jackal/back.svg",
  34496. extra: 2132/1976,
  34497. bottom: 57/2189
  34498. }
  34499. },
  34500. werejackal: {
  34501. height: math.unit(6 + 3/12, "feet"),
  34502. weight: math.unit(188, "lb"),
  34503. name: "Werejackal",
  34504. image: {
  34505. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34506. extra: 2373/2178,
  34507. bottom: 53/2426
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Normal",
  34514. height: math.unit(5 + 8/12, "feet"),
  34515. default: true
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34521. {
  34522. front: {
  34523. height: math.unit(140, "cm"),
  34524. weight: math.unit(45, "kg"),
  34525. name: "Front",
  34526. image: {
  34527. source: "./media/characters/tayra-white/front.svg",
  34528. extra: 2229/2192,
  34529. bottom: 75/2304
  34530. }
  34531. },
  34532. },
  34533. [
  34534. {
  34535. name: "Normal",
  34536. height: math.unit(140, "cm"),
  34537. default: true
  34538. },
  34539. ]
  34540. ))
  34541. characterMakers.push(() => makeCharacter(
  34542. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34543. {
  34544. front: {
  34545. height: math.unit(4 + 5/12, "feet"),
  34546. name: "Front",
  34547. image: {
  34548. source: "./media/characters/scoop/front.svg",
  34549. extra: 1257/1136,
  34550. bottom: 69/1326
  34551. }
  34552. },
  34553. back: {
  34554. height: math.unit(4 + 5/12, "feet"),
  34555. name: "Back",
  34556. image: {
  34557. source: "./media/characters/scoop/back.svg",
  34558. extra: 1321/1152,
  34559. bottom: 32/1353
  34560. }
  34561. },
  34562. maw: {
  34563. height: math.unit(0.68, "feet"),
  34564. name: "Maw",
  34565. image: {
  34566. source: "./media/characters/scoop/maw.svg"
  34567. }
  34568. },
  34569. },
  34570. [
  34571. {
  34572. name: "Really Small",
  34573. height: math.unit(1, "mm")
  34574. },
  34575. {
  34576. name: "Micro",
  34577. height: math.unit(1, "inch")
  34578. },
  34579. {
  34580. name: "Normal",
  34581. height: math.unit(4 + 5/12, "feet"),
  34582. default: true
  34583. },
  34584. {
  34585. name: "Macro",
  34586. height: math.unit(200, "feet")
  34587. },
  34588. {
  34589. name: "Megamacro",
  34590. height: math.unit(3240, "feet")
  34591. },
  34592. {
  34593. name: "Teramacro",
  34594. height: math.unit(2500, "miles")
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(15 + 7/12, "feet"),
  34603. weight: math.unit(1150, "tons"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/saphinara/front.svg",
  34607. extra: 1837/1643,
  34608. bottom: 84/1921
  34609. },
  34610. form: "normal",
  34611. default: true
  34612. },
  34613. side: {
  34614. height: math.unit(15 + 7/12, "feet"),
  34615. weight: math.unit(1150, "tons"),
  34616. name: "Side",
  34617. image: {
  34618. source: "./media/characters/saphinara/side.svg",
  34619. extra: 605/547,
  34620. bottom: 6/611
  34621. },
  34622. form: "normal"
  34623. },
  34624. back: {
  34625. height: math.unit(15 + 7/12, "feet"),
  34626. weight: math.unit(1150, "tons"),
  34627. name: "Back",
  34628. image: {
  34629. source: "./media/characters/saphinara/back.svg",
  34630. extra: 591/531,
  34631. bottom: 13/604
  34632. },
  34633. form: "normal"
  34634. },
  34635. frontTail: {
  34636. height: math.unit(15 + 7/12, "feet"),
  34637. weight: math.unit(1150, "tons"),
  34638. name: "Front (Full Tail)",
  34639. image: {
  34640. source: "./media/characters/saphinara/front-tail.svg",
  34641. extra: 2256/1630,
  34642. bottom: 261/2517
  34643. },
  34644. form: "normal"
  34645. },
  34646. insides: {
  34647. height: math.unit(11.92, "feet"),
  34648. name: "Insides",
  34649. image: {
  34650. source: "./media/characters/saphinara/insides.svg"
  34651. },
  34652. form: "normal"
  34653. },
  34654. head: {
  34655. height: math.unit(4.17, "feet"),
  34656. name: "Head",
  34657. image: {
  34658. source: "./media/characters/saphinara/head.svg"
  34659. },
  34660. form: "normal"
  34661. },
  34662. tongue: {
  34663. height: math.unit(4.60, "feet"),
  34664. name: "Tongue",
  34665. image: {
  34666. source: "./media/characters/saphinara/tongue.svg"
  34667. },
  34668. form: "normal"
  34669. },
  34670. headEnraged: {
  34671. height: math.unit(5.55, "feet"),
  34672. name: "Head (Enraged)",
  34673. image: {
  34674. source: "./media/characters/saphinara/head-enraged.svg"
  34675. },
  34676. form: "normal"
  34677. },
  34678. wings: {
  34679. height: math.unit(11.95, "feet"),
  34680. name: "Wings",
  34681. image: {
  34682. source: "./media/characters/saphinara/wings.svg"
  34683. },
  34684. form: "normal"
  34685. },
  34686. feathers: {
  34687. height: math.unit(8.92, "feet"),
  34688. name: "Feathers",
  34689. image: {
  34690. source: "./media/characters/saphinara/feathers.svg"
  34691. },
  34692. form: "normal"
  34693. },
  34694. shackles: {
  34695. height: math.unit(2, "feet"),
  34696. name: "Shackles",
  34697. image: {
  34698. source: "./media/characters/saphinara/shackles.svg"
  34699. },
  34700. form: "normal"
  34701. },
  34702. eyes: {
  34703. height: math.unit(1.331, "feet"),
  34704. name: "Eyes",
  34705. image: {
  34706. source: "./media/characters/saphinara/eyes.svg"
  34707. },
  34708. form: "normal"
  34709. },
  34710. eyesEnraged: {
  34711. height: math.unit(1.331, "feet"),
  34712. name: "Eyes (Enraged)",
  34713. image: {
  34714. source: "./media/characters/saphinara/eyes-enraged.svg"
  34715. },
  34716. form: "normal"
  34717. },
  34718. trueFormSide: {
  34719. height: math.unit(200, "feet"),
  34720. weight: math.unit(1e7, "tons"),
  34721. name: "Side",
  34722. image: {
  34723. source: "./media/characters/saphinara/true-form-side.svg",
  34724. extra: 1399/770,
  34725. bottom: 97/1496
  34726. },
  34727. form: "true-form",
  34728. default: true
  34729. },
  34730. trueFormMaw: {
  34731. height: math.unit(71.5, "feet"),
  34732. name: "Maw",
  34733. image: {
  34734. source: "./media/characters/saphinara/true-form-maw.svg",
  34735. extra: 2302/1453,
  34736. bottom: 0/2302
  34737. },
  34738. form: "true-form"
  34739. },
  34740. meowberusSide: {
  34741. height: math.unit(75, "feet"),
  34742. weight: math.unit(180000, "kg"),
  34743. preyCapacity: math.unit(50000, "people"),
  34744. name: "Side",
  34745. image: {
  34746. source: "./media/characters/saphinara/meowberus-side.svg",
  34747. extra: 1400/711,
  34748. bottom: 126/1526
  34749. },
  34750. form: "meowberus",
  34751. extraAttributes: {
  34752. "pawArea": {
  34753. name: "Paw Size",
  34754. power: 2,
  34755. type: "area",
  34756. base: math.unit(35, "m^2")
  34757. }
  34758. }
  34759. },
  34760. },
  34761. [
  34762. {
  34763. name: "Normal",
  34764. height: math.unit(15 + 7/12, "feet"),
  34765. default: true,
  34766. form: "normal"
  34767. },
  34768. {
  34769. name: "Angry",
  34770. height: math.unit(30 + 6/12, "feet"),
  34771. form: "normal"
  34772. },
  34773. {
  34774. name: "Enraged",
  34775. height: math.unit(102 + 1/12, "feet"),
  34776. form: "normal"
  34777. },
  34778. {
  34779. name: "True",
  34780. height: math.unit(200, "feet"),
  34781. default: true,
  34782. form: "true-form"
  34783. },
  34784. {
  34785. name: "Normal",
  34786. height: math.unit(75, "feet"),
  34787. default: true,
  34788. form: "meowberus"
  34789. },
  34790. ],
  34791. {
  34792. "normal": {
  34793. name: "Normal",
  34794. default: true
  34795. },
  34796. "true-form": {
  34797. name: "True Form"
  34798. },
  34799. "meowberus": {
  34800. name: "Meowberus",
  34801. },
  34802. }
  34803. ))
  34804. characterMakers.push(() => makeCharacter(
  34805. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34806. {
  34807. front: {
  34808. height: math.unit(6 + 8/12, "feet"),
  34809. weight: math.unit(300, "lb"),
  34810. name: "Front",
  34811. image: {
  34812. source: "./media/characters/jrain/front.svg",
  34813. extra: 3039/2865,
  34814. bottom: 399/3438
  34815. }
  34816. },
  34817. back: {
  34818. height: math.unit(6 + 8/12, "feet"),
  34819. weight: math.unit(300, "lb"),
  34820. name: "Back",
  34821. image: {
  34822. source: "./media/characters/jrain/back.svg",
  34823. extra: 3089/2938,
  34824. bottom: 172/3261
  34825. }
  34826. },
  34827. head: {
  34828. height: math.unit(2.14, "feet"),
  34829. name: "Head",
  34830. image: {
  34831. source: "./media/characters/jrain/head.svg"
  34832. }
  34833. },
  34834. maw: {
  34835. height: math.unit(1.77, "feet"),
  34836. name: "Maw",
  34837. image: {
  34838. source: "./media/characters/jrain/maw.svg"
  34839. }
  34840. },
  34841. leftHand: {
  34842. height: math.unit(1.1, "feet"),
  34843. name: "Left Hand",
  34844. image: {
  34845. source: "./media/characters/jrain/left-hand.svg"
  34846. }
  34847. },
  34848. rightHand: {
  34849. height: math.unit(1.1, "feet"),
  34850. name: "Right Hand",
  34851. image: {
  34852. source: "./media/characters/jrain/right-hand.svg"
  34853. }
  34854. },
  34855. eye: {
  34856. height: math.unit(0.35, "feet"),
  34857. name: "Eye",
  34858. image: {
  34859. source: "./media/characters/jrain/eye.svg"
  34860. }
  34861. },
  34862. },
  34863. [
  34864. {
  34865. name: "Normal",
  34866. height: math.unit(6 + 8/12, "feet"),
  34867. default: true
  34868. },
  34869. {
  34870. name: "Casually Large",
  34871. height: math.unit(25, "feet")
  34872. },
  34873. {
  34874. name: "Giant",
  34875. height: math.unit(100, "feet")
  34876. },
  34877. {
  34878. name: "Kaiju",
  34879. height: math.unit(300, "feet")
  34880. },
  34881. ]
  34882. ))
  34883. characterMakers.push(() => makeCharacter(
  34884. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34885. {
  34886. dragon: {
  34887. height: math.unit(5, "meters"),
  34888. name: "Dragon",
  34889. image: {
  34890. source: "./media/characters/sabrina/dragon.svg",
  34891. extra: 3670 / 2365,
  34892. bottom: 333 / 4003
  34893. }
  34894. },
  34895. gryphon: {
  34896. height: math.unit(3, "meters"),
  34897. name: "Gryphon",
  34898. image: {
  34899. source: "./media/characters/sabrina/gryphon.svg",
  34900. extra: 1576 / 945,
  34901. bottom: 71 / 1647
  34902. }
  34903. },
  34904. snake: {
  34905. height: math.unit(12, "meters"),
  34906. name: "Snake",
  34907. image: {
  34908. source: "./media/characters/sabrina/snake.svg",
  34909. extra: 1758 / 1320,
  34910. bottom: 186 / 1944
  34911. }
  34912. },
  34913. collar: {
  34914. height: math.unit(1.86, "meters"),
  34915. name: "Collar",
  34916. image: {
  34917. source: "./media/characters/sabrina/collar.svg"
  34918. }
  34919. },
  34920. eye: {
  34921. height: math.unit(0.53, "meters"),
  34922. name: "Eye",
  34923. image: {
  34924. source: "./media/characters/sabrina/eye.svg"
  34925. }
  34926. },
  34927. foot: {
  34928. height: math.unit(1.86, "meters"),
  34929. name: "Foot",
  34930. image: {
  34931. source: "./media/characters/sabrina/foot.svg"
  34932. }
  34933. },
  34934. hand: {
  34935. height: math.unit(1.32, "meters"),
  34936. name: "Hand",
  34937. image: {
  34938. source: "./media/characters/sabrina/hand.svg"
  34939. }
  34940. },
  34941. head: {
  34942. height: math.unit(2.44, "meters"),
  34943. name: "Head",
  34944. image: {
  34945. source: "./media/characters/sabrina/head.svg"
  34946. }
  34947. },
  34948. headAngry: {
  34949. height: math.unit(2.44, "meters"),
  34950. name: "Head (Angry))",
  34951. image: {
  34952. source: "./media/characters/sabrina/head-angry.svg"
  34953. }
  34954. },
  34955. maw: {
  34956. height: math.unit(1.65, "meters"),
  34957. name: "Maw",
  34958. image: {
  34959. source: "./media/characters/sabrina/maw.svg"
  34960. }
  34961. },
  34962. spikes: {
  34963. height: math.unit(1.69, "meters"),
  34964. name: "Spikes",
  34965. image: {
  34966. source: "./media/characters/sabrina/spikes.svg"
  34967. }
  34968. },
  34969. stomach: {
  34970. height: math.unit(1.15, "meters"),
  34971. name: "Stomach",
  34972. image: {
  34973. source: "./media/characters/sabrina/stomach.svg"
  34974. }
  34975. },
  34976. tongue: {
  34977. height: math.unit(1.27, "meters"),
  34978. name: "Tongue",
  34979. image: {
  34980. source: "./media/characters/sabrina/tongue.svg"
  34981. }
  34982. },
  34983. wingDorsal: {
  34984. height: math.unit(4.85, "meters"),
  34985. name: "Wing (Dorsal)",
  34986. image: {
  34987. source: "./media/characters/sabrina/wing-dorsal.svg"
  34988. }
  34989. },
  34990. wingVentral: {
  34991. height: math.unit(4.85, "meters"),
  34992. name: "Wing (Ventral)",
  34993. image: {
  34994. source: "./media/characters/sabrina/wing-ventral.svg"
  34995. }
  34996. },
  34997. },
  34998. [
  34999. {
  35000. name: "Normal",
  35001. height: math.unit(5, "meters"),
  35002. default: true
  35003. },
  35004. ]
  35005. ))
  35006. characterMakers.push(() => makeCharacter(
  35007. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35008. {
  35009. frontMaid: {
  35010. height: math.unit(5 + 5/12, "feet"),
  35011. weight: math.unit(130, "lb"),
  35012. name: "Front (Maid)",
  35013. image: {
  35014. source: "./media/characters/midnight-tales/front-maid.svg",
  35015. extra: 489/454,
  35016. bottom: 61/550
  35017. }
  35018. },
  35019. frontFormal: {
  35020. height: math.unit(5 + 5/12, "feet"),
  35021. weight: math.unit(130, "lb"),
  35022. name: "Front (Formal)",
  35023. image: {
  35024. source: "./media/characters/midnight-tales/front-formal.svg",
  35025. extra: 489/454,
  35026. bottom: 61/550
  35027. }
  35028. },
  35029. back: {
  35030. height: math.unit(5 + 5/12, "feet"),
  35031. weight: math.unit(130, "lb"),
  35032. name: "Back",
  35033. image: {
  35034. source: "./media/characters/midnight-tales/back.svg",
  35035. extra: 498/456,
  35036. bottom: 33/531
  35037. }
  35038. },
  35039. frontBeast: {
  35040. height: math.unit(40, "feet"),
  35041. weight: math.unit(64000, "lb"),
  35042. name: "Front (Beast)",
  35043. image: {
  35044. source: "./media/characters/midnight-tales/front-beast.svg",
  35045. extra: 927/860,
  35046. bottom: 53/980
  35047. }
  35048. },
  35049. backBeast: {
  35050. height: math.unit(40, "feet"),
  35051. weight: math.unit(64000, "lb"),
  35052. name: "Back (Beast)",
  35053. image: {
  35054. source: "./media/characters/midnight-tales/back-beast.svg",
  35055. extra: 929/855,
  35056. bottom: 16/945
  35057. }
  35058. },
  35059. footBeast: {
  35060. height: math.unit(6.7, "feet"),
  35061. name: "Foot (Beast)",
  35062. image: {
  35063. source: "./media/characters/midnight-tales/foot-beast.svg"
  35064. }
  35065. },
  35066. headBeast: {
  35067. height: math.unit(8, "feet"),
  35068. name: "Head (Beast)",
  35069. image: {
  35070. source: "./media/characters/midnight-tales/head-beast.svg"
  35071. }
  35072. },
  35073. },
  35074. [
  35075. {
  35076. name: "Normal",
  35077. height: math.unit(5 + 5 / 12, "feet"),
  35078. default: true
  35079. },
  35080. {
  35081. name: "Macro",
  35082. height: math.unit(25, "feet")
  35083. },
  35084. ]
  35085. ))
  35086. characterMakers.push(() => makeCharacter(
  35087. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35088. {
  35089. front: {
  35090. height: math.unit(5 + 10/12, "feet"),
  35091. name: "Front",
  35092. image: {
  35093. source: "./media/characters/argon/front.svg",
  35094. extra: 2009/1935,
  35095. bottom: 118/2127
  35096. }
  35097. },
  35098. back: {
  35099. height: math.unit(5 + 10/12, "feet"),
  35100. name: "Back",
  35101. image: {
  35102. source: "./media/characters/argon/back.svg",
  35103. extra: 2047/1992,
  35104. bottom: 20/2067
  35105. }
  35106. },
  35107. frontDressed: {
  35108. height: math.unit(5 + 10/12, "feet"),
  35109. name: "Front (Dressed)",
  35110. image: {
  35111. source: "./media/characters/argon/front-dressed.svg",
  35112. extra: 2009/1935,
  35113. bottom: 118/2127
  35114. }
  35115. },
  35116. },
  35117. [
  35118. {
  35119. name: "Normal",
  35120. height: math.unit(5 + 10/12, "feet"),
  35121. default: true
  35122. },
  35123. ]
  35124. ))
  35125. characterMakers.push(() => makeCharacter(
  35126. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35127. {
  35128. front: {
  35129. height: math.unit(8 + 6/12, "feet"),
  35130. weight: math.unit(1150, "lb"),
  35131. name: "Front",
  35132. image: {
  35133. source: "./media/characters/kichi/front.svg",
  35134. extra: 1267/1164,
  35135. bottom: 61/1328
  35136. }
  35137. },
  35138. back: {
  35139. height: math.unit(8 + 6/12, "feet"),
  35140. weight: math.unit(1150, "lb"),
  35141. name: "Back",
  35142. image: {
  35143. source: "./media/characters/kichi/back.svg",
  35144. extra: 1273/1166,
  35145. bottom: 33/1306
  35146. }
  35147. },
  35148. },
  35149. [
  35150. {
  35151. name: "Normal",
  35152. height: math.unit(8 + 6/12, "feet"),
  35153. default: true
  35154. },
  35155. ]
  35156. ))
  35157. characterMakers.push(() => makeCharacter(
  35158. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35159. {
  35160. front: {
  35161. height: math.unit(6, "feet"),
  35162. weight: math.unit(210, "lb"),
  35163. name: "Front",
  35164. image: {
  35165. source: "./media/characters/manetel-greyscale/front.svg",
  35166. extra: 350/312,
  35167. bottom: 8/358
  35168. }
  35169. },
  35170. },
  35171. [
  35172. {
  35173. name: "Micro",
  35174. height: math.unit(2, "inches")
  35175. },
  35176. {
  35177. name: "Normal",
  35178. height: math.unit(6, "feet"),
  35179. default: true
  35180. },
  35181. {
  35182. name: "Minimacro",
  35183. height: math.unit(17, "feet")
  35184. },
  35185. {
  35186. name: "Macro",
  35187. height: math.unit(117, "feet")
  35188. },
  35189. ]
  35190. ))
  35191. characterMakers.push(() => makeCharacter(
  35192. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35193. {
  35194. side: {
  35195. height: math.unit(5 + 1/12, "feet"),
  35196. weight: math.unit(418, "lb"),
  35197. name: "Side",
  35198. image: {
  35199. source: "./media/characters/softpurr/side.svg",
  35200. extra: 1993/1945,
  35201. bottom: 134/2127
  35202. }
  35203. },
  35204. front: {
  35205. height: math.unit(5 + 1/12, "feet"),
  35206. weight: math.unit(418, "lb"),
  35207. name: "Front",
  35208. image: {
  35209. source: "./media/characters/softpurr/front.svg",
  35210. extra: 1950/1856,
  35211. bottom: 174/2124
  35212. }
  35213. },
  35214. paw: {
  35215. height: math.unit(1, "feet"),
  35216. name: "Paw",
  35217. image: {
  35218. source: "./media/characters/softpurr/paw.svg"
  35219. }
  35220. },
  35221. },
  35222. [
  35223. {
  35224. name: "Normal",
  35225. height: math.unit(5 + 1/12, "feet"),
  35226. default: true
  35227. },
  35228. ]
  35229. ))
  35230. characterMakers.push(() => makeCharacter(
  35231. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35232. {
  35233. front: {
  35234. height: math.unit(260, "meters"),
  35235. name: "Front",
  35236. image: {
  35237. source: "./media/characters/anahita/front.svg",
  35238. extra: 665/635,
  35239. bottom: 89/754
  35240. }
  35241. },
  35242. },
  35243. [
  35244. {
  35245. name: "Macro",
  35246. height: math.unit(260, "meters"),
  35247. default: true
  35248. },
  35249. ]
  35250. ))
  35251. characterMakers.push(() => makeCharacter(
  35252. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35253. {
  35254. front: {
  35255. height: math.unit(4 + 10/12, "feet"),
  35256. weight: math.unit(160, "lb"),
  35257. name: "Front",
  35258. image: {
  35259. source: "./media/characters/chip-mouse/front.svg",
  35260. extra: 3528/3408,
  35261. bottom: 0/3528
  35262. }
  35263. },
  35264. frontNsfw: {
  35265. height: math.unit(4 + 10/12, "feet"),
  35266. weight: math.unit(160, "lb"),
  35267. name: "Front (NSFW)",
  35268. image: {
  35269. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35270. extra: 3528/3408,
  35271. bottom: 0/3528
  35272. }
  35273. },
  35274. },
  35275. [
  35276. {
  35277. name: "Normal",
  35278. height: math.unit(4 + 10/12, "feet"),
  35279. default: true
  35280. },
  35281. ]
  35282. ))
  35283. characterMakers.push(() => makeCharacter(
  35284. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35285. {
  35286. side: {
  35287. height: math.unit(10, "feet"),
  35288. weight: math.unit(14000, "lb"),
  35289. name: "Side",
  35290. image: {
  35291. source: "./media/characters/kremm/side.svg",
  35292. extra: 1390/1053,
  35293. bottom: 90/1480
  35294. }
  35295. },
  35296. gut: {
  35297. height: math.unit(5.8, "feet"),
  35298. name: "Gut",
  35299. image: {
  35300. source: "./media/characters/kremm/gut.svg"
  35301. }
  35302. },
  35303. ass: {
  35304. height: math.unit(6.1, "feet"),
  35305. name: "Ass",
  35306. image: {
  35307. source: "./media/characters/kremm/ass.svg"
  35308. }
  35309. },
  35310. jaws: {
  35311. height: math.unit(2.2, "feet"),
  35312. name: "Jaws",
  35313. image: {
  35314. source: "./media/characters/kremm/jaws.svg"
  35315. }
  35316. },
  35317. dick: {
  35318. height: math.unit(4.26, "feet"),
  35319. name: "Dick",
  35320. image: {
  35321. source: "./media/characters/kremm/dick.svg"
  35322. }
  35323. },
  35324. },
  35325. [
  35326. {
  35327. name: "Normal",
  35328. height: math.unit(10, "feet"),
  35329. default: true
  35330. },
  35331. ]
  35332. ))
  35333. characterMakers.push(() => makeCharacter(
  35334. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35335. {
  35336. front: {
  35337. height: math.unit(30, "stories"),
  35338. name: "Front",
  35339. image: {
  35340. source: "./media/characters/kai/front.svg",
  35341. extra: 1892/1718,
  35342. bottom: 162/2054
  35343. }
  35344. },
  35345. },
  35346. [
  35347. {
  35348. name: "Macro",
  35349. height: math.unit(30, "stories"),
  35350. default: true
  35351. },
  35352. ]
  35353. ))
  35354. characterMakers.push(() => makeCharacter(
  35355. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35356. {
  35357. front: {
  35358. height: math.unit(6 + 4/12, "feet"),
  35359. weight: math.unit(145, "lb"),
  35360. name: "Front",
  35361. image: {
  35362. source: "./media/characters/sykes/front.svg",
  35363. extra: 1321 / 1187,
  35364. bottom: 66 / 1387
  35365. }
  35366. },
  35367. back: {
  35368. height: math.unit(6 + 4/12, "feet"),
  35369. weight: math.unit(145, "lb"),
  35370. name: "Back",
  35371. image: {
  35372. source: "./media/characters/sykes/back.svg",
  35373. extra: 1326/1181,
  35374. bottom: 31/1357
  35375. }
  35376. },
  35377. traditionalOutfit: {
  35378. height: math.unit(6 + 4/12, "feet"),
  35379. weight: math.unit(145, "lb"),
  35380. name: "Traditional Outfit",
  35381. image: {
  35382. source: "./media/characters/sykes/traditional-outfit.svg",
  35383. extra: 1321 / 1187,
  35384. bottom: 66 / 1387
  35385. }
  35386. },
  35387. adventureOutfit: {
  35388. height: math.unit(6 + 4/12, "feet"),
  35389. weight: math.unit(145, "lb"),
  35390. name: "Adventure Outfit",
  35391. image: {
  35392. source: "./media/characters/sykes/adventure-outfit.svg",
  35393. extra: 1321 / 1187,
  35394. bottom: 66 / 1387
  35395. }
  35396. },
  35397. handLeft: {
  35398. height: math.unit(0.9, "feet"),
  35399. name: "Hand (Left)",
  35400. image: {
  35401. source: "./media/characters/sykes/hand-left.svg"
  35402. }
  35403. },
  35404. handRight: {
  35405. height: math.unit(0.839, "feet"),
  35406. name: "Hand (Right)",
  35407. image: {
  35408. source: "./media/characters/sykes/hand-right.svg"
  35409. }
  35410. },
  35411. leftFoot: {
  35412. height: math.unit(1.2, "feet"),
  35413. name: "Foot (Left)",
  35414. image: {
  35415. source: "./media/characters/sykes/foot-left.svg"
  35416. }
  35417. },
  35418. rightFoot: {
  35419. height: math.unit(1.2, "feet"),
  35420. name: "Foot (Right)",
  35421. image: {
  35422. source: "./media/characters/sykes/foot-right.svg"
  35423. }
  35424. },
  35425. maw: {
  35426. height: math.unit(1.93, "feet"),
  35427. name: "Maw",
  35428. image: {
  35429. source: "./media/characters/sykes/maw.svg"
  35430. }
  35431. },
  35432. teeth: {
  35433. height: math.unit(0.51, "feet"),
  35434. name: "Teeth",
  35435. image: {
  35436. source: "./media/characters/sykes/teeth.svg"
  35437. }
  35438. },
  35439. tongue: {
  35440. height: math.unit(2.13, "feet"),
  35441. name: "Tongue",
  35442. image: {
  35443. source: "./media/characters/sykes/tongue.svg"
  35444. }
  35445. },
  35446. uvula: {
  35447. height: math.unit(0.16, "feet"),
  35448. name: "Uvula",
  35449. image: {
  35450. source: "./media/characters/sykes/uvula.svg"
  35451. }
  35452. },
  35453. collar: {
  35454. height: math.unit(0.287, "feet"),
  35455. name: "Collar",
  35456. image: {
  35457. source: "./media/characters/sykes/collar.svg"
  35458. }
  35459. },
  35460. tail: {
  35461. height: math.unit(3.8, "feet"),
  35462. name: "Tail",
  35463. image: {
  35464. source: "./media/characters/sykes/tail.svg"
  35465. }
  35466. },
  35467. },
  35468. [
  35469. {
  35470. name: "Shrunken",
  35471. height: math.unit(5, "inches")
  35472. },
  35473. {
  35474. name: "Normal",
  35475. height: math.unit(6 + 4 / 12, "feet"),
  35476. default: true
  35477. },
  35478. {
  35479. name: "Big",
  35480. height: math.unit(15, "feet")
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35486. {
  35487. front: {
  35488. height: math.unit(5 + 8/12, "feet"),
  35489. weight: math.unit(190, "lb"),
  35490. name: "Front",
  35491. image: {
  35492. source: "./media/characters/oven-otter/front.svg",
  35493. extra: 1809/1740,
  35494. bottom: 181/1990
  35495. }
  35496. },
  35497. back: {
  35498. height: math.unit(5 + 8/12, "feet"),
  35499. weight: math.unit(190, "lb"),
  35500. name: "Back",
  35501. image: {
  35502. source: "./media/characters/oven-otter/back.svg",
  35503. extra: 1709/1635,
  35504. bottom: 118/1827
  35505. }
  35506. },
  35507. hand: {
  35508. height: math.unit(1.07, "feet"),
  35509. name: "Hand",
  35510. image: {
  35511. source: "./media/characters/oven-otter/hand.svg"
  35512. }
  35513. },
  35514. beans: {
  35515. height: math.unit(1.74, "feet"),
  35516. name: "Beans",
  35517. image: {
  35518. source: "./media/characters/oven-otter/beans.svg"
  35519. }
  35520. },
  35521. },
  35522. [
  35523. {
  35524. name: "Micro",
  35525. height: math.unit(0.5, "inches")
  35526. },
  35527. {
  35528. name: "Normal",
  35529. height: math.unit(5 + 8/12, "feet"),
  35530. default: true
  35531. },
  35532. {
  35533. name: "Macro",
  35534. height: math.unit(250, "feet")
  35535. },
  35536. {
  35537. name: "Really High",
  35538. height: math.unit(420, "feet")
  35539. },
  35540. ]
  35541. ))
  35542. characterMakers.push(() => makeCharacter(
  35543. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35544. {
  35545. front: {
  35546. height: math.unit(5, "meters"),
  35547. weight: math.unit(292000000000000, "kg"),
  35548. name: "Front",
  35549. image: {
  35550. source: "./media/characters/devourer/front.svg",
  35551. extra: 1800/1733,
  35552. bottom: 211/2011
  35553. }
  35554. },
  35555. maw: {
  35556. height: math.unit(1.1, "meter"),
  35557. name: "Maw",
  35558. image: {
  35559. source: "./media/characters/devourer/maw.svg"
  35560. }
  35561. },
  35562. },
  35563. [
  35564. {
  35565. name: "Small",
  35566. height: math.unit(3, "meters")
  35567. },
  35568. {
  35569. name: "Large",
  35570. height: math.unit(5, "meters"),
  35571. default: true
  35572. },
  35573. ]
  35574. ))
  35575. characterMakers.push(() => makeCharacter(
  35576. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35577. {
  35578. front: {
  35579. height: math.unit(6, "feet"),
  35580. weight: math.unit(400, "lb"),
  35581. name: "Front",
  35582. image: {
  35583. source: "./media/characters/ellarby/front.svg",
  35584. extra: 1909/1763,
  35585. bottom: 80/1989
  35586. }
  35587. },
  35588. back: {
  35589. height: math.unit(6, "feet"),
  35590. weight: math.unit(400, "lb"),
  35591. name: "Back",
  35592. image: {
  35593. source: "./media/characters/ellarby/back.svg",
  35594. extra: 1914/1784,
  35595. bottom: 172/2086
  35596. }
  35597. },
  35598. },
  35599. [
  35600. {
  35601. name: "Mischief",
  35602. height: math.unit(18, "inches")
  35603. },
  35604. {
  35605. name: "Trouble",
  35606. height: math.unit(12, "feet")
  35607. },
  35608. {
  35609. name: "Havoc",
  35610. height: math.unit(200, "feet"),
  35611. default: true
  35612. },
  35613. {
  35614. name: "Pandemonium",
  35615. height: math.unit(1, "mile")
  35616. },
  35617. {
  35618. name: "Catastrophe",
  35619. height: math.unit(100, "miles")
  35620. },
  35621. ]
  35622. ))
  35623. characterMakers.push(() => makeCharacter(
  35624. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35625. {
  35626. front: {
  35627. height: math.unit(4.7, "meters"),
  35628. weight: math.unit(6500, "kg"),
  35629. name: "Front",
  35630. image: {
  35631. source: "./media/characters/vex/front.svg",
  35632. extra: 1288/1140,
  35633. bottom: 100/1388
  35634. }
  35635. },
  35636. },
  35637. [
  35638. {
  35639. name: "Normal",
  35640. height: math.unit(4.7, "meters"),
  35641. default: true
  35642. },
  35643. ]
  35644. ))
  35645. characterMakers.push(() => makeCharacter(
  35646. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35647. {
  35648. normal: {
  35649. height: math.unit(6, "feet"),
  35650. weight: math.unit(350, "lb"),
  35651. name: "Normal",
  35652. image: {
  35653. source: "./media/characters/teshy/normal.svg",
  35654. extra: 1795/1735,
  35655. bottom: 16/1811
  35656. }
  35657. },
  35658. monsterFront: {
  35659. height: math.unit(12, "feet"),
  35660. weight: math.unit(4700, "lb"),
  35661. name: "Monster (Front)",
  35662. image: {
  35663. source: "./media/characters/teshy/monster-front.svg",
  35664. extra: 2042/2034,
  35665. bottom: 128/2170
  35666. }
  35667. },
  35668. monsterSide: {
  35669. height: math.unit(12, "feet"),
  35670. weight: math.unit(4700, "lb"),
  35671. name: "Monster (Side)",
  35672. image: {
  35673. source: "./media/characters/teshy/monster-side.svg",
  35674. extra: 2067/2056,
  35675. bottom: 70/2137
  35676. }
  35677. },
  35678. monsterBack: {
  35679. height: math.unit(12, "feet"),
  35680. weight: math.unit(4700, "lb"),
  35681. name: "Monster (Back)",
  35682. image: {
  35683. source: "./media/characters/teshy/monster-back.svg",
  35684. extra: 1921/1914,
  35685. bottom: 171/2092
  35686. }
  35687. },
  35688. },
  35689. [
  35690. {
  35691. name: "Normal",
  35692. height: math.unit(6, "feet"),
  35693. default: true
  35694. },
  35695. ]
  35696. ))
  35697. characterMakers.push(() => makeCharacter(
  35698. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35699. {
  35700. front: {
  35701. height: math.unit(6, "feet"),
  35702. name: "Front",
  35703. image: {
  35704. source: "./media/characters/ramey/front.svg",
  35705. extra: 790/787,
  35706. bottom: 27/817
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(6, "feet"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35720. {
  35721. front: {
  35722. height: math.unit(5 + 5/12, "feet"),
  35723. weight: math.unit(120, "lb"),
  35724. name: "Front",
  35725. image: {
  35726. source: "./media/characters/phirae/front.svg",
  35727. extra: 2491/2436,
  35728. bottom: 38/2529
  35729. }
  35730. },
  35731. },
  35732. [
  35733. {
  35734. name: "Normal",
  35735. height: math.unit(5 + 5/12, "feet"),
  35736. default: true
  35737. },
  35738. ]
  35739. ))
  35740. characterMakers.push(() => makeCharacter(
  35741. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35742. {
  35743. front: {
  35744. height: math.unit(5 + 3/12, "feet"),
  35745. name: "Front",
  35746. image: {
  35747. source: "./media/characters/stagglas/front.svg",
  35748. extra: 962/882,
  35749. bottom: 53/1015
  35750. }
  35751. },
  35752. feral: {
  35753. height: math.unit(335, "cm"),
  35754. name: "Feral",
  35755. image: {
  35756. source: "./media/characters/stagglas/feral.svg",
  35757. extra: 1732/1090,
  35758. bottom: 48/1780
  35759. }
  35760. },
  35761. },
  35762. [
  35763. {
  35764. name: "Normal",
  35765. height: math.unit(5 + 3/12, "feet"),
  35766. default: true
  35767. },
  35768. ]
  35769. ))
  35770. characterMakers.push(() => makeCharacter(
  35771. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35772. {
  35773. front: {
  35774. height: math.unit(5 + 4/12, "feet"),
  35775. weight: math.unit(145, "lb"),
  35776. name: "Front",
  35777. image: {
  35778. source: "./media/characters/starra/front.svg",
  35779. extra: 1790/1691,
  35780. bottom: 91/1881
  35781. }
  35782. },
  35783. },
  35784. [
  35785. {
  35786. name: "Normal",
  35787. height: math.unit(5 + 4/12, "feet"),
  35788. default: true
  35789. },
  35790. ]
  35791. ))
  35792. characterMakers.push(() => makeCharacter(
  35793. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35794. {
  35795. front: {
  35796. height: math.unit(2.2, "meters"),
  35797. name: "Front",
  35798. image: {
  35799. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35800. extra: 1194/1005,
  35801. bottom: 25/1219
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(2.2, "meters"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35815. {
  35816. side: {
  35817. height: math.unit(8 + 2/12, "feet"),
  35818. weight: math.unit(1240, "lb"),
  35819. name: "Side",
  35820. image: {
  35821. source: "./media/characters/mika-valentine/side.svg",
  35822. extra: 2670/2501,
  35823. bottom: 250/2920
  35824. }
  35825. },
  35826. },
  35827. [
  35828. {
  35829. name: "Normal",
  35830. height: math.unit(8 + 2/12, "feet"),
  35831. default: true
  35832. },
  35833. ]
  35834. ))
  35835. characterMakers.push(() => makeCharacter(
  35836. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35837. {
  35838. front: {
  35839. height: math.unit(7 + 2/12, "feet"),
  35840. name: "Front",
  35841. image: {
  35842. source: "./media/characters/xoltol/front.svg",
  35843. extra: 2212/2124,
  35844. bottom: 84/2296
  35845. }
  35846. },
  35847. side: {
  35848. height: math.unit(7 + 2/12, "feet"),
  35849. name: "Side",
  35850. image: {
  35851. source: "./media/characters/xoltol/side.svg",
  35852. extra: 2273/2197,
  35853. bottom: 26/2299
  35854. }
  35855. },
  35856. hand: {
  35857. height: math.unit(2.5, "feet"),
  35858. name: "Hand",
  35859. image: {
  35860. source: "./media/characters/xoltol/hand.svg"
  35861. }
  35862. },
  35863. },
  35864. [
  35865. {
  35866. name: "Small-ish",
  35867. height: math.unit(5 + 11/12, "feet")
  35868. },
  35869. {
  35870. name: "Normal",
  35871. height: math.unit(7 + 2/12, "feet")
  35872. },
  35873. {
  35874. name: "\"Macro\"",
  35875. height: math.unit(14 + 9/12, "feet"),
  35876. default: true
  35877. },
  35878. {
  35879. name: "Alternate Height",
  35880. height: math.unit(20, "feet")
  35881. },
  35882. {
  35883. name: "Actually Macro",
  35884. height: math.unit(100, "feet")
  35885. },
  35886. ]
  35887. ))
  35888. characterMakers.push(() => makeCharacter(
  35889. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35890. {
  35891. front: {
  35892. height: math.unit(5 + 2/12, "feet"),
  35893. name: "Front",
  35894. image: {
  35895. source: "./media/characters/kotetsu-redwood/front.svg",
  35896. extra: 1053/942,
  35897. bottom: 60/1113
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Normal",
  35904. height: math.unit(5 + 2/12, "feet"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35911. {
  35912. front: {
  35913. height: math.unit(2.4, "meters"),
  35914. weight: math.unit(125, "kg"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/lilith/front.svg",
  35918. extra: 1590/1513,
  35919. bottom: 203/1793
  35920. }
  35921. },
  35922. },
  35923. [
  35924. {
  35925. name: "Humanoid",
  35926. height: math.unit(2.4, "meters")
  35927. },
  35928. {
  35929. name: "Normal",
  35930. height: math.unit(6, "meters"),
  35931. default: true
  35932. },
  35933. {
  35934. name: "Largest",
  35935. height: math.unit(55, "meters")
  35936. },
  35937. ]
  35938. ))
  35939. characterMakers.push(() => makeCharacter(
  35940. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35941. {
  35942. front: {
  35943. height: math.unit(8 + 4/12, "feet"),
  35944. weight: math.unit(535, "lb"),
  35945. name: "Front",
  35946. image: {
  35947. source: "./media/characters/beh'kah-bolger/front.svg",
  35948. extra: 1660/1603,
  35949. bottom: 37/1697
  35950. }
  35951. },
  35952. },
  35953. [
  35954. {
  35955. name: "Normal",
  35956. height: math.unit(8 + 4/12, "feet"),
  35957. default: true
  35958. },
  35959. {
  35960. name: "Kaiju",
  35961. height: math.unit(250, "feet")
  35962. },
  35963. {
  35964. name: "Still Growing",
  35965. height: math.unit(10, "miles")
  35966. },
  35967. {
  35968. name: "Continental",
  35969. height: math.unit(5000, "miles")
  35970. },
  35971. {
  35972. name: "Final Form",
  35973. height: math.unit(2500000, "miles")
  35974. },
  35975. ]
  35976. ))
  35977. characterMakers.push(() => makeCharacter(
  35978. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35979. {
  35980. front: {
  35981. height: math.unit(7 + 2/12, "feet"),
  35982. weight: math.unit(230, "kg"),
  35983. name: "Front",
  35984. image: {
  35985. source: "./media/characters/tatyana-milewska/front.svg",
  35986. extra: 1199/1150,
  35987. bottom: 86/1285
  35988. }
  35989. },
  35990. },
  35991. [
  35992. {
  35993. name: "Normal",
  35994. height: math.unit(7 + 2/12, "feet"),
  35995. default: true
  35996. },
  35997. {
  35998. name: "Big",
  35999. height: math.unit(12, "feet")
  36000. },
  36001. {
  36002. name: "Minimacro",
  36003. height: math.unit(20, "feet")
  36004. },
  36005. {
  36006. name: "Macro",
  36007. height: math.unit(120, "feet")
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(7 + 8/12, "feet"),
  36016. weight: math.unit(152, "kg"),
  36017. name: "Front",
  36018. image: {
  36019. source: "./media/characters/helen-arri/front.svg",
  36020. extra: 440/423,
  36021. bottom: 14/454
  36022. }
  36023. },
  36024. back: {
  36025. height: math.unit(7 + 8/12, "feet"),
  36026. weight: math.unit(152, "kg"),
  36027. name: "Back",
  36028. image: {
  36029. source: "./media/characters/helen-arri/back.svg",
  36030. extra: 443/426,
  36031. bottom: 8/451
  36032. }
  36033. },
  36034. },
  36035. [
  36036. {
  36037. name: "Normal",
  36038. height: math.unit(7 + 8/12, "feet"),
  36039. default: true
  36040. },
  36041. {
  36042. name: "Big",
  36043. height: math.unit(14, "feet")
  36044. },
  36045. {
  36046. name: "Minimacro",
  36047. height: math.unit(24, "feet")
  36048. },
  36049. {
  36050. name: "Macro",
  36051. height: math.unit(140, "feet")
  36052. },
  36053. ]
  36054. ))
  36055. characterMakers.push(() => makeCharacter(
  36056. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36057. {
  36058. front: {
  36059. height: math.unit(6, "meters"),
  36060. name: "Front",
  36061. image: {
  36062. source: "./media/characters/ehanu-rehu/front.svg",
  36063. extra: 1800/1800,
  36064. bottom: 59/1859
  36065. }
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Normal",
  36071. height: math.unit(6, "meters"),
  36072. default: true
  36073. },
  36074. ]
  36075. ))
  36076. characterMakers.push(() => makeCharacter(
  36077. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36078. {
  36079. front: {
  36080. height: math.unit(7 + 3/12, "feet"),
  36081. name: "Front",
  36082. image: {
  36083. source: "./media/characters/renholder/front.svg",
  36084. extra: 3096/2960,
  36085. bottom: 250/3346
  36086. }
  36087. },
  36088. },
  36089. [
  36090. {
  36091. name: "Normal Bat",
  36092. height: math.unit(7 + 3/12, "feet"),
  36093. default: true
  36094. },
  36095. {
  36096. name: "Slightly Tall Bat",
  36097. height: math.unit(100, "feet")
  36098. },
  36099. {
  36100. name: "Big Bat",
  36101. height: math.unit(1000, "feet")
  36102. },
  36103. {
  36104. name: "City-Sized Bat",
  36105. height: math.unit(200000, "feet")
  36106. },
  36107. {
  36108. name: "Bigger Bat",
  36109. height: math.unit(10000, "miles")
  36110. },
  36111. {
  36112. name: "Solar Sized Bat",
  36113. height: math.unit(100, "AU")
  36114. },
  36115. {
  36116. name: "Galactic Bat",
  36117. height: math.unit(200000, "lightyears")
  36118. },
  36119. {
  36120. name: "Universally Known Bat",
  36121. height: math.unit(1, "universe")
  36122. },
  36123. ]
  36124. ))
  36125. characterMakers.push(() => makeCharacter(
  36126. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36127. {
  36128. front: {
  36129. height: math.unit(6 + 11/12, "feet"),
  36130. weight: math.unit(250, "lb"),
  36131. name: "Front",
  36132. image: {
  36133. source: "./media/characters/cookiecat/front.svg",
  36134. extra: 893/827,
  36135. bottom: 14/907
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Micro",
  36142. height: math.unit(3, "inches")
  36143. },
  36144. {
  36145. name: "Normal",
  36146. height: math.unit(6 + 11/12, "feet"),
  36147. default: true
  36148. },
  36149. {
  36150. name: "Macro",
  36151. height: math.unit(100, "feet")
  36152. },
  36153. {
  36154. name: "Macro+",
  36155. height: math.unit(404, "feet")
  36156. },
  36157. {
  36158. name: "Megamacro",
  36159. height: math.unit(165, "miles")
  36160. },
  36161. {
  36162. name: "Planetary",
  36163. height: math.unit(4600, "miles")
  36164. },
  36165. ]
  36166. ))
  36167. characterMakers.push(() => makeCharacter(
  36168. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36169. {
  36170. front: {
  36171. height: math.unit(10 + 3/12, "feet"),
  36172. weight: math.unit(1500, "lb"),
  36173. name: "Front",
  36174. image: {
  36175. source: "./media/characters/tux-kusanagi/front.svg",
  36176. extra: 944/840,
  36177. bottom: 39/983
  36178. }
  36179. },
  36180. back: {
  36181. height: math.unit(10 + 3/12, "feet"),
  36182. weight: math.unit(1500, "lb"),
  36183. name: "Back",
  36184. image: {
  36185. source: "./media/characters/tux-kusanagi/back.svg",
  36186. extra: 941/842,
  36187. bottom: 28/969
  36188. }
  36189. },
  36190. rump: {
  36191. height: math.unit(5.25, "feet"),
  36192. name: "Rump",
  36193. image: {
  36194. source: "./media/characters/tux-kusanagi/rump.svg"
  36195. }
  36196. },
  36197. beak: {
  36198. height: math.unit(1.54, "feet"),
  36199. name: "Beak",
  36200. image: {
  36201. source: "./media/characters/tux-kusanagi/beak.svg"
  36202. }
  36203. },
  36204. },
  36205. [
  36206. {
  36207. name: "Normal",
  36208. height: math.unit(10 + 3/12, "feet"),
  36209. default: true
  36210. },
  36211. ]
  36212. ))
  36213. characterMakers.push(() => makeCharacter(
  36214. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36215. {
  36216. front: {
  36217. height: math.unit(58, "feet"),
  36218. weight: math.unit(200, "tons"),
  36219. name: "Front",
  36220. image: {
  36221. source: "./media/characters/uzarmazari/front.svg",
  36222. extra: 1575/1455,
  36223. bottom: 152/1727
  36224. }
  36225. },
  36226. back: {
  36227. height: math.unit(58, "feet"),
  36228. weight: math.unit(200, "tons"),
  36229. name: "Back",
  36230. image: {
  36231. source: "./media/characters/uzarmazari/back.svg",
  36232. extra: 1585/1510,
  36233. bottom: 157/1742
  36234. }
  36235. },
  36236. head: {
  36237. height: math.unit(26, "feet"),
  36238. name: "Head",
  36239. image: {
  36240. source: "./media/characters/uzarmazari/head.svg"
  36241. }
  36242. },
  36243. },
  36244. [
  36245. {
  36246. name: "Normal",
  36247. height: math.unit(58, "feet"),
  36248. default: true
  36249. },
  36250. ]
  36251. ))
  36252. characterMakers.push(() => makeCharacter(
  36253. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36254. {
  36255. side: {
  36256. height: math.unit(15, "feet"),
  36257. name: "Side",
  36258. image: {
  36259. source: "./media/characters/akitu/side.svg",
  36260. extra: 1421/1321,
  36261. bottom: 157/1578
  36262. }
  36263. },
  36264. front: {
  36265. height: math.unit(15, "feet"),
  36266. name: "Front",
  36267. image: {
  36268. source: "./media/characters/akitu/front.svg",
  36269. extra: 1435/1326,
  36270. bottom: 232/1667
  36271. }
  36272. },
  36273. },
  36274. [
  36275. {
  36276. name: "Normal",
  36277. height: math.unit(15, "feet"),
  36278. default: true
  36279. },
  36280. ]
  36281. ))
  36282. characterMakers.push(() => makeCharacter(
  36283. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36284. {
  36285. front: {
  36286. height: math.unit(10 + 8/12, "feet"),
  36287. name: "Front",
  36288. image: {
  36289. source: "./media/characters/azalie-croixland/front.svg",
  36290. extra: 1972/1856,
  36291. bottom: 31/2003
  36292. }
  36293. },
  36294. },
  36295. [
  36296. {
  36297. name: "Original Height",
  36298. height: math.unit(5 + 4/12, "feet")
  36299. },
  36300. {
  36301. name: "Normal Height",
  36302. height: math.unit(10 + 8/12, "feet"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36309. {
  36310. side: {
  36311. height: math.unit(7 + 1/12, "feet"),
  36312. weight: math.unit(245, "lb"),
  36313. name: "Side",
  36314. image: {
  36315. source: "./media/characters/kavus-kazian/side.svg",
  36316. extra: 349/342,
  36317. bottom: 15/364
  36318. }
  36319. },
  36320. },
  36321. [
  36322. {
  36323. name: "Normal",
  36324. height: math.unit(7 + 1/12, "feet"),
  36325. default: true
  36326. },
  36327. ]
  36328. ))
  36329. characterMakers.push(() => makeCharacter(
  36330. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36331. {
  36332. normalFront: {
  36333. height: math.unit(5 + 11/12, "feet"),
  36334. name: "Front",
  36335. image: {
  36336. source: "./media/characters/moonlight-rose/normal-front.svg",
  36337. extra: 1980/1825,
  36338. bottom: 18/1998
  36339. },
  36340. form: "normal",
  36341. default: true
  36342. },
  36343. normalBack: {
  36344. height: math.unit(5 + 11/12, "feet"),
  36345. name: "Back",
  36346. image: {
  36347. source: "./media/characters/moonlight-rose/normal-back.svg",
  36348. extra: 2010/1839,
  36349. bottom: 10/2020
  36350. },
  36351. form: "normal"
  36352. },
  36353. demonFront: {
  36354. height: math.unit(1.5, "earths"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/moonlight-rose/demon.svg",
  36358. extra: 1400/1294,
  36359. bottom: 45/1445
  36360. },
  36361. form: "demon",
  36362. default: true
  36363. },
  36364. terraFront: {
  36365. height: math.unit(1.5, "earths"),
  36366. name: "Front",
  36367. image: {
  36368. source: "./media/characters/moonlight-rose/terra.svg"
  36369. },
  36370. form: "terra",
  36371. default: true
  36372. },
  36373. jupiterFront: {
  36374. height: math.unit(69911*2, "km"),
  36375. name: "Front",
  36376. image: {
  36377. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36378. extra: 1367/1286,
  36379. bottom: 55/1422
  36380. },
  36381. form: "jupiter",
  36382. default: true
  36383. },
  36384. neptuneFront: {
  36385. height: math.unit(24622*2, "feet"),
  36386. name: "Front",
  36387. image: {
  36388. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36389. extra: 1851/1712,
  36390. bottom: 0/1851
  36391. },
  36392. form: "neptune",
  36393. default: true
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "\"Natural\" Height",
  36399. height: math.unit(5 + 11/12, "feet"),
  36400. form: "normal"
  36401. },
  36402. {
  36403. name: "Smallest comfortable size",
  36404. height: math.unit(40, "meters"),
  36405. form: "normal"
  36406. },
  36407. {
  36408. name: "Common size",
  36409. height: math.unit(50, "km"),
  36410. form: "normal",
  36411. default: true
  36412. },
  36413. {
  36414. name: "Normal",
  36415. height: math.unit(1.5, "earths"),
  36416. form: "demon",
  36417. default: true
  36418. },
  36419. {
  36420. name: "Universal",
  36421. height: math.unit(15, "universes"),
  36422. form: "demon"
  36423. },
  36424. {
  36425. name: "Earth",
  36426. height: math.unit(1.5, "earths"),
  36427. form: "terra",
  36428. default: true
  36429. },
  36430. {
  36431. name: "Super Earth",
  36432. height: math.unit(67.5, "earths"),
  36433. form: "terra"
  36434. },
  36435. {
  36436. name: "Doesn't fit in a solar system...",
  36437. height: math.unit(1, "galaxy"),
  36438. form: "terra"
  36439. },
  36440. {
  36441. name: "Saturn",
  36442. height: math.unit(58232*2, "km"),
  36443. form: "jupiter"
  36444. },
  36445. {
  36446. name: "Jupiter",
  36447. height: math.unit(69911*2, "km"),
  36448. form: "jupiter",
  36449. default: true
  36450. },
  36451. {
  36452. name: "HD 100546 b",
  36453. height: math.unit(482938, "km"),
  36454. form: "jupiter"
  36455. },
  36456. {
  36457. name: "Enceladus",
  36458. height: math.unit(513*2, "km"),
  36459. form: "neptune"
  36460. },
  36461. {
  36462. name: "Europe",
  36463. height: math.unit(1560*2, "km"),
  36464. form: "neptune"
  36465. },
  36466. {
  36467. name: "Neptune",
  36468. height: math.unit(24622*2, "km"),
  36469. form: "neptune",
  36470. default: true
  36471. },
  36472. {
  36473. name: "CoRoT-9b",
  36474. height: math.unit(75067*2, "km"),
  36475. form: "neptune"
  36476. },
  36477. ],
  36478. {
  36479. "normal": {
  36480. name: "Normal",
  36481. default: true
  36482. },
  36483. "demon": {
  36484. name: "Demon"
  36485. },
  36486. "terra": {
  36487. name: "Terra"
  36488. },
  36489. "jupiter": {
  36490. name: "Jupiter"
  36491. },
  36492. "neptune": {
  36493. name: "Neptune"
  36494. }
  36495. }
  36496. ))
  36497. characterMakers.push(() => makeCharacter(
  36498. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36499. {
  36500. front: {
  36501. height: math.unit(16, "feet"),
  36502. weight: math.unit(610, "kg"),
  36503. name: "Front",
  36504. image: {
  36505. source: "./media/characters/huckle/front.svg",
  36506. extra: 1731/1625,
  36507. bottom: 33/1764
  36508. }
  36509. },
  36510. back: {
  36511. height: math.unit(16, "feet"),
  36512. weight: math.unit(610, "kg"),
  36513. name: "Back",
  36514. image: {
  36515. source: "./media/characters/huckle/back.svg",
  36516. extra: 1738/1651,
  36517. bottom: 37/1775
  36518. }
  36519. },
  36520. laughing: {
  36521. height: math.unit(3.75, "feet"),
  36522. name: "Laughing",
  36523. image: {
  36524. source: "./media/characters/huckle/laughing.svg"
  36525. }
  36526. },
  36527. angry: {
  36528. height: math.unit(4.15, "feet"),
  36529. name: "Angry",
  36530. image: {
  36531. source: "./media/characters/huckle/angry.svg"
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Normal",
  36538. height: math.unit(16, "feet"),
  36539. default: true
  36540. },
  36541. {
  36542. name: "Mini Macro",
  36543. height: math.unit(463, "feet")
  36544. },
  36545. {
  36546. name: "Macro",
  36547. height: math.unit(1680, "meters")
  36548. },
  36549. {
  36550. name: "Mega Macro",
  36551. height: math.unit(175, "km")
  36552. },
  36553. {
  36554. name: "Terra Macro",
  36555. height: math.unit(32, "gigameters")
  36556. },
  36557. {
  36558. name: "Multiverse+",
  36559. height: math.unit(2.56e23, "yottameters")
  36560. },
  36561. ]
  36562. ))
  36563. characterMakers.push(() => makeCharacter(
  36564. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36565. {
  36566. front: {
  36567. height: math.unit(6 + 9/12, "feet"),
  36568. weight: math.unit(280, "lb"),
  36569. name: "Front",
  36570. image: {
  36571. source: "./media/characters/candy/front.svg",
  36572. extra: 234/217,
  36573. bottom: 11/245
  36574. }
  36575. },
  36576. },
  36577. [
  36578. {
  36579. name: "Really Small",
  36580. height: math.unit(0.1, "nm")
  36581. },
  36582. {
  36583. name: "Micro",
  36584. height: math.unit(2, "inches")
  36585. },
  36586. {
  36587. name: "Normal",
  36588. height: math.unit(6 + 9/12, "feet"),
  36589. default: true
  36590. },
  36591. {
  36592. name: "Small Macro",
  36593. height: math.unit(69, "feet")
  36594. },
  36595. {
  36596. name: "Macro",
  36597. height: math.unit(160, "feet")
  36598. },
  36599. {
  36600. name: "Megamacro",
  36601. height: math.unit(22000, "miles")
  36602. },
  36603. {
  36604. name: "Gigamacro",
  36605. height: math.unit(50000, "miles")
  36606. },
  36607. ]
  36608. ))
  36609. characterMakers.push(() => makeCharacter(
  36610. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36611. {
  36612. front: {
  36613. height: math.unit(4, "feet"),
  36614. weight: math.unit(90, "lb"),
  36615. name: "Front",
  36616. image: {
  36617. source: "./media/characters/joey-mcdonald/front.svg",
  36618. extra: 1059/852,
  36619. bottom: 33/1092
  36620. }
  36621. },
  36622. back: {
  36623. height: math.unit(4, "feet"),
  36624. weight: math.unit(90, "lb"),
  36625. name: "Back",
  36626. image: {
  36627. source: "./media/characters/joey-mcdonald/back.svg",
  36628. extra: 1077/879,
  36629. bottom: 5/1082
  36630. }
  36631. },
  36632. frontKobold: {
  36633. height: math.unit(4, "feet"),
  36634. weight: math.unit(100, "lb"),
  36635. name: "Front-kobold",
  36636. image: {
  36637. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36638. extra: 1480/1367,
  36639. bottom: 0/1480
  36640. }
  36641. },
  36642. backKobold: {
  36643. height: math.unit(4, "feet"),
  36644. weight: math.unit(100, "lb"),
  36645. name: "Back-kobold",
  36646. image: {
  36647. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36648. extra: 1449/1361,
  36649. bottom: 0/1449
  36650. }
  36651. },
  36652. },
  36653. [
  36654. {
  36655. name: "Normal",
  36656. height: math.unit(4, "feet"),
  36657. default: true
  36658. },
  36659. ]
  36660. ))
  36661. characterMakers.push(() => makeCharacter(
  36662. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36663. {
  36664. front: {
  36665. height: math.unit(12 + 6/12, "feet"),
  36666. name: "Front",
  36667. image: {
  36668. source: "./media/characters/kass-lockheed/front.svg",
  36669. extra: 354/343,
  36670. bottom: 9/363
  36671. }
  36672. },
  36673. back: {
  36674. height: math.unit(12 + 6/12, "feet"),
  36675. name: "Back",
  36676. image: {
  36677. source: "./media/characters/kass-lockheed/back.svg",
  36678. extra: 364/352,
  36679. bottom: 3/367
  36680. }
  36681. },
  36682. dick: {
  36683. height: math.unit(3.12, "feet"),
  36684. name: "Dick",
  36685. image: {
  36686. source: "./media/characters/kass-lockheed/dick.svg"
  36687. }
  36688. },
  36689. head: {
  36690. height: math.unit(2.6, "feet"),
  36691. name: "Head",
  36692. image: {
  36693. source: "./media/characters/kass-lockheed/head.svg"
  36694. }
  36695. },
  36696. bleh: {
  36697. height: math.unit(2.85, "feet"),
  36698. name: "Bleh",
  36699. image: {
  36700. source: "./media/characters/kass-lockheed/bleh.svg"
  36701. }
  36702. },
  36703. smug: {
  36704. height: math.unit(2.85, "feet"),
  36705. name: "Smug",
  36706. image: {
  36707. source: "./media/characters/kass-lockheed/smug.svg"
  36708. }
  36709. },
  36710. },
  36711. [
  36712. {
  36713. name: "Normal",
  36714. height: math.unit(12 + 6/12, "feet"),
  36715. default: true
  36716. },
  36717. ]
  36718. ))
  36719. characterMakers.push(() => makeCharacter(
  36720. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36721. {
  36722. front: {
  36723. height: math.unit(6 + 2/12, "feet"),
  36724. name: "Front",
  36725. image: {
  36726. source: "./media/characters/taylor/front.svg",
  36727. extra: 639/495,
  36728. bottom: 12/651
  36729. }
  36730. },
  36731. },
  36732. [
  36733. {
  36734. name: "Normal",
  36735. height: math.unit(6 + 2/12, "feet"),
  36736. default: true
  36737. },
  36738. {
  36739. name: "Big",
  36740. height: math.unit(15, "feet")
  36741. },
  36742. {
  36743. name: "Lorg",
  36744. height: math.unit(80, "feet")
  36745. },
  36746. {
  36747. name: "Too Lorg",
  36748. height: math.unit(120, "feet")
  36749. },
  36750. ]
  36751. ))
  36752. characterMakers.push(() => makeCharacter(
  36753. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36754. {
  36755. front: {
  36756. height: math.unit(15, "feet"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/kaizer/front.svg",
  36760. extra: 1612/1436,
  36761. bottom: 43/1655
  36762. }
  36763. },
  36764. },
  36765. [
  36766. {
  36767. name: "Normal",
  36768. height: math.unit(15, "feet"),
  36769. default: true
  36770. },
  36771. ]
  36772. ))
  36773. characterMakers.push(() => makeCharacter(
  36774. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36775. {
  36776. front: {
  36777. height: math.unit(2, "feet"),
  36778. weight: math.unit(30, "lb"),
  36779. name: "Front",
  36780. image: {
  36781. source: "./media/characters/sandy/front.svg",
  36782. extra: 1439/1307,
  36783. bottom: 194/1633
  36784. }
  36785. },
  36786. },
  36787. [
  36788. {
  36789. name: "Normal",
  36790. height: math.unit(2, "feet"),
  36791. default: true
  36792. },
  36793. ]
  36794. ))
  36795. characterMakers.push(() => makeCharacter(
  36796. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36797. {
  36798. front: {
  36799. height: math.unit(3, "feet"),
  36800. name: "Front",
  36801. image: {
  36802. source: "./media/characters/mellvi/front.svg",
  36803. extra: 1831/1630,
  36804. bottom: 58/1889
  36805. }
  36806. },
  36807. },
  36808. [
  36809. {
  36810. name: "Normal",
  36811. height: math.unit(3, "feet"),
  36812. default: true
  36813. },
  36814. ]
  36815. ))
  36816. characterMakers.push(() => makeCharacter(
  36817. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36818. {
  36819. front: {
  36820. height: math.unit(5 + 11/12, "feet"),
  36821. weight: math.unit(200, "lb"),
  36822. name: "Front",
  36823. image: {
  36824. source: "./media/characters/shirou/front.svg",
  36825. extra: 2491/2383,
  36826. bottom: 189/2680
  36827. }
  36828. },
  36829. back: {
  36830. height: math.unit(5 + 11/12, "feet"),
  36831. weight: math.unit(200, "lb"),
  36832. name: "Back",
  36833. image: {
  36834. source: "./media/characters/shirou/back.svg",
  36835. extra: 2554/2450,
  36836. bottom: 76/2630
  36837. }
  36838. },
  36839. },
  36840. [
  36841. {
  36842. name: "Normal",
  36843. height: math.unit(5 + 11/12, "feet"),
  36844. default: true
  36845. },
  36846. ]
  36847. ))
  36848. characterMakers.push(() => makeCharacter(
  36849. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36850. {
  36851. front: {
  36852. height: math.unit(6 + 3/12, "feet"),
  36853. weight: math.unit(177, "lb"),
  36854. name: "Front",
  36855. image: {
  36856. source: "./media/characters/noryu/front.svg",
  36857. extra: 973/885,
  36858. bottom: 10/983
  36859. }
  36860. },
  36861. },
  36862. [
  36863. {
  36864. name: "Normal",
  36865. height: math.unit(6 + 3/12, "feet"),
  36866. default: true
  36867. },
  36868. ]
  36869. ))
  36870. characterMakers.push(() => makeCharacter(
  36871. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36872. {
  36873. front: {
  36874. height: math.unit(5 + 6/12, "feet"),
  36875. weight: math.unit(170, "lb"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/mevolas-rubenido/front.svg",
  36879. extra: 2109/1901,
  36880. bottom: 96/2205
  36881. }
  36882. },
  36883. },
  36884. [
  36885. {
  36886. name: "Normal",
  36887. height: math.unit(5 + 6/12, "feet"),
  36888. default: true
  36889. },
  36890. ]
  36891. ))
  36892. characterMakers.push(() => makeCharacter(
  36893. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36894. {
  36895. front: {
  36896. height: math.unit(100, "feet"),
  36897. name: "Front",
  36898. image: {
  36899. source: "./media/characters/dee/front.svg",
  36900. extra: 2153/2036,
  36901. bottom: 59/2212
  36902. }
  36903. },
  36904. back: {
  36905. height: math.unit(100, "feet"),
  36906. name: "Back",
  36907. image: {
  36908. source: "./media/characters/dee/back.svg",
  36909. extra: 2183/2058,
  36910. bottom: 75/2258
  36911. }
  36912. },
  36913. foot: {
  36914. height: math.unit(19.43, "feet"),
  36915. name: "Foot",
  36916. image: {
  36917. source: "./media/characters/dee/foot.svg"
  36918. }
  36919. },
  36920. hoof: {
  36921. height: math.unit(20.6, "feet"),
  36922. name: "Hoof",
  36923. image: {
  36924. source: "./media/characters/dee/hoof.svg"
  36925. }
  36926. },
  36927. },
  36928. [
  36929. {
  36930. name: "Macro",
  36931. height: math.unit(100, "feet"),
  36932. default: true
  36933. },
  36934. ]
  36935. ))
  36936. characterMakers.push(() => makeCharacter(
  36937. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36938. {
  36939. front: {
  36940. height: math.unit(5 + 6/12, "feet"),
  36941. name: "Front",
  36942. image: {
  36943. source: "./media/characters/teh/front.svg",
  36944. extra: 1002/847,
  36945. bottom: 62/1064
  36946. }
  36947. },
  36948. },
  36949. [
  36950. {
  36951. name: "Normal",
  36952. height: math.unit(5 + 6/12, "feet"),
  36953. default: true
  36954. },
  36955. ]
  36956. ))
  36957. characterMakers.push(() => makeCharacter(
  36958. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36959. {
  36960. side: {
  36961. height: math.unit(6 + 1/12, "feet"),
  36962. weight: math.unit(204, "lb"),
  36963. name: "Side",
  36964. image: {
  36965. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36966. extra: 974/775,
  36967. bottom: 169/1143
  36968. }
  36969. },
  36970. sitting: {
  36971. height: math.unit(6 + 2/12, "feet"),
  36972. weight: math.unit(204, "lb"),
  36973. name: "Sitting",
  36974. image: {
  36975. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36976. extra: 1175/964,
  36977. bottom: 378/1553
  36978. }
  36979. },
  36980. },
  36981. [
  36982. {
  36983. name: "Normal",
  36984. height: math.unit(6 + 1/12, "feet"),
  36985. default: true
  36986. },
  36987. ]
  36988. ))
  36989. characterMakers.push(() => makeCharacter(
  36990. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36991. {
  36992. front: {
  36993. height: math.unit(6, "inches"),
  36994. name: "Front",
  36995. image: {
  36996. source: "./media/characters/tululi/front.svg",
  36997. extra: 1997/1876,
  36998. bottom: 20/2017
  36999. }
  37000. },
  37001. },
  37002. [
  37003. {
  37004. name: "Normal",
  37005. height: math.unit(6, "inches"),
  37006. default: true
  37007. },
  37008. ]
  37009. ))
  37010. characterMakers.push(() => makeCharacter(
  37011. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37012. {
  37013. front: {
  37014. height: math.unit(4 + 1/12, "feet"),
  37015. name: "Front",
  37016. image: {
  37017. source: "./media/characters/star/front.svg",
  37018. extra: 1493/1189,
  37019. bottom: 48/1541
  37020. }
  37021. },
  37022. },
  37023. [
  37024. {
  37025. name: "Normal",
  37026. height: math.unit(4 + 1/12, "feet"),
  37027. default: true
  37028. },
  37029. ]
  37030. ))
  37031. characterMakers.push(() => makeCharacter(
  37032. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37033. {
  37034. front: {
  37035. height: math.unit(6 + 3/12, "feet"),
  37036. name: "Front",
  37037. image: {
  37038. source: "./media/characters/comet/front.svg",
  37039. extra: 1681/1462,
  37040. bottom: 26/1707
  37041. }
  37042. },
  37043. },
  37044. [
  37045. {
  37046. name: "Normal",
  37047. height: math.unit(6 + 3/12, "feet"),
  37048. default: true
  37049. },
  37050. ]
  37051. ))
  37052. characterMakers.push(() => makeCharacter(
  37053. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37054. {
  37055. front: {
  37056. height: math.unit(950, "feet"),
  37057. name: "Front",
  37058. image: {
  37059. source: "./media/characters/vortex/front.svg",
  37060. extra: 1497/1434,
  37061. bottom: 56/1553
  37062. }
  37063. },
  37064. maw: {
  37065. height: math.unit(285, "feet"),
  37066. name: "Maw",
  37067. image: {
  37068. source: "./media/characters/vortex/maw.svg"
  37069. }
  37070. },
  37071. },
  37072. [
  37073. {
  37074. name: "Macro",
  37075. height: math.unit(950, "feet"),
  37076. default: true
  37077. },
  37078. ]
  37079. ))
  37080. characterMakers.push(() => makeCharacter(
  37081. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37082. {
  37083. front: {
  37084. height: math.unit(600, "feet"),
  37085. weight: math.unit(0.02, "grams"),
  37086. name: "Front",
  37087. image: {
  37088. source: "./media/characters/doodle/front.svg",
  37089. extra: 1578/1413,
  37090. bottom: 37/1615
  37091. }
  37092. },
  37093. },
  37094. [
  37095. {
  37096. name: "Macro",
  37097. height: math.unit(600, "feet"),
  37098. default: true
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(6 + 6/12, "feet"),
  37107. name: "Front",
  37108. image: {
  37109. source: "./media/characters/jai/front.svg",
  37110. extra: 1645/1534,
  37111. bottom: 115/1760
  37112. }
  37113. },
  37114. },
  37115. [
  37116. {
  37117. name: "Normal",
  37118. height: math.unit(6 + 6/12, "feet"),
  37119. default: true
  37120. },
  37121. ]
  37122. ))
  37123. characterMakers.push(() => makeCharacter(
  37124. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37125. {
  37126. front: {
  37127. height: math.unit(6 + 8/12, "feet"),
  37128. name: "Front",
  37129. image: {
  37130. source: "./media/characters/pixel/front.svg",
  37131. extra: 1900/1735,
  37132. bottom: 63/1963
  37133. }
  37134. },
  37135. },
  37136. [
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(6 + 8/12, "feet"),
  37140. default: true
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37146. {
  37147. back: {
  37148. height: math.unit(4 + 1/12, "feet"),
  37149. weight: math.unit(75, "lb"),
  37150. name: "Back",
  37151. image: {
  37152. source: "./media/characters/rhett/back.svg",
  37153. extra: 930/878,
  37154. bottom: 25/955
  37155. }
  37156. },
  37157. front: {
  37158. height: math.unit(4 + 1/12, "feet"),
  37159. weight: math.unit(75, "lb"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/rhett/front.svg",
  37163. extra: 1682/1586,
  37164. bottom: 92/1774
  37165. }
  37166. },
  37167. },
  37168. [
  37169. {
  37170. name: "Micro",
  37171. height: math.unit(8, "inches")
  37172. },
  37173. {
  37174. name: "Tiny",
  37175. height: math.unit(2, "feet")
  37176. },
  37177. {
  37178. name: "Normal",
  37179. height: math.unit(4 + 1/12, "feet"),
  37180. default: true
  37181. },
  37182. ]
  37183. ))
  37184. characterMakers.push(() => makeCharacter(
  37185. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37186. {
  37187. front: {
  37188. height: math.unit(3 + 3/12, "feet"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/penny/front.svg",
  37192. extra: 1406/1311,
  37193. bottom: 26/1432
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(3 + 3/12, "feet"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(4 + 11/12, "feet"),
  37210. name: "Front",
  37211. image: {
  37212. source: "./media/characters/monty/front.svg",
  37213. extra: 1479/1209,
  37214. bottom: 0/1479
  37215. }
  37216. },
  37217. },
  37218. [
  37219. {
  37220. name: "Normal",
  37221. height: math.unit(4 + 11/12, "feet"),
  37222. default: true
  37223. },
  37224. ]
  37225. ))
  37226. characterMakers.push(() => makeCharacter(
  37227. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37228. {
  37229. front: {
  37230. height: math.unit(8 + 4/12, "feet"),
  37231. name: "Front",
  37232. image: {
  37233. source: "./media/characters/sterling/front.svg",
  37234. extra: 1420/1236,
  37235. bottom: 27/1447
  37236. }
  37237. },
  37238. },
  37239. [
  37240. {
  37241. name: "Normal",
  37242. height: math.unit(8 + 4/12, "feet"),
  37243. default: true
  37244. },
  37245. ]
  37246. ))
  37247. characterMakers.push(() => makeCharacter(
  37248. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37249. {
  37250. front: {
  37251. height: math.unit(15, "feet"),
  37252. name: "Front",
  37253. image: {
  37254. source: "./media/characters/marble/front.svg",
  37255. extra: 973/937,
  37256. bottom: 32/1005
  37257. }
  37258. },
  37259. },
  37260. [
  37261. {
  37262. name: "Normal",
  37263. height: math.unit(15, "feet"),
  37264. default: true
  37265. },
  37266. ]
  37267. ))
  37268. characterMakers.push(() => makeCharacter(
  37269. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37270. {
  37271. front: {
  37272. height: math.unit(3, "inches"),
  37273. name: "Front",
  37274. image: {
  37275. source: "./media/characters/powder/front.svg",
  37276. extra: 1504/1334,
  37277. bottom: 518/2022
  37278. }
  37279. },
  37280. },
  37281. [
  37282. {
  37283. name: "Normal",
  37284. height: math.unit(3, "inches"),
  37285. default: true
  37286. },
  37287. ]
  37288. ))
  37289. characterMakers.push(() => makeCharacter(
  37290. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37291. {
  37292. front: {
  37293. height: math.unit(4 + 5/12, "feet"),
  37294. name: "Front",
  37295. image: {
  37296. source: "./media/characters/joey-raccoon/front.svg",
  37297. extra: 1273/1197,
  37298. bottom: 0/1273
  37299. }
  37300. },
  37301. },
  37302. [
  37303. {
  37304. name: "Normal",
  37305. height: math.unit(4 + 5/12, "feet"),
  37306. default: true
  37307. },
  37308. ]
  37309. ))
  37310. characterMakers.push(() => makeCharacter(
  37311. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37312. {
  37313. front: {
  37314. height: math.unit(8 + 4/12, "feet"),
  37315. name: "Front",
  37316. image: {
  37317. source: "./media/characters/vick/front.svg",
  37318. extra: 2187/2118,
  37319. bottom: 47/2234
  37320. }
  37321. },
  37322. },
  37323. [
  37324. {
  37325. name: "Normal",
  37326. height: math.unit(8 + 4/12, "feet"),
  37327. default: true
  37328. },
  37329. ]
  37330. ))
  37331. characterMakers.push(() => makeCharacter(
  37332. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37333. {
  37334. front: {
  37335. height: math.unit(5 + 5/12, "feet"),
  37336. name: "Front",
  37337. image: {
  37338. source: "./media/characters/mitsy/front.svg",
  37339. extra: 1842/1695,
  37340. bottom: 0/1842
  37341. }
  37342. },
  37343. },
  37344. [
  37345. {
  37346. name: "Normal",
  37347. height: math.unit(5 + 5/12, "feet"),
  37348. default: true
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37354. {
  37355. front: {
  37356. height: math.unit(6 + 3/12, "feet"),
  37357. name: "Front",
  37358. image: {
  37359. source: "./media/characters/silvy/front.svg",
  37360. extra: 1995/1836,
  37361. bottom: 225/2220
  37362. }
  37363. },
  37364. },
  37365. [
  37366. {
  37367. name: "Normal",
  37368. height: math.unit(6 + 3/12, "feet"),
  37369. default: true
  37370. },
  37371. ]
  37372. ))
  37373. characterMakers.push(() => makeCharacter(
  37374. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37375. {
  37376. front: {
  37377. height: math.unit(3 + 8/12, "feet"),
  37378. name: "Front",
  37379. image: {
  37380. source: "./media/characters/rodney/front.svg",
  37381. extra: 1956/1747,
  37382. bottom: 31/1987
  37383. }
  37384. },
  37385. frontDressed: {
  37386. height: math.unit(2.9, "feet"),
  37387. name: "Front (Dressed)",
  37388. image: {
  37389. source: "./media/characters/rodney/front-dressed.svg",
  37390. extra: 1382/1241,
  37391. bottom: 385/1767
  37392. }
  37393. },
  37394. },
  37395. [
  37396. {
  37397. name: "Normal",
  37398. height: math.unit(3 + 8/12, "feet"),
  37399. default: true
  37400. },
  37401. ]
  37402. ))
  37403. characterMakers.push(() => makeCharacter(
  37404. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37405. {
  37406. front: {
  37407. height: math.unit(5 + 9/12, "feet"),
  37408. weight: math.unit(194, "lbs"),
  37409. name: "Front",
  37410. image: {
  37411. source: "./media/characters/zakail-sudekai/front.svg",
  37412. extra: 2696/2533,
  37413. bottom: 248/2944
  37414. }
  37415. },
  37416. maw: {
  37417. height: math.unit(1.35, "feet"),
  37418. name: "Maw",
  37419. image: {
  37420. source: "./media/characters/zakail-sudekai/maw.svg"
  37421. }
  37422. },
  37423. },
  37424. [
  37425. {
  37426. name: "Normal",
  37427. height: math.unit(5 + 9/12, "feet"),
  37428. default: true
  37429. },
  37430. ]
  37431. ))
  37432. characterMakers.push(() => makeCharacter(
  37433. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37434. {
  37435. front: {
  37436. height: math.unit(8 + 4/12, "feet"),
  37437. weight: math.unit(1200, "lb"),
  37438. name: "Front",
  37439. image: {
  37440. source: "./media/characters/eleanor/front.svg",
  37441. extra: 1226/1192,
  37442. bottom: 52/1278
  37443. }
  37444. },
  37445. back: {
  37446. height: math.unit(8 + 4/12, "feet"),
  37447. weight: math.unit(1200, "lb"),
  37448. name: "Back",
  37449. image: {
  37450. source: "./media/characters/eleanor/back.svg",
  37451. extra: 1242/1184,
  37452. bottom: 60/1302
  37453. }
  37454. },
  37455. head: {
  37456. height: math.unit(2.62, "feet"),
  37457. name: "Head",
  37458. image: {
  37459. source: "./media/characters/eleanor/head.svg"
  37460. }
  37461. },
  37462. },
  37463. [
  37464. {
  37465. name: "Normal",
  37466. height: math.unit(8 + 4/12, "feet"),
  37467. default: true
  37468. },
  37469. ]
  37470. ))
  37471. characterMakers.push(() => makeCharacter(
  37472. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37473. {
  37474. front: {
  37475. height: math.unit(8 + 4/12, "feet"),
  37476. weight: math.unit(750, "lb"),
  37477. name: "Front",
  37478. image: {
  37479. source: "./media/characters/tanya/front.svg",
  37480. extra: 1749/1615,
  37481. bottom: 33/1782
  37482. }
  37483. },
  37484. },
  37485. [
  37486. {
  37487. name: "Normal",
  37488. height: math.unit(8 + 4/12, "feet"),
  37489. default: true
  37490. },
  37491. ]
  37492. ))
  37493. characterMakers.push(() => makeCharacter(
  37494. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37495. {
  37496. front: {
  37497. height: math.unit(5, "feet"),
  37498. weight: math.unit(225, "lb"),
  37499. name: "Front",
  37500. image: {
  37501. source: "./media/characters/cindy/front.svg",
  37502. extra: 1320/1250,
  37503. bottom: 42/1362
  37504. }
  37505. },
  37506. frontDressed: {
  37507. height: math.unit(5, "feet"),
  37508. weight: math.unit(225, "lb"),
  37509. name: "Front (Dressed)",
  37510. image: {
  37511. source: "./media/characters/cindy/front-dressed.svg",
  37512. extra: 1320/1250,
  37513. bottom: 42/1362
  37514. }
  37515. },
  37516. back: {
  37517. height: math.unit(5, "feet"),
  37518. weight: math.unit(225, "lb"),
  37519. name: "Back",
  37520. image: {
  37521. source: "./media/characters/cindy/back.svg",
  37522. extra: 1384/1346,
  37523. bottom: 14/1398
  37524. }
  37525. },
  37526. },
  37527. [
  37528. {
  37529. name: "Normal",
  37530. height: math.unit(5, "feet"),
  37531. default: true
  37532. },
  37533. ]
  37534. ))
  37535. characterMakers.push(() => makeCharacter(
  37536. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37537. {
  37538. front: {
  37539. height: math.unit(6 + 9/12, "feet"),
  37540. weight: math.unit(440, "lb"),
  37541. name: "Front",
  37542. image: {
  37543. source: "./media/characters/wilbur-owen/front.svg",
  37544. extra: 1575/1448,
  37545. bottom: 72/1647
  37546. }
  37547. },
  37548. back: {
  37549. height: math.unit(6 + 9/12, "feet"),
  37550. weight: math.unit(440, "lb"),
  37551. name: "Back",
  37552. image: {
  37553. source: "./media/characters/wilbur-owen/back.svg",
  37554. extra: 1578/1445,
  37555. bottom: 36/1614
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "Normal",
  37562. height: math.unit(6 + 9/12, "feet"),
  37563. default: true
  37564. },
  37565. ]
  37566. ))
  37567. characterMakers.push(() => makeCharacter(
  37568. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37569. {
  37570. front: {
  37571. height: math.unit(6 + 5/12, "feet"),
  37572. weight: math.unit(650, "lb"),
  37573. name: "Front",
  37574. image: {
  37575. source: "./media/characters/keegan/front.svg",
  37576. extra: 2387/2198,
  37577. bottom: 33/2420
  37578. }
  37579. },
  37580. side: {
  37581. height: math.unit(6 + 5/12, "feet"),
  37582. weight: math.unit(650, "lb"),
  37583. name: "Side",
  37584. image: {
  37585. source: "./media/characters/keegan/side.svg",
  37586. extra: 2390/2202,
  37587. bottom: 47/2437
  37588. }
  37589. },
  37590. back: {
  37591. height: math.unit(6 + 5/12, "feet"),
  37592. weight: math.unit(650, "lb"),
  37593. name: "Back",
  37594. image: {
  37595. source: "./media/characters/keegan/back.svg",
  37596. extra: 2418/2268,
  37597. bottom: 15/2433
  37598. }
  37599. },
  37600. frontSfw: {
  37601. height: math.unit(6 + 5/12, "feet"),
  37602. weight: math.unit(650, "lb"),
  37603. name: "Front (SFW)",
  37604. image: {
  37605. source: "./media/characters/keegan/front-sfw.svg",
  37606. extra: 2387/2198,
  37607. bottom: 33/2420
  37608. }
  37609. },
  37610. beans: {
  37611. height: math.unit(1.85, "feet"),
  37612. name: "Beans",
  37613. image: {
  37614. source: "./media/characters/keegan/beans.svg"
  37615. }
  37616. },
  37617. },
  37618. [
  37619. {
  37620. name: "Normal",
  37621. height: math.unit(6 + 5/12, "feet"),
  37622. default: true
  37623. },
  37624. ]
  37625. ))
  37626. characterMakers.push(() => makeCharacter(
  37627. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37628. {
  37629. front: {
  37630. height: math.unit(9, "feet"),
  37631. name: "Front",
  37632. image: {
  37633. source: "./media/characters/colton/front.svg",
  37634. extra: 1589/1326,
  37635. bottom: 139/1728
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(9, "feet"),
  37643. default: true
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37649. {
  37650. front: {
  37651. height: math.unit(2 + 9/12, "feet"),
  37652. name: "Front",
  37653. image: {
  37654. source: "./media/characters/bora/front.svg",
  37655. extra: 1265/1250,
  37656. bottom: 24/1289
  37657. }
  37658. },
  37659. },
  37660. [
  37661. {
  37662. name: "Normal",
  37663. height: math.unit(2 + 9/12, "feet"),
  37664. default: true
  37665. },
  37666. ]
  37667. ))
  37668. characterMakers.push(() => makeCharacter(
  37669. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37670. {
  37671. front: {
  37672. height: math.unit(8, "feet"),
  37673. name: "Front",
  37674. image: {
  37675. source: "./media/characters/myu-myu/front.svg",
  37676. extra: 1949/1857,
  37677. bottom: 90/2039
  37678. }
  37679. },
  37680. },
  37681. [
  37682. {
  37683. name: "Normal",
  37684. height: math.unit(8, "feet"),
  37685. default: true
  37686. },
  37687. {
  37688. name: "Big",
  37689. height: math.unit(15, "feet")
  37690. },
  37691. {
  37692. name: "BIG",
  37693. height: math.unit(25, "feet")
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37699. {
  37700. side: {
  37701. height: math.unit(7 + 5/12, "feet"),
  37702. weight: math.unit(2800, "lb"),
  37703. name: "Side",
  37704. image: {
  37705. source: "./media/characters/haloren/side.svg",
  37706. extra: 1793/409,
  37707. bottom: 59/1852
  37708. }
  37709. },
  37710. frontPaw: {
  37711. height: math.unit(2.36, "feet"),
  37712. name: "Front paw",
  37713. image: {
  37714. source: "./media/characters/haloren/front-paw.svg"
  37715. }
  37716. },
  37717. hindPaw: {
  37718. height: math.unit(3.18, "feet"),
  37719. name: "Hind paw",
  37720. image: {
  37721. source: "./media/characters/haloren/hind-paw.svg"
  37722. }
  37723. },
  37724. maw: {
  37725. height: math.unit(5.05, "feet"),
  37726. name: "Maw",
  37727. image: {
  37728. source: "./media/characters/haloren/maw.svg"
  37729. }
  37730. },
  37731. dick: {
  37732. height: math.unit(2.90, "feet"),
  37733. name: "Dick",
  37734. image: {
  37735. source: "./media/characters/haloren/dick.svg"
  37736. }
  37737. },
  37738. },
  37739. [
  37740. {
  37741. name: "Normal",
  37742. height: math.unit(7 + 5/12, "feet"),
  37743. default: true
  37744. },
  37745. {
  37746. name: "Enhanced",
  37747. height: math.unit(14 + 3/12, "feet")
  37748. },
  37749. ]
  37750. ))
  37751. characterMakers.push(() => makeCharacter(
  37752. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37753. {
  37754. front: {
  37755. height: math.unit(171, "cm"),
  37756. name: "Front",
  37757. image: {
  37758. source: "./media/characters/kimmy/front.svg",
  37759. extra: 1491/1435,
  37760. bottom: 53/1544
  37761. }
  37762. },
  37763. },
  37764. [
  37765. {
  37766. name: "Small",
  37767. height: math.unit(9, "cm")
  37768. },
  37769. {
  37770. name: "Normal",
  37771. height: math.unit(171, "cm"),
  37772. default: true
  37773. },
  37774. ]
  37775. ))
  37776. characterMakers.push(() => makeCharacter(
  37777. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37778. {
  37779. front: {
  37780. height: math.unit(8, "feet"),
  37781. weight: math.unit(300, "lb"),
  37782. name: "Front",
  37783. image: {
  37784. source: "./media/characters/galeboomer/front.svg",
  37785. extra: 4651/4415,
  37786. bottom: 162/4813
  37787. }
  37788. },
  37789. back: {
  37790. height: math.unit(8, "feet"),
  37791. weight: math.unit(300, "lb"),
  37792. name: "Back",
  37793. image: {
  37794. source: "./media/characters/galeboomer/back.svg",
  37795. extra: 4544/4314,
  37796. bottom: 16/4560
  37797. }
  37798. },
  37799. frontAlt: {
  37800. height: math.unit(8, "feet"),
  37801. weight: math.unit(300, "lb"),
  37802. name: "Front (Alt)",
  37803. image: {
  37804. source: "./media/characters/galeboomer/front-alt.svg",
  37805. extra: 4458/4228,
  37806. bottom: 68/4526
  37807. }
  37808. },
  37809. maw: {
  37810. height: math.unit(1.2, "feet"),
  37811. name: "Maw",
  37812. image: {
  37813. source: "./media/characters/galeboomer/maw.svg"
  37814. }
  37815. },
  37816. },
  37817. [
  37818. {
  37819. name: "Normal",
  37820. height: math.unit(8, "feet"),
  37821. default: true
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(5 + 9/12, "feet"),
  37830. weight: math.unit(120, "lb"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/chyr/front.svg",
  37834. extra: 1323/1254,
  37835. bottom: 63/1386
  37836. }
  37837. },
  37838. back: {
  37839. height: math.unit(5 + 9/12, "feet"),
  37840. weight: math.unit(120, "lb"),
  37841. name: "Back",
  37842. image: {
  37843. source: "./media/characters/chyr/back.svg",
  37844. extra: 1323/1252,
  37845. bottom: 48/1371
  37846. }
  37847. },
  37848. },
  37849. [
  37850. {
  37851. name: "Normal",
  37852. height: math.unit(5 + 9/12, "feet"),
  37853. default: true
  37854. },
  37855. ]
  37856. ))
  37857. characterMakers.push(() => makeCharacter(
  37858. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37859. {
  37860. front: {
  37861. height: math.unit(7, "feet"),
  37862. weight: math.unit(310, "lb"),
  37863. name: "Front",
  37864. image: {
  37865. source: "./media/characters/solarus/front.svg",
  37866. extra: 2415/2021,
  37867. bottom: 103/2518
  37868. }
  37869. },
  37870. back: {
  37871. height: math.unit(7, "feet"),
  37872. weight: math.unit(310, "lb"),
  37873. name: "Back",
  37874. image: {
  37875. source: "./media/characters/solarus/back.svg",
  37876. extra: 2463/2089,
  37877. bottom: 79/2542
  37878. }
  37879. },
  37880. },
  37881. [
  37882. {
  37883. name: "Normal",
  37884. height: math.unit(7, "feet"),
  37885. default: true
  37886. },
  37887. ]
  37888. ))
  37889. characterMakers.push(() => makeCharacter(
  37890. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37891. {
  37892. front: {
  37893. height: math.unit(16, "feet"),
  37894. name: "Front",
  37895. image: {
  37896. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37897. extra: 1844/1780,
  37898. bottom: 58/1902
  37899. }
  37900. },
  37901. winterCoat: {
  37902. height: math.unit(16, "feet"),
  37903. name: "Winter Coat",
  37904. image: {
  37905. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37906. extra: 1807/1775,
  37907. bottom: 69/1876
  37908. }
  37909. },
  37910. },
  37911. [
  37912. {
  37913. name: "Normal",
  37914. height: math.unit(16, "feet"),
  37915. default: true
  37916. },
  37917. {
  37918. name: "Chicago Size",
  37919. height: math.unit(560, "feet")
  37920. },
  37921. ]
  37922. ))
  37923. characterMakers.push(() => makeCharacter(
  37924. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37925. {
  37926. front: {
  37927. height: math.unit(11 + 6/12, "feet"),
  37928. weight: math.unit(1366, "lb"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/lexor/front.svg",
  37932. extra: 1560/1481,
  37933. bottom: 211/1771
  37934. }
  37935. },
  37936. back: {
  37937. height: math.unit(11 + 6/12, "feet"),
  37938. weight: math.unit(1366, "lb"),
  37939. name: "Back",
  37940. image: {
  37941. source: "./media/characters/lexor/back.svg",
  37942. extra: 1614/1533,
  37943. bottom: 76/1690
  37944. }
  37945. },
  37946. maw: {
  37947. height: math.unit(3, "feet"),
  37948. name: "Maw",
  37949. image: {
  37950. source: "./media/characters/lexor/maw.svg"
  37951. }
  37952. },
  37953. dick: {
  37954. height: math.unit(2.59, "feet"),
  37955. name: "Dick",
  37956. image: {
  37957. source: "./media/characters/lexor/dick.svg"
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal",
  37964. height: math.unit(11 + 6/12, "feet"),
  37965. default: true
  37966. },
  37967. ]
  37968. ))
  37969. characterMakers.push(() => makeCharacter(
  37970. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37971. {
  37972. front: {
  37973. height: math.unit(5 + 8/12, "feet"),
  37974. name: "Front",
  37975. image: {
  37976. source: "./media/characters/magnum/front.svg",
  37977. extra: 942/855,
  37978. bottom: 26/968
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Normal",
  37985. height: math.unit(5 + 8/12, "feet"),
  37986. default: true
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(18 + 4/12, "feet"),
  37995. weight: math.unit(1500, "kg"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/solas-sharpsman/front.svg",
  37999. extra: 1698/1589,
  38000. bottom: 0/1698
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Normal",
  38007. height: math.unit(18 + 4/12, "feet"),
  38008. default: true
  38009. },
  38010. ]
  38011. ))
  38012. characterMakers.push(() => makeCharacter(
  38013. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38014. {
  38015. front: {
  38016. height: math.unit(5 + 5/12, "feet"),
  38017. weight: math.unit(180, "lb"),
  38018. name: "Front",
  38019. image: {
  38020. source: "./media/characters/october/front.svg",
  38021. extra: 1800/1650,
  38022. bottom: 0/1800
  38023. }
  38024. },
  38025. frontNsfw: {
  38026. height: math.unit(5 + 5/12, "feet"),
  38027. weight: math.unit(180, "lb"),
  38028. name: "Front (NSFW)",
  38029. image: {
  38030. source: "./media/characters/october/front-nsfw.svg",
  38031. extra: 1392/1307,
  38032. bottom: 42/1434
  38033. }
  38034. },
  38035. },
  38036. [
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(5 + 5/12, "feet"),
  38040. default: true
  38041. },
  38042. ]
  38043. ))
  38044. characterMakers.push(() => makeCharacter(
  38045. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38046. {
  38047. front: {
  38048. height: math.unit(8 + 6/12, "feet"),
  38049. name: "Front",
  38050. image: {
  38051. source: "./media/characters/essynkardi/front.svg",
  38052. extra: 1914/1846,
  38053. bottom: 22/1936
  38054. }
  38055. },
  38056. },
  38057. [
  38058. {
  38059. name: "Normal",
  38060. height: math.unit(8 + 6/12, "feet"),
  38061. default: true
  38062. },
  38063. ]
  38064. ))
  38065. characterMakers.push(() => makeCharacter(
  38066. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38067. {
  38068. front: {
  38069. height: math.unit(6 + 6/12, "feet"),
  38070. weight: math.unit(7, "lb"),
  38071. name: "Front",
  38072. image: {
  38073. source: "./media/characters/icky/front.svg",
  38074. extra: 813/782,
  38075. bottom: 66/879
  38076. }
  38077. },
  38078. back: {
  38079. height: math.unit(6 + 6/12, "feet"),
  38080. weight: math.unit(7, "lb"),
  38081. name: "Back",
  38082. image: {
  38083. source: "./media/characters/icky/back.svg",
  38084. extra: 754/735,
  38085. bottom: 56/810
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(6 + 6/12, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(15, "feet"),
  38102. name: "Front",
  38103. image: {
  38104. source: "./media/characters/rojas/front.svg",
  38105. extra: 1462/1408,
  38106. bottom: 95/1557
  38107. }
  38108. },
  38109. back: {
  38110. height: math.unit(15, "feet"),
  38111. name: "Back",
  38112. image: {
  38113. source: "./media/characters/rojas/back.svg",
  38114. extra: 1023/954,
  38115. bottom: 28/1051
  38116. }
  38117. },
  38118. },
  38119. [
  38120. {
  38121. name: "Normal",
  38122. height: math.unit(15, "feet"),
  38123. default: true
  38124. },
  38125. ]
  38126. ))
  38127. characterMakers.push(() => makeCharacter(
  38128. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38129. {
  38130. frontHuman: {
  38131. height: math.unit(5 + 7/12, "feet"),
  38132. name: "Front (Human)",
  38133. image: {
  38134. source: "./media/characters/alek-dryagan/front-human.svg",
  38135. extra: 1687/1667,
  38136. bottom: 69/1756
  38137. }
  38138. },
  38139. backHuman: {
  38140. height: math.unit(5 + 7/12, "feet"),
  38141. name: "Back (Human)",
  38142. image: {
  38143. source: "./media/characters/alek-dryagan/back-human.svg",
  38144. extra: 1670/1649,
  38145. bottom: 65/1735
  38146. }
  38147. },
  38148. frontDemi: {
  38149. height: math.unit(65, "feet"),
  38150. name: "Front (Demi)",
  38151. image: {
  38152. source: "./media/characters/alek-dryagan/front-demi.svg",
  38153. extra: 1669/1642,
  38154. bottom: 49/1718
  38155. }
  38156. },
  38157. backDemi: {
  38158. height: math.unit(65, "feet"),
  38159. name: "Back (Demi)",
  38160. image: {
  38161. source: "./media/characters/alek-dryagan/back-demi.svg",
  38162. extra: 1658/1637,
  38163. bottom: 40/1698
  38164. }
  38165. },
  38166. mawHuman: {
  38167. height: math.unit(0.3, "feet"),
  38168. name: "Maw (Human)",
  38169. image: {
  38170. source: "./media/characters/alek-dryagan/maw-human.svg"
  38171. }
  38172. },
  38173. mawDemi: {
  38174. height: math.unit(3.8, "feet"),
  38175. name: "Maw (Demi)",
  38176. image: {
  38177. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Normal",
  38184. height: math.unit(5 + 7/12, "feet"),
  38185. default: true
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38191. {
  38192. frontHuman: {
  38193. height: math.unit(5 + 2/12, "feet"),
  38194. name: "Front (Human)",
  38195. image: {
  38196. source: "./media/characters/gen/front-human.svg",
  38197. extra: 1627/1538,
  38198. bottom: 71/1698
  38199. }
  38200. },
  38201. backHuman: {
  38202. height: math.unit(5 + 2/12, "feet"),
  38203. name: "Back (Human)",
  38204. image: {
  38205. source: "./media/characters/gen/back-human.svg",
  38206. extra: 1638/1548,
  38207. bottom: 69/1707
  38208. }
  38209. },
  38210. frontDemi: {
  38211. height: math.unit(5 + 2/12, "feet"),
  38212. name: "Front (Demi)",
  38213. image: {
  38214. source: "./media/characters/gen/front-demi.svg",
  38215. extra: 1627/1538,
  38216. bottom: 71/1698
  38217. }
  38218. },
  38219. backDemi: {
  38220. height: math.unit(5 + 2/12, "feet"),
  38221. name: "Back (Demi)",
  38222. image: {
  38223. source: "./media/characters/gen/back-demi.svg",
  38224. extra: 1638/1548,
  38225. bottom: 69/1707
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(5 + 2/12, "feet"),
  38233. default: true
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38239. {
  38240. frontImp: {
  38241. height: math.unit(1 + 11/12, "feet"),
  38242. name: "Front (Imp)",
  38243. image: {
  38244. source: "./media/characters/max-kobold/front-imp.svg",
  38245. extra: 1238/1134,
  38246. bottom: 81/1319
  38247. }
  38248. },
  38249. backImp: {
  38250. height: math.unit(1 + 11/12, "feet"),
  38251. name: "Back (Imp)",
  38252. image: {
  38253. source: "./media/characters/max-kobold/back-imp.svg",
  38254. extra: 1334/1175,
  38255. bottom: 34/1368
  38256. }
  38257. },
  38258. frontDemi: {
  38259. height: math.unit(5 + 9/12, "feet"),
  38260. name: "Front (Demi)",
  38261. image: {
  38262. source: "./media/characters/max-kobold/front-demi.svg",
  38263. extra: 1715/1685,
  38264. bottom: 54/1769
  38265. }
  38266. },
  38267. backDemi: {
  38268. height: math.unit(5 + 9/12, "feet"),
  38269. name: "Back (Demi)",
  38270. image: {
  38271. source: "./media/characters/max-kobold/back-demi.svg",
  38272. extra: 1752/1729,
  38273. bottom: 41/1793
  38274. }
  38275. },
  38276. handImp: {
  38277. height: math.unit(0.45, "feet"),
  38278. name: "Hand (Imp)",
  38279. image: {
  38280. source: "./media/characters/max-kobold/hand.svg"
  38281. }
  38282. },
  38283. pawImp: {
  38284. height: math.unit(0.46, "feet"),
  38285. name: "Paw (Imp)",
  38286. image: {
  38287. source: "./media/characters/max-kobold/paw.svg"
  38288. }
  38289. },
  38290. handDemi: {
  38291. height: math.unit(0.80, "feet"),
  38292. name: "Hand (Demi)",
  38293. image: {
  38294. source: "./media/characters/max-kobold/hand.svg"
  38295. }
  38296. },
  38297. pawDemi: {
  38298. height: math.unit(1.1, "feet"),
  38299. name: "Paw (Demi)",
  38300. image: {
  38301. source: "./media/characters/max-kobold/paw.svg"
  38302. }
  38303. },
  38304. headImp: {
  38305. height: math.unit(1.33, "feet"),
  38306. name: "Head (Imp)",
  38307. image: {
  38308. source: "./media/characters/max-kobold/head-imp.svg"
  38309. }
  38310. },
  38311. mawImp: {
  38312. height: math.unit(0.75, "feet"),
  38313. name: "Maw (Imp)",
  38314. image: {
  38315. source: "./media/characters/max-kobold/maw-imp.svg"
  38316. }
  38317. },
  38318. mawDemi: {
  38319. height: math.unit(0.42, "feet"),
  38320. name: "Maw (Demi)",
  38321. image: {
  38322. source: "./media/characters/max-kobold/maw-demi.svg"
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Normal",
  38329. height: math.unit(1 + 11/12, "feet"),
  38330. default: true
  38331. },
  38332. ]
  38333. ))
  38334. characterMakers.push(() => makeCharacter(
  38335. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38336. {
  38337. front: {
  38338. height: math.unit(7 + 5/12, "feet"),
  38339. name: "Front",
  38340. image: {
  38341. source: "./media/characters/carbon/front.svg",
  38342. extra: 1754/1689,
  38343. bottom: 65/1819
  38344. }
  38345. },
  38346. back: {
  38347. height: math.unit(7 + 5/12, "feet"),
  38348. name: "Back",
  38349. image: {
  38350. source: "./media/characters/carbon/back.svg",
  38351. extra: 1762/1695,
  38352. bottom: 24/1786
  38353. }
  38354. },
  38355. frontGigantamax: {
  38356. height: math.unit(150, "feet"),
  38357. name: "Front (Gigantamax)",
  38358. image: {
  38359. source: "./media/characters/carbon/front-gigantamax.svg",
  38360. extra: 1826/1669,
  38361. bottom: 59/1885
  38362. }
  38363. },
  38364. backGigantamax: {
  38365. height: math.unit(150, "feet"),
  38366. name: "Back (Gigantamax)",
  38367. image: {
  38368. source: "./media/characters/carbon/back-gigantamax.svg",
  38369. extra: 1796/1653,
  38370. bottom: 53/1849
  38371. }
  38372. },
  38373. maw: {
  38374. height: math.unit(0.48, "feet"),
  38375. name: "Maw",
  38376. image: {
  38377. source: "./media/characters/carbon/maw.svg"
  38378. }
  38379. },
  38380. mawGigantamax: {
  38381. height: math.unit(7.5, "feet"),
  38382. name: "Maw (Gigantamax)",
  38383. image: {
  38384. source: "./media/characters/carbon/maw-gigantamax.svg"
  38385. }
  38386. },
  38387. },
  38388. [
  38389. {
  38390. name: "Normal",
  38391. height: math.unit(7 + 5/12, "feet"),
  38392. default: true
  38393. },
  38394. ]
  38395. ))
  38396. characterMakers.push(() => makeCharacter(
  38397. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38398. {
  38399. front: {
  38400. height: math.unit(6, "feet"),
  38401. name: "Front",
  38402. image: {
  38403. source: "./media/characters/maverick/front.svg",
  38404. extra: 1672/1661,
  38405. bottom: 85/1757
  38406. }
  38407. },
  38408. back: {
  38409. height: math.unit(6, "feet"),
  38410. name: "Back",
  38411. image: {
  38412. source: "./media/characters/maverick/back.svg",
  38413. extra: 1642/1631,
  38414. bottom: 38/1680
  38415. }
  38416. },
  38417. },
  38418. [
  38419. {
  38420. name: "Normal",
  38421. height: math.unit(6, "feet"),
  38422. default: true
  38423. },
  38424. ]
  38425. ))
  38426. characterMakers.push(() => makeCharacter(
  38427. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38428. {
  38429. front: {
  38430. height: math.unit(15, "feet"),
  38431. weight: math.unit(615, "lb"),
  38432. name: "Front",
  38433. image: {
  38434. source: "./media/characters/grockle/front.svg",
  38435. extra: 1535/1427,
  38436. bottom: 56/1591
  38437. }
  38438. },
  38439. },
  38440. [
  38441. {
  38442. name: "Normal",
  38443. height: math.unit(15, "feet"),
  38444. default: true
  38445. },
  38446. {
  38447. name: "Large",
  38448. height: math.unit(150, "feet")
  38449. },
  38450. {
  38451. name: "Macro",
  38452. height: math.unit(1876, "feet")
  38453. },
  38454. {
  38455. name: "Mega Macro",
  38456. height: math.unit(121940, "feet")
  38457. },
  38458. {
  38459. name: "Giga Macro",
  38460. height: math.unit(750, "km")
  38461. },
  38462. {
  38463. name: "Tera Macro",
  38464. height: math.unit(750000, "km")
  38465. },
  38466. {
  38467. name: "Galactic",
  38468. height: math.unit(1.4e5, "km")
  38469. },
  38470. {
  38471. name: "Godlike",
  38472. height: math.unit(9.8e280, "galaxies")
  38473. },
  38474. ]
  38475. ))
  38476. characterMakers.push(() => makeCharacter(
  38477. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38478. {
  38479. front: {
  38480. height: math.unit(11, "meters"),
  38481. weight: math.unit(20, "tonnes"),
  38482. name: "Front",
  38483. image: {
  38484. source: "./media/characters/alistair/front.svg",
  38485. extra: 1265/1009,
  38486. bottom: 93/1358
  38487. }
  38488. },
  38489. },
  38490. [
  38491. {
  38492. name: "Normal",
  38493. height: math.unit(11, "meters"),
  38494. default: true
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38500. {
  38501. front: {
  38502. height: math.unit(5 + 8/12, "feet"),
  38503. name: "Front",
  38504. image: {
  38505. source: "./media/characters/haruka/front.svg",
  38506. extra: 2012/1952,
  38507. bottom: 0/2012
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Normal",
  38514. height: math.unit(5 + 8/12, "feet"),
  38515. default: true
  38516. },
  38517. ]
  38518. ))
  38519. characterMakers.push(() => makeCharacter(
  38520. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38521. {
  38522. back: {
  38523. height: math.unit(9, "feet"),
  38524. name: "Back",
  38525. image: {
  38526. source: "./media/characters/vivian-sylveon/back.svg",
  38527. extra: 1853/1714,
  38528. bottom: 0/1853
  38529. }
  38530. },
  38531. },
  38532. [
  38533. {
  38534. name: "Normal",
  38535. height: math.unit(9, "feet"),
  38536. default: true
  38537. },
  38538. {
  38539. name: "Macro",
  38540. height: math.unit(500, "feet")
  38541. },
  38542. {
  38543. name: "Megamacro",
  38544. height: math.unit(600, "miles")
  38545. },
  38546. {
  38547. name: "Gigamacro",
  38548. height: math.unit(30000, "miles")
  38549. },
  38550. ]
  38551. ))
  38552. characterMakers.push(() => makeCharacter(
  38553. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38554. {
  38555. anthro: {
  38556. height: math.unit(5 + 10/12, "feet"),
  38557. weight: math.unit(100, "lb"),
  38558. name: "Anthro",
  38559. image: {
  38560. source: "./media/characters/daiki/anthro.svg",
  38561. extra: 1115/1027,
  38562. bottom: 69/1184
  38563. }
  38564. },
  38565. feral: {
  38566. height: math.unit(200, "feet"),
  38567. name: "Feral",
  38568. image: {
  38569. source: "./media/characters/daiki/feral.svg",
  38570. extra: 1256/313,
  38571. bottom: 39/1295
  38572. }
  38573. },
  38574. feralHead: {
  38575. height: math.unit(171, "feet"),
  38576. name: "Feral Head",
  38577. image: {
  38578. source: "./media/characters/daiki/feral-head.svg"
  38579. }
  38580. },
  38581. manaDragon: {
  38582. height: math.unit(170, "meters"),
  38583. name: "Mana-dragon",
  38584. image: {
  38585. source: "./media/characters/daiki/mana-dragon.svg",
  38586. extra: 763/420,
  38587. bottom: 97/860
  38588. }
  38589. },
  38590. },
  38591. [
  38592. {
  38593. name: "Normal",
  38594. height: math.unit(5 + 10/12, "feet"),
  38595. default: true
  38596. },
  38597. ]
  38598. ))
  38599. characterMakers.push(() => makeCharacter(
  38600. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38601. {
  38602. fullyEquippedFront: {
  38603. height: math.unit(3 + 1/12, "feet"),
  38604. weight: math.unit(24, "lb"),
  38605. name: "Fully Equipped (Front)",
  38606. image: {
  38607. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38608. extra: 687/605,
  38609. bottom: 18/705
  38610. }
  38611. },
  38612. fullyEquippedBack: {
  38613. height: math.unit(3 + 1/12, "feet"),
  38614. weight: math.unit(24, "lb"),
  38615. name: "Fully Equipped (Back)",
  38616. image: {
  38617. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38618. extra: 689/590,
  38619. bottom: 18/707
  38620. }
  38621. },
  38622. dailyWear: {
  38623. height: math.unit(3 + 1/12, "feet"),
  38624. weight: math.unit(24, "lb"),
  38625. name: "Daily Wear",
  38626. image: {
  38627. source: "./media/characters/tea-spot/daily-wear.svg",
  38628. extra: 701/620,
  38629. bottom: 21/722
  38630. }
  38631. },
  38632. maidWork: {
  38633. height: math.unit(3 + 1/12, "feet"),
  38634. weight: math.unit(24, "lb"),
  38635. name: "Maid Work",
  38636. image: {
  38637. source: "./media/characters/tea-spot/maid-work.svg",
  38638. extra: 693/609,
  38639. bottom: 15/708
  38640. }
  38641. },
  38642. },
  38643. [
  38644. {
  38645. name: "Normal",
  38646. height: math.unit(3 + 1/12, "feet"),
  38647. default: true
  38648. },
  38649. ]
  38650. ))
  38651. characterMakers.push(() => makeCharacter(
  38652. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38653. {
  38654. front: {
  38655. height: math.unit(175, "cm"),
  38656. weight: math.unit(75, "kg"),
  38657. name: "Front",
  38658. image: {
  38659. source: "./media/characters/chee/front.svg",
  38660. extra: 1796/1740,
  38661. bottom: 40/1836
  38662. }
  38663. },
  38664. },
  38665. [
  38666. {
  38667. name: "Micro-Micro",
  38668. height: math.unit(1, "nm")
  38669. },
  38670. {
  38671. name: "Micro-erst",
  38672. height: math.unit(1, "micrometer")
  38673. },
  38674. {
  38675. name: "Micro-er",
  38676. height: math.unit(1, "cm")
  38677. },
  38678. {
  38679. name: "Normal",
  38680. height: math.unit(175, "cm"),
  38681. default: true
  38682. },
  38683. {
  38684. name: "Macro",
  38685. height: math.unit(100, "m")
  38686. },
  38687. {
  38688. name: "Macro-er",
  38689. height: math.unit(1, "km")
  38690. },
  38691. {
  38692. name: "Macro-erst",
  38693. height: math.unit(10, "km")
  38694. },
  38695. {
  38696. name: "Macro-Macro",
  38697. height: math.unit(100, "km")
  38698. },
  38699. ]
  38700. ))
  38701. characterMakers.push(() => makeCharacter(
  38702. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38703. {
  38704. front: {
  38705. height: math.unit(11 + 9/12, "feet"),
  38706. weight: math.unit(935, "lb"),
  38707. name: "Front",
  38708. image: {
  38709. source: "./media/characters/kingsley/front.svg",
  38710. extra: 1803/1674,
  38711. bottom: 127/1930
  38712. }
  38713. },
  38714. frontNude: {
  38715. height: math.unit(11 + 9/12, "feet"),
  38716. weight: math.unit(935, "lb"),
  38717. name: "Front (Nude)",
  38718. image: {
  38719. source: "./media/characters/kingsley/front-nude.svg",
  38720. extra: 1803/1674,
  38721. bottom: 127/1930
  38722. }
  38723. },
  38724. },
  38725. [
  38726. {
  38727. name: "Normal",
  38728. height: math.unit(11 + 9/12, "feet"),
  38729. default: true
  38730. },
  38731. ]
  38732. ))
  38733. characterMakers.push(() => makeCharacter(
  38734. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38735. {
  38736. side: {
  38737. height: math.unit(9, "feet"),
  38738. name: "Side",
  38739. image: {
  38740. source: "./media/characters/rymel/side.svg",
  38741. extra: 792/469,
  38742. bottom: 121/913
  38743. }
  38744. },
  38745. maw: {
  38746. height: math.unit(2.4, "meters"),
  38747. name: "Maw",
  38748. image: {
  38749. source: "./media/characters/rymel/maw.svg"
  38750. }
  38751. },
  38752. },
  38753. [
  38754. {
  38755. name: "House Drake",
  38756. height: math.unit(2, "feet")
  38757. },
  38758. {
  38759. name: "Reduced",
  38760. height: math.unit(4.5, "feet")
  38761. },
  38762. {
  38763. name: "Normal",
  38764. height: math.unit(9, "feet"),
  38765. default: true
  38766. },
  38767. ]
  38768. ))
  38769. characterMakers.push(() => makeCharacter(
  38770. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38771. {
  38772. front: {
  38773. height: math.unit(1.74, "meters"),
  38774. weight: math.unit(55, "kg"),
  38775. name: "Front",
  38776. image: {
  38777. source: "./media/characters/rubus/front.svg",
  38778. extra: 1894/1742,
  38779. bottom: 44/1938
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Normal",
  38786. height: math.unit(1.74, "meters"),
  38787. default: true
  38788. },
  38789. ]
  38790. ))
  38791. characterMakers.push(() => makeCharacter(
  38792. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38793. {
  38794. front: {
  38795. height: math.unit(5 + 2/12, "feet"),
  38796. weight: math.unit(112, "lb"),
  38797. name: "Front",
  38798. image: {
  38799. source: "./media/characters/cassie-kingston/front.svg",
  38800. extra: 1438/1390,
  38801. bottom: 47/1485
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(5 + 2/12, "feet"),
  38809. default: true
  38810. },
  38811. {
  38812. name: "Macro",
  38813. height: math.unit(128, "feet")
  38814. },
  38815. {
  38816. name: "Megamacro",
  38817. height: math.unit(2.56, "miles")
  38818. },
  38819. ]
  38820. ))
  38821. characterMakers.push(() => makeCharacter(
  38822. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38823. {
  38824. front: {
  38825. height: math.unit(7, "feet"),
  38826. name: "Front",
  38827. image: {
  38828. source: "./media/characters/fox/front.svg",
  38829. extra: 1798/1703,
  38830. bottom: 55/1853
  38831. }
  38832. },
  38833. back: {
  38834. height: math.unit(7, "feet"),
  38835. name: "Back",
  38836. image: {
  38837. source: "./media/characters/fox/back.svg",
  38838. extra: 1748/1649,
  38839. bottom: 32/1780
  38840. }
  38841. },
  38842. head: {
  38843. height: math.unit(1.95, "feet"),
  38844. name: "Head",
  38845. image: {
  38846. source: "./media/characters/fox/head.svg"
  38847. }
  38848. },
  38849. dick: {
  38850. height: math.unit(1.33, "feet"),
  38851. name: "Dick",
  38852. image: {
  38853. source: "./media/characters/fox/dick.svg"
  38854. }
  38855. },
  38856. foot: {
  38857. height: math.unit(1, "feet"),
  38858. name: "Foot",
  38859. image: {
  38860. source: "./media/characters/fox/foot.svg"
  38861. }
  38862. },
  38863. paw: {
  38864. height: math.unit(0.92, "feet"),
  38865. name: "Paw",
  38866. image: {
  38867. source: "./media/characters/fox/paw.svg"
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Small",
  38874. height: math.unit(3, "inches")
  38875. },
  38876. {
  38877. name: "\"Realistic\"",
  38878. height: math.unit(7, "feet")
  38879. },
  38880. {
  38881. name: "Normal",
  38882. height: math.unit(150, "feet"),
  38883. default: true
  38884. },
  38885. {
  38886. name: "BIG",
  38887. height: math.unit(1200, "feet")
  38888. },
  38889. {
  38890. name: "👀",
  38891. height: math.unit(5, "miles")
  38892. },
  38893. {
  38894. name: "👀👀👀",
  38895. height: math.unit(64, "miles")
  38896. },
  38897. ]
  38898. ))
  38899. characterMakers.push(() => makeCharacter(
  38900. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38901. {
  38902. front: {
  38903. height: math.unit(625, "feet"),
  38904. name: "Front",
  38905. image: {
  38906. source: "./media/characters/asonja-rossa/front.svg",
  38907. extra: 1833/1686,
  38908. bottom: 24/1857
  38909. }
  38910. },
  38911. back: {
  38912. height: math.unit(625, "feet"),
  38913. name: "Back",
  38914. image: {
  38915. source: "./media/characters/asonja-rossa/back.svg",
  38916. extra: 1852/1753,
  38917. bottom: 26/1878
  38918. }
  38919. },
  38920. },
  38921. [
  38922. {
  38923. name: "Macro",
  38924. height: math.unit(625, "feet"),
  38925. default: true
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38931. {
  38932. side: {
  38933. height: math.unit(8, "feet"),
  38934. name: "Side",
  38935. image: {
  38936. source: "./media/characters/rezukii/side.svg",
  38937. extra: 979/542,
  38938. bottom: 87/1066
  38939. }
  38940. },
  38941. sitting: {
  38942. height: math.unit(14.6, "feet"),
  38943. name: "Sitting",
  38944. image: {
  38945. source: "./media/characters/rezukii/sitting.svg",
  38946. extra: 1023/813,
  38947. bottom: 45/1068
  38948. }
  38949. },
  38950. },
  38951. [
  38952. {
  38953. name: "Tiny",
  38954. height: math.unit(2, "feet")
  38955. },
  38956. {
  38957. name: "Smol",
  38958. height: math.unit(4, "feet")
  38959. },
  38960. {
  38961. name: "Normal",
  38962. height: math.unit(8, "feet"),
  38963. default: true
  38964. },
  38965. {
  38966. name: "Big",
  38967. height: math.unit(12, "feet")
  38968. },
  38969. {
  38970. name: "Macro",
  38971. height: math.unit(30, "feet")
  38972. },
  38973. ]
  38974. ))
  38975. characterMakers.push(() => makeCharacter(
  38976. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38977. {
  38978. front: {
  38979. height: math.unit(14, "feet"),
  38980. weight: math.unit(9.5, "tonnes"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/dawnheart/front.svg",
  38984. extra: 2792/2675,
  38985. bottom: 64/2856
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Normal",
  38992. height: math.unit(14, "feet"),
  38993. default: true
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38999. {
  39000. front: {
  39001. height: math.unit(1.7, "m"),
  39002. name: "Front",
  39003. image: {
  39004. source: "./media/characters/gladi/front.svg",
  39005. extra: 1460/1362,
  39006. bottom: 19/1479
  39007. }
  39008. },
  39009. back: {
  39010. height: math.unit(1.7, "m"),
  39011. name: "Back",
  39012. image: {
  39013. source: "./media/characters/gladi/back.svg",
  39014. extra: 1459/1357,
  39015. bottom: 12/1471
  39016. }
  39017. },
  39018. feral: {
  39019. height: math.unit(2.05, "m"),
  39020. name: "Feral",
  39021. image: {
  39022. source: "./media/characters/gladi/feral.svg",
  39023. extra: 821/557,
  39024. bottom: 91/912
  39025. }
  39026. },
  39027. },
  39028. [
  39029. {
  39030. name: "Shortest",
  39031. height: math.unit(70, "cm")
  39032. },
  39033. {
  39034. name: "Normal",
  39035. height: math.unit(1.7, "m")
  39036. },
  39037. {
  39038. name: "Macro",
  39039. height: math.unit(10, "m"),
  39040. default: true
  39041. },
  39042. {
  39043. name: "Tallest",
  39044. height: math.unit(200, "m")
  39045. },
  39046. ]
  39047. ))
  39048. characterMakers.push(() => makeCharacter(
  39049. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39050. {
  39051. front: {
  39052. height: math.unit(5 + 7/12, "feet"),
  39053. weight: math.unit(2, "tons"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/erdno/front.svg",
  39057. extra: 1234/1129,
  39058. bottom: 35/1269
  39059. }
  39060. },
  39061. angled: {
  39062. height: math.unit(5 + 7/12, "feet"),
  39063. weight: math.unit(2, "tons"),
  39064. name: "Angled",
  39065. image: {
  39066. source: "./media/characters/erdno/angled.svg",
  39067. extra: 1185/1139,
  39068. bottom: 36/1221
  39069. }
  39070. },
  39071. side: {
  39072. height: math.unit(5 + 7/12, "feet"),
  39073. weight: math.unit(2, "tons"),
  39074. name: "Side",
  39075. image: {
  39076. source: "./media/characters/erdno/side.svg",
  39077. extra: 1191/1144,
  39078. bottom: 40/1231
  39079. }
  39080. },
  39081. back: {
  39082. height: math.unit(5 + 7/12, "feet"),
  39083. weight: math.unit(2, "tons"),
  39084. name: "Back",
  39085. image: {
  39086. source: "./media/characters/erdno/back.svg",
  39087. extra: 1202/1146,
  39088. bottom: 17/1219
  39089. }
  39090. },
  39091. frontNsfw: {
  39092. height: math.unit(5 + 7/12, "feet"),
  39093. weight: math.unit(2, "tons"),
  39094. name: "Front (NSFW)",
  39095. image: {
  39096. source: "./media/characters/erdno/front-nsfw.svg",
  39097. extra: 1234/1129,
  39098. bottom: 35/1269
  39099. }
  39100. },
  39101. angledNsfw: {
  39102. height: math.unit(5 + 7/12, "feet"),
  39103. weight: math.unit(2, "tons"),
  39104. name: "Angled (NSFW)",
  39105. image: {
  39106. source: "./media/characters/erdno/angled-nsfw.svg",
  39107. extra: 1185/1139,
  39108. bottom: 36/1221
  39109. }
  39110. },
  39111. sideNsfw: {
  39112. height: math.unit(5 + 7/12, "feet"),
  39113. weight: math.unit(2, "tons"),
  39114. name: "Side (NSFW)",
  39115. image: {
  39116. source: "./media/characters/erdno/side-nsfw.svg",
  39117. extra: 1191/1144,
  39118. bottom: 40/1231
  39119. }
  39120. },
  39121. backNsfw: {
  39122. height: math.unit(5 + 7/12, "feet"),
  39123. weight: math.unit(2, "tons"),
  39124. name: "Back (NSFW)",
  39125. image: {
  39126. source: "./media/characters/erdno/back-nsfw.svg",
  39127. extra: 1202/1146,
  39128. bottom: 17/1219
  39129. }
  39130. },
  39131. frontHyper: {
  39132. height: math.unit(5 + 7/12, "feet"),
  39133. weight: math.unit(2, "tons"),
  39134. name: "Front (Hyper)",
  39135. image: {
  39136. source: "./media/characters/erdno/front-hyper.svg",
  39137. extra: 1298/1136,
  39138. bottom: 35/1333
  39139. }
  39140. },
  39141. },
  39142. [
  39143. {
  39144. name: "Normal",
  39145. height: math.unit(5 + 7/12, "feet"),
  39146. default: true
  39147. },
  39148. {
  39149. name: "Big",
  39150. height: math.unit(5.7, "meters")
  39151. },
  39152. {
  39153. name: "Macro",
  39154. height: math.unit(5.7, "kilometers")
  39155. },
  39156. {
  39157. name: "Megamacro",
  39158. height: math.unit(5.7, "earths")
  39159. },
  39160. ]
  39161. ))
  39162. characterMakers.push(() => makeCharacter(
  39163. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39164. {
  39165. front: {
  39166. height: math.unit(5 + 10/12, "feet"),
  39167. weight: math.unit(150, "lb"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/jamie/front.svg",
  39171. extra: 1908/1768,
  39172. bottom: 19/1927
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Minimum",
  39179. height: math.unit(2, "cm")
  39180. },
  39181. {
  39182. name: "Micro",
  39183. height: math.unit(3, "inches")
  39184. },
  39185. {
  39186. name: "Normal",
  39187. height: math.unit(5 + 10/12, "feet"),
  39188. default: true
  39189. },
  39190. {
  39191. name: "Macro",
  39192. height: math.unit(150, "feet")
  39193. },
  39194. {
  39195. name: "Megamacro",
  39196. height: math.unit(10000, "m")
  39197. },
  39198. ]
  39199. ))
  39200. characterMakers.push(() => makeCharacter(
  39201. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39202. {
  39203. front: {
  39204. height: math.unit(2, "meters"),
  39205. weight: math.unit(100, "kg"),
  39206. name: "Front",
  39207. image: {
  39208. source: "./media/characters/shiron/front.svg",
  39209. extra: 2103/1985,
  39210. bottom: 98/2201
  39211. }
  39212. },
  39213. back: {
  39214. height: math.unit(2, "meters"),
  39215. weight: math.unit(100, "kg"),
  39216. name: "Back",
  39217. image: {
  39218. source: "./media/characters/shiron/back.svg",
  39219. extra: 2110/2015,
  39220. bottom: 89/2199
  39221. }
  39222. },
  39223. hand: {
  39224. height: math.unit(0.96, "feet"),
  39225. name: "Hand",
  39226. image: {
  39227. source: "./media/characters/shiron/hand.svg"
  39228. }
  39229. },
  39230. foot: {
  39231. height: math.unit(1.464, "feet"),
  39232. name: "Foot",
  39233. image: {
  39234. source: "./media/characters/shiron/foot.svg"
  39235. }
  39236. },
  39237. },
  39238. [
  39239. {
  39240. name: "Normal",
  39241. height: math.unit(2, "meters")
  39242. },
  39243. {
  39244. name: "Macro",
  39245. height: math.unit(500, "meters"),
  39246. default: true
  39247. },
  39248. {
  39249. name: "Megamacro",
  39250. height: math.unit(20, "km")
  39251. },
  39252. ]
  39253. ))
  39254. characterMakers.push(() => makeCharacter(
  39255. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39256. {
  39257. front: {
  39258. height: math.unit(6, "feet"),
  39259. name: "Front",
  39260. image: {
  39261. source: "./media/characters/sam/front.svg",
  39262. extra: 849/826,
  39263. bottom: 19/868
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(6, "feet"),
  39271. default: true
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(8 + 4/12, "feet"),
  39280. weight: math.unit(122, "kg"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/namori-kurogawa/front.svg",
  39284. extra: 1894/1576,
  39285. bottom: 34/1928
  39286. }
  39287. },
  39288. },
  39289. [
  39290. {
  39291. name: "Normal",
  39292. height: math.unit(8 + 4/12, "feet"),
  39293. default: true
  39294. },
  39295. ]
  39296. ))
  39297. characterMakers.push(() => makeCharacter(
  39298. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39299. {
  39300. front: {
  39301. height: math.unit(9, "feet"),
  39302. weight: math.unit(621, "lb"),
  39303. name: "Front",
  39304. image: {
  39305. source: "./media/characters/unmru/front.svg",
  39306. extra: 1853/1747,
  39307. bottom: 73/1926
  39308. }
  39309. },
  39310. side: {
  39311. height: math.unit(9, "feet"),
  39312. weight: math.unit(621, "lb"),
  39313. name: "Side",
  39314. image: {
  39315. source: "./media/characters/unmru/side.svg",
  39316. extra: 1781/1671,
  39317. bottom: 127/1908
  39318. }
  39319. },
  39320. back: {
  39321. height: math.unit(9, "feet"),
  39322. weight: math.unit(621, "lb"),
  39323. name: "Back",
  39324. image: {
  39325. source: "./media/characters/unmru/back.svg",
  39326. extra: 1894/1765,
  39327. bottom: 75/1969
  39328. }
  39329. },
  39330. dick: {
  39331. height: math.unit(3, "feet"),
  39332. weight: math.unit(35, "lb"),
  39333. name: "Dick",
  39334. image: {
  39335. source: "./media/characters/unmru/dick.svg"
  39336. }
  39337. },
  39338. },
  39339. [
  39340. {
  39341. name: "Normal",
  39342. height: math.unit(9, "feet")
  39343. },
  39344. {
  39345. name: "Natural",
  39346. height: math.unit(27, "feet"),
  39347. default: true
  39348. },
  39349. {
  39350. name: "Giant",
  39351. height: math.unit(90, "feet")
  39352. },
  39353. {
  39354. name: "Kaiju",
  39355. height: math.unit(270, "feet")
  39356. },
  39357. {
  39358. name: "Macro",
  39359. height: math.unit(900, "feet")
  39360. },
  39361. {
  39362. name: "Macro+",
  39363. height: math.unit(2700, "feet")
  39364. },
  39365. {
  39366. name: "Megamacro",
  39367. height: math.unit(9000, "feet")
  39368. },
  39369. {
  39370. name: "City-Crushing",
  39371. height: math.unit(27000, "feet")
  39372. },
  39373. {
  39374. name: "Mountain-Mashing",
  39375. height: math.unit(90000, "feet")
  39376. },
  39377. {
  39378. name: "Earth-Eclipsing",
  39379. height: math.unit(2.7e8, "feet")
  39380. },
  39381. {
  39382. name: "Sol-Swallowing",
  39383. height: math.unit(9e10, "feet")
  39384. },
  39385. {
  39386. name: "Majoris-Munching",
  39387. height: math.unit(2.7e13, "feet")
  39388. },
  39389. ]
  39390. ))
  39391. characterMakers.push(() => makeCharacter(
  39392. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39393. {
  39394. front: {
  39395. height: math.unit(1, "inch"),
  39396. name: "Front",
  39397. image: {
  39398. source: "./media/characters/squeaks-mouse/front.svg",
  39399. extra: 352/308,
  39400. bottom: 25/377
  39401. }
  39402. },
  39403. },
  39404. [
  39405. {
  39406. name: "Micro",
  39407. height: math.unit(1, "inch"),
  39408. default: true
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39414. {
  39415. side: {
  39416. height: math.unit(35, "feet"),
  39417. name: "Side",
  39418. image: {
  39419. source: "./media/characters/sayko/side.svg",
  39420. extra: 1697/1021,
  39421. bottom: 82/1779
  39422. }
  39423. },
  39424. head: {
  39425. height: math.unit(16, "feet"),
  39426. name: "Head",
  39427. image: {
  39428. source: "./media/characters/sayko/head.svg"
  39429. }
  39430. },
  39431. forepaw: {
  39432. height: math.unit(7.85, "feet"),
  39433. name: "Forepaw",
  39434. image: {
  39435. source: "./media/characters/sayko/forepaw.svg"
  39436. }
  39437. },
  39438. hindpaw: {
  39439. height: math.unit(8.8, "feet"),
  39440. name: "Hindpaw",
  39441. image: {
  39442. source: "./media/characters/sayko/hindpaw.svg"
  39443. }
  39444. },
  39445. },
  39446. [
  39447. {
  39448. name: "Normal",
  39449. height: math.unit(35, "feet"),
  39450. default: true
  39451. },
  39452. {
  39453. name: "Colossus",
  39454. height: math.unit(100, "meters")
  39455. },
  39456. {
  39457. name: "\"Small\" Deity",
  39458. height: math.unit(1, "km")
  39459. },
  39460. {
  39461. name: "\"Large\" Deity",
  39462. height: math.unit(15, "km")
  39463. },
  39464. ]
  39465. ))
  39466. characterMakers.push(() => makeCharacter(
  39467. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39468. {
  39469. front: {
  39470. height: math.unit(6, "feet"),
  39471. weight: math.unit(250, "lb"),
  39472. name: "Front",
  39473. image: {
  39474. source: "./media/characters/mukiro/front.svg",
  39475. extra: 1368/1310,
  39476. bottom: 34/1402
  39477. }
  39478. },
  39479. },
  39480. [
  39481. {
  39482. name: "Normal",
  39483. height: math.unit(6, "feet"),
  39484. default: true
  39485. },
  39486. ]
  39487. ))
  39488. characterMakers.push(() => makeCharacter(
  39489. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39490. {
  39491. front: {
  39492. height: math.unit(12 + 4/12, "feet"),
  39493. name: "Front",
  39494. image: {
  39495. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39496. extra: 1346/1311,
  39497. bottom: 65/1411
  39498. }
  39499. },
  39500. },
  39501. [
  39502. {
  39503. name: "Base",
  39504. height: math.unit(12 + 4/12, "feet"),
  39505. default: true
  39506. },
  39507. {
  39508. name: "Macro",
  39509. height: math.unit(150, "feet")
  39510. },
  39511. {
  39512. name: "Mega",
  39513. height: math.unit(2, "miles")
  39514. },
  39515. {
  39516. name: "Demi God",
  39517. height: math.unit(4, "AU")
  39518. },
  39519. {
  39520. name: "God Size",
  39521. height: math.unit(1, "universe")
  39522. },
  39523. ]
  39524. ))
  39525. characterMakers.push(() => makeCharacter(
  39526. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39527. {
  39528. front: {
  39529. height: math.unit(3 + 3/12, "feet"),
  39530. weight: math.unit(88, "lb"),
  39531. name: "Front",
  39532. image: {
  39533. source: "./media/characters/trey/front.svg",
  39534. extra: 1815/1509,
  39535. bottom: 60/1875
  39536. }
  39537. },
  39538. },
  39539. [
  39540. {
  39541. name: "Normal",
  39542. height: math.unit(3 + 3/12, "feet"),
  39543. default: true
  39544. },
  39545. ]
  39546. ))
  39547. characterMakers.push(() => makeCharacter(
  39548. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39549. {
  39550. front: {
  39551. height: math.unit(4, "meters"),
  39552. name: "Front",
  39553. image: {
  39554. source: "./media/characters/adelonda/front.svg",
  39555. extra: 1077/982,
  39556. bottom: 39/1116
  39557. }
  39558. },
  39559. back: {
  39560. height: math.unit(4, "meters"),
  39561. name: "Back",
  39562. image: {
  39563. source: "./media/characters/adelonda/back.svg",
  39564. extra: 1105/1003,
  39565. bottom: 25/1130
  39566. }
  39567. },
  39568. feral: {
  39569. height: math.unit(40/1.5, "meters"),
  39570. name: "Feral",
  39571. image: {
  39572. source: "./media/characters/adelonda/feral.svg",
  39573. extra: 597/271,
  39574. bottom: 387/984
  39575. }
  39576. },
  39577. },
  39578. [
  39579. {
  39580. name: "Normal",
  39581. height: math.unit(4, "meters"),
  39582. default: true
  39583. },
  39584. ]
  39585. ))
  39586. characterMakers.push(() => makeCharacter(
  39587. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39588. {
  39589. front: {
  39590. height: math.unit(8 + 4/12, "feet"),
  39591. weight: math.unit(670, "lb"),
  39592. name: "Front",
  39593. image: {
  39594. source: "./media/characters/acadiel/front.svg",
  39595. extra: 1901/1595,
  39596. bottom: 142/2043
  39597. }
  39598. },
  39599. },
  39600. [
  39601. {
  39602. name: "Normal",
  39603. height: math.unit(8 + 4/12, "feet"),
  39604. default: true
  39605. },
  39606. {
  39607. name: "Macro",
  39608. height: math.unit(200, "feet")
  39609. },
  39610. ]
  39611. ))
  39612. characterMakers.push(() => makeCharacter(
  39613. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39614. {
  39615. front: {
  39616. height: math.unit(6 + 2/12, "feet"),
  39617. weight: math.unit(185, "lb"),
  39618. name: "Front",
  39619. image: {
  39620. source: "./media/characters/kayne-ein/front.svg",
  39621. extra: 1780/1560,
  39622. bottom: 81/1861
  39623. }
  39624. },
  39625. },
  39626. [
  39627. {
  39628. name: "Normal",
  39629. height: math.unit(6 + 2/12, "feet"),
  39630. default: true
  39631. },
  39632. {
  39633. name: "Transformation Stage",
  39634. height: math.unit(15, "feet")
  39635. },
  39636. {
  39637. name: "Macro",
  39638. height: math.unit(150, "feet")
  39639. },
  39640. {
  39641. name: "Earth's Shadow",
  39642. height: math.unit(6200, "miles")
  39643. },
  39644. {
  39645. name: "Universal Demon",
  39646. height: math.unit(28e9, "parsecs")
  39647. },
  39648. {
  39649. name: "Multiverse God",
  39650. height: math.unit(3, "multiverses")
  39651. },
  39652. ]
  39653. ))
  39654. characterMakers.push(() => makeCharacter(
  39655. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39656. {
  39657. front: {
  39658. height: math.unit(5 + 5/12, "feet"),
  39659. name: "Front",
  39660. image: {
  39661. source: "./media/characters/fawn/front.svg",
  39662. extra: 1873/1731,
  39663. bottom: 95/1968
  39664. }
  39665. },
  39666. back: {
  39667. height: math.unit(5 + 5/12, "feet"),
  39668. name: "Back",
  39669. image: {
  39670. source: "./media/characters/fawn/back.svg",
  39671. extra: 1813/1700,
  39672. bottom: 14/1827
  39673. }
  39674. },
  39675. hoof: {
  39676. height: math.unit(1.45, "feet"),
  39677. name: "Hoof",
  39678. image: {
  39679. source: "./media/characters/fawn/hoof.svg"
  39680. }
  39681. },
  39682. },
  39683. [
  39684. {
  39685. name: "Normal",
  39686. height: math.unit(5 + 5/12, "feet"),
  39687. default: true
  39688. },
  39689. ]
  39690. ))
  39691. characterMakers.push(() => makeCharacter(
  39692. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39693. {
  39694. front: {
  39695. height: math.unit(2 + 5/12, "feet"),
  39696. name: "Front",
  39697. image: {
  39698. source: "./media/characters/orion/front.svg",
  39699. extra: 1366/1304,
  39700. bottom: 43/1409
  39701. }
  39702. },
  39703. paw: {
  39704. height: math.unit(0.52, "feet"),
  39705. name: "Paw",
  39706. image: {
  39707. source: "./media/characters/orion/paw.svg"
  39708. }
  39709. },
  39710. },
  39711. [
  39712. {
  39713. name: "Normal",
  39714. height: math.unit(2 + 5/12, "feet"),
  39715. default: true
  39716. },
  39717. ]
  39718. ))
  39719. characterMakers.push(() => makeCharacter(
  39720. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39721. {
  39722. front: {
  39723. height: math.unit(5 + 10/12, "feet"),
  39724. name: "Front",
  39725. image: {
  39726. source: "./media/characters/vera/front.svg",
  39727. extra: 1680/1575,
  39728. bottom: 49/1729
  39729. }
  39730. },
  39731. back: {
  39732. height: math.unit(5 + 10/12, "feet"),
  39733. name: "Back",
  39734. image: {
  39735. source: "./media/characters/vera/back.svg",
  39736. extra: 1700/1588,
  39737. bottom: 18/1718
  39738. }
  39739. },
  39740. arcanine: {
  39741. height: math.unit(6 + 8/12, "feet"),
  39742. name: "Arcanine",
  39743. image: {
  39744. source: "./media/characters/vera/arcanine.svg",
  39745. extra: 1590/1511,
  39746. bottom: 71/1661
  39747. }
  39748. },
  39749. maw: {
  39750. height: math.unit(0.82, "feet"),
  39751. name: "Maw",
  39752. image: {
  39753. source: "./media/characters/vera/maw.svg"
  39754. }
  39755. },
  39756. mawArcanine: {
  39757. height: math.unit(0.97, "feet"),
  39758. name: "Maw (Arcanine)",
  39759. image: {
  39760. source: "./media/characters/vera/maw-arcanine.svg"
  39761. }
  39762. },
  39763. paw: {
  39764. height: math.unit(0.75, "feet"),
  39765. name: "Paw",
  39766. image: {
  39767. source: "./media/characters/vera/paw.svg"
  39768. }
  39769. },
  39770. pawprint: {
  39771. height: math.unit(0.52, "feet"),
  39772. name: "Pawprint",
  39773. image: {
  39774. source: "./media/characters/vera/pawprint.svg"
  39775. }
  39776. },
  39777. },
  39778. [
  39779. {
  39780. name: "Normal",
  39781. height: math.unit(5 + 10/12, "feet"),
  39782. default: true
  39783. },
  39784. {
  39785. name: "Macro",
  39786. height: math.unit(75, "feet")
  39787. },
  39788. ]
  39789. ))
  39790. characterMakers.push(() => makeCharacter(
  39791. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39792. {
  39793. front: {
  39794. height: math.unit(4, "feet"),
  39795. weight: math.unit(40, "lb"),
  39796. name: "Front",
  39797. image: {
  39798. source: "./media/characters/orvan-rabbit/front.svg",
  39799. extra: 1896/1642,
  39800. bottom: 29/1925
  39801. }
  39802. },
  39803. },
  39804. [
  39805. {
  39806. name: "Normal",
  39807. height: math.unit(4, "feet"),
  39808. default: true
  39809. },
  39810. ]
  39811. ))
  39812. characterMakers.push(() => makeCharacter(
  39813. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39814. {
  39815. front: {
  39816. height: math.unit(6, "feet"),
  39817. weight: math.unit(168, "lb"),
  39818. name: "Front",
  39819. image: {
  39820. source: "./media/characters/lisa/front.svg",
  39821. extra: 2065/1867,
  39822. bottom: 46/2111
  39823. }
  39824. },
  39825. back: {
  39826. height: math.unit(6, "feet"),
  39827. weight: math.unit(168, "lb"),
  39828. name: "Back",
  39829. image: {
  39830. source: "./media/characters/lisa/back.svg",
  39831. extra: 1982/1838,
  39832. bottom: 29/2011
  39833. }
  39834. },
  39835. maw: {
  39836. height: math.unit(0.81, "feet"),
  39837. name: "Maw",
  39838. image: {
  39839. source: "./media/characters/lisa/maw.svg"
  39840. }
  39841. },
  39842. paw: {
  39843. height: math.unit(0.9, "feet"),
  39844. name: "Paw",
  39845. image: {
  39846. source: "./media/characters/lisa/paw.svg"
  39847. }
  39848. },
  39849. caribousune: {
  39850. height: math.unit(7 + 2/12, "feet"),
  39851. weight: math.unit(268, "lb"),
  39852. name: "Caribousune",
  39853. image: {
  39854. source: "./media/characters/lisa/caribousune.svg",
  39855. extra: 1843/1633,
  39856. bottom: 29/1872
  39857. }
  39858. },
  39859. frontCaribousune: {
  39860. height: math.unit(7 + 2/12, "feet"),
  39861. weight: math.unit(268, "lb"),
  39862. name: "Front (Caribousune)",
  39863. image: {
  39864. source: "./media/characters/lisa/front-caribousune.svg",
  39865. extra: 1818/1638,
  39866. bottom: 52/1870
  39867. }
  39868. },
  39869. sideCaribousune: {
  39870. height: math.unit(7 + 2/12, "feet"),
  39871. weight: math.unit(268, "lb"),
  39872. name: "Side (Caribousune)",
  39873. image: {
  39874. source: "./media/characters/lisa/side-caribousune.svg",
  39875. extra: 1851/1635,
  39876. bottom: 16/1867
  39877. }
  39878. },
  39879. backCaribousune: {
  39880. height: math.unit(7 + 2/12, "feet"),
  39881. weight: math.unit(268, "lb"),
  39882. name: "Back (Caribousune)",
  39883. image: {
  39884. source: "./media/characters/lisa/back-caribousune.svg",
  39885. extra: 1801/1604,
  39886. bottom: 44/1845
  39887. }
  39888. },
  39889. caribou: {
  39890. height: math.unit(7 + 2/12, "feet"),
  39891. weight: math.unit(268, "lb"),
  39892. name: "Caribou",
  39893. image: {
  39894. source: "./media/characters/lisa/caribou.svg",
  39895. extra: 1843/1633,
  39896. bottom: 29/1872
  39897. }
  39898. },
  39899. frontCaribou: {
  39900. height: math.unit(7 + 2/12, "feet"),
  39901. weight: math.unit(268, "lb"),
  39902. name: "Front (Caribou)",
  39903. image: {
  39904. source: "./media/characters/lisa/front-caribou.svg",
  39905. extra: 1818/1638,
  39906. bottom: 52/1870
  39907. }
  39908. },
  39909. sideCaribou: {
  39910. height: math.unit(7 + 2/12, "feet"),
  39911. weight: math.unit(268, "lb"),
  39912. name: "Side (Caribou)",
  39913. image: {
  39914. source: "./media/characters/lisa/side-caribou.svg",
  39915. extra: 1851/1635,
  39916. bottom: 16/1867
  39917. }
  39918. },
  39919. backCaribou: {
  39920. height: math.unit(7 + 2/12, "feet"),
  39921. weight: math.unit(268, "lb"),
  39922. name: "Back (Caribou)",
  39923. image: {
  39924. source: "./media/characters/lisa/back-caribou.svg",
  39925. extra: 1801/1604,
  39926. bottom: 44/1845
  39927. }
  39928. },
  39929. mawCaribou: {
  39930. height: math.unit(1.45, "feet"),
  39931. name: "Maw (Caribou)",
  39932. image: {
  39933. source: "./media/characters/lisa/maw-caribou.svg"
  39934. }
  39935. },
  39936. mawCaribousune: {
  39937. height: math.unit(1.45, "feet"),
  39938. name: "Maw (Caribousune)",
  39939. image: {
  39940. source: "./media/characters/lisa/maw-caribousune.svg"
  39941. }
  39942. },
  39943. pawCaribousune: {
  39944. height: math.unit(1.61, "feet"),
  39945. name: "Paw (Caribou)",
  39946. image: {
  39947. source: "./media/characters/lisa/paw-caribousune.svg"
  39948. }
  39949. },
  39950. },
  39951. [
  39952. {
  39953. name: "Normal",
  39954. height: math.unit(6, "feet")
  39955. },
  39956. {
  39957. name: "God Size",
  39958. height: math.unit(72, "feet"),
  39959. default: true
  39960. },
  39961. {
  39962. name: "Towering",
  39963. height: math.unit(288, "feet")
  39964. },
  39965. {
  39966. name: "City Size",
  39967. height: math.unit(48384, "feet")
  39968. },
  39969. {
  39970. name: "Continental",
  39971. height: math.unit(4200, "miles")
  39972. },
  39973. {
  39974. name: "Planet Eater",
  39975. height: math.unit(42, "earths")
  39976. },
  39977. {
  39978. name: "Star Swallower",
  39979. height: math.unit(42, "solarradii")
  39980. },
  39981. {
  39982. name: "System Swallower",
  39983. height: math.unit(84000, "AU")
  39984. },
  39985. {
  39986. name: "Galaxy Gobbler",
  39987. height: math.unit(42, "galaxies")
  39988. },
  39989. {
  39990. name: "Universe Devourer",
  39991. height: math.unit(42, "universes")
  39992. },
  39993. {
  39994. name: "Multiverse Muncher",
  39995. height: math.unit(42, "multiverses")
  39996. },
  39997. ]
  39998. ))
  39999. characterMakers.push(() => makeCharacter(
  40000. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40001. {
  40002. front: {
  40003. height: math.unit(36, "feet"),
  40004. name: "Front",
  40005. image: {
  40006. source: "./media/characters/shadow-rat/front.svg",
  40007. extra: 1845/1758,
  40008. bottom: 83/1928
  40009. }
  40010. },
  40011. },
  40012. [
  40013. {
  40014. name: "Macro",
  40015. height: math.unit(36, "feet"),
  40016. default: true
  40017. },
  40018. ]
  40019. ))
  40020. characterMakers.push(() => makeCharacter(
  40021. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40022. {
  40023. side: {
  40024. height: math.unit(8, "feet"),
  40025. weight: math.unit(2630, "lb"),
  40026. name: "Side",
  40027. image: {
  40028. source: "./media/characters/torallia/side.svg",
  40029. extra: 2164/2021,
  40030. bottom: 371/2535
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Mortal Interaction",
  40037. height: math.unit(8, "feet")
  40038. },
  40039. {
  40040. name: "Natural",
  40041. height: math.unit(24, "feet"),
  40042. default: true
  40043. },
  40044. {
  40045. name: "Giant",
  40046. height: math.unit(80, "feet")
  40047. },
  40048. {
  40049. name: "Kaiju",
  40050. height: math.unit(240, "feet")
  40051. },
  40052. {
  40053. name: "Macro",
  40054. height: math.unit(800, "feet")
  40055. },
  40056. {
  40057. name: "Macro+",
  40058. height: math.unit(2400, "feet")
  40059. },
  40060. {
  40061. name: "Macro++",
  40062. height: math.unit(8000, "feet")
  40063. },
  40064. {
  40065. name: "City-Crushing",
  40066. height: math.unit(24000, "feet")
  40067. },
  40068. {
  40069. name: "Mountain-Mashing",
  40070. height: math.unit(80000, "feet")
  40071. },
  40072. {
  40073. name: "District Demolisher",
  40074. height: math.unit(240000, "feet")
  40075. },
  40076. {
  40077. name: "Tri-County Terror",
  40078. height: math.unit(800000, "feet")
  40079. },
  40080. {
  40081. name: "State Smasher",
  40082. height: math.unit(2.4e6, "feet")
  40083. },
  40084. {
  40085. name: "Nation Nemesis",
  40086. height: math.unit(8e6, "feet")
  40087. },
  40088. {
  40089. name: "Continent Cracker",
  40090. height: math.unit(2.4e7, "feet")
  40091. },
  40092. {
  40093. name: "Planet-Pillaging",
  40094. height: math.unit(8e7, "feet")
  40095. },
  40096. {
  40097. name: "Earth-Eclipsing",
  40098. height: math.unit(2.4e8, "feet")
  40099. },
  40100. {
  40101. name: "Jovian-Jostling",
  40102. height: math.unit(8e8, "feet")
  40103. },
  40104. {
  40105. name: "Gas Giant Gulper",
  40106. height: math.unit(2.4e9, "feet")
  40107. },
  40108. {
  40109. name: "Astral Annihilator",
  40110. height: math.unit(8e9, "feet")
  40111. },
  40112. {
  40113. name: "Celestial Conqueror",
  40114. height: math.unit(2.4e10, "feet")
  40115. },
  40116. {
  40117. name: "Sol-Swallowing",
  40118. height: math.unit(8e10, "feet")
  40119. },
  40120. {
  40121. name: "Hunter of the Heavens",
  40122. height: math.unit(2.4e13, "feet")
  40123. },
  40124. ]
  40125. ))
  40126. characterMakers.push(() => makeCharacter(
  40127. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40128. {
  40129. front: {
  40130. height: math.unit(6 + 8/12, "feet"),
  40131. weight: math.unit(250, "kilograms"),
  40132. volume: math.unit(28, "liters"),
  40133. name: "Front",
  40134. image: {
  40135. source: "./media/characters/rebecca-pawlson/front.svg",
  40136. extra: 1737/1596,
  40137. bottom: 107/1844
  40138. }
  40139. },
  40140. back: {
  40141. height: math.unit(6 + 8/12, "feet"),
  40142. weight: math.unit(250, "kilograms"),
  40143. volume: math.unit(28, "liters"),
  40144. name: "Back",
  40145. image: {
  40146. source: "./media/characters/rebecca-pawlson/back.svg",
  40147. extra: 1702/1523,
  40148. bottom: 86/1788
  40149. }
  40150. },
  40151. },
  40152. [
  40153. {
  40154. name: "Normal",
  40155. height: math.unit(6 + 8/12, "feet")
  40156. },
  40157. {
  40158. name: "Mini Macro",
  40159. height: math.unit(10, "feet"),
  40160. default: true
  40161. },
  40162. {
  40163. name: "Macro",
  40164. height: math.unit(100, "feet")
  40165. },
  40166. {
  40167. name: "Mega Macro",
  40168. height: math.unit(2500, "feet")
  40169. },
  40170. {
  40171. name: "Giga Macro",
  40172. height: math.unit(50, "miles")
  40173. },
  40174. ]
  40175. ))
  40176. characterMakers.push(() => makeCharacter(
  40177. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40178. {
  40179. front: {
  40180. height: math.unit(7 + 6/12, "feet"),
  40181. weight: math.unit(600, "lb"),
  40182. name: "Front",
  40183. image: {
  40184. source: "./media/characters/moxie-nova/front.svg",
  40185. extra: 1734/1652,
  40186. bottom: 41/1775
  40187. }
  40188. },
  40189. },
  40190. [
  40191. {
  40192. name: "Normal",
  40193. height: math.unit(7 + 6/12, "feet"),
  40194. default: true
  40195. },
  40196. ]
  40197. ))
  40198. characterMakers.push(() => makeCharacter(
  40199. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40200. {
  40201. goat: {
  40202. height: math.unit(4, "feet"),
  40203. weight: math.unit(180, "lb"),
  40204. name: "Goat",
  40205. image: {
  40206. source: "./media/characters/tiffany/goat.svg",
  40207. extra: 1845/1595,
  40208. bottom: 106/1951
  40209. }
  40210. },
  40211. front: {
  40212. height: math.unit(5, "feet"),
  40213. weight: math.unit(150, "lb"),
  40214. name: "Foxcoon",
  40215. image: {
  40216. source: "./media/characters/tiffany/foxcoon.svg",
  40217. extra: 1941/1845,
  40218. bottom: 58/1999
  40219. }
  40220. },
  40221. },
  40222. [
  40223. {
  40224. name: "Normal",
  40225. height: math.unit(5, "feet"),
  40226. default: true
  40227. },
  40228. ]
  40229. ))
  40230. characterMakers.push(() => makeCharacter(
  40231. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40232. {
  40233. front: {
  40234. height: math.unit(8, "feet"),
  40235. weight: math.unit(300, "lb"),
  40236. name: "Front",
  40237. image: {
  40238. source: "./media/characters/raxinath/front.svg",
  40239. extra: 1407/1309,
  40240. bottom: 39/1446
  40241. }
  40242. },
  40243. back: {
  40244. height: math.unit(8, "feet"),
  40245. weight: math.unit(300, "lb"),
  40246. name: "Back",
  40247. image: {
  40248. source: "./media/characters/raxinath/back.svg",
  40249. extra: 1405/1315,
  40250. bottom: 9/1414
  40251. }
  40252. },
  40253. },
  40254. [
  40255. {
  40256. name: "Speck",
  40257. height: math.unit(0.5, "nm")
  40258. },
  40259. {
  40260. name: "Micro",
  40261. height: math.unit(3, "inches")
  40262. },
  40263. {
  40264. name: "Kobold",
  40265. height: math.unit(3, "feet")
  40266. },
  40267. {
  40268. name: "Normal",
  40269. height: math.unit(8, "feet"),
  40270. default: true
  40271. },
  40272. {
  40273. name: "Giant",
  40274. height: math.unit(50, "feet")
  40275. },
  40276. {
  40277. name: "Macro",
  40278. height: math.unit(1000, "feet")
  40279. },
  40280. {
  40281. name: "Megamacro",
  40282. height: math.unit(1, "mile")
  40283. },
  40284. ]
  40285. ))
  40286. characterMakers.push(() => makeCharacter(
  40287. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40288. {
  40289. front: {
  40290. height: math.unit(10, "feet"),
  40291. weight: math.unit(1442, "lb"),
  40292. name: "Front",
  40293. image: {
  40294. source: "./media/characters/mal-dragon/front.svg",
  40295. extra: 1515/1444,
  40296. bottom: 113/1628
  40297. }
  40298. },
  40299. back: {
  40300. height: math.unit(10, "feet"),
  40301. weight: math.unit(1442, "lb"),
  40302. name: "Back",
  40303. image: {
  40304. source: "./media/characters/mal-dragon/back.svg",
  40305. extra: 1527/1434,
  40306. bottom: 25/1552
  40307. }
  40308. },
  40309. },
  40310. [
  40311. {
  40312. name: "Mortal Interaction",
  40313. height: math.unit(10, "feet"),
  40314. default: true
  40315. },
  40316. {
  40317. name: "Large",
  40318. height: math.unit(30, "feet")
  40319. },
  40320. {
  40321. name: "Kaiju",
  40322. height: math.unit(300, "feet")
  40323. },
  40324. {
  40325. name: "Megamacro",
  40326. height: math.unit(10000, "feet")
  40327. },
  40328. {
  40329. name: "Continent Cracker",
  40330. height: math.unit(30000000, "feet")
  40331. },
  40332. {
  40333. name: "Sol-Swallowing",
  40334. height: math.unit(1e11, "feet")
  40335. },
  40336. {
  40337. name: "Light Universal",
  40338. height: math.unit(5, "universes")
  40339. },
  40340. {
  40341. name: "Universe Atoms",
  40342. height: math.unit(1.829e9, "universes")
  40343. },
  40344. {
  40345. name: "Light Multiversal",
  40346. height: math.unit(5, "multiverses")
  40347. },
  40348. {
  40349. name: "Multiverse Atoms",
  40350. height: math.unit(1.829e9, "multiverses")
  40351. },
  40352. {
  40353. name: "Fabric of Time",
  40354. height: math.unit(1e262, "multiverses")
  40355. },
  40356. ]
  40357. ))
  40358. characterMakers.push(() => makeCharacter(
  40359. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40360. {
  40361. front: {
  40362. height: math.unit(9, "feet"),
  40363. weight: math.unit(1050, "lb"),
  40364. name: "Front",
  40365. image: {
  40366. source: "./media/characters/tabitha/front.svg",
  40367. extra: 2083/1994,
  40368. bottom: 68/2151
  40369. }
  40370. },
  40371. },
  40372. [
  40373. {
  40374. name: "Baseline",
  40375. height: math.unit(9, "feet"),
  40376. default: true
  40377. },
  40378. {
  40379. name: "Giant",
  40380. height: math.unit(90, "feet")
  40381. },
  40382. {
  40383. name: "Macro",
  40384. height: math.unit(900, "feet")
  40385. },
  40386. {
  40387. name: "Megamacro",
  40388. height: math.unit(9000, "feet")
  40389. },
  40390. {
  40391. name: "City-Crushing",
  40392. height: math.unit(27000, "feet")
  40393. },
  40394. {
  40395. name: "Mountain-Mashing",
  40396. height: math.unit(90000, "feet")
  40397. },
  40398. {
  40399. name: "Nation Nemesis",
  40400. height: math.unit(9e6, "feet")
  40401. },
  40402. {
  40403. name: "Continent Cracker",
  40404. height: math.unit(27e6, "feet")
  40405. },
  40406. {
  40407. name: "Earth-Eclipsing",
  40408. height: math.unit(2.7e8, "feet")
  40409. },
  40410. {
  40411. name: "Gas Giant Gulper",
  40412. height: math.unit(2.7e9, "feet")
  40413. },
  40414. {
  40415. name: "Sol-Swallowing",
  40416. height: math.unit(9e10, "feet")
  40417. },
  40418. {
  40419. name: "Galaxy Gulper",
  40420. height: math.unit(9, "galaxies")
  40421. },
  40422. {
  40423. name: "Cosmos Churner",
  40424. height: math.unit(9, "universes")
  40425. },
  40426. ]
  40427. ))
  40428. characterMakers.push(() => makeCharacter(
  40429. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40430. {
  40431. front: {
  40432. height: math.unit(160, "cm"),
  40433. weight: math.unit(55, "kg"),
  40434. name: "Front",
  40435. image: {
  40436. source: "./media/characters/tow/front.svg",
  40437. extra: 1751/1722,
  40438. bottom: 74/1825
  40439. }
  40440. },
  40441. },
  40442. [
  40443. {
  40444. name: "Norm",
  40445. height: math.unit(160, "cm")
  40446. },
  40447. {
  40448. name: "Casual",
  40449. height: math.unit(3200, "m"),
  40450. default: true
  40451. },
  40452. {
  40453. name: "Show-Off",
  40454. height: math.unit(160, "km")
  40455. },
  40456. ]
  40457. ))
  40458. characterMakers.push(() => makeCharacter(
  40459. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40460. {
  40461. front: {
  40462. height: math.unit(7 + 11/12, "feet"),
  40463. weight: math.unit(342.8, "lb"),
  40464. name: "Front",
  40465. image: {
  40466. source: "./media/characters/vivian-orca-dragon/front.svg",
  40467. extra: 1890/1865,
  40468. bottom: 28/1918
  40469. }
  40470. },
  40471. },
  40472. [
  40473. {
  40474. name: "Micro",
  40475. height: math.unit(5, "inches")
  40476. },
  40477. {
  40478. name: "Normal",
  40479. height: math.unit(7 + 11/12, "feet"),
  40480. default: true
  40481. },
  40482. {
  40483. name: "Macro",
  40484. height: math.unit(395 + 7/12, "feet")
  40485. },
  40486. ]
  40487. ))
  40488. characterMakers.push(() => makeCharacter(
  40489. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40490. {
  40491. side: {
  40492. height: math.unit(10, "feet"),
  40493. weight: math.unit(1442, "lb"),
  40494. name: "Side",
  40495. image: {
  40496. source: "./media/characters/lotherakon/side.svg",
  40497. extra: 1604/1497,
  40498. bottom: 89/1693
  40499. }
  40500. },
  40501. },
  40502. [
  40503. {
  40504. name: "Mortal Interaction",
  40505. height: math.unit(10, "feet")
  40506. },
  40507. {
  40508. name: "Large",
  40509. height: math.unit(30, "feet"),
  40510. default: true
  40511. },
  40512. {
  40513. name: "Giant",
  40514. height: math.unit(100, "feet")
  40515. },
  40516. {
  40517. name: "Kaiju",
  40518. height: math.unit(300, "feet")
  40519. },
  40520. {
  40521. name: "Macro",
  40522. height: math.unit(1000, "feet")
  40523. },
  40524. {
  40525. name: "Macro+",
  40526. height: math.unit(3000, "feet")
  40527. },
  40528. {
  40529. name: "Megamacro",
  40530. height: math.unit(10000, "feet")
  40531. },
  40532. {
  40533. name: "City-Crushing",
  40534. height: math.unit(30000, "feet")
  40535. },
  40536. {
  40537. name: "Continent Cracker",
  40538. height: math.unit(30e6, "feet")
  40539. },
  40540. {
  40541. name: "Earth Eclipsing",
  40542. height: math.unit(3e8, "feet")
  40543. },
  40544. {
  40545. name: "Gas Giant Gulper",
  40546. height: math.unit(3e9, "feet")
  40547. },
  40548. {
  40549. name: "Sol-Swallowing",
  40550. height: math.unit(1e11, "feet")
  40551. },
  40552. {
  40553. name: "System Swallower",
  40554. height: math.unit(3e14, "feet")
  40555. },
  40556. {
  40557. name: "Galaxy Gulper",
  40558. height: math.unit(10, "galaxies")
  40559. },
  40560. {
  40561. name: "Light Universal",
  40562. height: math.unit(5, "universes")
  40563. },
  40564. {
  40565. name: "Universe Palm",
  40566. height: math.unit(20, "universes")
  40567. },
  40568. {
  40569. name: "Light Multiversal",
  40570. height: math.unit(5, "multiverses")
  40571. },
  40572. {
  40573. name: "Multiverse Palm",
  40574. height: math.unit(20, "multiverses")
  40575. },
  40576. {
  40577. name: "Inferno Incarnate",
  40578. height: math.unit(1e7, "multiverses")
  40579. },
  40580. ]
  40581. ))
  40582. characterMakers.push(() => makeCharacter(
  40583. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40584. {
  40585. front: {
  40586. height: math.unit(8, "feet"),
  40587. weight: math.unit(1200, "lb"),
  40588. name: "Front",
  40589. image: {
  40590. source: "./media/characters/malithee/front.svg",
  40591. extra: 1675/1640,
  40592. bottom: 162/1837
  40593. }
  40594. },
  40595. },
  40596. [
  40597. {
  40598. name: "Mortal Interaction",
  40599. height: math.unit(8, "feet"),
  40600. default: true
  40601. },
  40602. {
  40603. name: "Large",
  40604. height: math.unit(24, "feet")
  40605. },
  40606. {
  40607. name: "Kaiju",
  40608. height: math.unit(240, "feet")
  40609. },
  40610. {
  40611. name: "Megamacro",
  40612. height: math.unit(8000, "feet")
  40613. },
  40614. {
  40615. name: "Continent Cracker",
  40616. height: math.unit(24e6, "feet")
  40617. },
  40618. {
  40619. name: "Earth-Eclipsing",
  40620. height: math.unit(2.4e8, "feet")
  40621. },
  40622. {
  40623. name: "Sol-Swallowing",
  40624. height: math.unit(8e10, "feet")
  40625. },
  40626. {
  40627. name: "Galaxy Gulper",
  40628. height: math.unit(8, "galaxies")
  40629. },
  40630. {
  40631. name: "Light Universal",
  40632. height: math.unit(4, "universes")
  40633. },
  40634. {
  40635. name: "Universe Atoms",
  40636. height: math.unit(1.829e9, "universes")
  40637. },
  40638. {
  40639. name: "Light Multiversal",
  40640. height: math.unit(4, "multiverses")
  40641. },
  40642. {
  40643. name: "Multiverse Atoms",
  40644. height: math.unit(1.829e9, "multiverses")
  40645. },
  40646. {
  40647. name: "Nigh-Omnipresence",
  40648. height: math.unit(8e261, "multiverses")
  40649. },
  40650. ]
  40651. ))
  40652. characterMakers.push(() => makeCharacter(
  40653. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40654. {
  40655. front: {
  40656. height: math.unit(10, "feet"),
  40657. weight: math.unit(1500, "lb"),
  40658. name: "Front",
  40659. image: {
  40660. source: "./media/characters/miles-thestia/front.svg",
  40661. extra: 1812/1727,
  40662. bottom: 86/1898
  40663. }
  40664. },
  40665. back: {
  40666. height: math.unit(10, "feet"),
  40667. weight: math.unit(1500, "lb"),
  40668. name: "Back",
  40669. image: {
  40670. source: "./media/characters/miles-thestia/back.svg",
  40671. extra: 1799/1690,
  40672. bottom: 47/1846
  40673. }
  40674. },
  40675. frontNsfw: {
  40676. height: math.unit(10, "feet"),
  40677. weight: math.unit(1500, "lb"),
  40678. name: "Front (NSFW)",
  40679. image: {
  40680. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40681. extra: 1812/1727,
  40682. bottom: 86/1898
  40683. }
  40684. },
  40685. },
  40686. [
  40687. {
  40688. name: "Mini-Macro",
  40689. height: math.unit(10, "feet"),
  40690. default: true
  40691. },
  40692. ]
  40693. ))
  40694. characterMakers.push(() => makeCharacter(
  40695. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40696. {
  40697. front: {
  40698. height: math.unit(25, "feet"),
  40699. name: "Front",
  40700. image: {
  40701. source: "./media/characters/titan-s-wulf/front.svg",
  40702. extra: 1560/1484,
  40703. bottom: 76/1636
  40704. }
  40705. },
  40706. },
  40707. [
  40708. {
  40709. name: "Smallest",
  40710. height: math.unit(25, "feet"),
  40711. default: true
  40712. },
  40713. {
  40714. name: "Normal",
  40715. height: math.unit(200, "feet")
  40716. },
  40717. {
  40718. name: "Macro",
  40719. height: math.unit(200000, "feet")
  40720. },
  40721. {
  40722. name: "Multiversal Original",
  40723. height: math.unit(10000, "multiverses")
  40724. },
  40725. ]
  40726. ))
  40727. characterMakers.push(() => makeCharacter(
  40728. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40729. {
  40730. front: {
  40731. height: math.unit(8, "feet"),
  40732. weight: math.unit(553, "lb"),
  40733. name: "Front",
  40734. image: {
  40735. source: "./media/characters/tawendeh/front.svg",
  40736. extra: 2365/2268,
  40737. bottom: 83/2448
  40738. }
  40739. },
  40740. frontClothed: {
  40741. height: math.unit(8, "feet"),
  40742. weight: math.unit(553, "lb"),
  40743. name: "Front (Clothed)",
  40744. image: {
  40745. source: "./media/characters/tawendeh/front-clothed.svg",
  40746. extra: 2365/2268,
  40747. bottom: 83/2448
  40748. }
  40749. },
  40750. back: {
  40751. height: math.unit(8, "feet"),
  40752. weight: math.unit(553, "lb"),
  40753. name: "Back",
  40754. image: {
  40755. source: "./media/characters/tawendeh/back.svg",
  40756. extra: 2397/2294,
  40757. bottom: 42/2439
  40758. }
  40759. },
  40760. },
  40761. [
  40762. {
  40763. name: "Mortal Interaction",
  40764. height: math.unit(8, "feet"),
  40765. default: true
  40766. },
  40767. {
  40768. name: "Giant",
  40769. height: math.unit(80, "feet")
  40770. },
  40771. {
  40772. name: "Macro",
  40773. height: math.unit(800, "feet")
  40774. },
  40775. {
  40776. name: "Megamacro",
  40777. height: math.unit(8000, "feet")
  40778. },
  40779. {
  40780. name: "City-Crushing",
  40781. height: math.unit(24000, "feet")
  40782. },
  40783. {
  40784. name: "Mountain-Mashing",
  40785. height: math.unit(80000, "feet")
  40786. },
  40787. {
  40788. name: "Nation Nemesis",
  40789. height: math.unit(8e6, "feet")
  40790. },
  40791. {
  40792. name: "Continent Cracker",
  40793. height: math.unit(24e6, "feet")
  40794. },
  40795. {
  40796. name: "Earth-Eclipsing",
  40797. height: math.unit(2.4e8, "feet")
  40798. },
  40799. {
  40800. name: "Gas Giant Gulper",
  40801. height: math.unit(2.4e9, "feet")
  40802. },
  40803. {
  40804. name: "Sol-Swallowing",
  40805. height: math.unit(8e10, "feet")
  40806. },
  40807. {
  40808. name: "Galaxy Gulper",
  40809. height: math.unit(8, "galaxies")
  40810. },
  40811. {
  40812. name: "Cosmos Churner",
  40813. height: math.unit(8, "universes")
  40814. },
  40815. {
  40816. name: "Omnipotent Otter",
  40817. height: math.unit(80, "universes")
  40818. },
  40819. ]
  40820. ))
  40821. characterMakers.push(() => makeCharacter(
  40822. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40823. {
  40824. front: {
  40825. height: math.unit(2.6, "meters"),
  40826. weight: math.unit(900, "kg"),
  40827. name: "Front",
  40828. image: {
  40829. source: "./media/characters/neesha/front.svg",
  40830. extra: 1803/1653,
  40831. bottom: 128/1931
  40832. }
  40833. },
  40834. },
  40835. [
  40836. {
  40837. name: "Normal",
  40838. height: math.unit(2.6, "meters"),
  40839. default: true
  40840. },
  40841. {
  40842. name: "Macro",
  40843. height: math.unit(50, "meters")
  40844. },
  40845. ]
  40846. ))
  40847. characterMakers.push(() => makeCharacter(
  40848. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40849. {
  40850. front: {
  40851. height: math.unit(5, "feet"),
  40852. weight: math.unit(185, "lb"),
  40853. name: "Front",
  40854. image: {
  40855. source: "./media/characters/kyera/front.svg",
  40856. extra: 1875/1790,
  40857. bottom: 96/1971
  40858. }
  40859. },
  40860. },
  40861. [
  40862. {
  40863. name: "Normal",
  40864. height: math.unit(5, "feet"),
  40865. default: true
  40866. },
  40867. ]
  40868. ))
  40869. characterMakers.push(() => makeCharacter(
  40870. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40871. {
  40872. front: {
  40873. height: math.unit(7 + 6/12, "feet"),
  40874. weight: math.unit(540, "lb"),
  40875. name: "Front",
  40876. image: {
  40877. source: "./media/characters/yuko/front.svg",
  40878. extra: 1282/1222,
  40879. bottom: 101/1383
  40880. }
  40881. },
  40882. frontClothed: {
  40883. height: math.unit(7 + 6/12, "feet"),
  40884. weight: math.unit(540, "lb"),
  40885. name: "Front (Clothed)",
  40886. image: {
  40887. source: "./media/characters/yuko/front-clothed.svg",
  40888. extra: 1282/1222,
  40889. bottom: 101/1383
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(7 + 6/12, "feet"),
  40897. default: true
  40898. },
  40899. {
  40900. name: "Macro",
  40901. height: math.unit(26 + 9/12, "feet")
  40902. },
  40903. {
  40904. name: "Megamacro",
  40905. height: math.unit(300, "feet")
  40906. },
  40907. {
  40908. name: "Gigamacro",
  40909. height: math.unit(5000, "feet")
  40910. },
  40911. {
  40912. name: "Planetary",
  40913. height: math.unit(10000, "miles")
  40914. },
  40915. ]
  40916. ))
  40917. characterMakers.push(() => makeCharacter(
  40918. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40919. {
  40920. front: {
  40921. height: math.unit(8 + 2/12, "feet"),
  40922. weight: math.unit(600, "lb"),
  40923. name: "Front",
  40924. image: {
  40925. source: "./media/characters/deam-nitrel/front.svg",
  40926. extra: 1308/1234,
  40927. bottom: 125/1433
  40928. }
  40929. },
  40930. },
  40931. [
  40932. {
  40933. name: "Normal",
  40934. height: math.unit(8 + 2/12, "feet"),
  40935. default: true
  40936. },
  40937. ]
  40938. ))
  40939. characterMakers.push(() => makeCharacter(
  40940. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40941. {
  40942. front: {
  40943. height: math.unit(6.1, "feet"),
  40944. weight: math.unit(180, "lb"),
  40945. name: "Front",
  40946. image: {
  40947. source: "./media/characters/skyress/front.svg",
  40948. extra: 1045/915,
  40949. bottom: 28/1073
  40950. }
  40951. },
  40952. maw: {
  40953. height: math.unit(1, "feet"),
  40954. name: "Maw",
  40955. image: {
  40956. source: "./media/characters/skyress/maw.svg"
  40957. }
  40958. },
  40959. },
  40960. [
  40961. {
  40962. name: "Normal",
  40963. height: math.unit(6.1, "feet"),
  40964. default: true
  40965. },
  40966. {
  40967. name: "Macro",
  40968. height: math.unit(200, "feet")
  40969. },
  40970. ]
  40971. ))
  40972. characterMakers.push(() => makeCharacter(
  40973. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40974. {
  40975. front: {
  40976. height: math.unit(4 + 2/12, "feet"),
  40977. weight: math.unit(40, "kg"),
  40978. name: "Front",
  40979. image: {
  40980. source: "./media/characters/amethyst-jones/front.svg",
  40981. extra: 1220/1150,
  40982. bottom: 101/1321
  40983. }
  40984. },
  40985. },
  40986. [
  40987. {
  40988. name: "Normal",
  40989. height: math.unit(4 + 2/12, "feet"),
  40990. default: true
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(1.7, "m"),
  40999. weight: math.unit(135, "lb"),
  41000. name: "Front",
  41001. image: {
  41002. source: "./media/characters/jade/front.svg",
  41003. extra: 1818/1767,
  41004. bottom: 32/1850
  41005. }
  41006. },
  41007. back: {
  41008. height: math.unit(1.7, "m"),
  41009. weight: math.unit(135, "lb"),
  41010. name: "Back",
  41011. image: {
  41012. source: "./media/characters/jade/back.svg",
  41013. extra: 1869/1809,
  41014. bottom: 35/1904
  41015. }
  41016. },
  41017. hand: {
  41018. height: math.unit(0.24, "m"),
  41019. name: "Hand",
  41020. image: {
  41021. source: "./media/characters/jade/hand.svg"
  41022. }
  41023. },
  41024. foot: {
  41025. height: math.unit(0.263, "m"),
  41026. name: "Foot",
  41027. image: {
  41028. source: "./media/characters/jade/foot.svg"
  41029. }
  41030. },
  41031. dick: {
  41032. height: math.unit(0.47, "m"),
  41033. name: "Dick",
  41034. image: {
  41035. source: "./media/characters/jade/dick.svg"
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Micro",
  41042. height: math.unit(22, "cm")
  41043. },
  41044. {
  41045. name: "Normal",
  41046. height: math.unit(1.7, "m"),
  41047. default: true
  41048. },
  41049. {
  41050. name: "Macro",
  41051. height: math.unit(152, "m")
  41052. },
  41053. ]
  41054. ))
  41055. characterMakers.push(() => makeCharacter(
  41056. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41057. {
  41058. front: {
  41059. height: math.unit(100, "miles"),
  41060. weight: math.unit(20000, "tons"),
  41061. name: "Front",
  41062. image: {
  41063. source: "./media/characters/cookie/front.svg",
  41064. extra: 1125/1070,
  41065. bottom: 30/1155
  41066. }
  41067. },
  41068. },
  41069. [
  41070. {
  41071. name: "Big",
  41072. height: math.unit(50, "feet")
  41073. },
  41074. {
  41075. name: "Macro",
  41076. height: math.unit(100, "miles"),
  41077. default: true
  41078. },
  41079. {
  41080. name: "Megamacro",
  41081. height: math.unit(90000, "miles")
  41082. },
  41083. ]
  41084. ))
  41085. characterMakers.push(() => makeCharacter(
  41086. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41087. {
  41088. front: {
  41089. height: math.unit(6, "feet"),
  41090. weight: math.unit(145, "lb"),
  41091. name: "Front",
  41092. image: {
  41093. source: "./media/characters/farzian/front.svg",
  41094. extra: 1902/1693,
  41095. bottom: 108/2010
  41096. }
  41097. },
  41098. },
  41099. [
  41100. {
  41101. name: "Macro",
  41102. height: math.unit(500, "feet"),
  41103. default: true
  41104. },
  41105. ]
  41106. ))
  41107. characterMakers.push(() => makeCharacter(
  41108. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41109. {
  41110. front: {
  41111. height: math.unit(3 + 6/12, "feet"),
  41112. weight: math.unit(50, "lb"),
  41113. name: "Front",
  41114. image: {
  41115. source: "./media/characters/kimberly-tilson/front.svg",
  41116. extra: 1400/1322,
  41117. bottom: 36/1436
  41118. }
  41119. },
  41120. back: {
  41121. height: math.unit(3 + 6/12, "feet"),
  41122. weight: math.unit(50, "lb"),
  41123. name: "Back",
  41124. image: {
  41125. source: "./media/characters/kimberly-tilson/back.svg",
  41126. extra: 1370/1307,
  41127. bottom: 20/1390
  41128. }
  41129. },
  41130. },
  41131. [
  41132. {
  41133. name: "Normal",
  41134. height: math.unit(3 + 6/12, "feet"),
  41135. default: true
  41136. },
  41137. ]
  41138. ))
  41139. characterMakers.push(() => makeCharacter(
  41140. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41141. {
  41142. front: {
  41143. height: math.unit(1148, "feet"),
  41144. weight: math.unit(34057, "lb"),
  41145. name: "Front",
  41146. image: {
  41147. source: "./media/characters/harthos/front.svg",
  41148. extra: 1391/1339,
  41149. bottom: 13/1404
  41150. }
  41151. },
  41152. },
  41153. [
  41154. {
  41155. name: "Macro",
  41156. height: math.unit(1148, "feet"),
  41157. default: true
  41158. },
  41159. ]
  41160. ))
  41161. characterMakers.push(() => makeCharacter(
  41162. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41163. {
  41164. front: {
  41165. height: math.unit(15, "feet"),
  41166. name: "Front",
  41167. image: {
  41168. source: "./media/characters/hypatia/front.svg",
  41169. extra: 1653/1591,
  41170. bottom: 79/1732
  41171. }
  41172. },
  41173. },
  41174. [
  41175. {
  41176. name: "Normal",
  41177. height: math.unit(15, "feet")
  41178. },
  41179. {
  41180. name: "Small",
  41181. height: math.unit(300, "feet")
  41182. },
  41183. {
  41184. name: "Macro",
  41185. height: math.unit(2500, "feet"),
  41186. default: true
  41187. },
  41188. {
  41189. name: "Mega Macro",
  41190. height: math.unit(1500, "miles")
  41191. },
  41192. {
  41193. name: "Giga Macro",
  41194. height: math.unit(1.5e6, "miles")
  41195. },
  41196. ]
  41197. ))
  41198. characterMakers.push(() => makeCharacter(
  41199. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41200. {
  41201. front: {
  41202. height: math.unit(6, "feet"),
  41203. weight: math.unit(200, "lb"),
  41204. name: "Front",
  41205. image: {
  41206. source: "./media/characters/wulver/front.svg",
  41207. extra: 1724/1632,
  41208. bottom: 130/1854
  41209. }
  41210. },
  41211. frontNsfw: {
  41212. height: math.unit(6, "feet"),
  41213. weight: math.unit(200, "lb"),
  41214. name: "Front (NSFW)",
  41215. image: {
  41216. source: "./media/characters/wulver/front-nsfw.svg",
  41217. extra: 1724/1632,
  41218. bottom: 130/1854
  41219. }
  41220. },
  41221. },
  41222. [
  41223. {
  41224. name: "Human-Sized",
  41225. height: math.unit(6, "feet")
  41226. },
  41227. {
  41228. name: "Normal",
  41229. height: math.unit(4, "meters"),
  41230. default: true
  41231. },
  41232. {
  41233. name: "Large",
  41234. height: math.unit(6, "m")
  41235. },
  41236. ]
  41237. ))
  41238. characterMakers.push(() => makeCharacter(
  41239. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41240. {
  41241. front: {
  41242. height: math.unit(7, "feet"),
  41243. name: "Front",
  41244. image: {
  41245. source: "./media/characters/maru/front.svg",
  41246. extra: 1595/1570,
  41247. bottom: 0/1595
  41248. }
  41249. },
  41250. },
  41251. [
  41252. {
  41253. name: "Normal",
  41254. height: math.unit(7, "feet"),
  41255. default: true
  41256. },
  41257. {
  41258. name: "Macro",
  41259. height: math.unit(700, "feet")
  41260. },
  41261. {
  41262. name: "Mega Macro",
  41263. height: math.unit(25, "miles")
  41264. },
  41265. ]
  41266. ))
  41267. characterMakers.push(() => makeCharacter(
  41268. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41269. {
  41270. front: {
  41271. height: math.unit(6, "feet"),
  41272. weight: math.unit(170, "lb"),
  41273. name: "Front",
  41274. image: {
  41275. source: "./media/characters/xenon/front.svg",
  41276. extra: 1376/1305,
  41277. bottom: 56/1432
  41278. }
  41279. },
  41280. back: {
  41281. height: math.unit(6, "feet"),
  41282. weight: math.unit(170, "lb"),
  41283. name: "Back",
  41284. image: {
  41285. source: "./media/characters/xenon/back.svg",
  41286. extra: 1328/1259,
  41287. bottom: 95/1423
  41288. }
  41289. },
  41290. maw: {
  41291. height: math.unit(0.52, "feet"),
  41292. name: "Maw",
  41293. image: {
  41294. source: "./media/characters/xenon/maw.svg"
  41295. }
  41296. },
  41297. hand: {
  41298. height: math.unit(0.82, "feet"),
  41299. name: "Hand",
  41300. image: {
  41301. source: "./media/characters/xenon/hand.svg"
  41302. }
  41303. },
  41304. foot: {
  41305. height: math.unit(1.13, "feet"),
  41306. name: "Foot",
  41307. image: {
  41308. source: "./media/characters/xenon/foot.svg"
  41309. }
  41310. },
  41311. },
  41312. [
  41313. {
  41314. name: "Micro",
  41315. height: math.unit(0.8, "inches")
  41316. },
  41317. {
  41318. name: "Normal",
  41319. height: math.unit(6, "feet")
  41320. },
  41321. {
  41322. name: "Macro",
  41323. height: math.unit(50, "feet"),
  41324. default: true
  41325. },
  41326. {
  41327. name: "Macro+",
  41328. height: math.unit(250, "feet")
  41329. },
  41330. {
  41331. name: "Megamacro",
  41332. height: math.unit(1500, "feet")
  41333. },
  41334. ]
  41335. ))
  41336. characterMakers.push(() => makeCharacter(
  41337. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41338. {
  41339. front: {
  41340. height: math.unit(7 + 5/12, "feet"),
  41341. name: "Front",
  41342. image: {
  41343. source: "./media/characters/zane/front.svg",
  41344. extra: 1260/1203,
  41345. bottom: 94/1354
  41346. }
  41347. },
  41348. back: {
  41349. height: math.unit(5.05, "feet"),
  41350. name: "Back",
  41351. image: {
  41352. source: "./media/characters/zane/back.svg",
  41353. extra: 893/829,
  41354. bottom: 30/923
  41355. }
  41356. },
  41357. werewolf: {
  41358. height: math.unit(11, "feet"),
  41359. name: "Werewolf",
  41360. image: {
  41361. source: "./media/characters/zane/werewolf.svg",
  41362. extra: 1383/1323,
  41363. bottom: 89/1472
  41364. }
  41365. },
  41366. foot: {
  41367. height: math.unit(1.46, "feet"),
  41368. name: "Foot",
  41369. image: {
  41370. source: "./media/characters/zane/foot.svg"
  41371. }
  41372. },
  41373. footFront: {
  41374. height: math.unit(0.784, "feet"),
  41375. name: "Foot (Front)",
  41376. image: {
  41377. source: "./media/characters/zane/foot-front.svg"
  41378. }
  41379. },
  41380. dick: {
  41381. height: math.unit(1.95, "feet"),
  41382. name: "Dick",
  41383. image: {
  41384. source: "./media/characters/zane/dick.svg"
  41385. }
  41386. },
  41387. dickWerewolf: {
  41388. height: math.unit(3.77, "feet"),
  41389. name: "Dick (Werewolf)",
  41390. image: {
  41391. source: "./media/characters/zane/dick.svg"
  41392. }
  41393. },
  41394. },
  41395. [
  41396. {
  41397. name: "Normal",
  41398. height: math.unit(7 + 5/12, "feet"),
  41399. default: true
  41400. },
  41401. ]
  41402. ))
  41403. characterMakers.push(() => makeCharacter(
  41404. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41405. {
  41406. front: {
  41407. height: math.unit(6 + 2/12, "feet"),
  41408. weight: math.unit(284, "lb"),
  41409. name: "Front",
  41410. image: {
  41411. source: "./media/characters/benni-desparque/front.svg",
  41412. extra: 1353/1126,
  41413. bottom: 69/1422
  41414. }
  41415. },
  41416. },
  41417. [
  41418. {
  41419. name: "Civilian",
  41420. height: math.unit(6 + 2/12, "feet")
  41421. },
  41422. {
  41423. name: "Normal",
  41424. height: math.unit(98, "feet"),
  41425. default: true
  41426. },
  41427. {
  41428. name: "Kaiju Fighter",
  41429. height: math.unit(268, "feet")
  41430. },
  41431. ]
  41432. ))
  41433. characterMakers.push(() => makeCharacter(
  41434. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41435. {
  41436. front: {
  41437. height: math.unit(5, "feet"),
  41438. weight: math.unit(105, "lb"),
  41439. name: "Front",
  41440. image: {
  41441. source: "./media/characters/maxine/front.svg",
  41442. extra: 1386/1250,
  41443. bottom: 71/1457
  41444. }
  41445. },
  41446. },
  41447. [
  41448. {
  41449. name: "Normal",
  41450. height: math.unit(5, "feet"),
  41451. default: true
  41452. },
  41453. ]
  41454. ))
  41455. characterMakers.push(() => makeCharacter(
  41456. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41457. {
  41458. front: {
  41459. height: math.unit(11 + 7/12, "feet"),
  41460. weight: math.unit(9576, "lb"),
  41461. name: "Front",
  41462. image: {
  41463. source: "./media/characters/scaly/front.svg",
  41464. extra: 888/867,
  41465. bottom: 36/924
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Normal",
  41472. height: math.unit(11 + 7/12, "feet"),
  41473. default: true
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41479. {
  41480. front: {
  41481. height: math.unit(6 + 3/12, "feet"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/saelria/front.svg",
  41485. extra: 1243/1138,
  41486. bottom: 46/1289
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Micro",
  41493. height: math.unit(6, "inches"),
  41494. },
  41495. {
  41496. name: "Normal",
  41497. height: math.unit(6 + 3/12, "feet"),
  41498. default: true
  41499. },
  41500. {
  41501. name: "Macro",
  41502. height: math.unit(25, "feet")
  41503. },
  41504. ]
  41505. ))
  41506. characterMakers.push(() => makeCharacter(
  41507. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41508. {
  41509. front: {
  41510. height: math.unit(80, "meters"),
  41511. weight: math.unit(7000, "tonnes"),
  41512. name: "Front",
  41513. image: {
  41514. source: "./media/characters/tef/front.svg",
  41515. extra: 2036/1991,
  41516. bottom: 54/2090
  41517. }
  41518. },
  41519. back: {
  41520. height: math.unit(80, "meters"),
  41521. weight: math.unit(7000, "tonnes"),
  41522. name: "Back",
  41523. image: {
  41524. source: "./media/characters/tef/back.svg",
  41525. extra: 2036/1991,
  41526. bottom: 54/2090
  41527. }
  41528. },
  41529. },
  41530. [
  41531. {
  41532. name: "Macro",
  41533. height: math.unit(80, "meters"),
  41534. default: true
  41535. },
  41536. ]
  41537. ))
  41538. characterMakers.push(() => makeCharacter(
  41539. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41540. {
  41541. front: {
  41542. height: math.unit(13, "feet"),
  41543. weight: math.unit(6, "tons"),
  41544. name: "Front",
  41545. image: {
  41546. source: "./media/characters/rover/front.svg",
  41547. extra: 1233/1156,
  41548. bottom: 50/1283
  41549. }
  41550. },
  41551. back: {
  41552. height: math.unit(13, "feet"),
  41553. weight: math.unit(6, "tons"),
  41554. name: "Back",
  41555. image: {
  41556. source: "./media/characters/rover/back.svg",
  41557. extra: 1327/1258,
  41558. bottom: 39/1366
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Normal",
  41565. height: math.unit(13, "feet"),
  41566. default: true
  41567. },
  41568. {
  41569. name: "Macro",
  41570. height: math.unit(1300, "feet")
  41571. },
  41572. {
  41573. name: "Megamacro",
  41574. height: math.unit(1300, "miles")
  41575. },
  41576. {
  41577. name: "Gigamacro",
  41578. height: math.unit(1300000, "miles")
  41579. },
  41580. ]
  41581. ))
  41582. characterMakers.push(() => makeCharacter(
  41583. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41584. {
  41585. front: {
  41586. height: math.unit(6, "feet"),
  41587. weight: math.unit(150, "lb"),
  41588. name: "Front",
  41589. image: {
  41590. source: "./media/characters/ariz/front.svg",
  41591. extra: 1401/1346,
  41592. bottom: 5/1406
  41593. }
  41594. },
  41595. },
  41596. [
  41597. {
  41598. name: "Normal",
  41599. height: math.unit(10, "feet"),
  41600. default: true
  41601. },
  41602. ]
  41603. ))
  41604. characterMakers.push(() => makeCharacter(
  41605. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41606. {
  41607. front: {
  41608. height: math.unit(6, "feet"),
  41609. weight: math.unit(140, "lb"),
  41610. name: "Front",
  41611. image: {
  41612. source: "./media/characters/sigrun/front.svg",
  41613. extra: 1418/1359,
  41614. bottom: 27/1445
  41615. }
  41616. },
  41617. },
  41618. [
  41619. {
  41620. name: "Macro",
  41621. height: math.unit(35, "feet"),
  41622. default: true
  41623. },
  41624. ]
  41625. ))
  41626. characterMakers.push(() => makeCharacter(
  41627. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41628. {
  41629. front: {
  41630. height: math.unit(6, "feet"),
  41631. weight: math.unit(150, "lb"),
  41632. name: "Front",
  41633. image: {
  41634. source: "./media/characters/numin/front.svg",
  41635. extra: 1433/1388,
  41636. bottom: 12/1445
  41637. }
  41638. },
  41639. },
  41640. [
  41641. {
  41642. name: "Macro",
  41643. height: math.unit(21.5, "km"),
  41644. default: true
  41645. },
  41646. ]
  41647. ))
  41648. characterMakers.push(() => makeCharacter(
  41649. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41650. {
  41651. front: {
  41652. height: math.unit(6, "feet"),
  41653. weight: math.unit(463, "lb"),
  41654. name: "Front",
  41655. image: {
  41656. source: "./media/characters/melwa/front.svg",
  41657. extra: 1307/1248,
  41658. bottom: 93/1400
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Macro",
  41665. height: math.unit(50, "meters"),
  41666. default: true
  41667. },
  41668. ]
  41669. ))
  41670. characterMakers.push(() => makeCharacter(
  41671. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41672. {
  41673. front: {
  41674. height: math.unit(325, "feet"),
  41675. name: "Front",
  41676. image: {
  41677. source: "./media/characters/zorkaiju/front.svg",
  41678. extra: 1955/1814,
  41679. bottom: 40/1995
  41680. }
  41681. },
  41682. frontExtended: {
  41683. height: math.unit(325, "feet"),
  41684. name: "Front (Extended)",
  41685. image: {
  41686. source: "./media/characters/zorkaiju/front-extended.svg",
  41687. extra: 1955/1814,
  41688. bottom: 40/1995
  41689. }
  41690. },
  41691. side: {
  41692. height: math.unit(325, "feet"),
  41693. name: "Side",
  41694. image: {
  41695. source: "./media/characters/zorkaiju/side.svg",
  41696. extra: 1495/1396,
  41697. bottom: 17/1512
  41698. }
  41699. },
  41700. sideExtended: {
  41701. height: math.unit(325, "feet"),
  41702. name: "Side (Extended)",
  41703. image: {
  41704. source: "./media/characters/zorkaiju/side-extended.svg",
  41705. extra: 1495/1396,
  41706. bottom: 17/1512
  41707. }
  41708. },
  41709. back: {
  41710. height: math.unit(325, "feet"),
  41711. name: "Back",
  41712. image: {
  41713. source: "./media/characters/zorkaiju/back.svg",
  41714. extra: 1959/1821,
  41715. bottom: 31/1990
  41716. }
  41717. },
  41718. backExtended: {
  41719. height: math.unit(325, "feet"),
  41720. name: "Back (Extended)",
  41721. image: {
  41722. source: "./media/characters/zorkaiju/back-extended.svg",
  41723. extra: 1959/1821,
  41724. bottom: 31/1990
  41725. }
  41726. },
  41727. hand: {
  41728. height: math.unit(58.4, "feet"),
  41729. name: "Hand",
  41730. image: {
  41731. source: "./media/characters/zorkaiju/hand.svg"
  41732. }
  41733. },
  41734. handExtended: {
  41735. height: math.unit(61.4, "feet"),
  41736. name: "Hand (Extended)",
  41737. image: {
  41738. source: "./media/characters/zorkaiju/hand-extended.svg"
  41739. }
  41740. },
  41741. foot: {
  41742. height: math.unit(95, "feet"),
  41743. name: "Foot",
  41744. image: {
  41745. source: "./media/characters/zorkaiju/foot.svg"
  41746. }
  41747. },
  41748. leftArm: {
  41749. height: math.unit(59, "feet"),
  41750. name: "Left Arm",
  41751. image: {
  41752. source: "./media/characters/zorkaiju/left-arm.svg"
  41753. }
  41754. },
  41755. rightArm: {
  41756. height: math.unit(59, "feet"),
  41757. name: "Right Arm",
  41758. image: {
  41759. source: "./media/characters/zorkaiju/right-arm.svg"
  41760. }
  41761. },
  41762. leftArmExtended: {
  41763. height: math.unit(59 * 1.033546, "feet"),
  41764. name: "Left Arm (Extended)",
  41765. image: {
  41766. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41767. }
  41768. },
  41769. rightArmExtended: {
  41770. height: math.unit(59 * 1.0496, "feet"),
  41771. name: "Right Arm (Extended)",
  41772. image: {
  41773. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41774. }
  41775. },
  41776. tail: {
  41777. height: math.unit(104, "feet"),
  41778. name: "Tail",
  41779. image: {
  41780. source: "./media/characters/zorkaiju/tail.svg"
  41781. }
  41782. },
  41783. tailExtended: {
  41784. height: math.unit(104, "feet"),
  41785. name: "Tail (Extended)",
  41786. image: {
  41787. source: "./media/characters/zorkaiju/tail-extended.svg"
  41788. }
  41789. },
  41790. tailBottom: {
  41791. height: math.unit(104, "feet"),
  41792. name: "Tail Bottom",
  41793. image: {
  41794. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41795. }
  41796. },
  41797. crystal: {
  41798. height: math.unit(27.54, "feet"),
  41799. name: "Crystal",
  41800. image: {
  41801. source: "./media/characters/zorkaiju/crystal.svg"
  41802. }
  41803. },
  41804. },
  41805. [
  41806. {
  41807. name: "Kaiju",
  41808. height: math.unit(325, "feet"),
  41809. default: true
  41810. },
  41811. ]
  41812. ))
  41813. characterMakers.push(() => makeCharacter(
  41814. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41815. {
  41816. front: {
  41817. height: math.unit(6 + 1/12, "feet"),
  41818. weight: math.unit(115, "lb"),
  41819. name: "Front",
  41820. image: {
  41821. source: "./media/characters/bailey-belfry/front.svg",
  41822. extra: 1240/1121,
  41823. bottom: 101/1341
  41824. }
  41825. },
  41826. },
  41827. [
  41828. {
  41829. name: "Normal",
  41830. height: math.unit(6 + 1/12, "feet"),
  41831. default: true
  41832. },
  41833. ]
  41834. ))
  41835. characterMakers.push(() => makeCharacter(
  41836. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41837. {
  41838. side: {
  41839. height: math.unit(4, "meters"),
  41840. weight: math.unit(250, "kg"),
  41841. name: "Side",
  41842. image: {
  41843. source: "./media/characters/blacky/side.svg",
  41844. extra: 1027/919,
  41845. bottom: 43/1070
  41846. }
  41847. },
  41848. maw: {
  41849. height: math.unit(1, "meters"),
  41850. name: "Maw",
  41851. image: {
  41852. source: "./media/characters/blacky/maw.svg"
  41853. }
  41854. },
  41855. paw: {
  41856. height: math.unit(1, "meters"),
  41857. name: "Paw",
  41858. image: {
  41859. source: "./media/characters/blacky/paw.svg"
  41860. }
  41861. },
  41862. },
  41863. [
  41864. {
  41865. name: "Normal",
  41866. height: math.unit(4, "meters"),
  41867. default: true
  41868. },
  41869. ]
  41870. ))
  41871. characterMakers.push(() => makeCharacter(
  41872. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41873. {
  41874. front: {
  41875. height: math.unit(170, "cm"),
  41876. weight: math.unit(66, "kg"),
  41877. name: "Front",
  41878. image: {
  41879. source: "./media/characters/thux-ei/front.svg",
  41880. extra: 1109/1011,
  41881. bottom: 8/1117
  41882. }
  41883. },
  41884. },
  41885. [
  41886. {
  41887. name: "Normal",
  41888. height: math.unit(170, "cm"),
  41889. default: true
  41890. },
  41891. ]
  41892. ))
  41893. characterMakers.push(() => makeCharacter(
  41894. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41895. {
  41896. front: {
  41897. height: math.unit(5, "feet"),
  41898. weight: math.unit(120, "lb"),
  41899. name: "Front",
  41900. image: {
  41901. source: "./media/characters/roxanne-voltaire/front.svg",
  41902. extra: 1901/1779,
  41903. bottom: 53/1954
  41904. }
  41905. },
  41906. },
  41907. [
  41908. {
  41909. name: "Normal",
  41910. height: math.unit(5, "feet"),
  41911. default: true
  41912. },
  41913. {
  41914. name: "Giant",
  41915. height: math.unit(50, "feet")
  41916. },
  41917. {
  41918. name: "Titan",
  41919. height: math.unit(500, "feet")
  41920. },
  41921. {
  41922. name: "Macro",
  41923. height: math.unit(5000, "feet")
  41924. },
  41925. {
  41926. name: "Megamacro",
  41927. height: math.unit(50000, "feet")
  41928. },
  41929. {
  41930. name: "Gigamacro",
  41931. height: math.unit(500000, "feet")
  41932. },
  41933. {
  41934. name: "Teramacro",
  41935. height: math.unit(5e6, "feet")
  41936. },
  41937. ]
  41938. ))
  41939. characterMakers.push(() => makeCharacter(
  41940. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41941. {
  41942. front: {
  41943. height: math.unit(6 + 2/12, "feet"),
  41944. name: "Front",
  41945. image: {
  41946. source: "./media/characters/squeaks/front.svg",
  41947. extra: 1823/1768,
  41948. bottom: 138/1961
  41949. }
  41950. },
  41951. },
  41952. [
  41953. {
  41954. name: "Micro",
  41955. height: math.unit(0.5, "inches")
  41956. },
  41957. {
  41958. name: "Normal",
  41959. height: math.unit(6 + 2/12, "feet"),
  41960. default: true
  41961. },
  41962. {
  41963. name: "Macro",
  41964. height: math.unit(600, "feet")
  41965. },
  41966. ]
  41967. ))
  41968. characterMakers.push(() => makeCharacter(
  41969. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41970. {
  41971. front: {
  41972. height: math.unit(1.72, "meters"),
  41973. name: "Front",
  41974. image: {
  41975. source: "./media/characters/archinger/front.svg",
  41976. extra: 1861/1675,
  41977. bottom: 125/1986
  41978. }
  41979. },
  41980. back: {
  41981. height: math.unit(1.72, "meters"),
  41982. name: "Back",
  41983. image: {
  41984. source: "./media/characters/archinger/back.svg",
  41985. extra: 1844/1701,
  41986. bottom: 104/1948
  41987. }
  41988. },
  41989. cock: {
  41990. height: math.unit(0.59, "feet"),
  41991. name: "Cock",
  41992. image: {
  41993. source: "./media/characters/archinger/cock.svg"
  41994. }
  41995. },
  41996. },
  41997. [
  41998. {
  41999. name: "Normal",
  42000. height: math.unit(1.72, "meters"),
  42001. default: true
  42002. },
  42003. {
  42004. name: "Macro",
  42005. height: math.unit(84, "meters")
  42006. },
  42007. {
  42008. name: "Macro+",
  42009. height: math.unit(112, "meters")
  42010. },
  42011. {
  42012. name: "Macro++",
  42013. height: math.unit(960, "meters")
  42014. },
  42015. {
  42016. name: "Macro+++",
  42017. height: math.unit(4, "km")
  42018. },
  42019. {
  42020. name: "Macro++++",
  42021. height: math.unit(48, "km")
  42022. },
  42023. {
  42024. name: "Macro+++++",
  42025. height: math.unit(4500, "km")
  42026. },
  42027. ]
  42028. ))
  42029. characterMakers.push(() => makeCharacter(
  42030. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42031. {
  42032. front: {
  42033. height: math.unit(5 + 5/12, "feet"),
  42034. name: "Front",
  42035. image: {
  42036. source: "./media/characters/alsnapz/front.svg",
  42037. extra: 1157/1065,
  42038. bottom: 42/1199
  42039. }
  42040. },
  42041. },
  42042. [
  42043. {
  42044. name: "Normal",
  42045. height: math.unit(5 + 5/12, "feet"),
  42046. default: true
  42047. },
  42048. ]
  42049. ))
  42050. characterMakers.push(() => makeCharacter(
  42051. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42052. {
  42053. side: {
  42054. height: math.unit(3.2, "earths"),
  42055. name: "Side",
  42056. image: {
  42057. source: "./media/characters/mag/side.svg",
  42058. extra: 1331/1008,
  42059. bottom: 52/1383
  42060. }
  42061. },
  42062. wing: {
  42063. height: math.unit(1.94, "earths"),
  42064. name: "Wing",
  42065. image: {
  42066. source: "./media/characters/mag/wing.svg"
  42067. }
  42068. },
  42069. dick: {
  42070. height: math.unit(1.8, "earths"),
  42071. name: "Dick",
  42072. image: {
  42073. source: "./media/characters/mag/dick.svg"
  42074. }
  42075. },
  42076. ass: {
  42077. height: math.unit(1.33, "earths"),
  42078. name: "Ass",
  42079. image: {
  42080. source: "./media/characters/mag/ass.svg"
  42081. }
  42082. },
  42083. head: {
  42084. height: math.unit(1.1, "earths"),
  42085. name: "Head",
  42086. image: {
  42087. source: "./media/characters/mag/head.svg"
  42088. }
  42089. },
  42090. maw: {
  42091. height: math.unit(1.62, "earths"),
  42092. name: "Maw",
  42093. image: {
  42094. source: "./media/characters/mag/maw.svg"
  42095. }
  42096. },
  42097. },
  42098. [
  42099. {
  42100. name: "Small",
  42101. height: math.unit(162, "feet")
  42102. },
  42103. {
  42104. name: "Normal",
  42105. height: math.unit(3.2, "earths"),
  42106. default: true
  42107. },
  42108. ]
  42109. ))
  42110. characterMakers.push(() => makeCharacter(
  42111. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42112. {
  42113. front: {
  42114. height: math.unit(512, "feet"),
  42115. weight: math.unit(63509, "tonnes"),
  42116. name: "Front",
  42117. image: {
  42118. source: "./media/characters/vorrel-harroc/front.svg",
  42119. extra: 1075/1063,
  42120. bottom: 62/1137
  42121. }
  42122. },
  42123. },
  42124. [
  42125. {
  42126. name: "Normal",
  42127. height: math.unit(10, "feet")
  42128. },
  42129. {
  42130. name: "Macro",
  42131. height: math.unit(512, "feet"),
  42132. default: true
  42133. },
  42134. {
  42135. name: "Megamacro",
  42136. height: math.unit(256, "miles")
  42137. },
  42138. {
  42139. name: "Gigamacro",
  42140. height: math.unit(4096, "miles")
  42141. },
  42142. ]
  42143. ))
  42144. characterMakers.push(() => makeCharacter(
  42145. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42146. {
  42147. side: {
  42148. height: math.unit(50, "feet"),
  42149. name: "Side",
  42150. image: {
  42151. source: "./media/characters/froimar/side.svg",
  42152. extra: 855/638,
  42153. bottom: 99/954
  42154. }
  42155. },
  42156. },
  42157. [
  42158. {
  42159. name: "Macro",
  42160. height: math.unit(50, "feet"),
  42161. default: true
  42162. },
  42163. ]
  42164. ))
  42165. characterMakers.push(() => makeCharacter(
  42166. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42167. {
  42168. front: {
  42169. height: math.unit(210, "miles"),
  42170. name: "Front",
  42171. image: {
  42172. source: "./media/characters/timothy/front.svg",
  42173. extra: 1007/943,
  42174. bottom: 62/1069
  42175. }
  42176. },
  42177. frontSkirt: {
  42178. height: math.unit(210, "miles"),
  42179. name: "Front (Skirt)",
  42180. image: {
  42181. source: "./media/characters/timothy/front-skirt.svg",
  42182. extra: 1007/943,
  42183. bottom: 62/1069
  42184. }
  42185. },
  42186. frontCoat: {
  42187. height: math.unit(210, "miles"),
  42188. name: "Front (Coat)",
  42189. image: {
  42190. source: "./media/characters/timothy/front-coat.svg",
  42191. extra: 1007/943,
  42192. bottom: 62/1069
  42193. }
  42194. },
  42195. },
  42196. [
  42197. {
  42198. name: "Macro",
  42199. height: math.unit(210, "miles"),
  42200. default: true
  42201. },
  42202. {
  42203. name: "Megamacro",
  42204. height: math.unit(210000, "miles")
  42205. },
  42206. ]
  42207. ))
  42208. characterMakers.push(() => makeCharacter(
  42209. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42210. {
  42211. front: {
  42212. height: math.unit(188, "feet"),
  42213. name: "Front",
  42214. image: {
  42215. source: "./media/characters/pyotr/front.svg",
  42216. extra: 1912/1826,
  42217. bottom: 18/1930
  42218. }
  42219. },
  42220. },
  42221. [
  42222. {
  42223. name: "Macro",
  42224. height: math.unit(188, "feet"),
  42225. default: true
  42226. },
  42227. {
  42228. name: "Megamacro",
  42229. height: math.unit(8, "miles")
  42230. },
  42231. ]
  42232. ))
  42233. characterMakers.push(() => makeCharacter(
  42234. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42235. {
  42236. side: {
  42237. height: math.unit(10, "feet"),
  42238. weight: math.unit(4500, "lb"),
  42239. name: "Side",
  42240. image: {
  42241. source: "./media/characters/ackart/side.svg",
  42242. extra: 1776/1668,
  42243. bottom: 116/1892
  42244. }
  42245. },
  42246. },
  42247. [
  42248. {
  42249. name: "Normal",
  42250. height: math.unit(10, "feet"),
  42251. default: true
  42252. },
  42253. ]
  42254. ))
  42255. characterMakers.push(() => makeCharacter(
  42256. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42257. {
  42258. side: {
  42259. height: math.unit(21, "feet"),
  42260. name: "Side",
  42261. image: {
  42262. source: "./media/characters/nolow/side.svg",
  42263. extra: 1484/1434,
  42264. bottom: 85/1569
  42265. }
  42266. },
  42267. sideErect: {
  42268. height: math.unit(21, "feet"),
  42269. name: "Side-erect",
  42270. image: {
  42271. source: "./media/characters/nolow/side-erect.svg",
  42272. extra: 1484/1434,
  42273. bottom: 85/1569
  42274. }
  42275. },
  42276. },
  42277. [
  42278. {
  42279. name: "Regular",
  42280. height: math.unit(12, "feet")
  42281. },
  42282. {
  42283. name: "Big Chee",
  42284. height: math.unit(21, "feet"),
  42285. default: true
  42286. },
  42287. ]
  42288. ))
  42289. characterMakers.push(() => makeCharacter(
  42290. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42291. {
  42292. front: {
  42293. height: math.unit(7, "feet"),
  42294. weight: math.unit(250, "lb"),
  42295. name: "Front",
  42296. image: {
  42297. source: "./media/characters/nines/front.svg",
  42298. extra: 1741/1607,
  42299. bottom: 41/1782
  42300. }
  42301. },
  42302. side: {
  42303. height: math.unit(7, "feet"),
  42304. weight: math.unit(250, "lb"),
  42305. name: "Side",
  42306. image: {
  42307. source: "./media/characters/nines/side.svg",
  42308. extra: 1854/1735,
  42309. bottom: 93/1947
  42310. }
  42311. },
  42312. back: {
  42313. height: math.unit(7, "feet"),
  42314. weight: math.unit(250, "lb"),
  42315. name: "Back",
  42316. image: {
  42317. source: "./media/characters/nines/back.svg",
  42318. extra: 1748/1615,
  42319. bottom: 20/1768
  42320. }
  42321. },
  42322. },
  42323. [
  42324. {
  42325. name: "Megamacro",
  42326. height: math.unit(99, "km"),
  42327. default: true
  42328. },
  42329. ]
  42330. ))
  42331. characterMakers.push(() => makeCharacter(
  42332. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42333. {
  42334. front: {
  42335. height: math.unit(5 + 10/12, "feet"),
  42336. weight: math.unit(210, "lb"),
  42337. name: "Front",
  42338. image: {
  42339. source: "./media/characters/zenith/front.svg",
  42340. extra: 1531/1452,
  42341. bottom: 198/1729
  42342. }
  42343. },
  42344. back: {
  42345. height: math.unit(5 + 10/12, "feet"),
  42346. weight: math.unit(210, "lb"),
  42347. name: "Back",
  42348. image: {
  42349. source: "./media/characters/zenith/back.svg",
  42350. extra: 1571/1487,
  42351. bottom: 75/1646
  42352. }
  42353. },
  42354. },
  42355. [
  42356. {
  42357. name: "Normal",
  42358. height: math.unit(5 + 10/12, "feet"),
  42359. default: true
  42360. }
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(4, "feet"),
  42368. weight: math.unit(60, "lb"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/jasper/front.svg",
  42372. extra: 1450/1379,
  42373. bottom: 19/1469
  42374. }
  42375. },
  42376. },
  42377. [
  42378. {
  42379. name: "Normal",
  42380. height: math.unit(4, "feet"),
  42381. default: true
  42382. },
  42383. ]
  42384. ))
  42385. characterMakers.push(() => makeCharacter(
  42386. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42387. {
  42388. front: {
  42389. height: math.unit(6 + 5/12, "feet"),
  42390. weight: math.unit(290, "lb"),
  42391. name: "Front",
  42392. image: {
  42393. source: "./media/characters/tiberius-thyben/front.svg",
  42394. extra: 757/739,
  42395. bottom: 39/796
  42396. }
  42397. },
  42398. },
  42399. [
  42400. {
  42401. name: "Micro",
  42402. height: math.unit(1.5, "inches")
  42403. },
  42404. {
  42405. name: "Normal",
  42406. height: math.unit(6 + 5/12, "feet"),
  42407. default: true
  42408. },
  42409. {
  42410. name: "Macro",
  42411. height: math.unit(300, "feet")
  42412. },
  42413. ]
  42414. ))
  42415. characterMakers.push(() => makeCharacter(
  42416. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42417. {
  42418. front: {
  42419. height: math.unit(5 + 6/12, "feet"),
  42420. weight: math.unit(60, "kg"),
  42421. name: "Front",
  42422. image: {
  42423. source: "./media/characters/sabre/front.svg",
  42424. extra: 738/671,
  42425. bottom: 27/765
  42426. }
  42427. },
  42428. },
  42429. [
  42430. {
  42431. name: "Teeny",
  42432. height: math.unit(2, "inches")
  42433. },
  42434. {
  42435. name: "Smol",
  42436. height: math.unit(8, "inches")
  42437. },
  42438. {
  42439. name: "Normal",
  42440. height: math.unit(5 + 6/12, "feet"),
  42441. default: true
  42442. },
  42443. {
  42444. name: "Mini-Macro",
  42445. height: math.unit(15, "feet")
  42446. },
  42447. {
  42448. name: "Macro",
  42449. height: math.unit(50, "feet")
  42450. },
  42451. ]
  42452. ))
  42453. characterMakers.push(() => makeCharacter(
  42454. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42455. {
  42456. front: {
  42457. height: math.unit(6 + 4/12, "feet"),
  42458. weight: math.unit(170, "lb"),
  42459. name: "Front",
  42460. image: {
  42461. source: "./media/characters/charlie/front.svg",
  42462. extra: 1348/1228,
  42463. bottom: 15/1363
  42464. }
  42465. },
  42466. },
  42467. [
  42468. {
  42469. name: "Macro",
  42470. height: math.unit(1700, "meters"),
  42471. default: true
  42472. },
  42473. {
  42474. name: "MegaMacro",
  42475. height: math.unit(20400, "meters")
  42476. },
  42477. ]
  42478. ))
  42479. characterMakers.push(() => makeCharacter(
  42480. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42481. {
  42482. front: {
  42483. height: math.unit(6 + 3/12, "feet"),
  42484. weight: math.unit(185, "lb"),
  42485. name: "Front",
  42486. image: {
  42487. source: "./media/characters/susan-grant/front.svg",
  42488. extra: 1351/1327,
  42489. bottom: 26/1377
  42490. }
  42491. },
  42492. },
  42493. [
  42494. {
  42495. name: "Normal",
  42496. height: math.unit(6 + 3/12, "feet"),
  42497. default: true
  42498. },
  42499. {
  42500. name: "Macro",
  42501. height: math.unit(225, "feet")
  42502. },
  42503. {
  42504. name: "Macro+",
  42505. height: math.unit(900, "feet")
  42506. },
  42507. {
  42508. name: "MegaMacro",
  42509. height: math.unit(14400, "feet")
  42510. },
  42511. ]
  42512. ))
  42513. characterMakers.push(() => makeCharacter(
  42514. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42515. {
  42516. front: {
  42517. height: math.unit(5 + 4/12, "feet"),
  42518. weight: math.unit(110, "lb"),
  42519. name: "Front",
  42520. image: {
  42521. source: "./media/characters/axel-isanov/front.svg",
  42522. extra: 1096/1065,
  42523. bottom: 13/1109
  42524. }
  42525. },
  42526. },
  42527. [
  42528. {
  42529. name: "Normal",
  42530. height: math.unit(5 + 4/12, "feet"),
  42531. default: true
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42537. {
  42538. front: {
  42539. height: math.unit(9, "feet"),
  42540. weight: math.unit(467, "lb"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/necahual/front.svg",
  42544. extra: 920/873,
  42545. bottom: 26/946
  42546. }
  42547. },
  42548. back: {
  42549. height: math.unit(9, "feet"),
  42550. weight: math.unit(467, "lb"),
  42551. name: "Back",
  42552. image: {
  42553. source: "./media/characters/necahual/back.svg",
  42554. extra: 930/884,
  42555. bottom: 16/946
  42556. }
  42557. },
  42558. frontUnderwear: {
  42559. height: math.unit(9, "feet"),
  42560. weight: math.unit(467, "lb"),
  42561. name: "Front (Underwear)",
  42562. image: {
  42563. source: "./media/characters/necahual/front-underwear.svg",
  42564. extra: 920/873,
  42565. bottom: 26/946
  42566. }
  42567. },
  42568. frontDressed: {
  42569. height: math.unit(9, "feet"),
  42570. weight: math.unit(467, "lb"),
  42571. name: "Front (Dressed)",
  42572. image: {
  42573. source: "./media/characters/necahual/front-dressed.svg",
  42574. extra: 920/873,
  42575. bottom: 26/946
  42576. }
  42577. },
  42578. },
  42579. [
  42580. {
  42581. name: "Comprsesed",
  42582. height: math.unit(9, "feet")
  42583. },
  42584. {
  42585. name: "Natural",
  42586. height: math.unit(15, "feet"),
  42587. default: true
  42588. },
  42589. {
  42590. name: "Boosted",
  42591. height: math.unit(50, "feet")
  42592. },
  42593. {
  42594. name: "Boosted+",
  42595. height: math.unit(150, "feet")
  42596. },
  42597. {
  42598. name: "Max",
  42599. height: math.unit(500, "feet")
  42600. },
  42601. ]
  42602. ))
  42603. characterMakers.push(() => makeCharacter(
  42604. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42605. {
  42606. front: {
  42607. height: math.unit(22 + 1/12, "feet"),
  42608. weight: math.unit(3200, "lb"),
  42609. name: "Front",
  42610. image: {
  42611. source: "./media/characters/theo-acacia/front.svg",
  42612. extra: 1796/1741,
  42613. bottom: 83/1879
  42614. }
  42615. },
  42616. frontUnderwear: {
  42617. height: math.unit(22 + 1/12, "feet"),
  42618. weight: math.unit(3200, "lb"),
  42619. name: "Front (Underwear)",
  42620. image: {
  42621. source: "./media/characters/theo-acacia/front-underwear.svg",
  42622. extra: 1796/1741,
  42623. bottom: 83/1879
  42624. }
  42625. },
  42626. frontNude: {
  42627. height: math.unit(22 + 1/12, "feet"),
  42628. weight: math.unit(3200, "lb"),
  42629. name: "Front (Nude)",
  42630. image: {
  42631. source: "./media/characters/theo-acacia/front-nude.svg",
  42632. extra: 1796/1741,
  42633. bottom: 83/1879
  42634. }
  42635. },
  42636. },
  42637. [
  42638. {
  42639. name: "Normal",
  42640. height: math.unit(22 + 1/12, "feet"),
  42641. default: true
  42642. },
  42643. ]
  42644. ))
  42645. characterMakers.push(() => makeCharacter(
  42646. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42647. {
  42648. front: {
  42649. height: math.unit(20, "feet"),
  42650. name: "Front",
  42651. image: {
  42652. source: "./media/characters/astra/front.svg",
  42653. extra: 1850/1714,
  42654. bottom: 106/1956
  42655. }
  42656. },
  42657. frontUndressed: {
  42658. height: math.unit(20, "feet"),
  42659. name: "Front (Undressed)",
  42660. image: {
  42661. source: "./media/characters/astra/front-undressed.svg",
  42662. extra: 1926/1749,
  42663. bottom: 0/1926
  42664. }
  42665. },
  42666. hand: {
  42667. height: math.unit(1.53, "feet"),
  42668. name: "Hand",
  42669. image: {
  42670. source: "./media/characters/astra/hand.svg"
  42671. }
  42672. },
  42673. paw: {
  42674. height: math.unit(1.53, "feet"),
  42675. name: "Paw",
  42676. image: {
  42677. source: "./media/characters/astra/paw.svg"
  42678. }
  42679. },
  42680. },
  42681. [
  42682. {
  42683. name: "Smallest",
  42684. height: math.unit(20, "feet")
  42685. },
  42686. {
  42687. name: "Normal",
  42688. height: math.unit(1e9, "miles"),
  42689. default: true
  42690. },
  42691. {
  42692. name: "Larger",
  42693. height: math.unit(5, "multiverses")
  42694. },
  42695. {
  42696. name: "Largest",
  42697. height: math.unit(1e9, "multiverses")
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42703. {
  42704. front: {
  42705. height: math.unit(8, "feet"),
  42706. name: "Front",
  42707. image: {
  42708. source: "./media/characters/breanna/front.svg",
  42709. extra: 1912/1632,
  42710. bottom: 33/1945
  42711. }
  42712. },
  42713. },
  42714. [
  42715. {
  42716. name: "Smallest",
  42717. height: math.unit(8, "feet")
  42718. },
  42719. {
  42720. name: "Normal",
  42721. height: math.unit(1, "mile"),
  42722. default: true
  42723. },
  42724. {
  42725. name: "Maximum",
  42726. height: math.unit(1500000000000, "lightyears")
  42727. },
  42728. ]
  42729. ))
  42730. characterMakers.push(() => makeCharacter(
  42731. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42732. {
  42733. front: {
  42734. height: math.unit(5 + 11/12, "feet"),
  42735. weight: math.unit(155, "lb"),
  42736. name: "Front",
  42737. image: {
  42738. source: "./media/characters/cai/front.svg",
  42739. extra: 1823/1702,
  42740. bottom: 32/1855
  42741. }
  42742. },
  42743. back: {
  42744. height: math.unit(5 + 11/12, "feet"),
  42745. weight: math.unit(155, "lb"),
  42746. name: "Back",
  42747. image: {
  42748. source: "./media/characters/cai/back.svg",
  42749. extra: 1809/1708,
  42750. bottom: 31/1840
  42751. }
  42752. },
  42753. },
  42754. [
  42755. {
  42756. name: "Normal",
  42757. height: math.unit(5 + 11/12, "feet"),
  42758. default: true
  42759. },
  42760. {
  42761. name: "Big",
  42762. height: math.unit(15, "feet")
  42763. },
  42764. {
  42765. name: "Macro",
  42766. height: math.unit(200, "feet")
  42767. },
  42768. ]
  42769. ))
  42770. characterMakers.push(() => makeCharacter(
  42771. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42772. {
  42773. front: {
  42774. height: math.unit(5 + 6/12, "feet"),
  42775. weight: math.unit(160, "lb"),
  42776. name: "Front",
  42777. image: {
  42778. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42779. extra: 1227/1174,
  42780. bottom: 37/1264
  42781. }
  42782. },
  42783. },
  42784. [
  42785. {
  42786. name: "Macro",
  42787. height: math.unit(444, "meters"),
  42788. default: true
  42789. },
  42790. ]
  42791. ))
  42792. characterMakers.push(() => makeCharacter(
  42793. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42794. {
  42795. front: {
  42796. height: math.unit(18 + 7/12, "feet"),
  42797. name: "Front",
  42798. image: {
  42799. source: "./media/characters/rex/front.svg",
  42800. extra: 1941/1807,
  42801. bottom: 66/2007
  42802. }
  42803. },
  42804. back: {
  42805. height: math.unit(18 + 7/12, "feet"),
  42806. name: "Back",
  42807. image: {
  42808. source: "./media/characters/rex/back.svg",
  42809. extra: 1937/1822,
  42810. bottom: 42/1979
  42811. }
  42812. },
  42813. boot: {
  42814. height: math.unit(3.45, "feet"),
  42815. name: "Boot",
  42816. image: {
  42817. source: "./media/characters/rex/boot.svg"
  42818. }
  42819. },
  42820. paw: {
  42821. height: math.unit(4.17, "feet"),
  42822. name: "Paw",
  42823. image: {
  42824. source: "./media/characters/rex/paw.svg"
  42825. }
  42826. },
  42827. head: {
  42828. height: math.unit(6.728, "feet"),
  42829. name: "Head",
  42830. image: {
  42831. source: "./media/characters/rex/head.svg"
  42832. }
  42833. },
  42834. },
  42835. [
  42836. {
  42837. name: "Nano",
  42838. height: math.unit(18 + 7/12, "feet")
  42839. },
  42840. {
  42841. name: "Micro",
  42842. height: math.unit(1.5, "megameters")
  42843. },
  42844. {
  42845. name: "Normal",
  42846. height: math.unit(440, "megameters"),
  42847. default: true
  42848. },
  42849. {
  42850. name: "Macro",
  42851. height: math.unit(2.5, "gigameters")
  42852. },
  42853. {
  42854. name: "Gigamacro",
  42855. height: math.unit(2, "galaxies")
  42856. },
  42857. ]
  42858. ))
  42859. characterMakers.push(() => makeCharacter(
  42860. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42861. {
  42862. side: {
  42863. height: math.unit(32, "feet"),
  42864. weight: math.unit(250000, "lb"),
  42865. name: "Side",
  42866. image: {
  42867. source: "./media/characters/silverwing/side.svg",
  42868. extra: 1100/1019,
  42869. bottom: 204/1304
  42870. }
  42871. },
  42872. },
  42873. [
  42874. {
  42875. name: "Normal",
  42876. height: math.unit(32, "feet"),
  42877. default: true
  42878. },
  42879. ]
  42880. ))
  42881. characterMakers.push(() => makeCharacter(
  42882. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42883. {
  42884. front: {
  42885. height: math.unit(6 + 6/12, "feet"),
  42886. weight: math.unit(350, "lb"),
  42887. name: "Front",
  42888. image: {
  42889. source: "./media/characters/tristan-hawthorne/front.svg",
  42890. extra: 1159/1124,
  42891. bottom: 37/1196
  42892. },
  42893. form: "labrador",
  42894. default: true
  42895. },
  42896. skunkFront: {
  42897. height: math.unit(4 + 6/12, "feet"),
  42898. weight: math.unit(120, "lb"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42902. extra: 1609/1551,
  42903. bottom: 169/1778
  42904. },
  42905. form: "skunk",
  42906. default: true
  42907. },
  42908. },
  42909. [
  42910. {
  42911. name: "Normal",
  42912. height: math.unit(6 + 6/12, "feet"),
  42913. form: "labrador",
  42914. default: true
  42915. },
  42916. {
  42917. name: "Normal",
  42918. height: math.unit(4 + 6/12, "feet"),
  42919. form: "skunk",
  42920. default: true
  42921. },
  42922. ],
  42923. {
  42924. "labrador": {
  42925. name: "Labrador",
  42926. default: true
  42927. },
  42928. "skunk": {
  42929. name: "Skunk"
  42930. }
  42931. }
  42932. ))
  42933. characterMakers.push(() => makeCharacter(
  42934. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42935. {
  42936. front: {
  42937. height: math.unit(5 + 11/12, "feet"),
  42938. weight: math.unit(190, "lb"),
  42939. name: "Front",
  42940. image: {
  42941. source: "./media/characters/mizu/front.svg",
  42942. extra: 1988/1788,
  42943. bottom: 14/2002
  42944. }
  42945. },
  42946. },
  42947. [
  42948. {
  42949. name: "Normal",
  42950. height: math.unit(5 + 11/12, "feet"),
  42951. default: true
  42952. },
  42953. ]
  42954. ))
  42955. characterMakers.push(() => makeCharacter(
  42956. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42957. {
  42958. front: {
  42959. height: math.unit(1.7, "feet"),
  42960. weight: math.unit(50, "lb"),
  42961. name: "Front",
  42962. image: {
  42963. source: "./media/characters/dechroma/front.svg",
  42964. extra: 1095/859,
  42965. bottom: 64/1159
  42966. }
  42967. },
  42968. },
  42969. [
  42970. {
  42971. name: "Normal",
  42972. height: math.unit(1.7, "feet"),
  42973. default: true
  42974. },
  42975. ]
  42976. ))
  42977. characterMakers.push(() => makeCharacter(
  42978. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42979. {
  42980. side: {
  42981. height: math.unit(30, "feet"),
  42982. name: "Side",
  42983. image: {
  42984. source: "./media/characters/veluren-thanazel/side.svg",
  42985. extra: 1611/633,
  42986. bottom: 118/1729
  42987. }
  42988. },
  42989. front: {
  42990. height: math.unit(30, "feet"),
  42991. name: "Front",
  42992. image: {
  42993. source: "./media/characters/veluren-thanazel/front.svg",
  42994. extra: 1486/636,
  42995. bottom: 238/1724
  42996. }
  42997. },
  42998. head: {
  42999. height: math.unit(21.4, "feet"),
  43000. name: "Head",
  43001. image: {
  43002. source: "./media/characters/veluren-thanazel/head.svg"
  43003. }
  43004. },
  43005. genitals: {
  43006. height: math.unit(19.4, "feet"),
  43007. name: "Genitals",
  43008. image: {
  43009. source: "./media/characters/veluren-thanazel/genitals.svg"
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Social",
  43016. height: math.unit(6, "feet")
  43017. },
  43018. {
  43019. name: "Play",
  43020. height: math.unit(12, "feet")
  43021. },
  43022. {
  43023. name: "True",
  43024. height: math.unit(30, "feet"),
  43025. default: true
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43031. {
  43032. front: {
  43033. height: math.unit(7 + 6/12, "feet"),
  43034. weight: math.unit(500, "kg"),
  43035. name: "Front",
  43036. image: {
  43037. source: "./media/characters/arcturas/front.svg",
  43038. extra: 1700/1500,
  43039. bottom: 145/1845
  43040. }
  43041. },
  43042. },
  43043. [
  43044. {
  43045. name: "Normal",
  43046. height: math.unit(7 + 6/12, "feet"),
  43047. default: true
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43053. {
  43054. side: {
  43055. height: math.unit(6, "feet"),
  43056. weight: math.unit(2, "tons"),
  43057. name: "Side",
  43058. image: {
  43059. source: "./media/characters/vitaen/side.svg",
  43060. extra: 1157/617,
  43061. bottom: 122/1279
  43062. }
  43063. },
  43064. },
  43065. [
  43066. {
  43067. name: "Normal",
  43068. height: math.unit(6, "feet"),
  43069. default: true
  43070. },
  43071. ]
  43072. ))
  43073. characterMakers.push(() => makeCharacter(
  43074. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43075. {
  43076. front: {
  43077. height: math.unit(19, "feet"),
  43078. name: "Front",
  43079. image: {
  43080. source: "./media/characters/fia-dreamweaver/front.svg",
  43081. extra: 1630/1504,
  43082. bottom: 25/1655
  43083. }
  43084. },
  43085. },
  43086. [
  43087. {
  43088. name: "Normal",
  43089. height: math.unit(19, "feet"),
  43090. default: true
  43091. },
  43092. ]
  43093. ))
  43094. characterMakers.push(() => makeCharacter(
  43095. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43096. {
  43097. front: {
  43098. height: math.unit(5 + 4/12, "feet"),
  43099. name: "Front",
  43100. image: {
  43101. source: "./media/characters/artan/front.svg",
  43102. extra: 1618/1535,
  43103. bottom: 46/1664
  43104. }
  43105. },
  43106. back: {
  43107. height: math.unit(5 + 4/12, "feet"),
  43108. name: "Back",
  43109. image: {
  43110. source: "./media/characters/artan/back.svg",
  43111. extra: 1618/1543,
  43112. bottom: 31/1649
  43113. }
  43114. },
  43115. },
  43116. [
  43117. {
  43118. name: "Normal",
  43119. height: math.unit(5 + 4/12, "feet"),
  43120. default: true
  43121. },
  43122. ]
  43123. ))
  43124. characterMakers.push(() => makeCharacter(
  43125. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43126. {
  43127. side: {
  43128. height: math.unit(182, "cm"),
  43129. weight: math.unit(1000, "lb"),
  43130. name: "Side",
  43131. image: {
  43132. source: "./media/characters/silver-dragon/side.svg",
  43133. extra: 710/287,
  43134. bottom: 88/798
  43135. }
  43136. },
  43137. },
  43138. [
  43139. {
  43140. name: "Normal",
  43141. height: math.unit(182, "cm"),
  43142. default: true
  43143. },
  43144. ]
  43145. ))
  43146. characterMakers.push(() => makeCharacter(
  43147. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43148. {
  43149. side: {
  43150. height: math.unit(6 + 6/12, "feet"),
  43151. weight: math.unit(1.5, "tons"),
  43152. name: "Side",
  43153. image: {
  43154. source: "./media/characters/zephyr/side.svg",
  43155. extra: 1433/586,
  43156. bottom: 109/1542
  43157. }
  43158. },
  43159. },
  43160. [
  43161. {
  43162. name: "Normal",
  43163. height: math.unit(6 + 6/12, "feet"),
  43164. default: true
  43165. },
  43166. ]
  43167. ))
  43168. characterMakers.push(() => makeCharacter(
  43169. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43170. {
  43171. side: {
  43172. height: math.unit(1, "feet"),
  43173. name: "Side",
  43174. image: {
  43175. source: "./media/characters/vixye/side.svg",
  43176. extra: 632/541,
  43177. bottom: 0/632
  43178. }
  43179. },
  43180. },
  43181. [
  43182. {
  43183. name: "Normal",
  43184. height: math.unit(1, "feet"),
  43185. default: true
  43186. },
  43187. {
  43188. name: "True",
  43189. height: math.unit(1e15, "multiverses")
  43190. },
  43191. ]
  43192. ))
  43193. characterMakers.push(() => makeCharacter(
  43194. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43195. {
  43196. front: {
  43197. height: math.unit(8 + 2/12, "feet"),
  43198. weight: math.unit(650, "lb"),
  43199. name: "Front",
  43200. image: {
  43201. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43202. extra: 1174/1137,
  43203. bottom: 82/1256
  43204. }
  43205. },
  43206. back: {
  43207. height: math.unit(8 + 2/12, "feet"),
  43208. weight: math.unit(650, "lb"),
  43209. name: "Back",
  43210. image: {
  43211. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43212. extra: 1204/1157,
  43213. bottom: 46/1250
  43214. }
  43215. },
  43216. },
  43217. [
  43218. {
  43219. name: "Wildform",
  43220. height: math.unit(8 + 2/12, "feet"),
  43221. default: true
  43222. },
  43223. ]
  43224. ))
  43225. characterMakers.push(() => makeCharacter(
  43226. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43227. {
  43228. front: {
  43229. height: math.unit(18, "feet"),
  43230. name: "Front",
  43231. image: {
  43232. source: "./media/characters/cyphin/front.svg",
  43233. extra: 970/886,
  43234. bottom: 42/1012
  43235. }
  43236. },
  43237. back: {
  43238. height: math.unit(18, "feet"),
  43239. name: "Back",
  43240. image: {
  43241. source: "./media/characters/cyphin/back.svg",
  43242. extra: 1009/894,
  43243. bottom: 24/1033
  43244. }
  43245. },
  43246. head: {
  43247. height: math.unit(5.05, "feet"),
  43248. name: "Head",
  43249. image: {
  43250. source: "./media/characters/cyphin/head.svg"
  43251. }
  43252. },
  43253. tailbud: {
  43254. height: math.unit(5, "feet"),
  43255. name: "Tailbud",
  43256. image: {
  43257. source: "./media/characters/cyphin/tailbud.svg"
  43258. }
  43259. },
  43260. },
  43261. [
  43262. ]
  43263. ))
  43264. characterMakers.push(() => makeCharacter(
  43265. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43266. {
  43267. side: {
  43268. height: math.unit(10, "feet"),
  43269. weight: math.unit(6, "tons"),
  43270. name: "Side",
  43271. image: {
  43272. source: "./media/characters/raijin/side.svg",
  43273. extra: 1529/613,
  43274. bottom: 337/1866
  43275. }
  43276. },
  43277. },
  43278. [
  43279. {
  43280. name: "Normal",
  43281. height: math.unit(10, "feet"),
  43282. default: true
  43283. },
  43284. ]
  43285. ))
  43286. characterMakers.push(() => makeCharacter(
  43287. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43288. {
  43289. side: {
  43290. height: math.unit(9, "feet"),
  43291. name: "Side",
  43292. image: {
  43293. source: "./media/characters/nilghais/side.svg",
  43294. extra: 1047/744,
  43295. bottom: 91/1138
  43296. }
  43297. },
  43298. head: {
  43299. height: math.unit(3.14, "feet"),
  43300. name: "Head",
  43301. image: {
  43302. source: "./media/characters/nilghais/head.svg"
  43303. }
  43304. },
  43305. mouth: {
  43306. height: math.unit(4.6, "feet"),
  43307. name: "Mouth",
  43308. image: {
  43309. source: "./media/characters/nilghais/mouth.svg"
  43310. }
  43311. },
  43312. wings: {
  43313. height: math.unit(24, "feet"),
  43314. name: "Wings",
  43315. image: {
  43316. source: "./media/characters/nilghais/wings.svg"
  43317. }
  43318. },
  43319. ass: {
  43320. height: math.unit(6.12, "feet"),
  43321. name: "Ass",
  43322. image: {
  43323. source: "./media/characters/nilghais/ass.svg"
  43324. }
  43325. },
  43326. },
  43327. [
  43328. {
  43329. name: "Normal",
  43330. height: math.unit(9, "feet"),
  43331. default: true
  43332. },
  43333. ]
  43334. ))
  43335. characterMakers.push(() => makeCharacter(
  43336. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43337. {
  43338. regular: {
  43339. height: math.unit(16 + 2/12, "feet"),
  43340. weight: math.unit(2300, "lb"),
  43341. name: "Regular",
  43342. image: {
  43343. source: "./media/characters/zolgar/regular.svg",
  43344. extra: 1246/1004,
  43345. bottom: 124/1370
  43346. }
  43347. },
  43348. boxers: {
  43349. height: math.unit(16 + 2/12, "feet"),
  43350. weight: math.unit(2300, "lb"),
  43351. name: "Boxers",
  43352. image: {
  43353. source: "./media/characters/zolgar/boxers.svg",
  43354. extra: 1246/1004,
  43355. bottom: 124/1370
  43356. }
  43357. },
  43358. armored: {
  43359. height: math.unit(16 + 2/12, "feet"),
  43360. weight: math.unit(2300, "lb"),
  43361. name: "Armored",
  43362. image: {
  43363. source: "./media/characters/zolgar/armored.svg",
  43364. extra: 1246/1004,
  43365. bottom: 124/1370
  43366. }
  43367. },
  43368. goth: {
  43369. height: math.unit(16 + 2/12, "feet"),
  43370. weight: math.unit(2300, "lb"),
  43371. name: "Goth",
  43372. image: {
  43373. source: "./media/characters/zolgar/goth.svg",
  43374. extra: 1246/1004,
  43375. bottom: 124/1370
  43376. }
  43377. },
  43378. },
  43379. [
  43380. {
  43381. name: "Shrunken Down",
  43382. height: math.unit(9 + 2/12, "feet")
  43383. },
  43384. {
  43385. name: "Normal",
  43386. height: math.unit(16 + 2/12, "feet"),
  43387. default: true
  43388. },
  43389. ]
  43390. ))
  43391. characterMakers.push(() => makeCharacter(
  43392. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43393. {
  43394. front: {
  43395. height: math.unit(6, "feet"),
  43396. weight: math.unit(168, "lb"),
  43397. name: "Front",
  43398. image: {
  43399. source: "./media/characters/luca/front.svg",
  43400. extra: 841/667,
  43401. bottom: 102/943
  43402. }
  43403. },
  43404. },
  43405. [
  43406. {
  43407. name: "Normal",
  43408. height: math.unit(6, "feet"),
  43409. default: true
  43410. },
  43411. ]
  43412. ))
  43413. characterMakers.push(() => makeCharacter(
  43414. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43415. {
  43416. side: {
  43417. height: math.unit(7 + 3/12, "feet"),
  43418. weight: math.unit(312, "lb"),
  43419. name: "Side",
  43420. image: {
  43421. source: "./media/characters/zezo/side.svg",
  43422. extra: 1192/1067,
  43423. bottom: 63/1255
  43424. }
  43425. },
  43426. },
  43427. [
  43428. {
  43429. name: "Normal",
  43430. height: math.unit(7 + 3/12, "feet"),
  43431. default: true
  43432. },
  43433. ]
  43434. ))
  43435. characterMakers.push(() => makeCharacter(
  43436. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43437. {
  43438. front: {
  43439. height: math.unit(5 + 5/12, "feet"),
  43440. weight: math.unit(170, "lb"),
  43441. name: "Front",
  43442. image: {
  43443. source: "./media/characters/mayso/front.svg",
  43444. extra: 1215/1108,
  43445. bottom: 16/1231
  43446. }
  43447. },
  43448. },
  43449. [
  43450. {
  43451. name: "Normal",
  43452. height: math.unit(5 + 5/12, "feet"),
  43453. default: true
  43454. },
  43455. ]
  43456. ))
  43457. characterMakers.push(() => makeCharacter(
  43458. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43459. {
  43460. front: {
  43461. height: math.unit(4 + 3/12, "feet"),
  43462. weight: math.unit(80, "lb"),
  43463. name: "Front",
  43464. image: {
  43465. source: "./media/characters/hess/front.svg",
  43466. extra: 1200/1123,
  43467. bottom: 16/1216
  43468. }
  43469. },
  43470. },
  43471. [
  43472. {
  43473. name: "Normal",
  43474. height: math.unit(4 + 3/12, "feet"),
  43475. default: true
  43476. },
  43477. ]
  43478. ))
  43479. characterMakers.push(() => makeCharacter(
  43480. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43481. {
  43482. front: {
  43483. height: math.unit(1.9, "meters"),
  43484. name: "Front",
  43485. image: {
  43486. source: "./media/characters/ashgar/front.svg",
  43487. extra: 1177/1146,
  43488. bottom: 99/1276
  43489. }
  43490. },
  43491. back: {
  43492. height: math.unit(1.9, "meters"),
  43493. name: "Back",
  43494. image: {
  43495. source: "./media/characters/ashgar/back.svg",
  43496. extra: 1201/1183,
  43497. bottom: 53/1254
  43498. }
  43499. },
  43500. feral: {
  43501. height: math.unit(1.4, "meters"),
  43502. name: "Feral",
  43503. image: {
  43504. source: "./media/characters/ashgar/feral.svg",
  43505. extra: 370/345,
  43506. bottom: 45/415
  43507. }
  43508. },
  43509. },
  43510. [
  43511. {
  43512. name: "Normal",
  43513. height: math.unit(1.9, "meters"),
  43514. default: true
  43515. },
  43516. ]
  43517. ))
  43518. characterMakers.push(() => makeCharacter(
  43519. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43520. {
  43521. regular: {
  43522. height: math.unit(6, "feet"),
  43523. weight: math.unit(220, "lb"),
  43524. name: "Regular",
  43525. image: {
  43526. source: "./media/characters/phillip/regular.svg",
  43527. extra: 1373/1277,
  43528. bottom: 75/1448
  43529. }
  43530. },
  43531. dressed: {
  43532. height: math.unit(6, "feet"),
  43533. weight: math.unit(220, "lb"),
  43534. name: "Dressed",
  43535. image: {
  43536. source: "./media/characters/phillip/dressed.svg",
  43537. extra: 1373/1277,
  43538. bottom: 75/1448
  43539. }
  43540. },
  43541. paw: {
  43542. height: math.unit(1.44, "feet"),
  43543. name: "Paw",
  43544. image: {
  43545. source: "./media/characters/phillip/paw.svg"
  43546. }
  43547. },
  43548. },
  43549. [
  43550. {
  43551. name: "Normal",
  43552. height: math.unit(6, "feet"),
  43553. default: true
  43554. },
  43555. ]
  43556. ))
  43557. characterMakers.push(() => makeCharacter(
  43558. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43559. {
  43560. side: {
  43561. height: math.unit(42, "feet"),
  43562. name: "Side",
  43563. image: {
  43564. source: "./media/characters/uvula/side.svg",
  43565. extra: 683/586,
  43566. bottom: 60/743
  43567. }
  43568. },
  43569. front: {
  43570. height: math.unit(42, "feet"),
  43571. name: "Front",
  43572. image: {
  43573. source: "./media/characters/uvula/front.svg",
  43574. extra: 705/613,
  43575. bottom: 54/759
  43576. }
  43577. },
  43578. maw: {
  43579. height: math.unit(23.5, "feet"),
  43580. name: "Maw",
  43581. image: {
  43582. source: "./media/characters/uvula/maw.svg"
  43583. }
  43584. },
  43585. },
  43586. [
  43587. {
  43588. name: "Original Size",
  43589. height: math.unit(14, "inches")
  43590. },
  43591. {
  43592. name: "Human Size",
  43593. height: math.unit(6, "feet")
  43594. },
  43595. {
  43596. name: "Big",
  43597. height: math.unit(42, "feet"),
  43598. default: true
  43599. },
  43600. {
  43601. name: "Bigger",
  43602. height: math.unit(100, "feet")
  43603. },
  43604. ]
  43605. ))
  43606. characterMakers.push(() => makeCharacter(
  43607. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43608. {
  43609. front: {
  43610. height: math.unit(5 + 11/12, "feet"),
  43611. name: "Front",
  43612. image: {
  43613. source: "./media/characters/lannah/front.svg",
  43614. extra: 1208/1113,
  43615. bottom: 97/1305
  43616. }
  43617. },
  43618. },
  43619. [
  43620. {
  43621. name: "Normal",
  43622. height: math.unit(5 + 11/12, "feet"),
  43623. default: true
  43624. },
  43625. ]
  43626. ))
  43627. characterMakers.push(() => makeCharacter(
  43628. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43629. {
  43630. front: {
  43631. height: math.unit(6 + 3/12, "feet"),
  43632. weight: math.unit(3.5, "tons"),
  43633. name: "Front",
  43634. image: {
  43635. source: "./media/characters/emberflame/front.svg",
  43636. extra: 1198/672,
  43637. bottom: 82/1280
  43638. }
  43639. },
  43640. side: {
  43641. height: math.unit(6 + 3/12, "feet"),
  43642. weight: math.unit(3.5, "tons"),
  43643. name: "Side",
  43644. image: {
  43645. source: "./media/characters/emberflame/side.svg",
  43646. extra: 938/527,
  43647. bottom: 56/994
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Normal",
  43654. height: math.unit(6 + 3/12, "feet"),
  43655. default: true
  43656. },
  43657. ]
  43658. ))
  43659. characterMakers.push(() => makeCharacter(
  43660. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43661. {
  43662. side: {
  43663. height: math.unit(17.5, "feet"),
  43664. weight: math.unit(35, "tons"),
  43665. name: "Side",
  43666. image: {
  43667. source: "./media/characters/sophie-ambrose/side.svg",
  43668. extra: 1573/1242,
  43669. bottom: 71/1644
  43670. }
  43671. },
  43672. maw: {
  43673. height: math.unit(7.4, "feet"),
  43674. name: "Maw",
  43675. image: {
  43676. source: "./media/characters/sophie-ambrose/maw.svg"
  43677. }
  43678. },
  43679. },
  43680. [
  43681. {
  43682. name: "Normal",
  43683. height: math.unit(17.5, "feet"),
  43684. default: true
  43685. },
  43686. ]
  43687. ))
  43688. characterMakers.push(() => makeCharacter(
  43689. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43690. {
  43691. front: {
  43692. height: math.unit(280, "feet"),
  43693. weight: math.unit(550, "tons"),
  43694. name: "Front",
  43695. image: {
  43696. source: "./media/characters/king-mugi/front.svg",
  43697. extra: 1102/947,
  43698. bottom: 104/1206
  43699. }
  43700. },
  43701. },
  43702. [
  43703. {
  43704. name: "King Mugi",
  43705. height: math.unit(280, "feet"),
  43706. default: true
  43707. },
  43708. ]
  43709. ))
  43710. characterMakers.push(() => makeCharacter(
  43711. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43712. {
  43713. front: {
  43714. height: math.unit(64, "meters"),
  43715. name: "Front",
  43716. image: {
  43717. source: "./media/characters/nova-fox/front.svg",
  43718. extra: 1310/1246,
  43719. bottom: 65/1375
  43720. }
  43721. },
  43722. },
  43723. [
  43724. {
  43725. name: "Macro",
  43726. height: math.unit(64, "meters"),
  43727. default: true
  43728. },
  43729. ]
  43730. ))
  43731. characterMakers.push(() => makeCharacter(
  43732. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43733. {
  43734. front: {
  43735. height: math.unit(6 + 3/12, "feet"),
  43736. weight: math.unit(170, "lb"),
  43737. name: "Front",
  43738. image: {
  43739. source: "./media/characters/sam-bat/front.svg",
  43740. extra: 1601/1411,
  43741. bottom: 125/1726
  43742. }
  43743. },
  43744. back: {
  43745. height: math.unit(6 + 3/12, "feet"),
  43746. weight: math.unit(170, "lb"),
  43747. name: "Back",
  43748. image: {
  43749. source: "./media/characters/sam-bat/back.svg",
  43750. extra: 1577/1405,
  43751. bottom: 58/1635
  43752. }
  43753. },
  43754. },
  43755. [
  43756. {
  43757. name: "Normal",
  43758. height: math.unit(6 + 3/12, "feet"),
  43759. default: true
  43760. },
  43761. ]
  43762. ))
  43763. characterMakers.push(() => makeCharacter(
  43764. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43765. {
  43766. front: {
  43767. height: math.unit(59, "feet"),
  43768. weight: math.unit(40000, "lb"),
  43769. name: "Front",
  43770. image: {
  43771. source: "./media/characters/inari/front.svg",
  43772. extra: 1884/1350,
  43773. bottom: 95/1979
  43774. }
  43775. },
  43776. },
  43777. [
  43778. {
  43779. name: "Gigantamax",
  43780. height: math.unit(59, "feet"),
  43781. default: true
  43782. },
  43783. ]
  43784. ))
  43785. characterMakers.push(() => makeCharacter(
  43786. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43787. {
  43788. front: {
  43789. height: math.unit(5 + 8/12, "feet"),
  43790. name: "Front",
  43791. image: {
  43792. source: "./media/characters/elizabeth/front.svg",
  43793. extra: 1395/1298,
  43794. bottom: 54/1449
  43795. }
  43796. },
  43797. mouth: {
  43798. height: math.unit(1.97, "feet"),
  43799. name: "Mouth",
  43800. image: {
  43801. source: "./media/characters/elizabeth/mouth.svg"
  43802. }
  43803. },
  43804. foot: {
  43805. height: math.unit(1.17, "feet"),
  43806. name: "Foot",
  43807. image: {
  43808. source: "./media/characters/elizabeth/foot.svg"
  43809. }
  43810. },
  43811. },
  43812. [
  43813. {
  43814. name: "Normal",
  43815. height: math.unit(5 + 8/12, "feet"),
  43816. default: true
  43817. },
  43818. {
  43819. name: "Minimacro",
  43820. height: math.unit(18, "feet")
  43821. },
  43822. {
  43823. name: "Macro",
  43824. height: math.unit(180, "feet")
  43825. },
  43826. ]
  43827. ))
  43828. characterMakers.push(() => makeCharacter(
  43829. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43830. {
  43831. front: {
  43832. height: math.unit(5 + 2/12, "feet"),
  43833. name: "Front",
  43834. image: {
  43835. source: "./media/characters/october-gossamer/front.svg",
  43836. extra: 505/454,
  43837. bottom: 7/512
  43838. }
  43839. },
  43840. back: {
  43841. height: math.unit(5 + 2/12, "feet"),
  43842. name: "Back",
  43843. image: {
  43844. source: "./media/characters/october-gossamer/back.svg",
  43845. extra: 501/454,
  43846. bottom: 11/512
  43847. }
  43848. },
  43849. },
  43850. [
  43851. {
  43852. name: "Normal",
  43853. height: math.unit(5 + 2/12, "feet"),
  43854. default: true
  43855. },
  43856. ]
  43857. ))
  43858. characterMakers.push(() => makeCharacter(
  43859. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43860. {
  43861. front: {
  43862. height: math.unit(5, "feet"),
  43863. name: "Front",
  43864. image: {
  43865. source: "./media/characters/epiglottis/front.svg",
  43866. extra: 923/849,
  43867. bottom: 17/940
  43868. }
  43869. },
  43870. },
  43871. [
  43872. {
  43873. name: "Original Size",
  43874. height: math.unit(10, "inches")
  43875. },
  43876. {
  43877. name: "Human Size",
  43878. height: math.unit(5, "feet"),
  43879. default: true
  43880. },
  43881. {
  43882. name: "Big",
  43883. height: math.unit(25, "feet")
  43884. },
  43885. {
  43886. name: "Bigger",
  43887. height: math.unit(50, "feet")
  43888. },
  43889. {
  43890. name: "oh lawd",
  43891. height: math.unit(75, "feet")
  43892. },
  43893. ]
  43894. ))
  43895. characterMakers.push(() => makeCharacter(
  43896. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43897. {
  43898. front: {
  43899. height: math.unit(2 + 4/12, "feet"),
  43900. weight: math.unit(60, "lb"),
  43901. name: "Front",
  43902. image: {
  43903. source: "./media/characters/lerm/front.svg",
  43904. extra: 796/790,
  43905. bottom: 79/875
  43906. }
  43907. },
  43908. },
  43909. [
  43910. {
  43911. name: "Normal",
  43912. height: math.unit(2 + 4/12, "feet"),
  43913. default: true
  43914. },
  43915. ]
  43916. ))
  43917. characterMakers.push(() => makeCharacter(
  43918. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43919. {
  43920. front: {
  43921. height: math.unit(5.5, "feet"),
  43922. weight: math.unit(130, "lb"),
  43923. name: "Front",
  43924. image: {
  43925. source: "./media/characters/xena-nebadon/front.svg",
  43926. extra: 1828/1730,
  43927. bottom: 79/1907
  43928. }
  43929. },
  43930. },
  43931. [
  43932. {
  43933. name: "Tiny Puppy",
  43934. height: math.unit(3, "inches")
  43935. },
  43936. {
  43937. name: "Normal",
  43938. height: math.unit(5.5, "feet"),
  43939. default: true
  43940. },
  43941. {
  43942. name: "Lotta Lady",
  43943. height: math.unit(12, "feet")
  43944. },
  43945. {
  43946. name: "Pretty Big",
  43947. height: math.unit(100, "feet")
  43948. },
  43949. {
  43950. name: "Big",
  43951. height: math.unit(500, "feet")
  43952. },
  43953. {
  43954. name: "Skyscraper Toys",
  43955. height: math.unit(2500, "feet")
  43956. },
  43957. {
  43958. name: "Plane Catcher",
  43959. height: math.unit(8, "miles")
  43960. },
  43961. {
  43962. name: "Planet Toys",
  43963. height: math.unit(15, "earths")
  43964. },
  43965. {
  43966. name: "Stardust",
  43967. height: math.unit(0.25, "galaxies")
  43968. },
  43969. {
  43970. name: "Snacks",
  43971. height: math.unit(70, "universes")
  43972. },
  43973. ]
  43974. ))
  43975. characterMakers.push(() => makeCharacter(
  43976. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43977. {
  43978. front: {
  43979. height: math.unit(1.6, "meters"),
  43980. weight: math.unit(60, "kg"),
  43981. name: "Front",
  43982. image: {
  43983. source: "./media/characters/bounty/front.svg",
  43984. extra: 1426/1308,
  43985. bottom: 15/1441
  43986. }
  43987. },
  43988. back: {
  43989. height: math.unit(1.6, "meters"),
  43990. weight: math.unit(60, "kg"),
  43991. name: "Back",
  43992. image: {
  43993. source: "./media/characters/bounty/back.svg",
  43994. extra: 1417/1307,
  43995. bottom: 8/1425
  43996. }
  43997. },
  43998. },
  43999. [
  44000. {
  44001. name: "Normal",
  44002. height: math.unit(1.6, "meters"),
  44003. default: true
  44004. },
  44005. {
  44006. name: "Macro",
  44007. height: math.unit(300, "meters")
  44008. },
  44009. ]
  44010. ))
  44011. characterMakers.push(() => makeCharacter(
  44012. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44013. {
  44014. front: {
  44015. height: math.unit(2 + 8/12, "feet"),
  44016. weight: math.unit(15, "lb"),
  44017. name: "Front",
  44018. image: {
  44019. source: "./media/characters/mochi/front.svg",
  44020. extra: 1022/852,
  44021. bottom: 435/1457
  44022. }
  44023. },
  44024. back: {
  44025. height: math.unit(2 + 8/12, "feet"),
  44026. weight: math.unit(15, "lb"),
  44027. name: "Back",
  44028. image: {
  44029. source: "./media/characters/mochi/back.svg",
  44030. extra: 1335/1119,
  44031. bottom: 39/1374
  44032. }
  44033. },
  44034. bird: {
  44035. height: math.unit(2 + 8/12, "feet"),
  44036. weight: math.unit(15, "lb"),
  44037. name: "Bird",
  44038. image: {
  44039. source: "./media/characters/mochi/bird.svg",
  44040. extra: 1251/1113,
  44041. bottom: 178/1429
  44042. }
  44043. },
  44044. kaiju: {
  44045. height: math.unit(154, "feet"),
  44046. weight: math.unit(1e7, "lb"),
  44047. name: "Kaiju",
  44048. image: {
  44049. source: "./media/characters/mochi/kaiju.svg",
  44050. extra: 460/324,
  44051. bottom: 40/500
  44052. }
  44053. },
  44054. head: {
  44055. height: math.unit(1.21, "feet"),
  44056. name: "Head",
  44057. image: {
  44058. source: "./media/characters/mochi/head.svg"
  44059. }
  44060. },
  44061. alternateTail: {
  44062. height: math.unit(2 + 8/12, "feet"),
  44063. weight: math.unit(45, "lb"),
  44064. name: "Alternate Tail",
  44065. image: {
  44066. source: "./media/characters/mochi/alternate-tail.svg",
  44067. extra: 139/76,
  44068. bottom: 45/184
  44069. }
  44070. },
  44071. },
  44072. [
  44073. {
  44074. name: "Micro",
  44075. height: math.unit(2, "inches")
  44076. },
  44077. {
  44078. name: "Normal",
  44079. height: math.unit(2 + 8/12, "feet"),
  44080. default: true
  44081. },
  44082. {
  44083. name: "Macro",
  44084. height: math.unit(106, "feet")
  44085. },
  44086. ]
  44087. ))
  44088. characterMakers.push(() => makeCharacter(
  44089. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44090. {
  44091. front: {
  44092. height: math.unit(5.67, "feet"),
  44093. weight: math.unit(135, "lb"),
  44094. name: "Front",
  44095. image: {
  44096. source: "./media/characters/sarel/front.svg",
  44097. extra: 865/788,
  44098. bottom: 97/962
  44099. }
  44100. },
  44101. back: {
  44102. height: math.unit(5.67, "feet"),
  44103. weight: math.unit(135, "lb"),
  44104. name: "Back",
  44105. image: {
  44106. source: "./media/characters/sarel/back.svg",
  44107. extra: 857/777,
  44108. bottom: 32/889
  44109. }
  44110. },
  44111. chozoan: {
  44112. height: math.unit(5.67, "feet"),
  44113. weight: math.unit(135, "lb"),
  44114. name: "Chozoan",
  44115. image: {
  44116. source: "./media/characters/sarel/chozoan.svg",
  44117. extra: 865/788,
  44118. bottom: 97/962
  44119. }
  44120. },
  44121. current: {
  44122. height: math.unit(5.67, "feet"),
  44123. weight: math.unit(135, "lb"),
  44124. name: "Current",
  44125. image: {
  44126. source: "./media/characters/sarel/current.svg",
  44127. extra: 865/788,
  44128. bottom: 97/962
  44129. }
  44130. },
  44131. head: {
  44132. height: math.unit(1.77, "feet"),
  44133. name: "Head",
  44134. image: {
  44135. source: "./media/characters/sarel/head.svg"
  44136. }
  44137. },
  44138. claws: {
  44139. height: math.unit(1.8, "feet"),
  44140. name: "Claws",
  44141. image: {
  44142. source: "./media/characters/sarel/claws.svg"
  44143. }
  44144. },
  44145. clawsAlt: {
  44146. height: math.unit(1.8, "feet"),
  44147. name: "Claws-alt",
  44148. image: {
  44149. source: "./media/characters/sarel/claws-alt.svg"
  44150. }
  44151. },
  44152. },
  44153. [
  44154. {
  44155. name: "Normal",
  44156. height: math.unit(5.67, "feet"),
  44157. default: true
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(5500, "feet"),
  44166. name: "Front",
  44167. image: {
  44168. source: "./media/characters/alyonia/front.svg",
  44169. extra: 1200/1135,
  44170. bottom: 29/1229
  44171. }
  44172. },
  44173. back: {
  44174. height: math.unit(5500, "feet"),
  44175. name: "Back",
  44176. image: {
  44177. source: "./media/characters/alyonia/back.svg",
  44178. extra: 1205/1138,
  44179. bottom: 10/1215
  44180. }
  44181. },
  44182. },
  44183. [
  44184. {
  44185. name: "Small",
  44186. height: math.unit(10, "feet")
  44187. },
  44188. {
  44189. name: "Macro",
  44190. height: math.unit(500, "feet")
  44191. },
  44192. {
  44193. name: "Mega Macro",
  44194. height: math.unit(5500, "feet"),
  44195. default: true
  44196. },
  44197. {
  44198. name: "Mega Macro+",
  44199. height: math.unit(500000, "feet")
  44200. },
  44201. {
  44202. name: "Giga Macro",
  44203. height: math.unit(3000, "miles")
  44204. },
  44205. {
  44206. name: "Tera Macro",
  44207. height: math.unit(2.8e6, "miles")
  44208. },
  44209. {
  44210. name: "Galactic",
  44211. height: math.unit(120000, "lightyears")
  44212. },
  44213. ]
  44214. ))
  44215. characterMakers.push(() => makeCharacter(
  44216. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44217. {
  44218. werewolf: {
  44219. height: math.unit(8, "feet"),
  44220. weight: math.unit(425, "lb"),
  44221. name: "Werewolf",
  44222. image: {
  44223. source: "./media/characters/autumn/werewolf.svg",
  44224. extra: 2154/2031,
  44225. bottom: 160/2314
  44226. }
  44227. },
  44228. human: {
  44229. height: math.unit(5 + 8/12, "feet"),
  44230. weight: math.unit(150, "lb"),
  44231. name: "Human",
  44232. image: {
  44233. source: "./media/characters/autumn/human.svg",
  44234. extra: 1200/1149,
  44235. bottom: 30/1230
  44236. }
  44237. },
  44238. },
  44239. [
  44240. {
  44241. name: "Normal",
  44242. height: math.unit(8, "feet"),
  44243. default: true
  44244. },
  44245. ]
  44246. ))
  44247. characterMakers.push(() => makeCharacter(
  44248. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44249. {
  44250. front: {
  44251. height: math.unit(8 + 5/12, "feet"),
  44252. weight: math.unit(825, "lb"),
  44253. name: "Front",
  44254. image: {
  44255. source: "./media/characters/cobalt-charizard/front.svg",
  44256. extra: 1268/1155,
  44257. bottom: 122/1390
  44258. }
  44259. },
  44260. side: {
  44261. height: math.unit(8 + 5/12, "feet"),
  44262. weight: math.unit(825, "lb"),
  44263. name: "Side",
  44264. image: {
  44265. source: "./media/characters/cobalt-charizard/side.svg",
  44266. extra: 1348/1257,
  44267. bottom: 58/1406
  44268. }
  44269. },
  44270. gMax: {
  44271. height: math.unit(134 + 11/12, "feet"),
  44272. name: "G-Max",
  44273. image: {
  44274. source: "./media/characters/cobalt-charizard/g-max.svg",
  44275. extra: 1835/1541,
  44276. bottom: 151/1986
  44277. }
  44278. },
  44279. },
  44280. [
  44281. {
  44282. name: "Normal",
  44283. height: math.unit(8 + 5/12, "feet"),
  44284. default: true
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44290. {
  44291. front: {
  44292. height: math.unit(6 + 3/12, "feet"),
  44293. weight: math.unit(210, "lb"),
  44294. name: "Front",
  44295. image: {
  44296. source: "./media/characters/stella/front.svg",
  44297. extra: 3549/3335,
  44298. bottom: 51/3600
  44299. }
  44300. },
  44301. },
  44302. [
  44303. {
  44304. name: "Normal",
  44305. height: math.unit(6 + 3/12, "feet"),
  44306. default: true
  44307. },
  44308. ]
  44309. ))
  44310. characterMakers.push(() => makeCharacter(
  44311. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44312. {
  44313. front: {
  44314. height: math.unit(5, "feet"),
  44315. weight: math.unit(90, "lb"),
  44316. name: "Front",
  44317. image: {
  44318. source: "./media/characters/riley-bishop/front.svg",
  44319. extra: 1450/1428,
  44320. bottom: 152/1602
  44321. }
  44322. },
  44323. },
  44324. [
  44325. {
  44326. name: "Normal",
  44327. height: math.unit(5, "feet"),
  44328. default: true
  44329. },
  44330. ]
  44331. ))
  44332. characterMakers.push(() => makeCharacter(
  44333. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44334. {
  44335. side: {
  44336. height: math.unit(8 + 2/12, "feet"),
  44337. weight: math.unit(500, "kg"),
  44338. name: "Side",
  44339. image: {
  44340. source: "./media/characters/theo-arcanine/side.svg",
  44341. extra: 1342/1074,
  44342. bottom: 111/1453
  44343. }
  44344. },
  44345. },
  44346. [
  44347. {
  44348. name: "Normal",
  44349. height: math.unit(8 + 2/12, "feet"),
  44350. default: true
  44351. },
  44352. ]
  44353. ))
  44354. characterMakers.push(() => makeCharacter(
  44355. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44356. {
  44357. front: {
  44358. height: math.unit(4, "feet"),
  44359. name: "Front",
  44360. image: {
  44361. source: "./media/characters/kali/front.svg",
  44362. extra: 1921/1357,
  44363. bottom: 70/1991
  44364. }
  44365. },
  44366. },
  44367. [
  44368. {
  44369. name: "Normal",
  44370. height: math.unit(4, "feet"),
  44371. default: true
  44372. },
  44373. {
  44374. name: "Macro",
  44375. height: math.unit(32, "meters")
  44376. },
  44377. {
  44378. name: "Macro+",
  44379. height: math.unit(150, "meters")
  44380. },
  44381. {
  44382. name: "Megamacro",
  44383. height: math.unit(7500, "meters")
  44384. },
  44385. {
  44386. name: "Megamacro+",
  44387. height: math.unit(80, "kilometers")
  44388. },
  44389. ]
  44390. ))
  44391. characterMakers.push(() => makeCharacter(
  44392. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44393. {
  44394. side: {
  44395. height: math.unit(5 + 11/12, "feet"),
  44396. weight: math.unit(236, "lb"),
  44397. name: "Side",
  44398. image: {
  44399. source: "./media/characters/gapp/side.svg",
  44400. extra: 775/340,
  44401. bottom: 58/833
  44402. }
  44403. },
  44404. mouth: {
  44405. height: math.unit(2.98, "feet"),
  44406. name: "Mouth",
  44407. image: {
  44408. source: "./media/characters/gapp/mouth.svg"
  44409. }
  44410. },
  44411. },
  44412. [
  44413. {
  44414. name: "Normal",
  44415. height: math.unit(5 + 1/12, "feet"),
  44416. default: true
  44417. },
  44418. ]
  44419. ))
  44420. characterMakers.push(() => makeCharacter(
  44421. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44422. {
  44423. front: {
  44424. height: math.unit(6, "feet"),
  44425. name: "Front",
  44426. image: {
  44427. source: "./media/characters/persephone/front.svg",
  44428. extra: 1895/1717,
  44429. bottom: 96/1991
  44430. }
  44431. },
  44432. back: {
  44433. height: math.unit(6, "feet"),
  44434. name: "Back",
  44435. image: {
  44436. source: "./media/characters/persephone/back.svg",
  44437. extra: 1868/1679,
  44438. bottom: 26/1894
  44439. }
  44440. },
  44441. casual: {
  44442. height: math.unit(6, "feet"),
  44443. name: "Casual",
  44444. image: {
  44445. source: "./media/characters/persephone/casual.svg",
  44446. extra: 1713/1541,
  44447. bottom: 76/1789
  44448. }
  44449. },
  44450. },
  44451. [
  44452. {
  44453. name: "Human Size",
  44454. height: math.unit(6, "feet")
  44455. },
  44456. {
  44457. name: "Big Steppy",
  44458. height: math.unit(600, "meters"),
  44459. default: true
  44460. },
  44461. {
  44462. name: "Galaxy Brain",
  44463. height: math.unit(1, "zettameter")
  44464. },
  44465. ]
  44466. ))
  44467. characterMakers.push(() => makeCharacter(
  44468. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44469. {
  44470. front: {
  44471. height: math.unit(1.85, "meters"),
  44472. name: "Front",
  44473. image: {
  44474. source: "./media/characters/riley-foxthing/front.svg",
  44475. extra: 1495/1354,
  44476. bottom: 122/1617
  44477. }
  44478. },
  44479. frontAlt: {
  44480. height: math.unit(1.85, "meters"),
  44481. name: "Front (Alt)",
  44482. image: {
  44483. source: "./media/characters/riley-foxthing/front-alt.svg",
  44484. extra: 1572/1389,
  44485. bottom: 116/1688
  44486. }
  44487. },
  44488. },
  44489. [
  44490. {
  44491. name: "Normal Sized",
  44492. height: math.unit(1.85, "meters"),
  44493. default: true
  44494. },
  44495. {
  44496. name: "Quite Sizable",
  44497. height: math.unit(5, "meters")
  44498. },
  44499. {
  44500. name: "Rather Large",
  44501. height: math.unit(20, "meters")
  44502. },
  44503. {
  44504. name: "Macro",
  44505. height: math.unit(450, "meters")
  44506. },
  44507. {
  44508. name: "Giga",
  44509. height: math.unit(5, "km")
  44510. },
  44511. ]
  44512. ))
  44513. characterMakers.push(() => makeCharacter(
  44514. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44515. {
  44516. front: {
  44517. height: math.unit(6, "feet"),
  44518. weight: math.unit(200, "lb"),
  44519. name: "Front",
  44520. image: {
  44521. source: "./media/characters/blizzard/front.svg",
  44522. extra: 1136/990,
  44523. bottom: 136/1272
  44524. }
  44525. },
  44526. back: {
  44527. height: math.unit(6, "feet"),
  44528. weight: math.unit(200, "lb"),
  44529. name: "Back",
  44530. image: {
  44531. source: "./media/characters/blizzard/back.svg",
  44532. extra: 1175/1034,
  44533. bottom: 97/1272
  44534. }
  44535. },
  44536. sitting: {
  44537. height: math.unit(3.725, "feet"),
  44538. weight: math.unit(200, "lb"),
  44539. name: "Sitting",
  44540. image: {
  44541. source: "./media/characters/blizzard/sitting.svg",
  44542. extra: 581/485,
  44543. bottom: 90/671
  44544. }
  44545. },
  44546. frontWizard: {
  44547. height: math.unit(7.9, "feet"),
  44548. weight: math.unit(200, "lb"),
  44549. name: "Front (Wizard)",
  44550. image: {
  44551. source: "./media/characters/blizzard/front-wizard.svg"
  44552. }
  44553. },
  44554. backWizard: {
  44555. height: math.unit(7.9, "feet"),
  44556. weight: math.unit(200, "lb"),
  44557. name: "Back (Wizard)",
  44558. image: {
  44559. source: "./media/characters/blizzard/back-wizard.svg"
  44560. }
  44561. },
  44562. frontNsfw: {
  44563. height: math.unit(6, "feet"),
  44564. weight: math.unit(200, "lb"),
  44565. name: "Front (NSFW)",
  44566. image: {
  44567. source: "./media/characters/blizzard/front-nsfw.svg",
  44568. extra: 1136/990,
  44569. bottom: 136/1272
  44570. }
  44571. },
  44572. backNsfw: {
  44573. height: math.unit(6, "feet"),
  44574. weight: math.unit(200, "lb"),
  44575. name: "Back (NSFW)",
  44576. image: {
  44577. source: "./media/characters/blizzard/back-nsfw.svg",
  44578. extra: 1175/1034,
  44579. bottom: 97/1272
  44580. }
  44581. },
  44582. sittingNsfw: {
  44583. height: math.unit(3.725, "feet"),
  44584. weight: math.unit(200, "lb"),
  44585. name: "Sitting (NSFW)",
  44586. image: {
  44587. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44588. extra: 581/485,
  44589. bottom: 90/671
  44590. }
  44591. },
  44592. wizardFrontNsfw: {
  44593. height: math.unit(7.9, "feet"),
  44594. weight: math.unit(200, "lb"),
  44595. name: "Wizard (Front, NSFW)",
  44596. image: {
  44597. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44598. }
  44599. },
  44600. },
  44601. [
  44602. {
  44603. name: "Normal",
  44604. height: math.unit(6, "feet"),
  44605. default: true
  44606. },
  44607. ]
  44608. ))
  44609. characterMakers.push(() => makeCharacter(
  44610. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44611. {
  44612. front: {
  44613. height: math.unit(5 + 2/12, "feet"),
  44614. name: "Front",
  44615. image: {
  44616. source: "./media/characters/lumi/front.svg",
  44617. extra: 1328/1268,
  44618. bottom: 103/1431
  44619. }
  44620. },
  44621. back: {
  44622. height: math.unit(5 + 2/12, "feet"),
  44623. name: "Back",
  44624. image: {
  44625. source: "./media/characters/lumi/back.svg",
  44626. extra: 1381/1327,
  44627. bottom: 43/1424
  44628. }
  44629. },
  44630. },
  44631. [
  44632. {
  44633. name: "Normal",
  44634. height: math.unit(5 + 2/12, "feet"),
  44635. default: true
  44636. },
  44637. ]
  44638. ))
  44639. characterMakers.push(() => makeCharacter(
  44640. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44641. {
  44642. front: {
  44643. height: math.unit(5 + 9/12, "feet"),
  44644. name: "Front",
  44645. image: {
  44646. source: "./media/characters/aliya-cotton/front.svg",
  44647. extra: 577/564,
  44648. bottom: 29/606
  44649. }
  44650. },
  44651. },
  44652. [
  44653. {
  44654. name: "Normal",
  44655. height: math.unit(5 + 9/12, "feet"),
  44656. default: true
  44657. },
  44658. ]
  44659. ))
  44660. characterMakers.push(() => makeCharacter(
  44661. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44662. {
  44663. front: {
  44664. height: math.unit(2.7, "meters"),
  44665. weight: math.unit(25000, "lb"),
  44666. name: "Front",
  44667. image: {
  44668. source: "./media/characters/noah-luxray/front.svg",
  44669. extra: 1644/825,
  44670. bottom: 339/1983
  44671. }
  44672. },
  44673. side: {
  44674. height: math.unit(2.97, "meters"),
  44675. weight: math.unit(25000, "lb"),
  44676. name: "Side",
  44677. image: {
  44678. source: "./media/characters/noah-luxray/side.svg",
  44679. extra: 1319/650,
  44680. bottom: 163/1482
  44681. }
  44682. },
  44683. dick: {
  44684. height: math.unit(7.4, "feet"),
  44685. weight: math.unit(2500, "lb"),
  44686. name: "Dick",
  44687. image: {
  44688. source: "./media/characters/noah-luxray/dick.svg"
  44689. }
  44690. },
  44691. dickAlt: {
  44692. height: math.unit(10.83, "feet"),
  44693. weight: math.unit(2500, "lb"),
  44694. name: "Dick-alt",
  44695. image: {
  44696. source: "./media/characters/noah-luxray/dick-alt.svg"
  44697. }
  44698. },
  44699. },
  44700. [
  44701. {
  44702. name: "BIG",
  44703. height: math.unit(2.7, "meters"),
  44704. default: true
  44705. },
  44706. ]
  44707. ))
  44708. characterMakers.push(() => makeCharacter(
  44709. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44710. {
  44711. standing: {
  44712. height: math.unit(183, "cm"),
  44713. weight: math.unit(68, "kg"),
  44714. name: "Standing",
  44715. image: {
  44716. source: "./media/characters/arion/standing.svg",
  44717. extra: 1869/1807,
  44718. bottom: 93/1962
  44719. }
  44720. },
  44721. reclining: {
  44722. height: math.unit(70.5, "cm"),
  44723. weight: math.unit(68, "lb"),
  44724. name: "Reclining",
  44725. image: {
  44726. source: "./media/characters/arion/reclining.svg",
  44727. extra: 937/870,
  44728. bottom: 63/1000
  44729. }
  44730. },
  44731. },
  44732. [
  44733. {
  44734. name: "Colossus Size, Low",
  44735. height: math.unit(33, "meters"),
  44736. default: true
  44737. },
  44738. {
  44739. name: "Colossus Size, Mid",
  44740. height: math.unit(52, "meters")
  44741. },
  44742. {
  44743. name: "Colossus Size, High",
  44744. height: math.unit(60, "meters")
  44745. },
  44746. {
  44747. name: "Titan Size, Low",
  44748. height: math.unit(91, "meters"),
  44749. },
  44750. {
  44751. name: "Titan Size, Mid",
  44752. height: math.unit(122, "meters")
  44753. },
  44754. {
  44755. name: "Titan Size, High",
  44756. height: math.unit(162, "meters")
  44757. },
  44758. ]
  44759. ))
  44760. characterMakers.push(() => makeCharacter(
  44761. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44762. {
  44763. front: {
  44764. height: math.unit(53, "meters"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/stellar-marbey/front.svg",
  44768. extra: 1913/1805,
  44769. bottom: 92/2005
  44770. }
  44771. },
  44772. back: {
  44773. height: math.unit(53, "meters"),
  44774. name: "Back",
  44775. image: {
  44776. source: "./media/characters/stellar-marbey/back.svg",
  44777. extra: 1960/1851,
  44778. bottom: 28/1988
  44779. }
  44780. },
  44781. mouth: {
  44782. height: math.unit(3.5, "meters"),
  44783. name: "Mouth",
  44784. image: {
  44785. source: "./media/characters/stellar-marbey/mouth.svg"
  44786. }
  44787. },
  44788. },
  44789. [
  44790. {
  44791. name: "Macro",
  44792. height: math.unit(53, "meters"),
  44793. default: true
  44794. },
  44795. ]
  44796. ))
  44797. characterMakers.push(() => makeCharacter(
  44798. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44799. {
  44800. front: {
  44801. height: math.unit(8 + 1/12, "feet"),
  44802. weight: math.unit(233, "lb"),
  44803. name: "Front",
  44804. image: {
  44805. source: "./media/characters/matsu/front.svg",
  44806. extra: 832/772,
  44807. bottom: 40/872
  44808. }
  44809. },
  44810. back: {
  44811. height: math.unit(8 + 1/12, "feet"),
  44812. weight: math.unit(233, "lb"),
  44813. name: "Back",
  44814. image: {
  44815. source: "./media/characters/matsu/back.svg",
  44816. extra: 839/780,
  44817. bottom: 47/886
  44818. }
  44819. },
  44820. },
  44821. [
  44822. {
  44823. name: "Normal",
  44824. height: math.unit(8 + 1/12, "feet"),
  44825. default: true
  44826. },
  44827. ]
  44828. ))
  44829. characterMakers.push(() => makeCharacter(
  44830. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44831. {
  44832. front: {
  44833. height: math.unit(4, "feet"),
  44834. weight: math.unit(148, "lb"),
  44835. name: "Front",
  44836. image: {
  44837. source: "./media/characters/thiz/front.svg",
  44838. extra: 1913/1748,
  44839. bottom: 62/1975
  44840. }
  44841. },
  44842. },
  44843. [
  44844. {
  44845. name: "Normal",
  44846. height: math.unit(4, "feet"),
  44847. default: true
  44848. },
  44849. ]
  44850. ))
  44851. characterMakers.push(() => makeCharacter(
  44852. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44853. {
  44854. front: {
  44855. height: math.unit(7 + 6/12, "feet"),
  44856. weight: math.unit(267, "lb"),
  44857. name: "Front",
  44858. image: {
  44859. source: "./media/characters/marcel/front.svg",
  44860. extra: 1221/1096,
  44861. bottom: 76/1297
  44862. }
  44863. },
  44864. },
  44865. [
  44866. {
  44867. name: "Normal",
  44868. height: math.unit(7 + 6/12, "feet"),
  44869. default: true
  44870. },
  44871. ]
  44872. ))
  44873. characterMakers.push(() => makeCharacter(
  44874. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44875. {
  44876. side: {
  44877. height: math.unit(42, "meters"),
  44878. name: "Side",
  44879. image: {
  44880. source: "./media/characters/flake/side.svg",
  44881. extra: 1525/1306,
  44882. bottom: 209/1734
  44883. }
  44884. },
  44885. },
  44886. [
  44887. {
  44888. name: "Normal",
  44889. height: math.unit(42, "meters"),
  44890. default: true
  44891. },
  44892. ]
  44893. ))
  44894. characterMakers.push(() => makeCharacter(
  44895. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44896. {
  44897. dressed: {
  44898. height: math.unit(6 + 4/12, "feet"),
  44899. weight: math.unit(520, "lb"),
  44900. name: "Dressed",
  44901. image: {
  44902. source: "./media/characters/someonne/dressed.svg",
  44903. extra: 1020/1010,
  44904. bottom: 178/1198
  44905. }
  44906. },
  44907. undressed: {
  44908. height: math.unit(6 + 4/12, "feet"),
  44909. weight: math.unit(520, "lb"),
  44910. name: "Undressed",
  44911. image: {
  44912. source: "./media/characters/someonne/undressed.svg",
  44913. extra: 1019/1014,
  44914. bottom: 169/1188
  44915. }
  44916. },
  44917. },
  44918. [
  44919. {
  44920. name: "Normal",
  44921. height: math.unit(6 + 4/12, "feet"),
  44922. default: true
  44923. },
  44924. ]
  44925. ))
  44926. characterMakers.push(() => makeCharacter(
  44927. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44928. {
  44929. front: {
  44930. height: math.unit(3, "feet"),
  44931. weight: math.unit(30, "lb"),
  44932. name: "Front",
  44933. image: {
  44934. source: "./media/characters/till/front.svg",
  44935. extra: 892/823,
  44936. bottom: 55/947
  44937. }
  44938. },
  44939. },
  44940. [
  44941. {
  44942. name: "Normal",
  44943. height: math.unit(3, "feet"),
  44944. default: true
  44945. },
  44946. ]
  44947. ))
  44948. characterMakers.push(() => makeCharacter(
  44949. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44950. {
  44951. front: {
  44952. height: math.unit(9 + 8/12, "feet"),
  44953. weight: math.unit(800, "lb"),
  44954. name: "Front",
  44955. image: {
  44956. source: "./media/characters/sydney-heki/front.svg",
  44957. extra: 1360/1300,
  44958. bottom: 22/1382
  44959. }
  44960. },
  44961. back: {
  44962. height: math.unit(9 + 8/12, "feet"),
  44963. weight: math.unit(800, "lb"),
  44964. name: "Back",
  44965. image: {
  44966. source: "./media/characters/sydney-heki/back.svg",
  44967. extra: 1356/1293,
  44968. bottom: 12/1368
  44969. }
  44970. },
  44971. frontDressed: {
  44972. height: math.unit(9 + 8/12, "feet"),
  44973. weight: math.unit(800, "lb"),
  44974. name: "Front-dressed",
  44975. image: {
  44976. source: "./media/characters/sydney-heki/front-dressed.svg",
  44977. extra: 1360/1300,
  44978. bottom: 22/1382
  44979. }
  44980. },
  44981. },
  44982. [
  44983. {
  44984. name: "Normal",
  44985. height: math.unit(9 + 8/12, "feet"),
  44986. default: true
  44987. },
  44988. {
  44989. name: "Macro",
  44990. height: math.unit(500, "feet")
  44991. },
  44992. {
  44993. name: "Megamacro",
  44994. height: math.unit(3.6, "miles")
  44995. },
  44996. ]
  44997. ))
  44998. characterMakers.push(() => makeCharacter(
  44999. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45000. {
  45001. front: {
  45002. height: math.unit(200, "cm"),
  45003. weight: math.unit(250, "lb"),
  45004. name: "Front",
  45005. image: {
  45006. source: "./media/characters/fowler-karlsson/front.svg",
  45007. extra: 897/845,
  45008. bottom: 123/1020
  45009. }
  45010. },
  45011. back: {
  45012. height: math.unit(200, "cm"),
  45013. weight: math.unit(250, "lb"),
  45014. name: "Back",
  45015. image: {
  45016. source: "./media/characters/fowler-karlsson/back.svg",
  45017. extra: 999/944,
  45018. bottom: 26/1025
  45019. }
  45020. },
  45021. dick: {
  45022. height: math.unit(1.92, "feet"),
  45023. weight: math.unit(150, "lb"),
  45024. name: "Dick",
  45025. image: {
  45026. source: "./media/characters/fowler-karlsson/dick.svg"
  45027. }
  45028. },
  45029. },
  45030. [
  45031. {
  45032. name: "Normal",
  45033. height: math.unit(200, "cm"),
  45034. default: true
  45035. },
  45036. {
  45037. name: "Smaller Macro",
  45038. height: math.unit(90, "m")
  45039. },
  45040. {
  45041. name: "Macro",
  45042. height: math.unit(150, "m")
  45043. },
  45044. {
  45045. name: "Bigger Macro",
  45046. height: math.unit(300, "m")
  45047. },
  45048. ]
  45049. ))
  45050. characterMakers.push(() => makeCharacter(
  45051. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45052. {
  45053. side: {
  45054. height: math.unit(8 + 2/12, "feet"),
  45055. weight: math.unit(1, "tonne"),
  45056. name: "Side",
  45057. image: {
  45058. source: "./media/characters/rylide/side.svg",
  45059. extra: 1318/1034,
  45060. bottom: 106/1424
  45061. }
  45062. },
  45063. sitting: {
  45064. height: math.unit(303, "cm"),
  45065. weight: math.unit(1, "tonne"),
  45066. name: "Sitting",
  45067. image: {
  45068. source: "./media/characters/rylide/sitting.svg",
  45069. extra: 1303/1103,
  45070. bottom: 36/1339
  45071. }
  45072. },
  45073. },
  45074. [
  45075. {
  45076. name: "Normal",
  45077. height: math.unit(8 + 2/12, "feet"),
  45078. default: true
  45079. },
  45080. ]
  45081. ))
  45082. characterMakers.push(() => makeCharacter(
  45083. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45084. {
  45085. front: {
  45086. height: math.unit(5 + 10/12, "feet"),
  45087. weight: math.unit(160, "lb"),
  45088. name: "Front",
  45089. image: {
  45090. source: "./media/characters/pudask/front.svg",
  45091. extra: 1616/1590,
  45092. bottom: 161/1777
  45093. }
  45094. },
  45095. },
  45096. [
  45097. {
  45098. name: "Ferret Height",
  45099. height: math.unit(2 + 5/12, "feet")
  45100. },
  45101. {
  45102. name: "Canon Height",
  45103. height: math.unit(5 + 10/12, "feet"),
  45104. default: true
  45105. },
  45106. ]
  45107. ))
  45108. characterMakers.push(() => makeCharacter(
  45109. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45110. {
  45111. front: {
  45112. height: math.unit(3 + 6/12, "feet"),
  45113. weight: math.unit(60, "lb"),
  45114. name: "Front",
  45115. image: {
  45116. source: "./media/characters/ramita/front.svg",
  45117. extra: 1402/1232,
  45118. bottom: 62/1464
  45119. }
  45120. },
  45121. dressed: {
  45122. height: math.unit(3 + 6/12, "feet"),
  45123. weight: math.unit(60, "lb"),
  45124. name: "Dressed",
  45125. image: {
  45126. source: "./media/characters/ramita/dressed.svg",
  45127. extra: 1534/1249,
  45128. bottom: 50/1584
  45129. }
  45130. },
  45131. },
  45132. [
  45133. {
  45134. name: "Normal",
  45135. height: math.unit(3 + 6/12, "feet"),
  45136. default: true
  45137. },
  45138. ]
  45139. ))
  45140. characterMakers.push(() => makeCharacter(
  45141. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45142. {
  45143. front: {
  45144. height: math.unit(8, "feet"),
  45145. name: "Front",
  45146. image: {
  45147. source: "./media/characters/ark/front.svg",
  45148. extra: 772/693,
  45149. bottom: 45/817
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Normal",
  45156. height: math.unit(8, "feet"),
  45157. default: true
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45163. {
  45164. front: {
  45165. height: math.unit(6, "feet"),
  45166. weight: math.unit(250, "lb"),
  45167. volume: math.unit(5/8, "gallons"),
  45168. name: "Front",
  45169. image: {
  45170. source: "./media/characters/ludwig-horn/front.svg",
  45171. extra: 1782/1635,
  45172. bottom: 96/1878
  45173. }
  45174. },
  45175. back: {
  45176. height: math.unit(6, "feet"),
  45177. weight: math.unit(250, "lb"),
  45178. volume: math.unit(5/8, "gallons"),
  45179. name: "Back",
  45180. image: {
  45181. source: "./media/characters/ludwig-horn/back.svg",
  45182. extra: 1874/1729,
  45183. bottom: 27/1901
  45184. }
  45185. },
  45186. dick: {
  45187. height: math.unit(1.05, "feet"),
  45188. weight: math.unit(15, "lb"),
  45189. volume: math.unit(5/8, "gallons"),
  45190. name: "Dick",
  45191. image: {
  45192. source: "./media/characters/ludwig-horn/dick.svg"
  45193. }
  45194. },
  45195. },
  45196. [
  45197. {
  45198. name: "Small",
  45199. height: math.unit(6, "feet")
  45200. },
  45201. {
  45202. name: "Typical",
  45203. height: math.unit(12, "feet"),
  45204. default: true
  45205. },
  45206. {
  45207. name: "Building",
  45208. height: math.unit(80, "feet")
  45209. },
  45210. {
  45211. name: "Town",
  45212. height: math.unit(800, "feet")
  45213. },
  45214. {
  45215. name: "Kingdom",
  45216. height: math.unit(80000, "feet")
  45217. },
  45218. {
  45219. name: "Planet",
  45220. height: math.unit(8000000, "feet")
  45221. },
  45222. {
  45223. name: "Universe",
  45224. height: math.unit(8000000000, "feet")
  45225. },
  45226. {
  45227. name: "Transcended",
  45228. height: math.unit(8e27, "feet")
  45229. },
  45230. ]
  45231. ))
  45232. characterMakers.push(() => makeCharacter(
  45233. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45234. {
  45235. front: {
  45236. height: math.unit(5, "feet"),
  45237. weight: math.unit(50, "kg"),
  45238. name: "Front",
  45239. image: {
  45240. source: "./media/characters/biot-avery/front.svg",
  45241. extra: 1295/1232,
  45242. bottom: 86/1381
  45243. }
  45244. },
  45245. },
  45246. [
  45247. {
  45248. name: "Normal",
  45249. height: math.unit(5, "feet"),
  45250. default: true
  45251. },
  45252. ]
  45253. ))
  45254. characterMakers.push(() => makeCharacter(
  45255. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45256. {
  45257. front: {
  45258. height: math.unit(6, "feet"),
  45259. name: "Front",
  45260. image: {
  45261. source: "./media/characters/kitsune-kiro/front.svg",
  45262. extra: 1270/1158,
  45263. bottom: 42/1312
  45264. }
  45265. },
  45266. frontAlt: {
  45267. height: math.unit(6, "feet"),
  45268. name: "Front-alt",
  45269. image: {
  45270. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45271. extra: 1130/1081,
  45272. bottom: 36/1166
  45273. }
  45274. },
  45275. },
  45276. [
  45277. {
  45278. name: "Smol",
  45279. height: math.unit(3, "feet")
  45280. },
  45281. {
  45282. name: "Normal",
  45283. height: math.unit(6, "feet"),
  45284. default: true
  45285. },
  45286. ]
  45287. ))
  45288. characterMakers.push(() => makeCharacter(
  45289. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45290. {
  45291. front: {
  45292. height: math.unit(6, "feet"),
  45293. weight: math.unit(125, "lb"),
  45294. name: "Front",
  45295. image: {
  45296. source: "./media/characters/jack-thatcher/front.svg",
  45297. extra: 1474/1370,
  45298. bottom: 26/1500
  45299. }
  45300. },
  45301. back: {
  45302. height: math.unit(6, "feet"),
  45303. weight: math.unit(125, "lb"),
  45304. name: "Back",
  45305. image: {
  45306. source: "./media/characters/jack-thatcher/back.svg",
  45307. extra: 1489/1384,
  45308. bottom: 18/1507
  45309. }
  45310. },
  45311. },
  45312. [
  45313. {
  45314. name: "Normal",
  45315. height: math.unit(6, "feet"),
  45316. default: true
  45317. },
  45318. {
  45319. name: "Macro",
  45320. height: math.unit(75, "feet")
  45321. },
  45322. {
  45323. name: "Macro-er",
  45324. height: math.unit(250, "feet")
  45325. },
  45326. ]
  45327. ))
  45328. characterMakers.push(() => makeCharacter(
  45329. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45330. {
  45331. front: {
  45332. height: math.unit(7, "feet"),
  45333. weight: math.unit(110, "kg"),
  45334. name: "Front",
  45335. image: {
  45336. source: "./media/characters/max-hyper/front.svg",
  45337. extra: 1969/1881,
  45338. bottom: 49/2018
  45339. }
  45340. },
  45341. },
  45342. [
  45343. {
  45344. name: "Normal",
  45345. height: math.unit(7, "feet"),
  45346. default: true
  45347. },
  45348. ]
  45349. ))
  45350. characterMakers.push(() => makeCharacter(
  45351. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45352. {
  45353. front: {
  45354. height: math.unit(5 + 5/12, "feet"),
  45355. weight: math.unit(160, "lb"),
  45356. name: "Front",
  45357. image: {
  45358. source: "./media/characters/spook/front.svg",
  45359. extra: 794/791,
  45360. bottom: 54/848
  45361. }
  45362. },
  45363. back: {
  45364. height: math.unit(5 + 5/12, "feet"),
  45365. weight: math.unit(160, "lb"),
  45366. name: "Back",
  45367. image: {
  45368. source: "./media/characters/spook/back.svg",
  45369. extra: 812/798,
  45370. bottom: 32/844
  45371. }
  45372. },
  45373. },
  45374. [
  45375. {
  45376. name: "Normal",
  45377. height: math.unit(5 + 5/12, "feet"),
  45378. default: true
  45379. },
  45380. ]
  45381. ))
  45382. characterMakers.push(() => makeCharacter(
  45383. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45384. {
  45385. front: {
  45386. height: math.unit(18, "feet"),
  45387. name: "Front",
  45388. image: {
  45389. source: "./media/characters/xeaduulix/front.svg",
  45390. extra: 1380/1166,
  45391. bottom: 110/1490
  45392. }
  45393. },
  45394. back: {
  45395. height: math.unit(18, "feet"),
  45396. name: "Back",
  45397. image: {
  45398. source: "./media/characters/xeaduulix/back.svg",
  45399. extra: 1592/1170,
  45400. bottom: 128/1720
  45401. }
  45402. },
  45403. frontNsfw: {
  45404. height: math.unit(18, "feet"),
  45405. name: "Front (NSFW)",
  45406. image: {
  45407. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45408. extra: 1380/1166,
  45409. bottom: 110/1490
  45410. }
  45411. },
  45412. backNsfw: {
  45413. height: math.unit(18, "feet"),
  45414. name: "Back (NSFW)",
  45415. image: {
  45416. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45417. extra: 1592/1170,
  45418. bottom: 128/1720
  45419. }
  45420. },
  45421. },
  45422. [
  45423. {
  45424. name: "Normal",
  45425. height: math.unit(18, "feet"),
  45426. default: true
  45427. },
  45428. ]
  45429. ))
  45430. characterMakers.push(() => makeCharacter(
  45431. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45432. {
  45433. spreadWings: {
  45434. height: math.unit(20, "feet"),
  45435. name: "Spread Wings",
  45436. image: {
  45437. source: "./media/characters/fledge/spread-wings.svg",
  45438. extra: 693/635,
  45439. bottom: 26/719
  45440. }
  45441. },
  45442. front: {
  45443. height: math.unit(20, "feet"),
  45444. name: "Front",
  45445. image: {
  45446. source: "./media/characters/fledge/front.svg",
  45447. extra: 684/637,
  45448. bottom: 18/702
  45449. }
  45450. },
  45451. frontAlt: {
  45452. height: math.unit(20, "feet"),
  45453. name: "Front (Alt)",
  45454. image: {
  45455. source: "./media/characters/fledge/front-alt.svg",
  45456. extra: 708/664,
  45457. bottom: 13/721
  45458. }
  45459. },
  45460. back: {
  45461. height: math.unit(20, "feet"),
  45462. name: "Back",
  45463. image: {
  45464. source: "./media/characters/fledge/back.svg",
  45465. extra: 718/634,
  45466. bottom: 22/740
  45467. }
  45468. },
  45469. head: {
  45470. height: math.unit(5.55, "feet"),
  45471. name: "Head",
  45472. image: {
  45473. source: "./media/characters/fledge/head.svg"
  45474. }
  45475. },
  45476. headAlt: {
  45477. height: math.unit(5.1, "feet"),
  45478. name: "Head (Alt)",
  45479. image: {
  45480. source: "./media/characters/fledge/head-alt.svg"
  45481. }
  45482. },
  45483. },
  45484. [
  45485. {
  45486. name: "Small",
  45487. height: math.unit(6 + 2/12, "feet")
  45488. },
  45489. {
  45490. name: "Big",
  45491. height: math.unit(20, "feet"),
  45492. default: true
  45493. },
  45494. {
  45495. name: "Giant",
  45496. height: math.unit(100, "feet")
  45497. },
  45498. {
  45499. name: "Macro",
  45500. height: math.unit(200, "feet")
  45501. },
  45502. ]
  45503. ))
  45504. characterMakers.push(() => makeCharacter(
  45505. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45506. {
  45507. front: {
  45508. height: math.unit(1, "meter"),
  45509. name: "Front",
  45510. image: {
  45511. source: "./media/characters/atlas-morenai/front.svg",
  45512. extra: 1275/1043,
  45513. bottom: 19/1294
  45514. }
  45515. },
  45516. back: {
  45517. height: math.unit(1, "meter"),
  45518. name: "Back",
  45519. image: {
  45520. source: "./media/characters/atlas-morenai/back.svg",
  45521. extra: 1141/1001,
  45522. bottom: 25/1166
  45523. }
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(1, "meter"),
  45530. default: true
  45531. },
  45532. {
  45533. name: "Magic-Infused",
  45534. height: math.unit(5, "meters")
  45535. },
  45536. ]
  45537. ))
  45538. characterMakers.push(() => makeCharacter(
  45539. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45540. {
  45541. front: {
  45542. height: math.unit(5, "meters"),
  45543. name: "Front",
  45544. image: {
  45545. source: "./media/characters/cintia/front.svg",
  45546. extra: 1312/1228,
  45547. bottom: 38/1350
  45548. }
  45549. },
  45550. back: {
  45551. height: math.unit(5, "meters"),
  45552. name: "Back",
  45553. image: {
  45554. source: "./media/characters/cintia/back.svg",
  45555. extra: 1260/1166,
  45556. bottom: 98/1358
  45557. }
  45558. },
  45559. frontDick: {
  45560. height: math.unit(5, "meters"),
  45561. name: "Front (Dick)",
  45562. image: {
  45563. source: "./media/characters/cintia/front-dick.svg",
  45564. extra: 1312/1228,
  45565. bottom: 38/1350
  45566. }
  45567. },
  45568. backDick: {
  45569. height: math.unit(5, "meters"),
  45570. name: "Back (Dick)",
  45571. image: {
  45572. source: "./media/characters/cintia/back-dick.svg",
  45573. extra: 1260/1166,
  45574. bottom: 98/1358
  45575. }
  45576. },
  45577. bust: {
  45578. height: math.unit(1.97, "meters"),
  45579. name: "Bust",
  45580. image: {
  45581. source: "./media/characters/cintia/bust.svg",
  45582. extra: 617/565,
  45583. bottom: 0/617
  45584. }
  45585. },
  45586. },
  45587. [
  45588. {
  45589. name: "Normal",
  45590. height: math.unit(5, "meters"),
  45591. default: true
  45592. },
  45593. ]
  45594. ))
  45595. characterMakers.push(() => makeCharacter(
  45596. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45597. {
  45598. side: {
  45599. height: math.unit(100, "feet"),
  45600. name: "Side",
  45601. image: {
  45602. source: "./media/characters/denora/side.svg",
  45603. extra: 875/803,
  45604. bottom: 9/884
  45605. }
  45606. },
  45607. },
  45608. [
  45609. {
  45610. name: "Standard",
  45611. height: math.unit(100, "feet"),
  45612. default: true
  45613. },
  45614. {
  45615. name: "Grand",
  45616. height: math.unit(1000, "feet")
  45617. },
  45618. {
  45619. name: "Conquering",
  45620. height: math.unit(10000, "feet")
  45621. },
  45622. ]
  45623. ))
  45624. characterMakers.push(() => makeCharacter(
  45625. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45626. {
  45627. dressed: {
  45628. height: math.unit(8 + 5/12, "feet"),
  45629. weight: math.unit(700, "lb"),
  45630. name: "Dressed",
  45631. image: {
  45632. source: "./media/characters/kiva/dressed.svg",
  45633. extra: 1102/1055,
  45634. bottom: 60/1162
  45635. }
  45636. },
  45637. nude: {
  45638. height: math.unit(8 + 5/12, "feet"),
  45639. weight: math.unit(700, "lb"),
  45640. name: "Nude",
  45641. image: {
  45642. source: "./media/characters/kiva/nude.svg",
  45643. extra: 1102/1055,
  45644. bottom: 60/1162
  45645. }
  45646. },
  45647. },
  45648. [
  45649. {
  45650. name: "Base Height",
  45651. height: math.unit(8 + 5/12, "feet"),
  45652. default: true
  45653. },
  45654. {
  45655. name: "Macro",
  45656. height: math.unit(100, "feet")
  45657. },
  45658. {
  45659. name: "Max",
  45660. height: math.unit(3280, "feet")
  45661. },
  45662. ]
  45663. ))
  45664. characterMakers.push(() => makeCharacter(
  45665. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45666. {
  45667. front: {
  45668. height: math.unit(6 + 8/12, "feet"),
  45669. weight: math.unit(250, "lb"),
  45670. name: "Front",
  45671. image: {
  45672. source: "./media/characters/ztragon/front.svg",
  45673. extra: 1825/1684,
  45674. bottom: 98/1923
  45675. }
  45676. },
  45677. },
  45678. [
  45679. {
  45680. name: "Normal",
  45681. height: math.unit(6 + 8/12, "feet"),
  45682. default: true
  45683. },
  45684. {
  45685. name: "Macro",
  45686. height: math.unit(80, "feet")
  45687. },
  45688. ]
  45689. ))
  45690. characterMakers.push(() => makeCharacter(
  45691. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45692. {
  45693. front: {
  45694. height: math.unit(10.4, "feet"),
  45695. weight: math.unit(2, "tons"),
  45696. name: "Front",
  45697. image: {
  45698. source: "./media/characters/yesenia/front.svg",
  45699. extra: 1479/1474,
  45700. bottom: 233/1712
  45701. }
  45702. },
  45703. },
  45704. [
  45705. {
  45706. name: "Normal",
  45707. height: math.unit(10.4, "feet"),
  45708. default: true
  45709. },
  45710. ]
  45711. ))
  45712. characterMakers.push(() => makeCharacter(
  45713. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45714. {
  45715. normal: {
  45716. height: math.unit(6 + 1/12, "feet"),
  45717. weight: math.unit(180, "lb"),
  45718. name: "Normal",
  45719. image: {
  45720. source: "./media/characters/leanne-lycheborne/normal.svg",
  45721. extra: 1748/1660,
  45722. bottom: 98/1846
  45723. }
  45724. },
  45725. were: {
  45726. height: math.unit(12, "feet"),
  45727. weight: math.unit(1600, "lb"),
  45728. name: "Were",
  45729. image: {
  45730. source: "./media/characters/leanne-lycheborne/were.svg",
  45731. extra: 1485/1432,
  45732. bottom: 66/1551
  45733. }
  45734. },
  45735. },
  45736. [
  45737. {
  45738. name: "Normal",
  45739. height: math.unit(6 + 1/12, "feet"),
  45740. default: true
  45741. },
  45742. ]
  45743. ))
  45744. characterMakers.push(() => makeCharacter(
  45745. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45746. {
  45747. side: {
  45748. height: math.unit(13, "feet"),
  45749. name: "Side",
  45750. image: {
  45751. source: "./media/characters/kira-tyler/side.svg",
  45752. extra: 693/393,
  45753. bottom: 58/751
  45754. }
  45755. },
  45756. },
  45757. [
  45758. {
  45759. name: "Normal",
  45760. height: math.unit(13, "feet"),
  45761. default: true
  45762. },
  45763. ]
  45764. ))
  45765. characterMakers.push(() => makeCharacter(
  45766. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45767. {
  45768. front: {
  45769. height: math.unit(10.3, "feet"),
  45770. weight: math.unit(150, "lb"),
  45771. name: "Front",
  45772. image: {
  45773. source: "./media/characters/blaze/front.svg",
  45774. extra: 1378/1286,
  45775. bottom: 172/1550
  45776. }
  45777. },
  45778. },
  45779. [
  45780. {
  45781. name: "Normal",
  45782. height: math.unit(10.3, "feet"),
  45783. default: true
  45784. },
  45785. ]
  45786. ))
  45787. characterMakers.push(() => makeCharacter(
  45788. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45789. {
  45790. side: {
  45791. height: math.unit(2, "meters"),
  45792. weight: math.unit(400, "kg"),
  45793. name: "Side",
  45794. image: {
  45795. source: "./media/characters/anu/side.svg",
  45796. extra: 506/394,
  45797. bottom: 18/524
  45798. }
  45799. },
  45800. },
  45801. [
  45802. {
  45803. name: "Humanoid",
  45804. height: math.unit(2, "meters")
  45805. },
  45806. {
  45807. name: "Normal",
  45808. height: math.unit(5, "meters"),
  45809. default: true
  45810. },
  45811. ]
  45812. ))
  45813. characterMakers.push(() => makeCharacter(
  45814. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45815. {
  45816. front: {
  45817. height: math.unit(5 + 5/12, "feet"),
  45818. weight: math.unit(170, "lb"),
  45819. name: "Front",
  45820. image: {
  45821. source: "./media/characters/synx-the-lynx/front.svg",
  45822. extra: 1893/1745,
  45823. bottom: 17/1910
  45824. }
  45825. },
  45826. side: {
  45827. height: math.unit(5 + 5/12, "feet"),
  45828. weight: math.unit(170, "lb"),
  45829. name: "Side",
  45830. image: {
  45831. source: "./media/characters/synx-the-lynx/side.svg",
  45832. extra: 1884/1740,
  45833. bottom: 39/1923
  45834. }
  45835. },
  45836. back: {
  45837. height: math.unit(5 + 5/12, "feet"),
  45838. weight: math.unit(170, "lb"),
  45839. name: "Back",
  45840. image: {
  45841. source: "./media/characters/synx-the-lynx/back.svg",
  45842. extra: 1903/1755,
  45843. bottom: 14/1917
  45844. }
  45845. },
  45846. },
  45847. [
  45848. {
  45849. name: "Normal",
  45850. height: math.unit(5 + 5/12, "feet"),
  45851. default: true
  45852. },
  45853. ]
  45854. ))
  45855. characterMakers.push(() => makeCharacter(
  45856. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45857. {
  45858. back: {
  45859. height: math.unit(15, "feet"),
  45860. name: "Back",
  45861. image: {
  45862. source: "./media/characters/nadezda-fex/back.svg",
  45863. extra: 1695/1481,
  45864. bottom: 25/1720
  45865. }
  45866. },
  45867. },
  45868. [
  45869. {
  45870. name: "Normal",
  45871. height: math.unit(15, "feet"),
  45872. default: true
  45873. },
  45874. {
  45875. name: "Macro",
  45876. height: math.unit(2.5, "miles")
  45877. },
  45878. {
  45879. name: "Goddess",
  45880. height: math.unit(2, "multiverses")
  45881. },
  45882. ]
  45883. ))
  45884. characterMakers.push(() => makeCharacter(
  45885. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45886. {
  45887. front: {
  45888. height: math.unit(216, "cm"),
  45889. name: "Front",
  45890. image: {
  45891. source: "./media/characters/lev/front.svg",
  45892. extra: 1728/1670,
  45893. bottom: 82/1810
  45894. }
  45895. },
  45896. back: {
  45897. height: math.unit(216, "cm"),
  45898. name: "Back",
  45899. image: {
  45900. source: "./media/characters/lev/back.svg",
  45901. extra: 1738/1675,
  45902. bottom: 24/1762
  45903. }
  45904. },
  45905. dressed: {
  45906. height: math.unit(216, "cm"),
  45907. name: "Dressed",
  45908. image: {
  45909. source: "./media/characters/lev/dressed.svg",
  45910. extra: 1397/1351,
  45911. bottom: 73/1470
  45912. }
  45913. },
  45914. head: {
  45915. height: math.unit(0.51, "meter"),
  45916. name: "Head",
  45917. image: {
  45918. source: "./media/characters/lev/head.svg"
  45919. }
  45920. },
  45921. },
  45922. [
  45923. {
  45924. name: "Normal",
  45925. height: math.unit(216, "cm"),
  45926. default: true
  45927. },
  45928. {
  45929. name: "Relatively Macro",
  45930. height: math.unit(80, "meters")
  45931. },
  45932. {
  45933. name: "Megamacro",
  45934. height: math.unit(21600, "meters")
  45935. },
  45936. {
  45937. name: "Megamacro+",
  45938. height: math.unit(64800, "meters")
  45939. },
  45940. ]
  45941. ))
  45942. characterMakers.push(() => makeCharacter(
  45943. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45944. {
  45945. front: {
  45946. height: math.unit(2, "meters"),
  45947. weight: math.unit(80, "kg"),
  45948. name: "Front",
  45949. image: {
  45950. source: "./media/characters/moka/front.svg",
  45951. extra: 1337/1255,
  45952. bottom: 58/1395
  45953. }
  45954. },
  45955. },
  45956. [
  45957. {
  45958. name: "Micro",
  45959. height: math.unit(15, "cm")
  45960. },
  45961. {
  45962. name: "Normal",
  45963. height: math.unit(2, "meters"),
  45964. default: true
  45965. },
  45966. {
  45967. name: "Macro",
  45968. height: math.unit(20, "meters"),
  45969. },
  45970. ]
  45971. ))
  45972. characterMakers.push(() => makeCharacter(
  45973. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45974. {
  45975. front: {
  45976. height: math.unit(9, "feet"),
  45977. weight: math.unit(240, "lb"),
  45978. name: "Front",
  45979. image: {
  45980. source: "./media/characters/kuzco/front.svg",
  45981. extra: 1593/1487,
  45982. bottom: 32/1625
  45983. }
  45984. },
  45985. side: {
  45986. height: math.unit(9, "feet"),
  45987. weight: math.unit(240, "lb"),
  45988. name: "Side",
  45989. image: {
  45990. source: "./media/characters/kuzco/side.svg",
  45991. extra: 1575/1485,
  45992. bottom: 30/1605
  45993. }
  45994. },
  45995. back: {
  45996. height: math.unit(9, "feet"),
  45997. weight: math.unit(240, "lb"),
  45998. name: "Back",
  45999. image: {
  46000. source: "./media/characters/kuzco/back.svg",
  46001. extra: 1603/1514,
  46002. bottom: 14/1617
  46003. }
  46004. },
  46005. },
  46006. [
  46007. {
  46008. name: "Normal",
  46009. height: math.unit(9, "feet"),
  46010. default: true
  46011. },
  46012. ]
  46013. ))
  46014. characterMakers.push(() => makeCharacter(
  46015. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46016. {
  46017. side: {
  46018. height: math.unit(2, "meters"),
  46019. weight: math.unit(300, "kg"),
  46020. name: "Side",
  46021. image: {
  46022. source: "./media/characters/ceruleus/side.svg",
  46023. extra: 1068/974,
  46024. bottom: 126/1194
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(16, "meters"),
  46032. default: true
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46038. {
  46039. front: {
  46040. height: math.unit(9, "feet"),
  46041. weight: math.unit(500, "kg"),
  46042. name: "Front",
  46043. image: {
  46044. source: "./media/characters/acouya/front.svg",
  46045. extra: 1660/1473,
  46046. bottom: 28/1688
  46047. }
  46048. },
  46049. },
  46050. [
  46051. {
  46052. name: "Normal",
  46053. height: math.unit(9, "feet"),
  46054. default: true
  46055. },
  46056. ]
  46057. ))
  46058. characterMakers.push(() => makeCharacter(
  46059. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46060. {
  46061. front: {
  46062. height: math.unit(5 + 6/12, "feet"),
  46063. weight: math.unit(195, "lb"),
  46064. name: "Front",
  46065. image: {
  46066. source: "./media/characters/vant/front.svg",
  46067. extra: 1396/1320,
  46068. bottom: 20/1416
  46069. }
  46070. },
  46071. back: {
  46072. height: math.unit(5 + 6/12, "feet"),
  46073. weight: math.unit(195, "lb"),
  46074. name: "Back",
  46075. image: {
  46076. source: "./media/characters/vant/back.svg",
  46077. extra: 1396/1320,
  46078. bottom: 20/1416
  46079. }
  46080. },
  46081. maw: {
  46082. height: math.unit(0.75, "feet"),
  46083. name: "Maw",
  46084. image: {
  46085. source: "./media/characters/vant/maw.svg"
  46086. }
  46087. },
  46088. paw: {
  46089. height: math.unit(1.07, "feet"),
  46090. name: "Paw",
  46091. image: {
  46092. source: "./media/characters/vant/paw.svg"
  46093. }
  46094. },
  46095. },
  46096. [
  46097. {
  46098. name: "Micro",
  46099. height: math.unit(0.25, "inches")
  46100. },
  46101. {
  46102. name: "Normal",
  46103. height: math.unit(5 + 6/12, "feet"),
  46104. default: true
  46105. },
  46106. {
  46107. name: "Macro",
  46108. height: math.unit(75, "feet")
  46109. },
  46110. ]
  46111. ))
  46112. characterMakers.push(() => makeCharacter(
  46113. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46114. {
  46115. front: {
  46116. height: math.unit(30, "meters"),
  46117. weight: math.unit(363, "tons"),
  46118. name: "Front",
  46119. image: {
  46120. source: "./media/characters/ahra/front.svg",
  46121. extra: 1914/1814,
  46122. bottom: 46/1960
  46123. }
  46124. },
  46125. },
  46126. [
  46127. {
  46128. name: "Macro",
  46129. height: math.unit(30, "meters"),
  46130. default: true
  46131. },
  46132. ]
  46133. ))
  46134. characterMakers.push(() => makeCharacter(
  46135. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46136. {
  46137. undressed: {
  46138. height: math.unit(2, "m"),
  46139. weight: math.unit(250, "kg"),
  46140. name: "Undressed",
  46141. image: {
  46142. source: "./media/characters/coriander/undressed.svg",
  46143. extra: 1757/1606,
  46144. bottom: 107/1864
  46145. }
  46146. },
  46147. dressed: {
  46148. height: math.unit(2, "m"),
  46149. weight: math.unit(250, "kg"),
  46150. name: "Dressed",
  46151. image: {
  46152. source: "./media/characters/coriander/dressed.svg",
  46153. extra: 1757/1606,
  46154. bottom: 107/1864
  46155. }
  46156. },
  46157. },
  46158. [
  46159. {
  46160. name: "Normal",
  46161. height: math.unit(4, "meters"),
  46162. default: true
  46163. },
  46164. {
  46165. name: "XL",
  46166. height: math.unit(6, "meters")
  46167. },
  46168. {
  46169. name: "XXL",
  46170. height: math.unit(8, "meters")
  46171. },
  46172. ]
  46173. ))
  46174. characterMakers.push(() => makeCharacter(
  46175. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46176. {
  46177. front: {
  46178. height: math.unit(6, "feet"),
  46179. name: "Front",
  46180. image: {
  46181. source: "./media/characters/syrinx/front.svg",
  46182. extra: 1557/1259,
  46183. bottom: 171/1728
  46184. }
  46185. },
  46186. },
  46187. [
  46188. {
  46189. name: "Normal",
  46190. height: math.unit(6 + 3/12, "feet"),
  46191. default: true
  46192. },
  46193. ]
  46194. ))
  46195. characterMakers.push(() => makeCharacter(
  46196. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46197. {
  46198. front: {
  46199. height: math.unit(11 + 6/12, "feet"),
  46200. weight: math.unit(1.5, "tons"),
  46201. name: "Front",
  46202. image: {
  46203. source: "./media/characters/bor/front.svg",
  46204. extra: 1189/1109,
  46205. bottom: 170/1359
  46206. }
  46207. },
  46208. },
  46209. [
  46210. {
  46211. name: "Normal",
  46212. height: math.unit(11 + 6/12, "feet"),
  46213. default: true
  46214. },
  46215. {
  46216. name: "Macro",
  46217. height: math.unit(32 + 9/12, "feet")
  46218. },
  46219. ]
  46220. ))
  46221. characterMakers.push(() => makeCharacter(
  46222. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46223. {
  46224. anthro: {
  46225. height: math.unit(9, "feet"),
  46226. weight: math.unit(2076, "lb"),
  46227. name: "Anthro",
  46228. image: {
  46229. source: "./media/characters/abacus/anthro.svg",
  46230. extra: 1540/1494,
  46231. bottom: 233/1773
  46232. }
  46233. },
  46234. pigeon: {
  46235. height: math.unit(1, "feet"),
  46236. name: "Pigeon",
  46237. image: {
  46238. source: "./media/characters/abacus/pigeon.svg",
  46239. extra: 528/525,
  46240. bottom: 46/574
  46241. }
  46242. },
  46243. },
  46244. [
  46245. {
  46246. name: "Normal",
  46247. height: math.unit(9, "feet"),
  46248. default: true
  46249. },
  46250. ]
  46251. ))
  46252. characterMakers.push(() => makeCharacter(
  46253. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46254. {
  46255. side: {
  46256. height: math.unit(6, "feet"),
  46257. name: "Side",
  46258. image: {
  46259. source: "./media/characters/delkhan/side.svg",
  46260. extra: 1884/1786,
  46261. bottom: 308/2192
  46262. }
  46263. },
  46264. head: {
  46265. height: math.unit(3.38, "feet"),
  46266. name: "Head",
  46267. image: {
  46268. source: "./media/characters/delkhan/head.svg"
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Normal",
  46275. height: math.unit(72, "feet"),
  46276. default: true
  46277. },
  46278. {
  46279. name: "Giant",
  46280. height: math.unit(172, "feet")
  46281. },
  46282. ]
  46283. ))
  46284. characterMakers.push(() => makeCharacter(
  46285. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46286. {
  46287. standing: {
  46288. height: math.unit(6, "feet"),
  46289. name: "Standing",
  46290. image: {
  46291. source: "./media/characters/euchidat/standing.svg",
  46292. extra: 1612/1553,
  46293. bottom: 116/1728
  46294. }
  46295. },
  46296. leaning: {
  46297. height: math.unit(6, "feet"),
  46298. name: "Leaning",
  46299. image: {
  46300. source: "./media/characters/euchidat/leaning.svg",
  46301. extra: 1719/1674,
  46302. bottom: 27/1746
  46303. }
  46304. },
  46305. },
  46306. [
  46307. {
  46308. name: "Normal",
  46309. height: math.unit(175, "feet"),
  46310. default: true
  46311. },
  46312. {
  46313. name: "Megamacro",
  46314. height: math.unit(190, "miles")
  46315. },
  46316. {
  46317. name: "Gigamacro",
  46318. height: math.unit(190000, "miles")
  46319. },
  46320. ]
  46321. ))
  46322. characterMakers.push(() => makeCharacter(
  46323. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46324. {
  46325. front: {
  46326. height: math.unit(6, "feet"),
  46327. weight: math.unit(150, "lb"),
  46328. name: "Front",
  46329. image: {
  46330. source: "./media/characters/rebecca-stack/front.svg",
  46331. extra: 1256/1201,
  46332. bottom: 18/1274
  46333. }
  46334. },
  46335. },
  46336. [
  46337. {
  46338. name: "Normal",
  46339. height: math.unit(5 + 8/12, "feet"),
  46340. default: true
  46341. },
  46342. {
  46343. name: "Demolitionist",
  46344. height: math.unit(200, "feet")
  46345. },
  46346. {
  46347. name: "Out of Control",
  46348. height: math.unit(2, "miles")
  46349. },
  46350. {
  46351. name: "Giga",
  46352. height: math.unit(7200, "miles")
  46353. },
  46354. ]
  46355. ))
  46356. characterMakers.push(() => makeCharacter(
  46357. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46358. {
  46359. front: {
  46360. height: math.unit(6, "feet"),
  46361. weight: math.unit(150, "lb"),
  46362. name: "Front",
  46363. image: {
  46364. source: "./media/characters/jenny-cartwright/front.svg",
  46365. extra: 1384/1376,
  46366. bottom: 58/1442
  46367. }
  46368. },
  46369. },
  46370. [
  46371. {
  46372. name: "Normal",
  46373. height: math.unit(6 + 7/12, "feet"),
  46374. default: true
  46375. },
  46376. {
  46377. name: "Librarian",
  46378. height: math.unit(55, "feet")
  46379. },
  46380. {
  46381. name: "Sightseer",
  46382. height: math.unit(50, "miles")
  46383. },
  46384. {
  46385. name: "Giga",
  46386. height: math.unit(30000, "miles")
  46387. },
  46388. ]
  46389. ))
  46390. characterMakers.push(() => makeCharacter(
  46391. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46392. {
  46393. nude: {
  46394. height: math.unit(8, "feet"),
  46395. weight: math.unit(225, "lb"),
  46396. name: "Nude",
  46397. image: {
  46398. source: "./media/characters/marvy/nude.svg",
  46399. extra: 1900/1683,
  46400. bottom: 89/1989
  46401. }
  46402. },
  46403. dressed: {
  46404. height: math.unit(8, "feet"),
  46405. weight: math.unit(225, "lb"),
  46406. name: "Dressed",
  46407. image: {
  46408. source: "./media/characters/marvy/dressed.svg",
  46409. extra: 1900/1683,
  46410. bottom: 89/1989
  46411. }
  46412. },
  46413. head: {
  46414. height: math.unit(2.85, "feet"),
  46415. name: "Head",
  46416. image: {
  46417. source: "./media/characters/marvy/head.svg"
  46418. }
  46419. },
  46420. },
  46421. [
  46422. {
  46423. name: "Normal",
  46424. height: math.unit(8, "feet"),
  46425. default: true
  46426. },
  46427. ]
  46428. ))
  46429. characterMakers.push(() => makeCharacter(
  46430. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46431. {
  46432. front: {
  46433. height: math.unit(8, "feet"),
  46434. weight: math.unit(250, "lb"),
  46435. name: "Front",
  46436. image: {
  46437. source: "./media/characters/leah/front.svg",
  46438. extra: 1257/1149,
  46439. bottom: 109/1366
  46440. }
  46441. },
  46442. },
  46443. [
  46444. {
  46445. name: "Normal",
  46446. height: math.unit(8, "feet"),
  46447. default: true
  46448. },
  46449. {
  46450. name: "Minimacro",
  46451. height: math.unit(40, "feet")
  46452. },
  46453. {
  46454. name: "Macro",
  46455. height: math.unit(124, "feet")
  46456. },
  46457. {
  46458. name: "Megamacro",
  46459. height: math.unit(850, "feet")
  46460. },
  46461. ]
  46462. ))
  46463. characterMakers.push(() => makeCharacter(
  46464. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46465. {
  46466. side: {
  46467. height: math.unit(13 + 6/12, "feet"),
  46468. weight: math.unit(3200, "lb"),
  46469. name: "Side",
  46470. image: {
  46471. source: "./media/characters/alvir/side.svg",
  46472. extra: 896/589,
  46473. bottom: 26/922
  46474. }
  46475. },
  46476. },
  46477. [
  46478. {
  46479. name: "Normal",
  46480. height: math.unit(13 + 6/12, "feet"),
  46481. default: true
  46482. },
  46483. ]
  46484. ))
  46485. characterMakers.push(() => makeCharacter(
  46486. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46487. {
  46488. front: {
  46489. height: math.unit(5 + 4/12, "feet"),
  46490. weight: math.unit(236, "lb"),
  46491. name: "Front",
  46492. image: {
  46493. source: "./media/characters/zaina-khalil/front.svg",
  46494. extra: 1533/1485,
  46495. bottom: 94/1627
  46496. }
  46497. },
  46498. side: {
  46499. height: math.unit(5 + 4/12, "feet"),
  46500. weight: math.unit(236, "lb"),
  46501. name: "Side",
  46502. image: {
  46503. source: "./media/characters/zaina-khalil/side.svg",
  46504. extra: 1537/1498,
  46505. bottom: 66/1603
  46506. }
  46507. },
  46508. back: {
  46509. height: math.unit(5 + 4/12, "feet"),
  46510. weight: math.unit(236, "lb"),
  46511. name: "Back",
  46512. image: {
  46513. source: "./media/characters/zaina-khalil/back.svg",
  46514. extra: 1546/1494,
  46515. bottom: 89/1635
  46516. }
  46517. },
  46518. },
  46519. [
  46520. {
  46521. name: "Normal",
  46522. height: math.unit(5 + 4/12, "feet"),
  46523. default: true
  46524. },
  46525. ]
  46526. ))
  46527. characterMakers.push(() => makeCharacter(
  46528. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46529. {
  46530. side: {
  46531. height: math.unit(12, "feet"),
  46532. weight: math.unit(4000, "lb"),
  46533. name: "Side",
  46534. image: {
  46535. source: "./media/characters/terry/side.svg",
  46536. extra: 1518/1439,
  46537. bottom: 149/1667
  46538. }
  46539. },
  46540. },
  46541. [
  46542. {
  46543. name: "Normal",
  46544. height: math.unit(12, "feet"),
  46545. default: true
  46546. },
  46547. ]
  46548. ))
  46549. characterMakers.push(() => makeCharacter(
  46550. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46551. {
  46552. front: {
  46553. height: math.unit(12, "feet"),
  46554. weight: math.unit(1500, "lb"),
  46555. name: "Front",
  46556. image: {
  46557. source: "./media/characters/kahea/front.svg",
  46558. extra: 1722/1617,
  46559. bottom: 179/1901
  46560. }
  46561. },
  46562. },
  46563. [
  46564. {
  46565. name: "Normal",
  46566. height: math.unit(12, "feet"),
  46567. default: true
  46568. },
  46569. ]
  46570. ))
  46571. characterMakers.push(() => makeCharacter(
  46572. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46573. {
  46574. demonFront: {
  46575. height: math.unit(36, "feet"),
  46576. name: "Front",
  46577. image: {
  46578. source: "./media/characters/alex-xuria/demon-front.svg",
  46579. extra: 1705/1673,
  46580. bottom: 198/1903
  46581. },
  46582. form: "demon",
  46583. default: true
  46584. },
  46585. demonBack: {
  46586. height: math.unit(36, "feet"),
  46587. name: "Back",
  46588. image: {
  46589. source: "./media/characters/alex-xuria/demon-back.svg",
  46590. extra: 1725/1693,
  46591. bottom: 70/1795
  46592. },
  46593. form: "demon"
  46594. },
  46595. demonHead: {
  46596. height: math.unit(2.14, "meters"),
  46597. name: "Head",
  46598. image: {
  46599. source: "./media/characters/alex-xuria/demon-head.svg"
  46600. },
  46601. form: "demon"
  46602. },
  46603. demonHand: {
  46604. height: math.unit(1.61, "meters"),
  46605. name: "Hand",
  46606. image: {
  46607. source: "./media/characters/alex-xuria/demon-hand.svg"
  46608. },
  46609. form: "demon"
  46610. },
  46611. demonPaw: {
  46612. height: math.unit(1.35, "meters"),
  46613. name: "Paw",
  46614. image: {
  46615. source: "./media/characters/alex-xuria/demon-paw.svg"
  46616. },
  46617. form: "demon"
  46618. },
  46619. demonFoot: {
  46620. height: math.unit(2.2, "meters"),
  46621. name: "Foot",
  46622. image: {
  46623. source: "./media/characters/alex-xuria/demon-foot.svg"
  46624. },
  46625. form: "demon"
  46626. },
  46627. demonCock: {
  46628. height: math.unit(1.74, "meters"),
  46629. name: "Cock",
  46630. image: {
  46631. source: "./media/characters/alex-xuria/demon-cock.svg"
  46632. },
  46633. form: "demon"
  46634. },
  46635. demonTailClosed: {
  46636. height: math.unit(1.47, "meters"),
  46637. name: "Tail (Closed)",
  46638. image: {
  46639. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46640. },
  46641. form: "demon"
  46642. },
  46643. demonTailOpen: {
  46644. height: math.unit(2.85, "meters"),
  46645. name: "Tail (Open)",
  46646. image: {
  46647. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46648. },
  46649. form: "demon"
  46650. },
  46651. incubusFront: {
  46652. height: math.unit(12, "feet"),
  46653. name: "Front",
  46654. image: {
  46655. source: "./media/characters/alex-xuria/incubus-front.svg",
  46656. extra: 1754/1677,
  46657. bottom: 125/1879
  46658. },
  46659. form: "incubus",
  46660. default: true
  46661. },
  46662. incubusBack: {
  46663. height: math.unit(12, "feet"),
  46664. name: "Back",
  46665. image: {
  46666. source: "./media/characters/alex-xuria/incubus-back.svg",
  46667. extra: 1702/1647,
  46668. bottom: 30/1732
  46669. },
  46670. form: "incubus"
  46671. },
  46672. incubusHead: {
  46673. height: math.unit(3.45, "feet"),
  46674. name: "Head",
  46675. image: {
  46676. source: "./media/characters/alex-xuria/incubus-head.svg"
  46677. },
  46678. form: "incubus"
  46679. },
  46680. rabbitFront: {
  46681. height: math.unit(6, "feet"),
  46682. name: "Front",
  46683. image: {
  46684. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46685. extra: 1369/1349,
  46686. bottom: 45/1414
  46687. },
  46688. form: "rabbit",
  46689. default: true
  46690. },
  46691. rabbitSide: {
  46692. height: math.unit(6, "feet"),
  46693. name: "Side",
  46694. image: {
  46695. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46696. extra: 1370/1356,
  46697. bottom: 37/1407
  46698. },
  46699. form: "rabbit"
  46700. },
  46701. rabbitBack: {
  46702. height: math.unit(6, "feet"),
  46703. name: "Back",
  46704. image: {
  46705. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46706. extra: 1375/1358,
  46707. bottom: 43/1418
  46708. },
  46709. form: "rabbit"
  46710. },
  46711. },
  46712. [
  46713. {
  46714. name: "Normal",
  46715. height: math.unit(6, "feet"),
  46716. default: true,
  46717. form: "rabbit"
  46718. },
  46719. {
  46720. name: "Incubus",
  46721. height: math.unit(12, "feet"),
  46722. default: true,
  46723. form: "incubus"
  46724. },
  46725. {
  46726. name: "Demon",
  46727. height: math.unit(36, "feet"),
  46728. default: true,
  46729. form: "demon"
  46730. }
  46731. ],
  46732. {
  46733. "demon": {
  46734. name: "Demon",
  46735. default: true
  46736. },
  46737. "incubus": {
  46738. name: "Incubus",
  46739. },
  46740. "rabbit": {
  46741. name: "Rabbit"
  46742. }
  46743. }
  46744. ))
  46745. characterMakers.push(() => makeCharacter(
  46746. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46747. {
  46748. front: {
  46749. height: math.unit(7 + 5/12, "feet"),
  46750. weight: math.unit(510, "lb"),
  46751. name: "Front",
  46752. image: {
  46753. source: "./media/characters/syrup/front.svg",
  46754. extra: 932/916,
  46755. bottom: 26/958
  46756. }
  46757. },
  46758. },
  46759. [
  46760. {
  46761. name: "Normal",
  46762. height: math.unit(7 + 5/12, "feet"),
  46763. default: true
  46764. },
  46765. {
  46766. name: "Big",
  46767. height: math.unit(50, "feet")
  46768. },
  46769. {
  46770. name: "Macro",
  46771. height: math.unit(300, "feet")
  46772. },
  46773. {
  46774. name: "Megamacro",
  46775. height: math.unit(1, "mile")
  46776. },
  46777. ]
  46778. ))
  46779. characterMakers.push(() => makeCharacter(
  46780. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46781. {
  46782. front: {
  46783. height: math.unit(6 + 9/12, "feet"),
  46784. name: "Front",
  46785. image: {
  46786. source: "./media/characters/zeimne/front.svg",
  46787. extra: 1969/1806,
  46788. bottom: 53/2022
  46789. }
  46790. },
  46791. },
  46792. [
  46793. {
  46794. name: "Normal",
  46795. height: math.unit(6 + 9/12, "feet"),
  46796. default: true
  46797. },
  46798. {
  46799. name: "Giant",
  46800. height: math.unit(550, "feet")
  46801. },
  46802. {
  46803. name: "Mega",
  46804. height: math.unit(3, "miles")
  46805. },
  46806. {
  46807. name: "Giga",
  46808. height: math.unit(250, "miles")
  46809. },
  46810. {
  46811. name: "Tera",
  46812. height: math.unit(1, "AU")
  46813. },
  46814. ]
  46815. ))
  46816. characterMakers.push(() => makeCharacter(
  46817. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46818. {
  46819. front: {
  46820. height: math.unit(5 + 2/12, "feet"),
  46821. name: "Front",
  46822. image: {
  46823. source: "./media/characters/grar/front.svg",
  46824. extra: 1331/1119,
  46825. bottom: 60/1391
  46826. }
  46827. },
  46828. back: {
  46829. height: math.unit(5 + 2/12, "feet"),
  46830. name: "Back",
  46831. image: {
  46832. source: "./media/characters/grar/back.svg",
  46833. extra: 1385/1169,
  46834. bottom: 23/1408
  46835. }
  46836. },
  46837. },
  46838. [
  46839. {
  46840. name: "Normal",
  46841. height: math.unit(5 + 2/12, "feet"),
  46842. default: true
  46843. },
  46844. ]
  46845. ))
  46846. characterMakers.push(() => makeCharacter(
  46847. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46848. {
  46849. front: {
  46850. height: math.unit(13 + 7/12, "feet"),
  46851. weight: math.unit(2200, "lb"),
  46852. name: "Front",
  46853. image: {
  46854. source: "./media/characters/endraya/front.svg",
  46855. extra: 1289/1215,
  46856. bottom: 50/1339
  46857. }
  46858. },
  46859. nude: {
  46860. height: math.unit(13 + 7/12, "feet"),
  46861. weight: math.unit(2200, "lb"),
  46862. name: "Nude",
  46863. image: {
  46864. source: "./media/characters/endraya/nude.svg",
  46865. extra: 1247/1171,
  46866. bottom: 40/1287
  46867. }
  46868. },
  46869. head: {
  46870. height: math.unit(2.6, "feet"),
  46871. name: "Head",
  46872. image: {
  46873. source: "./media/characters/endraya/head.svg"
  46874. }
  46875. },
  46876. slit: {
  46877. height: math.unit(3.4, "feet"),
  46878. name: "Slit",
  46879. image: {
  46880. source: "./media/characters/endraya/slit.svg"
  46881. }
  46882. },
  46883. },
  46884. [
  46885. {
  46886. name: "Normal",
  46887. height: math.unit(13 + 7/12, "feet"),
  46888. default: true
  46889. },
  46890. {
  46891. name: "Macro",
  46892. height: math.unit(200, "feet")
  46893. },
  46894. ]
  46895. ))
  46896. characterMakers.push(() => makeCharacter(
  46897. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46898. {
  46899. front: {
  46900. height: math.unit(1.81, "meters"),
  46901. weight: math.unit(69, "kg"),
  46902. name: "Front",
  46903. image: {
  46904. source: "./media/characters/rodryana/front.svg",
  46905. extra: 2002/1921,
  46906. bottom: 53/2055
  46907. }
  46908. },
  46909. back: {
  46910. height: math.unit(1.81, "meters"),
  46911. weight: math.unit(69, "kg"),
  46912. name: "Back",
  46913. image: {
  46914. source: "./media/characters/rodryana/back.svg",
  46915. extra: 1993/1926,
  46916. bottom: 48/2041
  46917. }
  46918. },
  46919. maw: {
  46920. height: math.unit(0.19769417475, "meters"),
  46921. name: "Maw",
  46922. image: {
  46923. source: "./media/characters/rodryana/maw.svg"
  46924. }
  46925. },
  46926. slit: {
  46927. height: math.unit(0.31631067961, "meters"),
  46928. name: "Slit",
  46929. image: {
  46930. source: "./media/characters/rodryana/slit.svg"
  46931. }
  46932. },
  46933. },
  46934. [
  46935. {
  46936. name: "Normal",
  46937. height: math.unit(1.81, "meters")
  46938. },
  46939. {
  46940. name: "Mini Macro",
  46941. height: math.unit(181, "meters")
  46942. },
  46943. {
  46944. name: "Macro",
  46945. height: math.unit(452, "meters"),
  46946. default: true
  46947. },
  46948. {
  46949. name: "Mega Macro",
  46950. height: math.unit(1.375, "km")
  46951. },
  46952. {
  46953. name: "Giga Macro",
  46954. height: math.unit(13.575, "km")
  46955. },
  46956. ]
  46957. ))
  46958. characterMakers.push(() => makeCharacter(
  46959. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46960. {
  46961. front: {
  46962. height: math.unit(6, "feet"),
  46963. weight: math.unit(1000, "lb"),
  46964. name: "Front",
  46965. image: {
  46966. source: "./media/characters/asaya/front.svg",
  46967. extra: 1460/1200,
  46968. bottom: 71/1531
  46969. }
  46970. },
  46971. },
  46972. [
  46973. {
  46974. name: "Normal",
  46975. height: math.unit(8, "km"),
  46976. default: true
  46977. },
  46978. ]
  46979. ))
  46980. characterMakers.push(() => makeCharacter(
  46981. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46982. {
  46983. front: {
  46984. height: math.unit(3.5, "meters"),
  46985. name: "Front",
  46986. image: {
  46987. source: "./media/characters/sarzu-and-israz/front.svg",
  46988. extra: 1570/1558,
  46989. bottom: 150/1720
  46990. },
  46991. },
  46992. back: {
  46993. height: math.unit(3.5, "meters"),
  46994. name: "Back",
  46995. image: {
  46996. source: "./media/characters/sarzu-and-israz/back.svg",
  46997. extra: 1523/1509,
  46998. bottom: 132/1655
  46999. },
  47000. },
  47001. frontFemale: {
  47002. height: math.unit(3.5, "meters"),
  47003. name: "Front (Female)",
  47004. image: {
  47005. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47006. extra: 1570/1558,
  47007. bottom: 150/1720
  47008. },
  47009. },
  47010. frontHerm: {
  47011. height: math.unit(3.5, "meters"),
  47012. name: "Front (Herm)",
  47013. image: {
  47014. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47015. extra: 1570/1558,
  47016. bottom: 150/1720
  47017. },
  47018. },
  47019. },
  47020. [
  47021. {
  47022. name: "Normal",
  47023. height: math.unit(3.5, "meters"),
  47024. default: true,
  47025. },
  47026. {
  47027. name: "Macro",
  47028. height: math.unit(65.5, "meters"),
  47029. },
  47030. ],
  47031. ))
  47032. characterMakers.push(() => makeCharacter(
  47033. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47034. {
  47035. front: {
  47036. height: math.unit(6, "feet"),
  47037. weight: math.unit(250, "lb"),
  47038. name: "Front",
  47039. image: {
  47040. source: "./media/characters/zenimma/front.svg",
  47041. extra: 1346/1320,
  47042. bottom: 58/1404
  47043. }
  47044. },
  47045. back: {
  47046. height: math.unit(6, "feet"),
  47047. weight: math.unit(250, "lb"),
  47048. name: "Back",
  47049. image: {
  47050. source: "./media/characters/zenimma/back.svg",
  47051. extra: 1324/1308,
  47052. bottom: 44/1368
  47053. }
  47054. },
  47055. dick: {
  47056. height: math.unit(1.44, "feet"),
  47057. name: "Dick",
  47058. image: {
  47059. source: "./media/characters/zenimma/dick.svg"
  47060. }
  47061. },
  47062. },
  47063. [
  47064. {
  47065. name: "Canon Height",
  47066. height: math.unit(66, "miles"),
  47067. default: true
  47068. },
  47069. ]
  47070. ))
  47071. characterMakers.push(() => makeCharacter(
  47072. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47073. {
  47074. nude: {
  47075. height: math.unit(6, "feet"),
  47076. weight: math.unit(150, "lb"),
  47077. name: "Nude",
  47078. image: {
  47079. source: "./media/characters/shavon/nude.svg",
  47080. extra: 1242/1096,
  47081. bottom: 98/1340
  47082. }
  47083. },
  47084. dressed: {
  47085. height: math.unit(6, "feet"),
  47086. weight: math.unit(150, "lb"),
  47087. name: "Dressed",
  47088. image: {
  47089. source: "./media/characters/shavon/dressed.svg",
  47090. extra: 1242/1096,
  47091. bottom: 98/1340
  47092. }
  47093. },
  47094. },
  47095. [
  47096. {
  47097. name: "Macro",
  47098. height: math.unit(255, "feet"),
  47099. default: true
  47100. },
  47101. ]
  47102. ))
  47103. characterMakers.push(() => makeCharacter(
  47104. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47105. {
  47106. front: {
  47107. height: math.unit(6, "feet"),
  47108. name: "Front",
  47109. image: {
  47110. source: "./media/characters/steph/front.svg",
  47111. extra: 1430/1330,
  47112. bottom: 54/1484
  47113. }
  47114. },
  47115. },
  47116. [
  47117. {
  47118. name: "Normal",
  47119. height: math.unit(6, "feet"),
  47120. default: true
  47121. },
  47122. ]
  47123. ))
  47124. characterMakers.push(() => makeCharacter(
  47125. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47126. {
  47127. front: {
  47128. height: math.unit(9, "feet"),
  47129. weight: math.unit(400, "lb"),
  47130. name: "Front",
  47131. image: {
  47132. source: "./media/characters/kil'aman/front.svg",
  47133. extra: 1210/1159,
  47134. bottom: 109/1319
  47135. }
  47136. },
  47137. head: {
  47138. height: math.unit(2.14, "feet"),
  47139. name: "Head",
  47140. image: {
  47141. source: "./media/characters/kil'aman/head.svg"
  47142. }
  47143. },
  47144. maw: {
  47145. height: math.unit(1.21, "feet"),
  47146. name: "Maw",
  47147. image: {
  47148. source: "./media/characters/kil'aman/maw.svg"
  47149. }
  47150. },
  47151. foot: {
  47152. height: math.unit(1.7, "feet"),
  47153. name: "Foot",
  47154. image: {
  47155. source: "./media/characters/kil'aman/foot.svg"
  47156. }
  47157. },
  47158. dick: {
  47159. height: math.unit(2.1, "feet"),
  47160. name: "Dick",
  47161. image: {
  47162. source: "./media/characters/kil'aman/dick.svg"
  47163. }
  47164. },
  47165. },
  47166. [
  47167. {
  47168. name: "Normal",
  47169. height: math.unit(9, "feet")
  47170. },
  47171. {
  47172. name: "Canon Height",
  47173. height: math.unit(10, "miles"),
  47174. default: true
  47175. },
  47176. {
  47177. name: "Maximum",
  47178. height: math.unit(6e9, "miles")
  47179. },
  47180. ]
  47181. ))
  47182. characterMakers.push(() => makeCharacter(
  47183. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47184. {
  47185. front: {
  47186. height: math.unit(90, "feet"),
  47187. weight: math.unit(675000, "lb"),
  47188. name: "Front",
  47189. image: {
  47190. source: "./media/characters/qadan/front.svg",
  47191. extra: 1012/1004,
  47192. bottom: 78/1090
  47193. }
  47194. },
  47195. back: {
  47196. height: math.unit(90, "feet"),
  47197. weight: math.unit(675000, "lb"),
  47198. name: "Back",
  47199. image: {
  47200. source: "./media/characters/qadan/back.svg",
  47201. extra: 1042/1031,
  47202. bottom: 55/1097
  47203. }
  47204. },
  47205. armored: {
  47206. height: math.unit(90, "feet"),
  47207. weight: math.unit(675000, "lb"),
  47208. name: "Armored",
  47209. image: {
  47210. source: "./media/characters/qadan/armored.svg",
  47211. extra: 1047/1037,
  47212. bottom: 48/1095
  47213. }
  47214. },
  47215. },
  47216. [
  47217. {
  47218. name: "Normal",
  47219. height: math.unit(90, "feet"),
  47220. default: true
  47221. },
  47222. ]
  47223. ))
  47224. characterMakers.push(() => makeCharacter(
  47225. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47226. {
  47227. front: {
  47228. height: math.unit(6, "feet"),
  47229. weight: math.unit(225, "lb"),
  47230. name: "Front",
  47231. image: {
  47232. source: "./media/characters/brooke/front.svg",
  47233. extra: 1050/1010,
  47234. bottom: 66/1116
  47235. }
  47236. },
  47237. back: {
  47238. height: math.unit(6, "feet"),
  47239. weight: math.unit(225, "lb"),
  47240. name: "Back",
  47241. image: {
  47242. source: "./media/characters/brooke/back.svg",
  47243. extra: 1053/1013,
  47244. bottom: 41/1094
  47245. }
  47246. },
  47247. dressed: {
  47248. height: math.unit(6, "feet"),
  47249. weight: math.unit(225, "lb"),
  47250. name: "Dressed",
  47251. image: {
  47252. source: "./media/characters/brooke/dressed.svg",
  47253. extra: 1050/1010,
  47254. bottom: 66/1116
  47255. }
  47256. },
  47257. },
  47258. [
  47259. {
  47260. name: "Canon Height",
  47261. height: math.unit(500, "miles"),
  47262. default: true
  47263. },
  47264. ]
  47265. ))
  47266. characterMakers.push(() => makeCharacter(
  47267. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47268. {
  47269. front: {
  47270. height: math.unit(6 + 2/12, "feet"),
  47271. weight: math.unit(210, "lb"),
  47272. name: "Front",
  47273. image: {
  47274. source: "./media/characters/wubs/front.svg",
  47275. extra: 1345/1325,
  47276. bottom: 70/1415
  47277. }
  47278. },
  47279. back: {
  47280. height: math.unit(6 + 2/12, "feet"),
  47281. weight: math.unit(210, "lb"),
  47282. name: "Back",
  47283. image: {
  47284. source: "./media/characters/wubs/back.svg",
  47285. extra: 1296/1275,
  47286. bottom: 58/1354
  47287. }
  47288. },
  47289. },
  47290. [
  47291. {
  47292. name: "Normal",
  47293. height: math.unit(6 + 2/12, "feet"),
  47294. default: true
  47295. },
  47296. {
  47297. name: "Macro",
  47298. height: math.unit(1000, "feet")
  47299. },
  47300. {
  47301. name: "Megamacro",
  47302. height: math.unit(1, "mile")
  47303. },
  47304. ]
  47305. ))
  47306. characterMakers.push(() => makeCharacter(
  47307. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47308. {
  47309. front: {
  47310. height: math.unit(4, "feet"),
  47311. weight: math.unit(120, "lb"),
  47312. name: "Front",
  47313. image: {
  47314. source: "./media/characters/blue/front.svg",
  47315. extra: 1636/1525,
  47316. bottom: 43/1679
  47317. }
  47318. },
  47319. back: {
  47320. height: math.unit(4, "feet"),
  47321. weight: math.unit(120, "lb"),
  47322. name: "Back",
  47323. image: {
  47324. source: "./media/characters/blue/back.svg",
  47325. extra: 1660/1560,
  47326. bottom: 57/1717
  47327. }
  47328. },
  47329. paws: {
  47330. height: math.unit(0.826, "feet"),
  47331. name: "Paws",
  47332. image: {
  47333. source: "./media/characters/blue/paws.svg"
  47334. }
  47335. },
  47336. },
  47337. [
  47338. {
  47339. name: "Micro",
  47340. height: math.unit(3, "inches")
  47341. },
  47342. {
  47343. name: "Normal",
  47344. height: math.unit(4, "feet"),
  47345. default: true
  47346. },
  47347. {
  47348. name: "Femenine Form",
  47349. height: math.unit(14, "feet")
  47350. },
  47351. {
  47352. name: "Werebat Form",
  47353. height: math.unit(18, "feet")
  47354. },
  47355. ]
  47356. ))
  47357. characterMakers.push(() => makeCharacter(
  47358. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47359. {
  47360. female: {
  47361. height: math.unit(7 + 4/12, "feet"),
  47362. weight: math.unit(243, "lb"),
  47363. name: "Female",
  47364. image: {
  47365. source: "./media/characters/kaya/female.svg",
  47366. extra: 975/898,
  47367. bottom: 34/1009
  47368. }
  47369. },
  47370. herm: {
  47371. height: math.unit(7 + 4/12, "feet"),
  47372. weight: math.unit(243, "lb"),
  47373. name: "Herm",
  47374. image: {
  47375. source: "./media/characters/kaya/herm.svg",
  47376. extra: 975/898,
  47377. bottom: 34/1009
  47378. }
  47379. },
  47380. },
  47381. [
  47382. {
  47383. name: "Normal",
  47384. height: math.unit(7 + 4/12, "feet"),
  47385. default: true
  47386. },
  47387. ]
  47388. ))
  47389. characterMakers.push(() => makeCharacter(
  47390. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47391. {
  47392. female: {
  47393. height: math.unit(9 + 4/12, "feet"),
  47394. weight: math.unit(398, "lb"),
  47395. name: "Female",
  47396. image: {
  47397. source: "./media/characters/kassandra/female.svg",
  47398. extra: 908/839,
  47399. bottom: 61/969
  47400. }
  47401. },
  47402. intersex: {
  47403. height: math.unit(9 + 4/12, "feet"),
  47404. weight: math.unit(398, "lb"),
  47405. name: "Intersex",
  47406. image: {
  47407. source: "./media/characters/kassandra/intersex.svg",
  47408. extra: 908/839,
  47409. bottom: 61/969
  47410. }
  47411. },
  47412. },
  47413. [
  47414. {
  47415. name: "Normal",
  47416. height: math.unit(9 + 4/12, "feet"),
  47417. default: true
  47418. },
  47419. ]
  47420. ))
  47421. characterMakers.push(() => makeCharacter(
  47422. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47423. {
  47424. front: {
  47425. height: math.unit(3, "meters"),
  47426. name: "Front",
  47427. image: {
  47428. source: "./media/characters/amy/front.svg",
  47429. extra: 1380/1343,
  47430. bottom: 70/1450
  47431. }
  47432. },
  47433. back: {
  47434. height: math.unit(3, "meters"),
  47435. name: "Back",
  47436. image: {
  47437. source: "./media/characters/amy/back.svg",
  47438. extra: 1380/1347,
  47439. bottom: 66/1446
  47440. }
  47441. },
  47442. },
  47443. [
  47444. {
  47445. name: "Normal",
  47446. height: math.unit(3, "meters"),
  47447. default: true
  47448. },
  47449. ]
  47450. ))
  47451. characterMakers.push(() => makeCharacter(
  47452. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47453. {
  47454. side: {
  47455. height: math.unit(47, "cm"),
  47456. weight: math.unit(10.8, "kg"),
  47457. name: "Side",
  47458. image: {
  47459. source: "./media/characters/alphaschakal/side.svg",
  47460. extra: 1058/568,
  47461. bottom: 62/1120
  47462. }
  47463. },
  47464. back: {
  47465. height: math.unit(78, "cm"),
  47466. weight: math.unit(10.8, "kg"),
  47467. name: "Back",
  47468. image: {
  47469. source: "./media/characters/alphaschakal/back.svg",
  47470. extra: 1102/942,
  47471. bottom: 185/1287
  47472. }
  47473. },
  47474. head: {
  47475. height: math.unit(28, "cm"),
  47476. name: "Head",
  47477. image: {
  47478. source: "./media/characters/alphaschakal/head.svg",
  47479. extra: 696/508,
  47480. bottom: 0/696
  47481. }
  47482. },
  47483. paw: {
  47484. height: math.unit(16, "cm"),
  47485. name: "Paw",
  47486. image: {
  47487. source: "./media/characters/alphaschakal/paw.svg"
  47488. }
  47489. },
  47490. },
  47491. [
  47492. {
  47493. name: "Normal",
  47494. height: math.unit(47, "cm"),
  47495. default: true
  47496. },
  47497. {
  47498. name: "Macro",
  47499. height: math.unit(340, "cm")
  47500. },
  47501. ]
  47502. ))
  47503. characterMakers.push(() => makeCharacter(
  47504. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47505. {
  47506. front: {
  47507. height: math.unit(36, "earths"),
  47508. name: "Front",
  47509. image: {
  47510. source: "./media/characters/ecobyss/front.svg",
  47511. extra: 1282/1215,
  47512. bottom: 11/1293
  47513. }
  47514. },
  47515. back: {
  47516. height: math.unit(36, "earths"),
  47517. name: "Back",
  47518. image: {
  47519. source: "./media/characters/ecobyss/back.svg",
  47520. extra: 1291/1222,
  47521. bottom: 8/1299
  47522. }
  47523. },
  47524. },
  47525. [
  47526. {
  47527. name: "Normal",
  47528. height: math.unit(36, "earths"),
  47529. default: true
  47530. },
  47531. ]
  47532. ))
  47533. characterMakers.push(() => makeCharacter(
  47534. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47535. {
  47536. front: {
  47537. height: math.unit(12, "feet"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/vasuk/front.svg",
  47541. extra: 1326/1207,
  47542. bottom: 64/1390
  47543. }
  47544. },
  47545. },
  47546. [
  47547. {
  47548. name: "Normal",
  47549. height: math.unit(12, "feet"),
  47550. default: true
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47556. {
  47557. side: {
  47558. height: math.unit(100, "feet"),
  47559. name: "Side",
  47560. image: {
  47561. source: "./media/characters/linneaus/side.svg",
  47562. extra: 987/807,
  47563. bottom: 47/1034
  47564. }
  47565. },
  47566. },
  47567. [
  47568. {
  47569. name: "Macro",
  47570. height: math.unit(100, "feet"),
  47571. default: true
  47572. },
  47573. ]
  47574. ))
  47575. characterMakers.push(() => makeCharacter(
  47576. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47577. {
  47578. front: {
  47579. height: math.unit(8, "feet"),
  47580. weight: math.unit(1200, "lb"),
  47581. name: "Front",
  47582. image: {
  47583. source: "./media/characters/nyterious-daligdig/front.svg",
  47584. extra: 1284/1094,
  47585. bottom: 84/1368
  47586. }
  47587. },
  47588. back: {
  47589. height: math.unit(8, "feet"),
  47590. weight: math.unit(1200, "lb"),
  47591. name: "Back",
  47592. image: {
  47593. source: "./media/characters/nyterious-daligdig/back.svg",
  47594. extra: 1301/1121,
  47595. bottom: 129/1430
  47596. }
  47597. },
  47598. mouth: {
  47599. height: math.unit(1.464, "feet"),
  47600. name: "Mouth",
  47601. image: {
  47602. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47603. }
  47604. },
  47605. },
  47606. [
  47607. {
  47608. name: "Small",
  47609. height: math.unit(8, "feet"),
  47610. default: true
  47611. },
  47612. {
  47613. name: "Normal",
  47614. height: math.unit(15, "feet")
  47615. },
  47616. {
  47617. name: "Macro",
  47618. height: math.unit(90, "feet")
  47619. },
  47620. ]
  47621. ))
  47622. characterMakers.push(() => makeCharacter(
  47623. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47624. {
  47625. front: {
  47626. height: math.unit(7 + 4/12, "feet"),
  47627. weight: math.unit(252, "lb"),
  47628. name: "Front",
  47629. image: {
  47630. source: "./media/characters/bandel/front.svg",
  47631. extra: 1946/1775,
  47632. bottom: 26/1972
  47633. }
  47634. },
  47635. back: {
  47636. height: math.unit(7 + 4/12, "feet"),
  47637. weight: math.unit(252, "lb"),
  47638. name: "Back",
  47639. image: {
  47640. source: "./media/characters/bandel/back.svg",
  47641. extra: 1940/1770,
  47642. bottom: 25/1965
  47643. }
  47644. },
  47645. maw: {
  47646. height: math.unit(2.15, "feet"),
  47647. name: "Maw",
  47648. image: {
  47649. source: "./media/characters/bandel/maw.svg"
  47650. }
  47651. },
  47652. stomach: {
  47653. height: math.unit(1.95, "feet"),
  47654. name: "Stomach",
  47655. image: {
  47656. source: "./media/characters/bandel/stomach.svg"
  47657. }
  47658. },
  47659. },
  47660. [
  47661. {
  47662. name: "Normal",
  47663. height: math.unit(7 + 4/12, "feet"),
  47664. default: true
  47665. },
  47666. ]
  47667. ))
  47668. characterMakers.push(() => makeCharacter(
  47669. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47670. {
  47671. front: {
  47672. height: math.unit(10 + 5/12, "feet"),
  47673. weight: math.unit(773.5, "kg"),
  47674. name: "Front",
  47675. image: {
  47676. source: "./media/characters/zed/front.svg",
  47677. extra: 987/941,
  47678. bottom: 52/1039
  47679. }
  47680. },
  47681. },
  47682. [
  47683. {
  47684. name: "Short",
  47685. height: math.unit(5 + 4/12, "feet")
  47686. },
  47687. {
  47688. name: "Average",
  47689. height: math.unit(10 + 5/12, "feet"),
  47690. default: true
  47691. },
  47692. {
  47693. name: "Mini-Macro",
  47694. height: math.unit(24 + 9/12, "feet")
  47695. },
  47696. {
  47697. name: "Macro",
  47698. height: math.unit(249, "feet")
  47699. },
  47700. {
  47701. name: "Mega-Macro",
  47702. height: math.unit(12490, "feet")
  47703. },
  47704. {
  47705. name: "Giga-Macro",
  47706. height: math.unit(24.9, "miles")
  47707. },
  47708. {
  47709. name: "Tera-Macro",
  47710. height: math.unit(24900, "miles")
  47711. },
  47712. {
  47713. name: "Cosmic Scale",
  47714. height: math.unit(38.9, "lightyears")
  47715. },
  47716. {
  47717. name: "Universal Scale",
  47718. height: math.unit(138e12, "lightyears")
  47719. },
  47720. ]
  47721. ))
  47722. characterMakers.push(() => makeCharacter(
  47723. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47724. {
  47725. front: {
  47726. height: math.unit(1561, "inches"),
  47727. name: "Front",
  47728. image: {
  47729. source: "./media/characters/ivan/front.svg",
  47730. extra: 1126/1071,
  47731. bottom: 26/1152
  47732. }
  47733. },
  47734. back: {
  47735. height: math.unit(1561, "inches"),
  47736. name: "Back",
  47737. image: {
  47738. source: "./media/characters/ivan/back.svg",
  47739. extra: 1134/1079,
  47740. bottom: 30/1164
  47741. }
  47742. },
  47743. },
  47744. [
  47745. {
  47746. name: "Normal",
  47747. height: math.unit(1561, "inches"),
  47748. default: true
  47749. },
  47750. ]
  47751. ))
  47752. characterMakers.push(() => makeCharacter(
  47753. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47754. {
  47755. front: {
  47756. height: math.unit(5 + 7/12, "feet"),
  47757. weight: math.unit(150, "lb"),
  47758. name: "Front",
  47759. image: {
  47760. source: "./media/characters/robin-arctic-hare/front.svg",
  47761. extra: 1148/974,
  47762. bottom: 20/1168
  47763. }
  47764. },
  47765. },
  47766. [
  47767. {
  47768. name: "Normal",
  47769. height: math.unit(5 + 7/12, "feet"),
  47770. default: true
  47771. },
  47772. ]
  47773. ))
  47774. characterMakers.push(() => makeCharacter(
  47775. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47776. {
  47777. side: {
  47778. height: math.unit(5, "feet"),
  47779. name: "Side",
  47780. image: {
  47781. source: "./media/characters/birch/side.svg",
  47782. extra: 985/796,
  47783. bottom: 111/1096
  47784. }
  47785. },
  47786. },
  47787. [
  47788. {
  47789. name: "Normal",
  47790. height: math.unit(5, "feet"),
  47791. default: true
  47792. },
  47793. ]
  47794. ))
  47795. characterMakers.push(() => makeCharacter(
  47796. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47797. {
  47798. front: {
  47799. height: math.unit(4, "feet"),
  47800. name: "Front",
  47801. image: {
  47802. source: "./media/characters/rasp/front.svg",
  47803. extra: 561/478,
  47804. bottom: 74/635
  47805. }
  47806. },
  47807. },
  47808. [
  47809. {
  47810. name: "Normal",
  47811. height: math.unit(4, "feet"),
  47812. default: true
  47813. },
  47814. ]
  47815. ))
  47816. characterMakers.push(() => makeCharacter(
  47817. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47818. {
  47819. front: {
  47820. height: math.unit(4 + 6/12, "feet"),
  47821. name: "Front",
  47822. image: {
  47823. source: "./media/characters/agatha/front.svg",
  47824. extra: 947/933,
  47825. bottom: 42/989
  47826. }
  47827. },
  47828. back: {
  47829. height: math.unit(4 + 6/12, "feet"),
  47830. name: "Back",
  47831. image: {
  47832. source: "./media/characters/agatha/back.svg",
  47833. extra: 935/922,
  47834. bottom: 48/983
  47835. }
  47836. },
  47837. },
  47838. [
  47839. {
  47840. name: "Normal",
  47841. height: math.unit(4 + 6 /12, "feet"),
  47842. default: true
  47843. },
  47844. {
  47845. name: "Max Size",
  47846. height: math.unit(500, "feet")
  47847. },
  47848. ]
  47849. ))
  47850. characterMakers.push(() => makeCharacter(
  47851. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47852. {
  47853. side: {
  47854. height: math.unit(30, "feet"),
  47855. name: "Side",
  47856. image: {
  47857. source: "./media/characters/roggy/side.svg",
  47858. extra: 909/643,
  47859. bottom: 63/972
  47860. }
  47861. },
  47862. lounging: {
  47863. height: math.unit(20, "feet"),
  47864. name: "Lounging",
  47865. image: {
  47866. source: "./media/characters/roggy/lounging.svg",
  47867. extra: 643/479,
  47868. bottom: 145/788
  47869. }
  47870. },
  47871. handpaw: {
  47872. height: math.unit(13.1, "feet"),
  47873. name: "Handpaw",
  47874. image: {
  47875. source: "./media/characters/roggy/handpaw.svg"
  47876. }
  47877. },
  47878. footpaw: {
  47879. height: math.unit(15.8, "feet"),
  47880. name: "Footpaw",
  47881. image: {
  47882. source: "./media/characters/roggy/footpaw.svg"
  47883. }
  47884. },
  47885. },
  47886. [
  47887. {
  47888. name: "Menacing",
  47889. height: math.unit(30, "feet"),
  47890. default: true
  47891. },
  47892. ]
  47893. ))
  47894. characterMakers.push(() => makeCharacter(
  47895. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47896. {
  47897. front: {
  47898. height: math.unit(5 + 7/12, "feet"),
  47899. weight: math.unit(135, "lb"),
  47900. name: "Front",
  47901. image: {
  47902. source: "./media/characters/naomi/front.svg",
  47903. extra: 1209/1154,
  47904. bottom: 129/1338
  47905. }
  47906. },
  47907. back: {
  47908. height: math.unit(5 + 7/12, "feet"),
  47909. weight: math.unit(135, "lb"),
  47910. name: "Back",
  47911. image: {
  47912. source: "./media/characters/naomi/back.svg",
  47913. extra: 1252/1190,
  47914. bottom: 23/1275
  47915. }
  47916. },
  47917. },
  47918. [
  47919. {
  47920. name: "Normal",
  47921. height: math.unit(5 + 7 /12, "feet"),
  47922. default: true
  47923. },
  47924. ]
  47925. ))
  47926. characterMakers.push(() => makeCharacter(
  47927. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47928. {
  47929. side: {
  47930. height: math.unit(35, "meters"),
  47931. name: "Side",
  47932. image: {
  47933. source: "./media/characters/kimpi/side.svg",
  47934. extra: 419/382,
  47935. bottom: 63/482
  47936. }
  47937. },
  47938. hand: {
  47939. height: math.unit(8.96, "meters"),
  47940. name: "Hand",
  47941. image: {
  47942. source: "./media/characters/kimpi/hand.svg"
  47943. }
  47944. },
  47945. },
  47946. [
  47947. {
  47948. name: "Normal",
  47949. height: math.unit(35, "meters"),
  47950. default: true
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47956. {
  47957. front: {
  47958. height: math.unit(4 + 4/12, "feet"),
  47959. name: "Front",
  47960. image: {
  47961. source: "./media/characters/pepper-purrloin/front.svg",
  47962. extra: 1141/1024,
  47963. bottom: 21/1162
  47964. }
  47965. },
  47966. },
  47967. [
  47968. {
  47969. name: "Normal",
  47970. height: math.unit(4 + 4/12, "feet"),
  47971. default: true
  47972. },
  47973. ]
  47974. ))
  47975. characterMakers.push(() => makeCharacter(
  47976. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47977. {
  47978. front: {
  47979. height: math.unit(6 + 2/12, "feet"),
  47980. name: "Front",
  47981. image: {
  47982. source: "./media/characters/raphael/front.svg",
  47983. extra: 1101/962,
  47984. bottom: 59/1160
  47985. }
  47986. },
  47987. },
  47988. [
  47989. {
  47990. name: "Normal",
  47991. height: math.unit(6 + 2/12, "feet"),
  47992. default: true
  47993. },
  47994. ]
  47995. ))
  47996. characterMakers.push(() => makeCharacter(
  47997. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47998. {
  47999. front: {
  48000. height: math.unit(6, "feet"),
  48001. weight: math.unit(150, "lb"),
  48002. name: "Front",
  48003. image: {
  48004. source: "./media/characters/victor-williams/front.svg",
  48005. extra: 1894/1825,
  48006. bottom: 67/1961
  48007. }
  48008. },
  48009. },
  48010. [
  48011. {
  48012. name: "Normal",
  48013. height: math.unit(6, "feet"),
  48014. default: true
  48015. },
  48016. ]
  48017. ))
  48018. characterMakers.push(() => makeCharacter(
  48019. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48020. {
  48021. front: {
  48022. height: math.unit(5 + 8/12, "feet"),
  48023. weight: math.unit(150, "lb"),
  48024. name: "Front",
  48025. image: {
  48026. source: "./media/characters/rachel/front.svg",
  48027. extra: 1902/1787,
  48028. bottom: 46/1948
  48029. }
  48030. },
  48031. },
  48032. [
  48033. {
  48034. name: "Base Height",
  48035. height: math.unit(5 + 8/12, "feet"),
  48036. default: true
  48037. },
  48038. {
  48039. name: "Macro",
  48040. height: math.unit(200, "feet")
  48041. },
  48042. {
  48043. name: "Mega Macro",
  48044. height: math.unit(1, "mile")
  48045. },
  48046. {
  48047. name: "Giga Macro",
  48048. height: math.unit(1500, "miles")
  48049. },
  48050. {
  48051. name: "Tera Macro",
  48052. height: math.unit(8000, "miles")
  48053. },
  48054. {
  48055. name: "Tera Macro+",
  48056. height: math.unit(2e5, "miles")
  48057. },
  48058. ]
  48059. ))
  48060. characterMakers.push(() => makeCharacter(
  48061. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48062. {
  48063. front: {
  48064. height: math.unit(6.5, "feet"),
  48065. name: "Front",
  48066. image: {
  48067. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48068. extra: 860/819,
  48069. bottom: 307/1167
  48070. }
  48071. },
  48072. back: {
  48073. height: math.unit(6.5, "feet"),
  48074. name: "Back",
  48075. image: {
  48076. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48077. extra: 880/837,
  48078. bottom: 395/1275
  48079. }
  48080. },
  48081. sleeping: {
  48082. height: math.unit(2.79, "feet"),
  48083. name: "Sleeping",
  48084. image: {
  48085. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48086. extra: 465/383,
  48087. bottom: 263/728
  48088. }
  48089. },
  48090. maw: {
  48091. height: math.unit(2.52, "feet"),
  48092. name: "Maw",
  48093. image: {
  48094. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48095. }
  48096. },
  48097. },
  48098. [
  48099. {
  48100. name: "Normal",
  48101. height: math.unit(6.5, "feet"),
  48102. default: true
  48103. },
  48104. ]
  48105. ))
  48106. characterMakers.push(() => makeCharacter(
  48107. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48108. {
  48109. front: {
  48110. height: math.unit(5, "feet"),
  48111. name: "Front",
  48112. image: {
  48113. source: "./media/characters/nova-nerium/front.svg",
  48114. extra: 1548/1392,
  48115. bottom: 374/1922
  48116. }
  48117. },
  48118. back: {
  48119. height: math.unit(5, "feet"),
  48120. name: "Back",
  48121. image: {
  48122. source: "./media/characters/nova-nerium/back.svg",
  48123. extra: 1658/1468,
  48124. bottom: 257/1915
  48125. }
  48126. },
  48127. },
  48128. [
  48129. {
  48130. name: "Normal",
  48131. height: math.unit(5, "feet"),
  48132. default: true
  48133. },
  48134. ]
  48135. ))
  48136. characterMakers.push(() => makeCharacter(
  48137. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48138. {
  48139. front: {
  48140. height: math.unit(5 + 4/12, "feet"),
  48141. name: "Front",
  48142. image: {
  48143. source: "./media/characters/ashe-pyriph/front.svg",
  48144. extra: 1935/1747,
  48145. bottom: 60/1995
  48146. }
  48147. },
  48148. },
  48149. [
  48150. {
  48151. name: "Normal",
  48152. height: math.unit(5 + 4/12, "feet"),
  48153. default: true
  48154. },
  48155. ]
  48156. ))
  48157. characterMakers.push(() => makeCharacter(
  48158. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48159. {
  48160. front: {
  48161. height: math.unit(8.7, "feet"),
  48162. name: "Front",
  48163. image: {
  48164. source: "./media/characters/flicker-wisp/front.svg",
  48165. extra: 1835/1613,
  48166. bottom: 449/2284
  48167. }
  48168. },
  48169. side: {
  48170. height: math.unit(8.7, "feet"),
  48171. name: "Side",
  48172. image: {
  48173. source: "./media/characters/flicker-wisp/side.svg",
  48174. extra: 1841/1642,
  48175. bottom: 336/2177
  48176. },
  48177. default: true
  48178. },
  48179. maw: {
  48180. height: math.unit(3.35, "feet"),
  48181. name: "Maw",
  48182. image: {
  48183. source: "./media/characters/flicker-wisp/maw.svg",
  48184. extra: 2338/1506,
  48185. bottom: 0/2338
  48186. }
  48187. },
  48188. ovipositor: {
  48189. height: math.unit(4.95, "feet"),
  48190. name: "Ovipositor",
  48191. image: {
  48192. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48193. }
  48194. },
  48195. egg: {
  48196. height: math.unit(0.385, "feet"),
  48197. weight: math.unit(2, "lb"),
  48198. name: "Egg",
  48199. image: {
  48200. source: "./media/characters/flicker-wisp/egg.svg"
  48201. }
  48202. },
  48203. },
  48204. [
  48205. {
  48206. name: "Normal",
  48207. height: math.unit(8.7, "feet"),
  48208. default: true
  48209. },
  48210. ]
  48211. ))
  48212. characterMakers.push(() => makeCharacter(
  48213. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48214. {
  48215. side: {
  48216. height: math.unit(11, "feet"),
  48217. name: "Side",
  48218. image: {
  48219. source: "./media/characters/faefnul/side.svg",
  48220. extra: 1100/1007,
  48221. bottom: 0/1100
  48222. }
  48223. },
  48224. },
  48225. [
  48226. {
  48227. name: "Normal",
  48228. height: math.unit(11, "feet"),
  48229. default: true
  48230. },
  48231. ]
  48232. ))
  48233. characterMakers.push(() => makeCharacter(
  48234. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48235. {
  48236. front: {
  48237. height: math.unit(6 + 2/12, "feet"),
  48238. name: "Front",
  48239. image: {
  48240. source: "./media/characters/shady/front.svg",
  48241. extra: 502/461,
  48242. bottom: 9/511
  48243. }
  48244. },
  48245. kneeling: {
  48246. height: math.unit(4.6, "feet"),
  48247. name: "Kneeling",
  48248. image: {
  48249. source: "./media/characters/shady/kneeling.svg",
  48250. extra: 1328/1219,
  48251. bottom: 117/1445
  48252. }
  48253. },
  48254. maw: {
  48255. height: math.unit(2, "feet"),
  48256. name: "Maw",
  48257. image: {
  48258. source: "./media/characters/shady/maw.svg"
  48259. }
  48260. },
  48261. },
  48262. [
  48263. {
  48264. name: "Nano",
  48265. height: math.unit(1, "mm")
  48266. },
  48267. {
  48268. name: "Micro",
  48269. height: math.unit(12, "mm")
  48270. },
  48271. {
  48272. name: "Tiny",
  48273. height: math.unit(3, "inches")
  48274. },
  48275. {
  48276. name: "Normal",
  48277. height: math.unit(6 + 2/12, "feet"),
  48278. default: true
  48279. },
  48280. {
  48281. name: "Big",
  48282. height: math.unit(15, "feet")
  48283. },
  48284. {
  48285. name: "Macro",
  48286. height: math.unit(150, "feet")
  48287. },
  48288. {
  48289. name: "Titanic",
  48290. height: math.unit(500, "feet")
  48291. },
  48292. ]
  48293. ))
  48294. characterMakers.push(() => makeCharacter(
  48295. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48296. {
  48297. front: {
  48298. height: math.unit(12, "feet"),
  48299. name: "Front",
  48300. image: {
  48301. source: "./media/characters/fenrir/front.svg",
  48302. extra: 968/875,
  48303. bottom: 22/990
  48304. }
  48305. },
  48306. },
  48307. [
  48308. {
  48309. name: "Big",
  48310. height: math.unit(12, "feet"),
  48311. default: true
  48312. },
  48313. ]
  48314. ))
  48315. characterMakers.push(() => makeCharacter(
  48316. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48317. {
  48318. front: {
  48319. height: math.unit(5 + 4/12, "feet"),
  48320. name: "Front",
  48321. image: {
  48322. source: "./media/characters/makar/front.svg",
  48323. extra: 1181/1112,
  48324. bottom: 78/1259
  48325. }
  48326. },
  48327. },
  48328. [
  48329. {
  48330. name: "Normal",
  48331. height: math.unit(5 + 4/12, "feet"),
  48332. default: true
  48333. },
  48334. ]
  48335. ))
  48336. characterMakers.push(() => makeCharacter(
  48337. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48338. {
  48339. front: {
  48340. height: math.unit(5 + 7/12, "feet"),
  48341. name: "Front",
  48342. image: {
  48343. source: "./media/characters/callow/front.svg",
  48344. extra: 1482/1304,
  48345. bottom: 23/1505
  48346. }
  48347. },
  48348. back: {
  48349. height: math.unit(5 + 7/12, "feet"),
  48350. name: "Back",
  48351. image: {
  48352. source: "./media/characters/callow/back.svg",
  48353. extra: 1484/1296,
  48354. bottom: 25/1509
  48355. }
  48356. },
  48357. },
  48358. [
  48359. {
  48360. name: "Micro",
  48361. height: math.unit(3, "inches"),
  48362. default: true
  48363. },
  48364. {
  48365. name: "Normal",
  48366. height: math.unit(5 + 7/12, "feet")
  48367. },
  48368. ]
  48369. ))
  48370. characterMakers.push(() => makeCharacter(
  48371. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48372. {
  48373. front: {
  48374. height: math.unit(6 + 2/12, "feet"),
  48375. name: "Front",
  48376. image: {
  48377. source: "./media/characters/natel/front.svg",
  48378. extra: 1833/1692,
  48379. bottom: 166/1999
  48380. }
  48381. },
  48382. },
  48383. [
  48384. {
  48385. name: "Normal",
  48386. height: math.unit(6 + 2/12, "feet"),
  48387. default: true
  48388. },
  48389. ]
  48390. ))
  48391. characterMakers.push(() => makeCharacter(
  48392. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48393. {
  48394. front: {
  48395. height: math.unit(1.75, "meters"),
  48396. name: "Front",
  48397. image: {
  48398. source: "./media/characters/misu/front.svg",
  48399. extra: 1690/1558,
  48400. bottom: 234/1924
  48401. }
  48402. },
  48403. back: {
  48404. height: math.unit(1.75, "meters"),
  48405. name: "Back",
  48406. image: {
  48407. source: "./media/characters/misu/back.svg",
  48408. extra: 1762/1618,
  48409. bottom: 146/1908
  48410. }
  48411. },
  48412. frontNude: {
  48413. height: math.unit(1.75, "meters"),
  48414. name: "Front (Nude)",
  48415. image: {
  48416. source: "./media/characters/misu/front-nude.svg",
  48417. extra: 1690/1558,
  48418. bottom: 234/1924
  48419. }
  48420. },
  48421. backNude: {
  48422. height: math.unit(1.75, "meters"),
  48423. name: "Back (Nude)",
  48424. image: {
  48425. source: "./media/characters/misu/back-nude.svg",
  48426. extra: 1762/1618,
  48427. bottom: 146/1908
  48428. }
  48429. },
  48430. frontErect: {
  48431. height: math.unit(1.75, "meters"),
  48432. name: "Front (Erect)",
  48433. image: {
  48434. source: "./media/characters/misu/front-erect.svg",
  48435. extra: 1690/1558,
  48436. bottom: 234/1924
  48437. }
  48438. },
  48439. maw: {
  48440. height: math.unit(0.47, "meters"),
  48441. name: "Maw",
  48442. image: {
  48443. source: "./media/characters/misu/maw.svg"
  48444. }
  48445. },
  48446. head: {
  48447. height: math.unit(0.35, "meters"),
  48448. name: "Head",
  48449. image: {
  48450. source: "./media/characters/misu/head.svg"
  48451. }
  48452. },
  48453. rear: {
  48454. height: math.unit(0.47, "meters"),
  48455. name: "Rear",
  48456. image: {
  48457. source: "./media/characters/misu/rear.svg"
  48458. }
  48459. },
  48460. },
  48461. [
  48462. {
  48463. name: "Normal",
  48464. height: math.unit(1.75, "meters")
  48465. },
  48466. {
  48467. name: "Not good for the people",
  48468. height: math.unit(42, "meters")
  48469. },
  48470. {
  48471. name: "Not good for the neighborhood",
  48472. height: math.unit(135, "meters")
  48473. },
  48474. {
  48475. name: "Bit bigger problem",
  48476. height: math.unit(380, "meters"),
  48477. default: true
  48478. },
  48479. {
  48480. name: "Not good for the city",
  48481. height: math.unit(1.5, "km")
  48482. },
  48483. {
  48484. name: "Not good for the county",
  48485. height: math.unit(5.5, "km")
  48486. },
  48487. {
  48488. name: "Not good for the state",
  48489. height: math.unit(25, "km")
  48490. },
  48491. {
  48492. name: "Not good for the country",
  48493. height: math.unit(125, "km")
  48494. },
  48495. {
  48496. name: "Not good for the continent",
  48497. height: math.unit(2100, "km")
  48498. },
  48499. {
  48500. name: "Not good for the planet",
  48501. height: math.unit(35000, "km")
  48502. },
  48503. {
  48504. name: "Just no",
  48505. height: math.unit(8.5e18, "km")
  48506. },
  48507. ]
  48508. ))
  48509. characterMakers.push(() => makeCharacter(
  48510. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48511. {
  48512. front: {
  48513. height: math.unit(6.5, "feet"),
  48514. name: "Front",
  48515. image: {
  48516. source: "./media/characters/poppy/front.svg",
  48517. extra: 1878/1812,
  48518. bottom: 43/1921
  48519. }
  48520. },
  48521. feet: {
  48522. height: math.unit(1.06, "feet"),
  48523. name: "Feet",
  48524. image: {
  48525. source: "./media/characters/poppy/feet.svg",
  48526. extra: 1083/1083,
  48527. bottom: 87/1170
  48528. }
  48529. },
  48530. },
  48531. [
  48532. {
  48533. name: "Human",
  48534. height: math.unit(6.5, "feet")
  48535. },
  48536. {
  48537. name: "Default",
  48538. height: math.unit(300, "feet"),
  48539. default: true
  48540. },
  48541. {
  48542. name: "Huge",
  48543. height: math.unit(850, "feet")
  48544. },
  48545. {
  48546. name: "Mega",
  48547. height: math.unit(8000, "feet")
  48548. },
  48549. {
  48550. name: "Giga",
  48551. height: math.unit(300, "miles")
  48552. },
  48553. ]
  48554. ))
  48555. characterMakers.push(() => makeCharacter(
  48556. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48557. {
  48558. bipedal: {
  48559. height: math.unit(7, "feet"),
  48560. name: "Bipedal",
  48561. image: {
  48562. source: "./media/characters/zener/bipedal.svg",
  48563. extra: 874/805,
  48564. bottom: 109/983
  48565. }
  48566. },
  48567. quadrupedal: {
  48568. height: math.unit(4.64, "feet"),
  48569. name: "Quadrupedal",
  48570. image: {
  48571. source: "./media/characters/zener/quadrupedal.svg",
  48572. extra: 638/507,
  48573. bottom: 190/828
  48574. }
  48575. },
  48576. cock: {
  48577. height: math.unit(18, "inches"),
  48578. name: "Cock",
  48579. image: {
  48580. source: "./media/characters/zener/cock.svg"
  48581. }
  48582. },
  48583. },
  48584. [
  48585. {
  48586. name: "Normal",
  48587. height: math.unit(7, "feet"),
  48588. default: true
  48589. },
  48590. ]
  48591. ))
  48592. characterMakers.push(() => makeCharacter(
  48593. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48594. {
  48595. nude: {
  48596. height: math.unit(5 + 6/12, "feet"),
  48597. name: "Nude",
  48598. image: {
  48599. source: "./media/characters/charlie-dog/nude.svg",
  48600. extra: 768/734,
  48601. bottom: 26/794
  48602. }
  48603. },
  48604. dressed: {
  48605. height: math.unit(5 + 6/12, "feet"),
  48606. name: "Dressed",
  48607. image: {
  48608. source: "./media/characters/charlie-dog/dressed.svg",
  48609. extra: 768/734,
  48610. bottom: 26/794
  48611. }
  48612. },
  48613. },
  48614. [
  48615. {
  48616. name: "Normal",
  48617. height: math.unit(5 + 6/12, "feet"),
  48618. default: true
  48619. },
  48620. ]
  48621. ))
  48622. characterMakers.push(() => makeCharacter(
  48623. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48624. {
  48625. front: {
  48626. height: math.unit(6 + 4/12, "feet"),
  48627. name: "Front",
  48628. image: {
  48629. source: "./media/characters/ir'istrasz/front.svg",
  48630. extra: 1014/977,
  48631. bottom: 65/1079
  48632. }
  48633. },
  48634. back: {
  48635. height: math.unit(6 + 4/12, "feet"),
  48636. name: "Back",
  48637. image: {
  48638. source: "./media/characters/ir'istrasz/back.svg",
  48639. extra: 1024/992,
  48640. bottom: 34/1058
  48641. }
  48642. },
  48643. },
  48644. [
  48645. {
  48646. name: "Normal",
  48647. height: math.unit(6 + 4/12, "feet"),
  48648. default: true
  48649. },
  48650. ]
  48651. ))
  48652. characterMakers.push(() => makeCharacter(
  48653. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48654. {
  48655. front: {
  48656. height: math.unit(5 + 8/12, "feet"),
  48657. name: "Front",
  48658. image: {
  48659. source: "./media/characters/dee-ditto/front.svg",
  48660. extra: 1874/1785,
  48661. bottom: 68/1942
  48662. }
  48663. },
  48664. back: {
  48665. height: math.unit(5 + 8/12, "feet"),
  48666. name: "Back",
  48667. image: {
  48668. source: "./media/characters/dee-ditto/back.svg",
  48669. extra: 1870/1783,
  48670. bottom: 77/1947
  48671. }
  48672. },
  48673. },
  48674. [
  48675. {
  48676. name: "Normal",
  48677. height: math.unit(5 + 8/12, "feet"),
  48678. default: true
  48679. },
  48680. ]
  48681. ))
  48682. characterMakers.push(() => makeCharacter(
  48683. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48684. {
  48685. front: {
  48686. height: math.unit(7 + 6/12, "feet"),
  48687. name: "Front",
  48688. image: {
  48689. source: "./media/characters/fey/front.svg",
  48690. extra: 995/979,
  48691. bottom: 30/1025
  48692. }
  48693. },
  48694. back: {
  48695. height: math.unit(7 + 6/12, "feet"),
  48696. name: "Back",
  48697. image: {
  48698. source: "./media/characters/fey/back.svg",
  48699. extra: 1079/1008,
  48700. bottom: 5/1084
  48701. }
  48702. },
  48703. dressed: {
  48704. height: math.unit(7 + 6/12, "feet"),
  48705. name: "Dressed",
  48706. image: {
  48707. source: "./media/characters/fey/dressed.svg",
  48708. extra: 995/979,
  48709. bottom: 30/1025
  48710. }
  48711. },
  48712. },
  48713. [
  48714. {
  48715. name: "Normal",
  48716. height: math.unit(7 + 6/12, "feet"),
  48717. default: true
  48718. },
  48719. ]
  48720. ))
  48721. characterMakers.push(() => makeCharacter(
  48722. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48723. {
  48724. standing: {
  48725. height: math.unit(17, "feet"),
  48726. name: "Standing",
  48727. image: {
  48728. source: "./media/characters/aster/standing.svg",
  48729. extra: 1798/1598,
  48730. bottom: 117/1915
  48731. }
  48732. },
  48733. },
  48734. [
  48735. {
  48736. name: "Normal",
  48737. height: math.unit(17, "feet"),
  48738. default: true
  48739. },
  48740. {
  48741. name: "Homewrecker",
  48742. height: math.unit(95, "feet")
  48743. },
  48744. {
  48745. name: "Planet Devourer",
  48746. height: math.unit(1008000, "miles")
  48747. },
  48748. ]
  48749. ))
  48750. characterMakers.push(() => makeCharacter(
  48751. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48752. {
  48753. front: {
  48754. height: math.unit(6 + 5/12, "feet"),
  48755. weight: math.unit(265, "lb"),
  48756. name: "Front",
  48757. image: {
  48758. source: "./media/characters/devon-childs/front.svg",
  48759. extra: 1795/1721,
  48760. bottom: 41/1836
  48761. }
  48762. },
  48763. side: {
  48764. height: math.unit(6 + 5/12, "feet"),
  48765. weight: math.unit(265, "lb"),
  48766. name: "Side",
  48767. image: {
  48768. source: "./media/characters/devon-childs/side.svg",
  48769. extra: 1812/1738,
  48770. bottom: 30/1842
  48771. }
  48772. },
  48773. back: {
  48774. height: math.unit(6 + 5/12, "feet"),
  48775. weight: math.unit(265, "lb"),
  48776. name: "Back",
  48777. image: {
  48778. source: "./media/characters/devon-childs/back.svg",
  48779. extra: 1808/1735,
  48780. bottom: 23/1831
  48781. }
  48782. },
  48783. hand: {
  48784. height: math.unit(1.464, "feet"),
  48785. name: "Hand",
  48786. image: {
  48787. source: "./media/characters/devon-childs/hand.svg"
  48788. }
  48789. },
  48790. foot: {
  48791. height: math.unit(1.6, "feet"),
  48792. name: "Foot",
  48793. image: {
  48794. source: "./media/characters/devon-childs/foot.svg"
  48795. }
  48796. },
  48797. },
  48798. [
  48799. {
  48800. name: "Micro",
  48801. height: math.unit(7, "cm")
  48802. },
  48803. {
  48804. name: "Normal",
  48805. height: math.unit(6 + 5/12, "feet"),
  48806. default: true
  48807. },
  48808. {
  48809. name: "Macro",
  48810. height: math.unit(154, "feet")
  48811. },
  48812. ]
  48813. ))
  48814. characterMakers.push(() => makeCharacter(
  48815. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48816. {
  48817. front: {
  48818. height: math.unit(6, "feet"),
  48819. weight: math.unit(180, "lb"),
  48820. name: "Front",
  48821. image: {
  48822. source: "./media/characters/lydemox-vir/front.svg",
  48823. extra: 1632/1435,
  48824. bottom: 58/1690
  48825. }
  48826. },
  48827. frontSFW: {
  48828. height: math.unit(6, "feet"),
  48829. weight: math.unit(180, "lb"),
  48830. name: "Front (SFW)",
  48831. image: {
  48832. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48833. extra: 1632/1435,
  48834. bottom: 58/1690
  48835. }
  48836. },
  48837. back: {
  48838. height: math.unit(6, "feet"),
  48839. weight: math.unit(180, "lb"),
  48840. name: "Back",
  48841. image: {
  48842. source: "./media/characters/lydemox-vir/back.svg",
  48843. extra: 1593/1408,
  48844. bottom: 31/1624
  48845. }
  48846. },
  48847. paw: {
  48848. height: math.unit(1.85, "feet"),
  48849. name: "Paw",
  48850. image: {
  48851. source: "./media/characters/lydemox-vir/paw.svg"
  48852. }
  48853. },
  48854. dick: {
  48855. height: math.unit(1.8, "feet"),
  48856. name: "Dick",
  48857. image: {
  48858. source: "./media/characters/lydemox-vir/dick.svg"
  48859. }
  48860. },
  48861. },
  48862. [
  48863. {
  48864. name: "Macro",
  48865. height: math.unit(100, "feet"),
  48866. default: true
  48867. },
  48868. {
  48869. name: "Teramacro",
  48870. height: math.unit(1, "earth")
  48871. },
  48872. {
  48873. name: "Planetary",
  48874. height: math.unit(20, "earths")
  48875. },
  48876. ]
  48877. ))
  48878. characterMakers.push(() => makeCharacter(
  48879. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48880. {
  48881. front: {
  48882. height: math.unit(15 + 8/12, "feet"),
  48883. weight: math.unit(1237, "kg"),
  48884. name: "Front",
  48885. image: {
  48886. source: "./media/characters/mia/front.svg",
  48887. extra: 1573/1446,
  48888. bottom: 58/1631
  48889. }
  48890. },
  48891. },
  48892. [
  48893. {
  48894. name: "Small",
  48895. height: math.unit(9 + 5/12, "feet")
  48896. },
  48897. {
  48898. name: "Normal",
  48899. height: math.unit(15 + 8/12, "feet"),
  48900. default: true
  48901. },
  48902. ]
  48903. ))
  48904. characterMakers.push(() => makeCharacter(
  48905. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48906. {
  48907. front: {
  48908. height: math.unit(10 + 6/12, "feet"),
  48909. weight: math.unit(1.3, "tons"),
  48910. name: "Front",
  48911. image: {
  48912. source: "./media/characters/mr-graves/front.svg",
  48913. extra: 1779/1695,
  48914. bottom: 198/1977
  48915. }
  48916. },
  48917. },
  48918. [
  48919. {
  48920. name: "Normal",
  48921. height: math.unit(10 + 6 /12, "feet"),
  48922. default: true
  48923. },
  48924. ]
  48925. ))
  48926. characterMakers.push(() => makeCharacter(
  48927. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48928. {
  48929. dressedFront: {
  48930. height: math.unit(5 + 8/12, "feet"),
  48931. weight: math.unit(125, "lb"),
  48932. name: "Dressed (Front)",
  48933. image: {
  48934. source: "./media/characters/jess/dressed-front.svg",
  48935. extra: 1176/1152,
  48936. bottom: 42/1218
  48937. }
  48938. },
  48939. dressedSide: {
  48940. height: math.unit(5 + 8/12, "feet"),
  48941. weight: math.unit(125, "lb"),
  48942. name: "Dressed (Side)",
  48943. image: {
  48944. source: "./media/characters/jess/dressed-side.svg",
  48945. extra: 1204/1190,
  48946. bottom: 6/1210
  48947. }
  48948. },
  48949. nudeFront: {
  48950. height: math.unit(5 + 8/12, "feet"),
  48951. weight: math.unit(125, "lb"),
  48952. name: "Nude (Front)",
  48953. image: {
  48954. source: "./media/characters/jess/nude-front.svg",
  48955. extra: 1176/1152,
  48956. bottom: 42/1218
  48957. }
  48958. },
  48959. nudeSide: {
  48960. height: math.unit(5 + 8/12, "feet"),
  48961. weight: math.unit(125, "lb"),
  48962. name: "Nude (Side)",
  48963. image: {
  48964. source: "./media/characters/jess/nude-side.svg",
  48965. extra: 1204/1190,
  48966. bottom: 6/1210
  48967. }
  48968. },
  48969. organsFront: {
  48970. height: math.unit(2.83799342105, "feet"),
  48971. name: "Organs (Front)",
  48972. image: {
  48973. source: "./media/characters/jess/organs-front.svg"
  48974. }
  48975. },
  48976. organsSide: {
  48977. height: math.unit(2.64225290474, "feet"),
  48978. name: "Organs (Side)",
  48979. image: {
  48980. source: "./media/characters/jess/organs-side.svg"
  48981. }
  48982. },
  48983. digestiveTractFront: {
  48984. height: math.unit(2.8106580871, "feet"),
  48985. name: "Digestive Tract (Front)",
  48986. image: {
  48987. source: "./media/characters/jess/digestive-tract-front.svg"
  48988. }
  48989. },
  48990. digestiveTractSide: {
  48991. height: math.unit(2.54365045014, "feet"),
  48992. name: "Digestive Tract (Side)",
  48993. image: {
  48994. source: "./media/characters/jess/digestive-tract-side.svg"
  48995. }
  48996. },
  48997. respiratorySystemFront: {
  48998. height: math.unit(1.11196233456, "feet"),
  48999. name: "Respiratory System (Front)",
  49000. image: {
  49001. source: "./media/characters/jess/respiratory-system-front.svg"
  49002. }
  49003. },
  49004. respiratorySystemSide: {
  49005. height: math.unit(0.89327966297, "feet"),
  49006. name: "Respiratory System (Side)",
  49007. image: {
  49008. source: "./media/characters/jess/respiratory-system-side.svg"
  49009. }
  49010. },
  49011. urinaryTractFront: {
  49012. height: math.unit(1.16126356186, "feet"),
  49013. name: "Urinary Tract (Front)",
  49014. image: {
  49015. source: "./media/characters/jess/urinary-tract-front.svg"
  49016. }
  49017. },
  49018. urinaryTractSide: {
  49019. height: math.unit(1.20910039627, "feet"),
  49020. name: "Urinary Tract (Side)",
  49021. image: {
  49022. source: "./media/characters/jess/urinary-tract-side.svg"
  49023. }
  49024. },
  49025. reproductiveOrgansFront: {
  49026. height: math.unit(0.48422591566, "feet"),
  49027. name: "Reproductive Organs (Front)",
  49028. image: {
  49029. source: "./media/characters/jess/reproductive-organs-front.svg"
  49030. }
  49031. },
  49032. reproductiveOrgansSide: {
  49033. height: math.unit(0.61553314481, "feet"),
  49034. name: "Reproductive Organs (Side)",
  49035. image: {
  49036. source: "./media/characters/jess/reproductive-organs-side.svg"
  49037. }
  49038. },
  49039. breastsFront: {
  49040. height: math.unit(0.47690395121, "feet"),
  49041. name: "Breasts (Front)",
  49042. image: {
  49043. source: "./media/characters/jess/breasts-front.svg"
  49044. }
  49045. },
  49046. breastsSide: {
  49047. height: math.unit(0.30556998307, "feet"),
  49048. name: "Breasts (Side)",
  49049. image: {
  49050. source: "./media/characters/jess/breasts-side.svg"
  49051. }
  49052. },
  49053. heartFront: {
  49054. height: math.unit(0.53011022622, "feet"),
  49055. name: "Heart (Front)",
  49056. image: {
  49057. source: "./media/characters/jess/heart-front.svg"
  49058. }
  49059. },
  49060. heartSide: {
  49061. height: math.unit(0.51790695213, "feet"),
  49062. name: "Heart (Side)",
  49063. image: {
  49064. source: "./media/characters/jess/heart-side.svg"
  49065. }
  49066. },
  49067. earsAndNoseFront: {
  49068. height: math.unit(0.29385483995, "feet"),
  49069. name: "Ears and Nose (Front)",
  49070. image: {
  49071. source: "./media/characters/jess/ears-and-nose-front.svg"
  49072. }
  49073. },
  49074. earsAndNoseSide: {
  49075. height: math.unit(0.18109658741, "feet"),
  49076. name: "Ears and Nose (Side)",
  49077. image: {
  49078. source: "./media/characters/jess/ears-and-nose-side.svg"
  49079. }
  49080. },
  49081. },
  49082. [
  49083. {
  49084. name: "Normal",
  49085. height: math.unit(5 + 8/12, "feet"),
  49086. default: true
  49087. },
  49088. ]
  49089. ))
  49090. characterMakers.push(() => makeCharacter(
  49091. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49092. {
  49093. front: {
  49094. height: math.unit(6, "feet"),
  49095. weight: math.unit(6.64467e-7, "grams"),
  49096. name: "Front",
  49097. image: {
  49098. source: "./media/characters/wimpering/front.svg",
  49099. extra: 597/587,
  49100. bottom: 34/631
  49101. }
  49102. },
  49103. },
  49104. [
  49105. {
  49106. name: "Micro",
  49107. height: math.unit(0.4, "mm"),
  49108. default: true
  49109. },
  49110. ]
  49111. ))
  49112. characterMakers.push(() => makeCharacter(
  49113. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49114. {
  49115. front: {
  49116. height: math.unit(5 + 2/12, "feet"),
  49117. weight: math.unit(110, "lb"),
  49118. name: "Front",
  49119. image: {
  49120. source: "./media/characters/keltre/front.svg",
  49121. extra: 1099/1057,
  49122. bottom: 22/1121
  49123. }
  49124. },
  49125. back: {
  49126. height: math.unit(5 + 2/12, "feet"),
  49127. weight: math.unit(110, "lb"),
  49128. name: "Back",
  49129. image: {
  49130. source: "./media/characters/keltre/back.svg",
  49131. extra: 1095/1053,
  49132. bottom: 17/1112
  49133. }
  49134. },
  49135. dressed: {
  49136. height: math.unit(5 + 2/12, "feet"),
  49137. weight: math.unit(110, "lb"),
  49138. name: "Dressed",
  49139. image: {
  49140. source: "./media/characters/keltre/dressed.svg",
  49141. extra: 1099/1057,
  49142. bottom: 22/1121
  49143. }
  49144. },
  49145. winter: {
  49146. height: math.unit(5 + 2/12, "feet"),
  49147. weight: math.unit(110, "lb"),
  49148. name: "Winter",
  49149. image: {
  49150. source: "./media/characters/keltre/winter.svg",
  49151. extra: 1099/1057,
  49152. bottom: 22/1121
  49153. }
  49154. },
  49155. head: {
  49156. height: math.unit(1.61 * 0.86, "feet"),
  49157. name: "Head",
  49158. image: {
  49159. source: "./media/characters/keltre/head.svg",
  49160. extra: 534/421,
  49161. bottom: 0/534
  49162. }
  49163. },
  49164. hand: {
  49165. height: math.unit(1.3 * 0.86, "feet"),
  49166. name: "Hand",
  49167. image: {
  49168. source: "./media/characters/keltre/hand.svg"
  49169. }
  49170. },
  49171. foot: {
  49172. height: math.unit(1.8 * 0.86, "feet"),
  49173. name: "Foot",
  49174. image: {
  49175. source: "./media/characters/keltre/foot.svg"
  49176. }
  49177. },
  49178. },
  49179. [
  49180. {
  49181. name: "Fine",
  49182. height: math.unit(1, "inch")
  49183. },
  49184. {
  49185. name: "Dimnutive",
  49186. height: math.unit(4, "inches")
  49187. },
  49188. {
  49189. name: "Tiny",
  49190. height: math.unit(1, "foot")
  49191. },
  49192. {
  49193. name: "Small",
  49194. height: math.unit(3, "feet")
  49195. },
  49196. {
  49197. name: "Normal",
  49198. height: math.unit(5 + 2/12, "feet"),
  49199. default: true
  49200. },
  49201. ]
  49202. ))
  49203. characterMakers.push(() => makeCharacter(
  49204. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49205. {
  49206. front: {
  49207. height: math.unit(6 + 2/12, "feet"),
  49208. name: "Front",
  49209. image: {
  49210. source: "./media/characters/nox/front.svg",
  49211. extra: 1917/1830,
  49212. bottom: 74/1991
  49213. }
  49214. },
  49215. back: {
  49216. height: math.unit(6 + 2/12, "feet"),
  49217. name: "Back",
  49218. image: {
  49219. source: "./media/characters/nox/back.svg",
  49220. extra: 1896/1815,
  49221. bottom: 21/1917
  49222. }
  49223. },
  49224. head: {
  49225. height: math.unit(1.1, "feet"),
  49226. name: "Head",
  49227. image: {
  49228. source: "./media/characters/nox/head.svg",
  49229. extra: 874/704,
  49230. bottom: 0/874
  49231. }
  49232. },
  49233. tattoo: {
  49234. height: math.unit(0.729, "feet"),
  49235. name: "Tattoo",
  49236. image: {
  49237. source: "./media/characters/nox/tattoo.svg"
  49238. }
  49239. },
  49240. },
  49241. [
  49242. {
  49243. name: "Normal",
  49244. height: math.unit(6 + 2/12, "feet")
  49245. },
  49246. {
  49247. name: "Gigamacro",
  49248. height: math.unit(2, "earths"),
  49249. default: true
  49250. },
  49251. {
  49252. name: "Cosmic",
  49253. height: math.unit(867, "yottameters")
  49254. },
  49255. ]
  49256. ))
  49257. characterMakers.push(() => makeCharacter(
  49258. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49259. {
  49260. front: {
  49261. height: math.unit(6, "feet"),
  49262. weight: math.unit(150, "lb"),
  49263. name: "Front",
  49264. image: {
  49265. source: "./media/characters/caspian/front.svg",
  49266. extra: 1443/1359,
  49267. bottom: 0/1443
  49268. }
  49269. },
  49270. back: {
  49271. height: math.unit(6, "feet"),
  49272. weight: math.unit(150, "lb"),
  49273. name: "Back",
  49274. image: {
  49275. source: "./media/characters/caspian/back.svg",
  49276. extra: 1379/1309,
  49277. bottom: 0/1379
  49278. }
  49279. },
  49280. head: {
  49281. height: math.unit(0.9, "feet"),
  49282. name: "Head",
  49283. image: {
  49284. source: "./media/characters/caspian/head.svg",
  49285. extra: 692/492,
  49286. bottom: 0/692
  49287. }
  49288. },
  49289. headAlt: {
  49290. height: math.unit(0.95, "feet"),
  49291. name: "Head (Alt)",
  49292. image: {
  49293. source: "./media/characters/caspian/head-alt.svg",
  49294. extra: 668/508,
  49295. bottom: 0/668
  49296. }
  49297. },
  49298. hand: {
  49299. height: math.unit(0.8, "feet"),
  49300. name: "Hand",
  49301. image: {
  49302. source: "./media/characters/caspian/hand.svg"
  49303. }
  49304. },
  49305. paw: {
  49306. height: math.unit(0.95, "feet"),
  49307. name: "Paw",
  49308. image: {
  49309. source: "./media/characters/caspian/paw.svg"
  49310. }
  49311. },
  49312. },
  49313. [
  49314. {
  49315. name: "Normal",
  49316. height: math.unit(162, "feet"),
  49317. default: true
  49318. },
  49319. ]
  49320. ))
  49321. characterMakers.push(() => makeCharacter(
  49322. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49323. {
  49324. front: {
  49325. height: math.unit(6, "feet"),
  49326. name: "Front",
  49327. image: {
  49328. source: "./media/characters/myra-aisling/front.svg",
  49329. extra: 1268/1166,
  49330. bottom: 73/1341
  49331. }
  49332. },
  49333. back: {
  49334. height: math.unit(6, "feet"),
  49335. name: "Back",
  49336. image: {
  49337. source: "./media/characters/myra-aisling/back.svg",
  49338. extra: 1249/1149,
  49339. bottom: 79/1328
  49340. }
  49341. },
  49342. dressed: {
  49343. height: math.unit(6, "feet"),
  49344. name: "Dressed",
  49345. image: {
  49346. source: "./media/characters/myra-aisling/dressed.svg",
  49347. extra: 1290/1189,
  49348. bottom: 47/1337
  49349. }
  49350. },
  49351. hand: {
  49352. height: math.unit(1.1, "feet"),
  49353. name: "Hand",
  49354. image: {
  49355. source: "./media/characters/myra-aisling/hand.svg"
  49356. }
  49357. },
  49358. paw: {
  49359. height: math.unit(1.23, "feet"),
  49360. name: "Paw",
  49361. image: {
  49362. source: "./media/characters/myra-aisling/paw.svg"
  49363. }
  49364. },
  49365. },
  49366. [
  49367. {
  49368. name: "Normal",
  49369. height: math.unit(160, "feet"),
  49370. default: true
  49371. },
  49372. ]
  49373. ))
  49374. characterMakers.push(() => makeCharacter(
  49375. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49376. {
  49377. front: {
  49378. height: math.unit(6, "feet"),
  49379. name: "Front",
  49380. image: {
  49381. source: "./media/characters/tenley-sidero/front.svg",
  49382. extra: 1365/1276,
  49383. bottom: 47/1412
  49384. }
  49385. },
  49386. back: {
  49387. height: math.unit(6, "feet"),
  49388. name: "Back",
  49389. image: {
  49390. source: "./media/characters/tenley-sidero/back.svg",
  49391. extra: 1383/1283,
  49392. bottom: 35/1418
  49393. }
  49394. },
  49395. dressed: {
  49396. height: math.unit(6, "feet"),
  49397. name: "Dressed",
  49398. image: {
  49399. source: "./media/characters/tenley-sidero/dressed.svg",
  49400. extra: 1364/1275,
  49401. bottom: 42/1406
  49402. }
  49403. },
  49404. head: {
  49405. height: math.unit(1.47, "feet"),
  49406. name: "Head",
  49407. image: {
  49408. source: "./media/characters/tenley-sidero/head.svg",
  49409. extra: 610/490,
  49410. bottom: 0/610
  49411. }
  49412. },
  49413. },
  49414. [
  49415. {
  49416. name: "Normal",
  49417. height: math.unit(154, "feet"),
  49418. default: true
  49419. },
  49420. ]
  49421. ))
  49422. characterMakers.push(() => makeCharacter(
  49423. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49424. {
  49425. front: {
  49426. height: math.unit(5, "inches"),
  49427. name: "Front",
  49428. image: {
  49429. source: "./media/characters/mallory/front.svg",
  49430. extra: 1919/1678,
  49431. bottom: 29/1948
  49432. }
  49433. },
  49434. hand: {
  49435. height: math.unit(0.73, "inches"),
  49436. name: "Hand",
  49437. image: {
  49438. source: "./media/characters/mallory/hand.svg"
  49439. }
  49440. },
  49441. paw: {
  49442. height: math.unit(0.68, "inches"),
  49443. name: "Paw",
  49444. image: {
  49445. source: "./media/characters/mallory/paw.svg"
  49446. }
  49447. },
  49448. },
  49449. [
  49450. {
  49451. name: "Small",
  49452. height: math.unit(5, "inches"),
  49453. default: true
  49454. },
  49455. ]
  49456. ))
  49457. characterMakers.push(() => makeCharacter(
  49458. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49459. {
  49460. naked: {
  49461. height: math.unit(6, "feet"),
  49462. name: "Naked",
  49463. image: {
  49464. source: "./media/characters/mab/naked.svg",
  49465. extra: 1855/1757,
  49466. bottom: 208/2063
  49467. }
  49468. },
  49469. outside: {
  49470. height: math.unit(6, "feet"),
  49471. name: "Outside",
  49472. image: {
  49473. source: "./media/characters/mab/outside.svg",
  49474. extra: 1855/1757,
  49475. bottom: 208/2063
  49476. }
  49477. },
  49478. party: {
  49479. height: math.unit(6, "feet"),
  49480. name: "Party",
  49481. image: {
  49482. source: "./media/characters/mab/party.svg",
  49483. extra: 1855/1757,
  49484. bottom: 208/2063
  49485. }
  49486. },
  49487. },
  49488. [
  49489. {
  49490. name: "Normal",
  49491. height: math.unit(165, "feet"),
  49492. default: true
  49493. },
  49494. ]
  49495. ))
  49496. characterMakers.push(() => makeCharacter(
  49497. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49498. {
  49499. front: {
  49500. height: math.unit(12, "feet"),
  49501. weight: math.unit(4000, "lb"),
  49502. name: "Front",
  49503. image: {
  49504. source: "./media/characters/winter/front.svg",
  49505. extra: 1286/943,
  49506. bottom: 112/1398
  49507. }
  49508. },
  49509. frontNsfw: {
  49510. height: math.unit(12, "feet"),
  49511. weight: math.unit(4000, "lb"),
  49512. name: "Front (NSFW)",
  49513. image: {
  49514. source: "./media/characters/winter/front-nsfw.svg",
  49515. extra: 1286/943,
  49516. bottom: 112/1398
  49517. }
  49518. },
  49519. dick: {
  49520. height: math.unit(3.79, "feet"),
  49521. name: "Dick",
  49522. image: {
  49523. source: "./media/characters/winter/dick.svg"
  49524. }
  49525. },
  49526. },
  49527. [
  49528. {
  49529. name: "Big",
  49530. height: math.unit(12, "feet"),
  49531. default: true
  49532. },
  49533. ]
  49534. ))
  49535. characterMakers.push(() => makeCharacter(
  49536. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49537. {
  49538. front: {
  49539. height: math.unit(4.1, "inches"),
  49540. name: "Front",
  49541. image: {
  49542. source: "./media/characters/alto/front.svg",
  49543. extra: 736/627,
  49544. bottom: 90/826
  49545. }
  49546. },
  49547. },
  49548. [
  49549. {
  49550. name: "Normal",
  49551. height: math.unit(4.1, "inches"),
  49552. default: true
  49553. },
  49554. ]
  49555. ))
  49556. characterMakers.push(() => makeCharacter(
  49557. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49558. {
  49559. sitting: {
  49560. height: math.unit(3, "feet"),
  49561. name: "Sitting",
  49562. image: {
  49563. source: "./media/characters/ratstrid-v/sitting.svg",
  49564. extra: 355/310,
  49565. bottom: 136/491
  49566. }
  49567. },
  49568. },
  49569. [
  49570. {
  49571. name: "Normal",
  49572. height: math.unit(3, "feet"),
  49573. default: true
  49574. },
  49575. ]
  49576. ))
  49577. characterMakers.push(() => makeCharacter(
  49578. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49579. {
  49580. back: {
  49581. height: math.unit(6, "feet"),
  49582. weight: math.unit(350, "lb"),
  49583. name: "Back",
  49584. image: {
  49585. source: "./media/characters/siz/back.svg",
  49586. extra: 1449/1274,
  49587. bottom: 13/1462
  49588. }
  49589. },
  49590. },
  49591. [
  49592. {
  49593. name: "Over-Overcompressed",
  49594. height: math.unit(8, "feet")
  49595. },
  49596. {
  49597. name: "Overcompressed",
  49598. height: math.unit(32, "feet")
  49599. },
  49600. {
  49601. name: "Compressed",
  49602. height: math.unit(128, "feet"),
  49603. default: true
  49604. },
  49605. {
  49606. name: "Half-Compressed",
  49607. height: math.unit(512, "feet")
  49608. },
  49609. {
  49610. name: "Quarter-Compressed",
  49611. height: math.unit(2048, "feet")
  49612. },
  49613. {
  49614. name: "Uncompressed?",
  49615. height: math.unit(8192, "feet")
  49616. },
  49617. ]
  49618. ))
  49619. characterMakers.push(() => makeCharacter(
  49620. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49621. {
  49622. front: {
  49623. height: math.unit(5 + 9/12, "feet"),
  49624. weight: math.unit(150, "lb"),
  49625. name: "Front",
  49626. image: {
  49627. source: "./media/characters/ven/front.svg",
  49628. extra: 1372/1320,
  49629. bottom: 73/1445
  49630. }
  49631. },
  49632. side: {
  49633. height: math.unit(5 + 9/12, "feet"),
  49634. weight: math.unit(1150, "lb"),
  49635. name: "Side",
  49636. image: {
  49637. source: "./media/characters/ven/side.svg",
  49638. extra: 1119/1070,
  49639. bottom: 42/1161
  49640. },
  49641. default: true
  49642. },
  49643. },
  49644. [
  49645. {
  49646. name: "Normal",
  49647. height: math.unit(5 + 9/12, "feet"),
  49648. default: true
  49649. },
  49650. ]
  49651. ))
  49652. characterMakers.push(() => makeCharacter(
  49653. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49654. {
  49655. front: {
  49656. height: math.unit(12, "feet"),
  49657. weight: math.unit(1000, "kg"),
  49658. name: "Front",
  49659. image: {
  49660. source: "./media/characters/maple/front.svg",
  49661. extra: 1193/1081,
  49662. bottom: 22/1215
  49663. }
  49664. },
  49665. },
  49666. [
  49667. {
  49668. name: "Compressed",
  49669. height: math.unit(7, "feet")
  49670. },
  49671. {
  49672. name: "Normal",
  49673. height: math.unit(12, "feet"),
  49674. default: true
  49675. },
  49676. ]
  49677. ))
  49678. characterMakers.push(() => makeCharacter(
  49679. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49680. {
  49681. front: {
  49682. height: math.unit(9, "feet"),
  49683. weight: math.unit(1500, "lb"),
  49684. name: "Front",
  49685. image: {
  49686. source: "./media/characters/nora/front.svg",
  49687. extra: 1348/1286,
  49688. bottom: 218/1566
  49689. }
  49690. },
  49691. erect: {
  49692. height: math.unit(9, "feet"),
  49693. weight: math.unit(11500, "lb"),
  49694. name: "Erect",
  49695. image: {
  49696. source: "./media/characters/nora/erect.svg",
  49697. extra: 1488/1433,
  49698. bottom: 133/1621
  49699. }
  49700. },
  49701. },
  49702. [
  49703. {
  49704. name: "Normal",
  49705. height: math.unit(9, "feet"),
  49706. default: true
  49707. },
  49708. ]
  49709. ))
  49710. characterMakers.push(() => makeCharacter(
  49711. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49712. {
  49713. front: {
  49714. height: math.unit(25, "feet"),
  49715. weight: math.unit(27500, "lb"),
  49716. name: "Front",
  49717. image: {
  49718. source: "./media/characters/north-caudin/front.svg",
  49719. extra: 1184/1082,
  49720. bottom: 23/1207
  49721. }
  49722. },
  49723. },
  49724. [
  49725. {
  49726. name: "Compressed",
  49727. height: math.unit(10, "feet")
  49728. },
  49729. {
  49730. name: "Normal",
  49731. height: math.unit(25, "feet"),
  49732. default: true
  49733. },
  49734. ]
  49735. ))
  49736. characterMakers.push(() => makeCharacter(
  49737. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49738. {
  49739. front: {
  49740. height: math.unit(9, "feet"),
  49741. weight: math.unit(1250, "lb"),
  49742. name: "Front",
  49743. image: {
  49744. source: "./media/characters/merrian/front.svg",
  49745. extra: 2393/2304,
  49746. bottom: 40/2433
  49747. }
  49748. },
  49749. },
  49750. [
  49751. {
  49752. name: "Normal",
  49753. height: math.unit(9, "feet"),
  49754. default: true
  49755. },
  49756. ]
  49757. ))
  49758. characterMakers.push(() => makeCharacter(
  49759. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49760. {
  49761. front: {
  49762. height: math.unit(9, "feet"),
  49763. weight: math.unit(1000, "lb"),
  49764. name: "Front",
  49765. image: {
  49766. source: "./media/characters/hazel/front.svg",
  49767. extra: 2351/2298,
  49768. bottom: 38/2389
  49769. }
  49770. },
  49771. },
  49772. [
  49773. {
  49774. name: "Normal",
  49775. height: math.unit(9, "feet"),
  49776. default: true
  49777. },
  49778. ]
  49779. ))
  49780. characterMakers.push(() => makeCharacter(
  49781. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49782. {
  49783. front: {
  49784. height: math.unit(13, "feet"),
  49785. weight: math.unit(3200, "lb"),
  49786. name: "Front",
  49787. image: {
  49788. source: "./media/characters/emma/front.svg",
  49789. extra: 2263/2029,
  49790. bottom: 68/2331
  49791. }
  49792. },
  49793. },
  49794. [
  49795. {
  49796. name: "Normal",
  49797. height: math.unit(13, "feet"),
  49798. default: true
  49799. },
  49800. ]
  49801. ))
  49802. characterMakers.push(() => makeCharacter(
  49803. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49804. {
  49805. front: {
  49806. height: math.unit(11 + 9/12, "feet"),
  49807. weight: math.unit(2500, "lb"),
  49808. name: "Front",
  49809. image: {
  49810. source: "./media/characters/ilumina/front.svg",
  49811. extra: 2248/2209,
  49812. bottom: 164/2412
  49813. }
  49814. },
  49815. },
  49816. [
  49817. {
  49818. name: "Normal",
  49819. height: math.unit(11 + 9/12, "feet"),
  49820. default: true
  49821. },
  49822. ]
  49823. ))
  49824. characterMakers.push(() => makeCharacter(
  49825. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49826. {
  49827. front: {
  49828. height: math.unit(8 + 10/12, "feet"),
  49829. weight: math.unit(1350, "lb"),
  49830. name: "Front",
  49831. image: {
  49832. source: "./media/characters/moonshine/front.svg",
  49833. extra: 2395/2288,
  49834. bottom: 40/2435
  49835. }
  49836. },
  49837. },
  49838. [
  49839. {
  49840. name: "Normal",
  49841. height: math.unit(8 + 10/12, "feet"),
  49842. default: true
  49843. },
  49844. ]
  49845. ))
  49846. characterMakers.push(() => makeCharacter(
  49847. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49848. {
  49849. front: {
  49850. height: math.unit(14, "feet"),
  49851. weight: math.unit(3400, "lb"),
  49852. name: "Front",
  49853. image: {
  49854. source: "./media/characters/aletia/front.svg",
  49855. extra: 1185/1052,
  49856. bottom: 21/1206
  49857. }
  49858. },
  49859. },
  49860. [
  49861. {
  49862. name: "Compressed",
  49863. height: math.unit(8, "feet")
  49864. },
  49865. {
  49866. name: "Normal",
  49867. height: math.unit(14, "feet"),
  49868. default: true
  49869. },
  49870. ]
  49871. ))
  49872. characterMakers.push(() => makeCharacter(
  49873. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49874. {
  49875. front: {
  49876. height: math.unit(17, "feet"),
  49877. weight: math.unit(6500, "lb"),
  49878. name: "Front",
  49879. image: {
  49880. source: "./media/characters/deidra/front.svg",
  49881. extra: 1201/1081,
  49882. bottom: 16/1217
  49883. }
  49884. },
  49885. },
  49886. [
  49887. {
  49888. name: "Compressed",
  49889. height: math.unit(9 + 6/12, "feet")
  49890. },
  49891. {
  49892. name: "Normal",
  49893. height: math.unit(17, "feet"),
  49894. default: true
  49895. },
  49896. ]
  49897. ))
  49898. characterMakers.push(() => makeCharacter(
  49899. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49900. {
  49901. front: {
  49902. height: math.unit(7 + 4/12, "feet"),
  49903. weight: math.unit(280, "lb"),
  49904. name: "Front",
  49905. image: {
  49906. source: "./media/characters/freki-yrmori/front.svg",
  49907. extra: 1286/1182,
  49908. bottom: 29/1315
  49909. }
  49910. },
  49911. maw: {
  49912. height: math.unit(0.9, "feet"),
  49913. name: "Maw",
  49914. image: {
  49915. source: "./media/characters/freki-yrmori/maw.svg"
  49916. }
  49917. },
  49918. },
  49919. [
  49920. {
  49921. name: "Normal",
  49922. height: math.unit(7 + 4/12, "feet"),
  49923. default: true
  49924. },
  49925. {
  49926. name: "Macro",
  49927. height: math.unit(38.5, "meters")
  49928. },
  49929. ]
  49930. ))
  49931. characterMakers.push(() => makeCharacter(
  49932. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49933. {
  49934. side: {
  49935. height: math.unit(47.2, "meters"),
  49936. weight: math.unit(10000, "tons"),
  49937. name: "Side",
  49938. image: {
  49939. source: "./media/characters/aetherios/side.svg",
  49940. extra: 2363/642,
  49941. bottom: 221/2584
  49942. }
  49943. },
  49944. top: {
  49945. height: math.unit(240, "meters"),
  49946. weight: math.unit(10000, "tons"),
  49947. name: "Top",
  49948. image: {
  49949. source: "./media/characters/aetherios/top.svg"
  49950. }
  49951. },
  49952. bottom: {
  49953. height: math.unit(240, "meters"),
  49954. weight: math.unit(10000, "tons"),
  49955. name: "Bottom",
  49956. image: {
  49957. source: "./media/characters/aetherios/bottom.svg"
  49958. }
  49959. },
  49960. head: {
  49961. height: math.unit(38.6, "meters"),
  49962. name: "Head",
  49963. image: {
  49964. source: "./media/characters/aetherios/head.svg",
  49965. extra: 1335/1112,
  49966. bottom: 0/1335
  49967. }
  49968. },
  49969. front: {
  49970. height: math.unit(29, "meters"),
  49971. name: "Front",
  49972. image: {
  49973. source: "./media/characters/aetherios/front.svg",
  49974. extra: 1266/953,
  49975. bottom: 158/1424
  49976. }
  49977. },
  49978. maw: {
  49979. height: math.unit(16.37, "meters"),
  49980. name: "Maw",
  49981. image: {
  49982. source: "./media/characters/aetherios/maw.svg",
  49983. extra: 748/637,
  49984. bottom: 0/748
  49985. },
  49986. extraAttributes: {
  49987. preyCapacity: {
  49988. name: "Capacity",
  49989. power: 3,
  49990. type: "volume",
  49991. base: math.unit(1000, "people")
  49992. },
  49993. tongueSize: {
  49994. name: "Tongue Size",
  49995. power: 2,
  49996. type: "area",
  49997. base: math.unit(21, "m^2")
  49998. }
  49999. }
  50000. },
  50001. forepaw: {
  50002. height: math.unit(18, "meters"),
  50003. name: "Forepaw",
  50004. image: {
  50005. source: "./media/characters/aetherios/forepaw.svg"
  50006. }
  50007. },
  50008. hindpaw: {
  50009. height: math.unit(23, "meters"),
  50010. name: "Hindpaw",
  50011. image: {
  50012. source: "./media/characters/aetherios/hindpaw.svg"
  50013. }
  50014. },
  50015. genitals: {
  50016. height: math.unit(42, "meters"),
  50017. name: "Genitals",
  50018. image: {
  50019. source: "./media/characters/aetherios/genitals.svg"
  50020. }
  50021. },
  50022. },
  50023. [
  50024. {
  50025. name: "Normal",
  50026. height: math.unit(47.2, "meters"),
  50027. default: true
  50028. },
  50029. {
  50030. name: "Macro",
  50031. height: math.unit(160, "meters")
  50032. },
  50033. {
  50034. name: "Mega",
  50035. height: math.unit(1.87, "km")
  50036. },
  50037. {
  50038. name: "Giga",
  50039. height: math.unit(40000, "km")
  50040. },
  50041. {
  50042. name: "Stellar",
  50043. height: math.unit(158000000, "km")
  50044. },
  50045. {
  50046. name: "Cosmic",
  50047. height: math.unit(9.46e12, "km")
  50048. },
  50049. ]
  50050. ))
  50051. characterMakers.push(() => makeCharacter(
  50052. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50053. {
  50054. front: {
  50055. height: math.unit(5 + 4/12, "feet"),
  50056. weight: math.unit(80, "lb"),
  50057. name: "Front",
  50058. image: {
  50059. source: "./media/characters/mizu-gieeg/front.svg",
  50060. extra: 850/709,
  50061. bottom: 52/902
  50062. }
  50063. },
  50064. back: {
  50065. height: math.unit(5 + 4/12, "feet"),
  50066. weight: math.unit(80, "lb"),
  50067. name: "Back",
  50068. image: {
  50069. source: "./media/characters/mizu-gieeg/back.svg",
  50070. extra: 882/745,
  50071. bottom: 25/907
  50072. }
  50073. },
  50074. },
  50075. [
  50076. {
  50077. name: "Normal",
  50078. height: math.unit(5 + 4/12, "feet"),
  50079. default: true
  50080. },
  50081. ]
  50082. ))
  50083. characterMakers.push(() => makeCharacter(
  50084. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50085. {
  50086. front: {
  50087. height: math.unit(6, "feet"),
  50088. name: "Front",
  50089. image: {
  50090. source: "./media/characters/roselle-st-papier/front.svg",
  50091. extra: 1430/1280,
  50092. bottom: 37/1467
  50093. }
  50094. },
  50095. back: {
  50096. height: math.unit(6, "feet"),
  50097. name: "Back",
  50098. image: {
  50099. source: "./media/characters/roselle-st-papier/back.svg",
  50100. extra: 1491/1296,
  50101. bottom: 23/1514
  50102. }
  50103. },
  50104. ear: {
  50105. height: math.unit(1.26, "feet"),
  50106. name: "Ear",
  50107. image: {
  50108. source: "./media/characters/roselle-st-papier/ear.svg"
  50109. }
  50110. },
  50111. },
  50112. [
  50113. {
  50114. name: "Normal",
  50115. height: math.unit(150, "feet"),
  50116. default: true
  50117. },
  50118. ]
  50119. ))
  50120. characterMakers.push(() => makeCharacter(
  50121. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50122. {
  50123. front: {
  50124. height: math.unit(1, "inches"),
  50125. name: "Front",
  50126. image: {
  50127. source: "./media/characters/valargent/front.svg",
  50128. extra: 1825/1694,
  50129. bottom: 62/1887
  50130. }
  50131. },
  50132. back: {
  50133. height: math.unit(1, "inches"),
  50134. name: "Back",
  50135. image: {
  50136. source: "./media/characters/valargent/back.svg",
  50137. extra: 1775/1682,
  50138. bottom: 88/1863
  50139. }
  50140. },
  50141. },
  50142. [
  50143. {
  50144. name: "Micro",
  50145. height: math.unit(1, "inch"),
  50146. default: true
  50147. },
  50148. ]
  50149. ))
  50150. characterMakers.push(() => makeCharacter(
  50151. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50152. {
  50153. front: {
  50154. height: math.unit(3.4, "meters"),
  50155. name: "Front",
  50156. image: {
  50157. source: "./media/characters/zarina/front.svg",
  50158. extra: 1733/1425,
  50159. bottom: 93/1826
  50160. }
  50161. },
  50162. squatting: {
  50163. height: math.unit(2.14, "meters"),
  50164. name: "Squatting",
  50165. image: {
  50166. source: "./media/characters/zarina/squatting.svg",
  50167. extra: 1073/788,
  50168. bottom: 63/1136
  50169. }
  50170. },
  50171. back: {
  50172. height: math.unit(2.14, "meters"),
  50173. name: "Back",
  50174. image: {
  50175. source: "./media/characters/zarina/back.svg",
  50176. extra: 1128/885,
  50177. bottom: 0/1128
  50178. }
  50179. },
  50180. },
  50181. [
  50182. {
  50183. name: "Normal",
  50184. height: math.unit(3.4, "meters"),
  50185. default: true
  50186. },
  50187. {
  50188. name: "Big",
  50189. height: math.unit(5, "meters")
  50190. },
  50191. {
  50192. name: "Macro",
  50193. height: math.unit(110, "meters")
  50194. },
  50195. ]
  50196. ))
  50197. characterMakers.push(() => makeCharacter(
  50198. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50199. {
  50200. front: {
  50201. height: math.unit(7, "feet"),
  50202. name: "Front",
  50203. image: {
  50204. source: "./media/characters/ventus-astro-fox/front.svg",
  50205. extra: 1792/1623,
  50206. bottom: 28/1820
  50207. }
  50208. },
  50209. back: {
  50210. height: math.unit(7, "feet"),
  50211. name: "Back",
  50212. image: {
  50213. source: "./media/characters/ventus-astro-fox/back.svg",
  50214. extra: 1789/1620,
  50215. bottom: 31/1820
  50216. }
  50217. },
  50218. outfit: {
  50219. height: math.unit(7, "feet"),
  50220. name: "Outfit",
  50221. image: {
  50222. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50223. extra: 1054/925,
  50224. bottom: 15/1069
  50225. }
  50226. },
  50227. head: {
  50228. height: math.unit(1.12, "feet"),
  50229. name: "Head",
  50230. image: {
  50231. source: "./media/characters/ventus-astro-fox/head.svg",
  50232. extra: 866/504,
  50233. bottom: 0/866
  50234. }
  50235. },
  50236. hand: {
  50237. height: math.unit(1, "feet"),
  50238. name: "Hand",
  50239. image: {
  50240. source: "./media/characters/ventus-astro-fox/hand.svg"
  50241. }
  50242. },
  50243. paw: {
  50244. height: math.unit(1.5, "feet"),
  50245. name: "Paw",
  50246. image: {
  50247. source: "./media/characters/ventus-astro-fox/paw.svg"
  50248. }
  50249. },
  50250. },
  50251. [
  50252. {
  50253. name: "Normal",
  50254. height: math.unit(7, "feet"),
  50255. default: true
  50256. },
  50257. {
  50258. name: "Macro",
  50259. height: math.unit(200, "feet")
  50260. },
  50261. {
  50262. name: "Cosmic",
  50263. height: math.unit(3, "universes")
  50264. },
  50265. ]
  50266. ))
  50267. characterMakers.push(() => makeCharacter(
  50268. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50269. {
  50270. front: {
  50271. height: math.unit(3, "meters"),
  50272. weight: math.unit(7000, "lb"),
  50273. name: "Front",
  50274. image: {
  50275. source: "./media/characters/core-t/front.svg",
  50276. extra: 5729/4941,
  50277. bottom: 1129/6858
  50278. }
  50279. },
  50280. },
  50281. [
  50282. {
  50283. name: "Big",
  50284. height: math.unit(3, "meters"),
  50285. default: true
  50286. },
  50287. ]
  50288. ))
  50289. characterMakers.push(() => makeCharacter(
  50290. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50291. {
  50292. normal: {
  50293. height: math.unit(6 + 6/12, "feet"),
  50294. weight: math.unit(275, "lb"),
  50295. name: "Front",
  50296. image: {
  50297. source: "./media/characters/cadbunny/normal.svg",
  50298. extra: 1129/947,
  50299. bottom: 93/1222
  50300. },
  50301. default: true,
  50302. form: "normal"
  50303. },
  50304. gigantamax: {
  50305. height: math.unit(26, "feet"),
  50306. weight: math.unit(16000, "lb"),
  50307. name: "Front",
  50308. image: {
  50309. source: "./media/characters/cadbunny/gigantamax.svg",
  50310. extra: 1133/944,
  50311. bottom: 90/1223
  50312. },
  50313. default: true,
  50314. form: "gigantamax"
  50315. },
  50316. },
  50317. [
  50318. {
  50319. name: "Normal",
  50320. height: math.unit(6 + 6/12, "feet"),
  50321. default: true,
  50322. form: "normal"
  50323. },
  50324. {
  50325. name: "Small",
  50326. height: math.unit(26, "feet"),
  50327. default: true,
  50328. form: "gigantamax"
  50329. },
  50330. {
  50331. name: "Large",
  50332. height: math.unit(78, "feet"),
  50333. form: "gigantamax"
  50334. },
  50335. ],
  50336. {
  50337. "normal": {
  50338. name: "Normal",
  50339. default: true
  50340. },
  50341. "gigantamax": {
  50342. name: "Gigantamax"
  50343. }
  50344. }
  50345. ))
  50346. characterMakers.push(() => makeCharacter(
  50347. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50348. {
  50349. anthroFront: {
  50350. height: math.unit(8, "feet"),
  50351. weight: math.unit(300, "lb"),
  50352. name: "Front",
  50353. image: {
  50354. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50355. extra: 1272/1176,
  50356. bottom: 53/1325
  50357. },
  50358. form: "anthro",
  50359. default: true
  50360. },
  50361. feralSide: {
  50362. height: math.unit(4, "feet"),
  50363. weight: math.unit(250, "lb"),
  50364. name: "Side",
  50365. image: {
  50366. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50367. extra: 731/621,
  50368. bottom: 0/731
  50369. },
  50370. form: "feral",
  50371. default: true
  50372. },
  50373. },
  50374. [
  50375. {
  50376. name: "Regular",
  50377. height: math.unit(8, "feet"),
  50378. form: "anthro"
  50379. },
  50380. {
  50381. name: "Macro",
  50382. height: math.unit(250, "feet"),
  50383. form: "anthro",
  50384. default: true
  50385. },
  50386. {
  50387. name: "Regular",
  50388. height: math.unit(4, "feet"),
  50389. form: "feral"
  50390. },
  50391. {
  50392. name: "Macro",
  50393. height: math.unit(125, "feet"),
  50394. form: "feral",
  50395. default: true
  50396. },
  50397. ],
  50398. {
  50399. "anthro": {
  50400. name: "Anthro",
  50401. default: true
  50402. },
  50403. "feral": {
  50404. name: "Feral",
  50405. },
  50406. }
  50407. ))
  50408. characterMakers.push(() => makeCharacter(
  50409. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50410. {
  50411. front: {
  50412. height: math.unit(11 + 10/12, "feet"),
  50413. weight: math.unit(1587, "kg"),
  50414. name: "Front",
  50415. image: {
  50416. source: "./media/characters/maple-javira-dragon/front.svg",
  50417. extra: 1136/744,
  50418. bottom: 73/1209
  50419. }
  50420. },
  50421. side: {
  50422. height: math.unit(11 + 10/12, "feet"),
  50423. weight: math.unit(1587, "kg"),
  50424. name: "Side",
  50425. image: {
  50426. source: "./media/characters/maple-javira-dragon/side.svg",
  50427. extra: 712/505,
  50428. bottom: 17/729
  50429. }
  50430. },
  50431. head: {
  50432. height: math.unit(8.05, "feet"),
  50433. name: "Head",
  50434. image: {
  50435. source: "./media/characters/maple-javira-dragon/head.svg",
  50436. extra: 1420/1344,
  50437. bottom: 0/1420
  50438. }
  50439. },
  50440. },
  50441. [
  50442. {
  50443. name: "Normal",
  50444. height: math.unit(11 + 10/12, "feet"),
  50445. default: true
  50446. },
  50447. ]
  50448. ))
  50449. characterMakers.push(() => makeCharacter(
  50450. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50451. {
  50452. front: {
  50453. height: math.unit(117, "cm"),
  50454. weight: math.unit(50, "kg"),
  50455. name: "Front",
  50456. image: {
  50457. source: "./media/characters/sonia-wyverntail/front.svg",
  50458. extra: 708/592,
  50459. bottom: 25/733
  50460. }
  50461. },
  50462. },
  50463. [
  50464. {
  50465. name: "Normal",
  50466. height: math.unit(117, "cm"),
  50467. default: true
  50468. },
  50469. ]
  50470. ))
  50471. characterMakers.push(() => makeCharacter(
  50472. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50473. {
  50474. front: {
  50475. height: math.unit(6 + 5/12, "feet"),
  50476. name: "Front",
  50477. image: {
  50478. source: "./media/characters/micah/front.svg",
  50479. extra: 1758/1546,
  50480. bottom: 214/1972
  50481. }
  50482. },
  50483. },
  50484. [
  50485. {
  50486. name: "Normal",
  50487. height: math.unit(6 + 5/12, "feet"),
  50488. default: true
  50489. },
  50490. ]
  50491. ))
  50492. characterMakers.push(() => makeCharacter(
  50493. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50494. {
  50495. front: {
  50496. height: math.unit(5 + 10/12, "feet"),
  50497. weight: math.unit(220, "lb"),
  50498. name: "Front",
  50499. image: {
  50500. source: "./media/characters/zarya/front.svg",
  50501. extra: 593/572,
  50502. bottom: 50/643
  50503. }
  50504. },
  50505. back: {
  50506. height: math.unit(5 + 10/12, "feet"),
  50507. weight: math.unit(220, "lb"),
  50508. name: "Back",
  50509. image: {
  50510. source: "./media/characters/zarya/back.svg",
  50511. extra: 603/582,
  50512. bottom: 38/641
  50513. }
  50514. },
  50515. },
  50516. [
  50517. {
  50518. name: "Normal",
  50519. height: math.unit(5 + 10/12, "feet"),
  50520. default: true
  50521. },
  50522. ]
  50523. ))
  50524. characterMakers.push(() => makeCharacter(
  50525. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50526. {
  50527. front: {
  50528. height: math.unit(7.5, "feet"),
  50529. name: "Front",
  50530. image: {
  50531. source: "./media/characters/sven-hatisson/front.svg",
  50532. extra: 917/857,
  50533. bottom: 42/959
  50534. }
  50535. },
  50536. back: {
  50537. height: math.unit(7.5, "feet"),
  50538. name: "Back",
  50539. image: {
  50540. source: "./media/characters/sven-hatisson/back.svg",
  50541. extra: 903/856,
  50542. bottom: 15/918
  50543. }
  50544. },
  50545. },
  50546. [
  50547. {
  50548. name: "Base Height",
  50549. height: math.unit(7.5, "feet")
  50550. },
  50551. {
  50552. name: "Usual Height",
  50553. height: math.unit(13.5, "feet"),
  50554. default: true
  50555. },
  50556. {
  50557. name: "Smaller Macro",
  50558. height: math.unit(85, "feet")
  50559. },
  50560. {
  50561. name: "Moderate Macro",
  50562. height: math.unit(320, "feet")
  50563. },
  50564. {
  50565. name: "Large Macro",
  50566. height: math.unit(1000, "feet")
  50567. },
  50568. {
  50569. name: "Largest Size",
  50570. height: math.unit(2, "miles")
  50571. },
  50572. ]
  50573. ))
  50574. characterMakers.push(() => makeCharacter(
  50575. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50576. {
  50577. side: {
  50578. height: math.unit(1.8, "meters"),
  50579. weight: math.unit(275, "kg"),
  50580. name: "Side",
  50581. image: {
  50582. source: "./media/characters/terra/side.svg",
  50583. extra: 1273/1147,
  50584. bottom: 0/1273
  50585. }
  50586. },
  50587. },
  50588. [
  50589. {
  50590. name: "Normal",
  50591. height: math.unit(16.2, "meters"),
  50592. default: true
  50593. },
  50594. ]
  50595. ))
  50596. characterMakers.push(() => makeCharacter(
  50597. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50598. {
  50599. borzoiFront: {
  50600. height: math.unit(6 + 9/12, "feet"),
  50601. name: "Front",
  50602. image: {
  50603. source: "./media/characters/rae/borzoi-front.svg",
  50604. extra: 1161/1098,
  50605. bottom: 31/1192
  50606. },
  50607. form: "borzoi",
  50608. default: true
  50609. },
  50610. werewolfFront: {
  50611. height: math.unit(8 + 7/12, "feet"),
  50612. name: "Front",
  50613. image: {
  50614. source: "./media/characters/rae/werewolf-front.svg",
  50615. extra: 1411/1334,
  50616. bottom: 127/1538
  50617. },
  50618. form: "werewolf",
  50619. default: true
  50620. },
  50621. },
  50622. [
  50623. {
  50624. name: "Normal",
  50625. height: math.unit(6 + 9/12, "feet"),
  50626. default: true,
  50627. form: "borzoi"
  50628. },
  50629. {
  50630. name: "Normal",
  50631. height: math.unit(8 + 7/12, "feet"),
  50632. default: true,
  50633. form: "werewolf"
  50634. },
  50635. ],
  50636. {
  50637. "borzoi": {
  50638. name: "Borzoi",
  50639. default: true
  50640. },
  50641. "werewolf": {
  50642. name: "Werewolf",
  50643. },
  50644. }
  50645. ))
  50646. characterMakers.push(() => makeCharacter(
  50647. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50648. {
  50649. front: {
  50650. height: math.unit(8 + 7/12, "feet"),
  50651. weight: math.unit(482, "lb"),
  50652. name: "Front",
  50653. image: {
  50654. source: "./media/characters/kit/front.svg",
  50655. extra: 1247/1103,
  50656. bottom: 41/1288
  50657. }
  50658. },
  50659. back: {
  50660. height: math.unit(8 + 7/12, "feet"),
  50661. weight: math.unit(482, "lb"),
  50662. name: "Back",
  50663. image: {
  50664. source: "./media/characters/kit/back.svg",
  50665. extra: 1252/1123,
  50666. bottom: 21/1273
  50667. }
  50668. },
  50669. paw: {
  50670. height: math.unit(1.46, "feet"),
  50671. name: "Paw",
  50672. image: {
  50673. source: "./media/characters/kit/paw.svg"
  50674. }
  50675. },
  50676. },
  50677. [
  50678. {
  50679. name: "Normal",
  50680. height: math.unit(2.61, "meters"),
  50681. default: true
  50682. },
  50683. {
  50684. name: "\"Tall\"",
  50685. height: math.unit(8.21, "meters")
  50686. },
  50687. {
  50688. name: "Tall",
  50689. height: math.unit(19.6, "meters")
  50690. },
  50691. {
  50692. name: "Very Tall",
  50693. height: math.unit(57.91, "meters")
  50694. },
  50695. {
  50696. name: "Semi-Macro",
  50697. height: math.unit(138.64, "meters")
  50698. },
  50699. {
  50700. name: "Macro",
  50701. height: math.unit(831.99, "meters")
  50702. },
  50703. {
  50704. name: "EX-Macro",
  50705. height: math.unit(96451121, "meters")
  50706. },
  50707. {
  50708. name: "S1-Omnipotent",
  50709. height: math.unit(4.42074e+9, "meters")
  50710. },
  50711. {
  50712. name: "S2-Omnipotent",
  50713. height: math.unit(9.42074e+17, "meters")
  50714. },
  50715. {
  50716. name: "Omnipotent",
  50717. height: math.unit(4.23112e+24, "meters")
  50718. },
  50719. {
  50720. name: "Hypergod",
  50721. height: math.unit(5.05176e+27, "meters")
  50722. },
  50723. {
  50724. name: "Hypergod-EX",
  50725. height: math.unit(9.45532e+49, "meters")
  50726. },
  50727. {
  50728. name: "Hypergod-SP",
  50729. height: math.unit(9.45532e+195, "meters")
  50730. },
  50731. ]
  50732. ))
  50733. characterMakers.push(() => makeCharacter(
  50734. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50735. {
  50736. side: {
  50737. height: math.unit(0.6, "meters"),
  50738. weight: math.unit(24, "kg"),
  50739. name: "Side",
  50740. image: {
  50741. source: "./media/characters/celeste/side.svg",
  50742. extra: 810/517,
  50743. bottom: 53/863
  50744. }
  50745. },
  50746. },
  50747. [
  50748. {
  50749. name: "Velociraptor",
  50750. height: math.unit(0.6, "meters"),
  50751. default: true
  50752. },
  50753. {
  50754. name: "Utahraptor",
  50755. height: math.unit(1.8, "meters")
  50756. },
  50757. {
  50758. name: "Gallimimus",
  50759. height: math.unit(4.0, "meters")
  50760. },
  50761. {
  50762. name: "Large",
  50763. height: math.unit(20, "meters")
  50764. },
  50765. {
  50766. name: "Planetary",
  50767. height: math.unit(50, "megameters")
  50768. },
  50769. {
  50770. name: "Stellar",
  50771. height: math.unit(1.5, "gigameters")
  50772. },
  50773. {
  50774. name: "Galactic",
  50775. height: math.unit(100, "exameters")
  50776. },
  50777. ]
  50778. ))
  50779. characterMakers.push(() => makeCharacter(
  50780. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50781. {
  50782. front: {
  50783. height: math.unit(6, "feet"),
  50784. weight: math.unit(210, "lb"),
  50785. name: "Front",
  50786. image: {
  50787. source: "./media/characters/glacia/front.svg",
  50788. extra: 958/901,
  50789. bottom: 45/1003
  50790. }
  50791. },
  50792. },
  50793. [
  50794. {
  50795. name: "Macro",
  50796. height: math.unit(1000, "meters"),
  50797. default: true
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50803. {
  50804. front: {
  50805. height: math.unit(4, "meters"),
  50806. name: "Front",
  50807. image: {
  50808. source: "./media/characters/giri/front.svg",
  50809. extra: 966/894,
  50810. bottom: 21/987
  50811. }
  50812. },
  50813. },
  50814. [
  50815. {
  50816. name: "Normal",
  50817. height: math.unit(4, "meters"),
  50818. default: true
  50819. },
  50820. ]
  50821. ))
  50822. characterMakers.push(() => makeCharacter(
  50823. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50824. {
  50825. back: {
  50826. height: math.unit(4, "feet"),
  50827. weight: math.unit(37, "lb"),
  50828. name: "Back",
  50829. image: {
  50830. source: "./media/characters/tin/back.svg",
  50831. extra: 845/780,
  50832. bottom: 28/873
  50833. }
  50834. },
  50835. },
  50836. [
  50837. {
  50838. name: "Normal",
  50839. height: math.unit(4, "feet"),
  50840. default: true
  50841. },
  50842. ]
  50843. ))
  50844. characterMakers.push(() => makeCharacter(
  50845. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50846. {
  50847. front: {
  50848. height: math.unit(25, "feet"),
  50849. name: "Front",
  50850. image: {
  50851. source: "./media/characters/cadenza-vivace/front.svg",
  50852. extra: 1842/1578,
  50853. bottom: 30/1872
  50854. }
  50855. },
  50856. },
  50857. [
  50858. {
  50859. name: "Macro",
  50860. height: math.unit(25, "feet"),
  50861. default: true
  50862. },
  50863. ]
  50864. ))
  50865. characterMakers.push(() => makeCharacter(
  50866. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50867. {
  50868. front: {
  50869. height: math.unit(10, "feet"),
  50870. weight: math.unit(625, "kg"),
  50871. name: "Front",
  50872. image: {
  50873. source: "./media/characters/zain/front.svg",
  50874. extra: 1682/1498,
  50875. bottom: 223/1905
  50876. }
  50877. },
  50878. back: {
  50879. height: math.unit(10, "feet"),
  50880. weight: math.unit(625, "kg"),
  50881. name: "Back",
  50882. image: {
  50883. source: "./media/characters/zain/back.svg",
  50884. extra: 1814/1657,
  50885. bottom: 152/1966
  50886. }
  50887. },
  50888. head: {
  50889. height: math.unit(10, "feet"),
  50890. weight: math.unit(625, "kg"),
  50891. name: "Head",
  50892. image: {
  50893. source: "./media/characters/zain/head.svg",
  50894. extra: 1059/762,
  50895. bottom: 0/1059
  50896. }
  50897. },
  50898. },
  50899. [
  50900. {
  50901. name: "Normal",
  50902. height: math.unit(10, "feet"),
  50903. default: true
  50904. },
  50905. ]
  50906. ))
  50907. characterMakers.push(() => makeCharacter(
  50908. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50909. {
  50910. front: {
  50911. height: math.unit(6 + 5/12, "feet"),
  50912. weight: math.unit(750, "lb"),
  50913. name: "Front",
  50914. image: {
  50915. source: "./media/characters/ruchex/front.svg",
  50916. extra: 877/820,
  50917. bottom: 17/894
  50918. },
  50919. extraAttributes: {
  50920. "width": {
  50921. name: "Width",
  50922. power: 1,
  50923. type: "length",
  50924. base: math.unit(4.757, "feet")
  50925. },
  50926. }
  50927. },
  50928. },
  50929. [
  50930. {
  50931. name: "Normal",
  50932. height: math.unit(6 + 5/12, "feet"),
  50933. default: true
  50934. },
  50935. ]
  50936. ))
  50937. characterMakers.push(() => makeCharacter(
  50938. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50939. {
  50940. dressedFront: {
  50941. height: math.unit(191, "cm"),
  50942. weight: math.unit(80, "kg"),
  50943. name: "Front",
  50944. image: {
  50945. source: "./media/characters/buster/dressed-front.svg",
  50946. extra: 1022/973,
  50947. bottom: 69/1091
  50948. }
  50949. },
  50950. dressedBack: {
  50951. height: math.unit(191, "cm"),
  50952. weight: math.unit(80, "kg"),
  50953. name: "Back",
  50954. image: {
  50955. source: "./media/characters/buster/dressed-back.svg",
  50956. extra: 1018/970,
  50957. bottom: 55/1073
  50958. }
  50959. },
  50960. nudeFront: {
  50961. height: math.unit(191, "cm"),
  50962. weight: math.unit(80, "kg"),
  50963. name: "Front (Nude)",
  50964. image: {
  50965. source: "./media/characters/buster/nude-front.svg",
  50966. extra: 1022/973,
  50967. bottom: 69/1091
  50968. }
  50969. },
  50970. nudeBack: {
  50971. height: math.unit(191, "cm"),
  50972. weight: math.unit(80, "kg"),
  50973. name: "Back (Nude)",
  50974. image: {
  50975. source: "./media/characters/buster/nude-back.svg",
  50976. extra: 1018/970,
  50977. bottom: 55/1073
  50978. }
  50979. },
  50980. dick: {
  50981. height: math.unit(2.59, "feet"),
  50982. name: "Dick",
  50983. image: {
  50984. source: "./media/characters/buster/dick.svg"
  50985. }
  50986. },
  50987. ass: {
  50988. height: math.unit(1.2, "feet"),
  50989. name: "Ass",
  50990. image: {
  50991. source: "./media/characters/buster/ass.svg"
  50992. }
  50993. },
  50994. },
  50995. [
  50996. {
  50997. name: "Normal",
  50998. height: math.unit(191, "cm"),
  50999. default: true
  51000. },
  51001. ]
  51002. ))
  51003. characterMakers.push(() => makeCharacter(
  51004. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51005. {
  51006. side: {
  51007. height: math.unit(8.1, "feet"),
  51008. weight: math.unit(3500, "lb"),
  51009. name: "Side",
  51010. image: {
  51011. source: "./media/characters/sonya/side.svg",
  51012. extra: 1730/1317,
  51013. bottom: 86/1816
  51014. }
  51015. },
  51016. },
  51017. [
  51018. {
  51019. name: "Normal",
  51020. height: math.unit(8.1, "feet"),
  51021. default: true
  51022. },
  51023. ]
  51024. ))
  51025. characterMakers.push(() => makeCharacter(
  51026. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51027. {
  51028. front: {
  51029. height: math.unit(6, "feet"),
  51030. weight: math.unit(150, "lb"),
  51031. name: "Front",
  51032. image: {
  51033. source: "./media/characters/cadence-andrysiak/front.svg",
  51034. extra: 1164/1121,
  51035. bottom: 60/1224
  51036. }
  51037. },
  51038. back: {
  51039. height: math.unit(6, "feet"),
  51040. weight: math.unit(150, "lb"),
  51041. name: "Back",
  51042. image: {
  51043. source: "./media/characters/cadence-andrysiak/back.svg",
  51044. extra: 1200/1165,
  51045. bottom: 9/1209
  51046. }
  51047. },
  51048. dressed: {
  51049. height: math.unit(6, "feet"),
  51050. weight: math.unit(150, "lb"),
  51051. name: "Dressed",
  51052. image: {
  51053. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51054. extra: 1164/1121,
  51055. bottom: 60/1224
  51056. }
  51057. },
  51058. },
  51059. [
  51060. {
  51061. name: "Micro",
  51062. height: math.unit(1, "mm")
  51063. },
  51064. {
  51065. name: "Normal",
  51066. height: math.unit(6, "feet"),
  51067. default: true
  51068. },
  51069. ]
  51070. ))
  51071. characterMakers.push(() => makeCharacter(
  51072. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51073. {
  51074. front: {
  51075. height: math.unit(60, "inches"),
  51076. weight: math.unit(16, "lb"),
  51077. preyCapacity: math.unit(80, "liters"),
  51078. name: "Front",
  51079. image: {
  51080. source: "./media/characters/penny-lynx/front.svg",
  51081. extra: 1959/1769,
  51082. bottom: 49/2008
  51083. }
  51084. },
  51085. },
  51086. [
  51087. {
  51088. name: "Nokia",
  51089. height: math.unit(2, "inches")
  51090. },
  51091. {
  51092. name: "Desktop",
  51093. height: math.unit(24, "inches")
  51094. },
  51095. {
  51096. name: "TV",
  51097. height: math.unit(60, "inches")
  51098. },
  51099. {
  51100. name: "Jumbotron",
  51101. height: math.unit(12, "feet")
  51102. },
  51103. {
  51104. name: "Billboard",
  51105. height: math.unit(48, "feet"),
  51106. default: true
  51107. },
  51108. {
  51109. name: "IMAX",
  51110. height: math.unit(96, "feet")
  51111. },
  51112. {
  51113. name: "SINGULARITY",
  51114. height: math.unit(864938, "miles")
  51115. },
  51116. ]
  51117. ))
  51118. characterMakers.push(() => makeCharacter(
  51119. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51120. {
  51121. front: {
  51122. height: math.unit(5 + 4/12, "feet"),
  51123. weight: math.unit(230, "lb"),
  51124. name: "Front",
  51125. image: {
  51126. source: "./media/characters/sukebe/front.svg",
  51127. extra: 2130/2038,
  51128. bottom: 90/2220
  51129. }
  51130. },
  51131. back: {
  51132. height: math.unit(3.48, "feet"),
  51133. weight: math.unit(230, "lb"),
  51134. name: "Back",
  51135. image: {
  51136. source: "./media/characters/sukebe/back.svg",
  51137. extra: 1670/1604,
  51138. bottom: 0/1670
  51139. }
  51140. },
  51141. },
  51142. [
  51143. {
  51144. name: "Normal",
  51145. height: math.unit(5 + 4/12, "feet"),
  51146. default: true
  51147. },
  51148. ]
  51149. ))
  51150. characterMakers.push(() => makeCharacter(
  51151. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51152. {
  51153. front: {
  51154. height: math.unit(6, "feet"),
  51155. name: "Front",
  51156. image: {
  51157. source: "./media/characters/nylla/front.svg",
  51158. extra: 1868/1699,
  51159. bottom: 97/1965
  51160. }
  51161. },
  51162. back: {
  51163. height: math.unit(6, "feet"),
  51164. name: "Back",
  51165. image: {
  51166. source: "./media/characters/nylla/back.svg",
  51167. extra: 1889/1712,
  51168. bottom: 93/1982
  51169. }
  51170. },
  51171. frontNsfw: {
  51172. height: math.unit(6, "feet"),
  51173. name: "Front (NSFW)",
  51174. image: {
  51175. source: "./media/characters/nylla/front-nsfw.svg",
  51176. extra: 1868/1699,
  51177. bottom: 97/1965
  51178. },
  51179. extraAttributes: {
  51180. "dickLength": {
  51181. name: "Dick Length",
  51182. power: 1,
  51183. type: "length",
  51184. base: math.unit(1.4, "feet")
  51185. },
  51186. "cumVolume": {
  51187. name: "Cum Volume",
  51188. power: 3,
  51189. type: "volume",
  51190. base: math.unit(100, "mL")
  51191. },
  51192. }
  51193. },
  51194. backNsfw: {
  51195. height: math.unit(6, "feet"),
  51196. name: "Back (NSFW)",
  51197. image: {
  51198. source: "./media/characters/nylla/back-nsfw.svg",
  51199. extra: 1889/1712,
  51200. bottom: 93/1982
  51201. }
  51202. },
  51203. maw: {
  51204. height: math.unit(2.10, "feet"),
  51205. name: "Maw",
  51206. image: {
  51207. source: "./media/characters/nylla/maw.svg"
  51208. }
  51209. },
  51210. paws: {
  51211. height: math.unit(2.06, "feet"),
  51212. name: "Paws",
  51213. image: {
  51214. source: "./media/characters/nylla/paws.svg"
  51215. }
  51216. },
  51217. muzzle: {
  51218. height: math.unit(0.61, "feet"),
  51219. name: "Muzzle",
  51220. image: {
  51221. source: "./media/characters/nylla/muzzle.svg"
  51222. }
  51223. },
  51224. sheath: {
  51225. height: math.unit(1.305, "feet"),
  51226. name: "Sheath",
  51227. image: {
  51228. source: "./media/characters/nylla/sheath.svg"
  51229. }
  51230. },
  51231. },
  51232. [
  51233. {
  51234. name: "Micro",
  51235. height: math.unit(7.5, "inches")
  51236. },
  51237. {
  51238. name: "Normal",
  51239. height: math.unit(7, "feet"),
  51240. default: true
  51241. },
  51242. {
  51243. name: "Macro",
  51244. height: math.unit(60, "feet")
  51245. },
  51246. {
  51247. name: "Mega",
  51248. height: math.unit(200, "feet")
  51249. },
  51250. ]
  51251. ))
  51252. characterMakers.push(() => makeCharacter(
  51253. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51254. {
  51255. front: {
  51256. height: math.unit(10, "feet"),
  51257. weight: math.unit(2300, "lb"),
  51258. name: "Front",
  51259. image: {
  51260. source: "./media/characters/hunt3r/front.svg",
  51261. extra: 1909/1742,
  51262. bottom: 46/1955
  51263. }
  51264. },
  51265. },
  51266. [
  51267. {
  51268. name: "Normal",
  51269. height: math.unit(10, "feet"),
  51270. default: true
  51271. },
  51272. ]
  51273. ))
  51274. characterMakers.push(() => makeCharacter(
  51275. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51276. {
  51277. dressed: {
  51278. height: math.unit(11, "feet"),
  51279. weight: math.unit(18500, "lb"),
  51280. preyCapacity: math.unit(9, "people"),
  51281. name: "Dressed",
  51282. image: {
  51283. source: "./media/characters/cylphis/dressed.svg",
  51284. extra: 1028/1003,
  51285. bottom: 75/1103
  51286. },
  51287. },
  51288. undressed: {
  51289. height: math.unit(11, "feet"),
  51290. weight: math.unit(18500, "lb"),
  51291. preyCapacity: math.unit(9, "people"),
  51292. name: "Undressed",
  51293. image: {
  51294. source: "./media/characters/cylphis/undressed.svg",
  51295. extra: 1028/1003,
  51296. bottom: 75/1103
  51297. }
  51298. },
  51299. full: {
  51300. height: math.unit(11, "feet"),
  51301. weight: math.unit(18500 + 150*9, "lb"),
  51302. preyCapacity: math.unit(9, "people"),
  51303. name: "Full",
  51304. image: {
  51305. source: "./media/characters/cylphis/full.svg",
  51306. extra: 1028/1003,
  51307. bottom: 75/1103
  51308. }
  51309. },
  51310. },
  51311. [
  51312. {
  51313. name: "Small",
  51314. height: math.unit(8, "feet")
  51315. },
  51316. {
  51317. name: "Normal",
  51318. height: math.unit(11, "feet"),
  51319. default: true
  51320. },
  51321. ]
  51322. ))
  51323. characterMakers.push(() => makeCharacter(
  51324. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51325. {
  51326. front: {
  51327. height: math.unit(2 + 7/12, "feet"),
  51328. name: "Front",
  51329. image: {
  51330. source: "./media/characters/orishan/front.svg",
  51331. extra: 1058/1023,
  51332. bottom: 23/1081
  51333. }
  51334. },
  51335. back: {
  51336. height: math.unit(2 + 7/12, "feet"),
  51337. name: "Back",
  51338. image: {
  51339. source: "./media/characters/orishan/back.svg",
  51340. extra: 1058/1023,
  51341. bottom: 23/1081
  51342. }
  51343. },
  51344. },
  51345. [
  51346. {
  51347. name: "Micro",
  51348. height: math.unit(2, "cm")
  51349. },
  51350. {
  51351. name: "Normal",
  51352. height: math.unit(2 + 7/12, "feet"),
  51353. default: true
  51354. },
  51355. ]
  51356. ))
  51357. characterMakers.push(() => makeCharacter(
  51358. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51359. {
  51360. front: {
  51361. height: math.unit(3, "meters"),
  51362. weight: math.unit(508, "kg"),
  51363. name: "Front",
  51364. image: {
  51365. source: "./media/characters/seranis/front.svg",
  51366. extra: 1478/1454,
  51367. bottom: 41/1519
  51368. }
  51369. },
  51370. },
  51371. [
  51372. {
  51373. name: "Normal",
  51374. height: math.unit(3, "meters"),
  51375. default: true
  51376. },
  51377. {
  51378. name: "Macro",
  51379. height: math.unit(108, "meters")
  51380. },
  51381. {
  51382. name: "Megamacro",
  51383. height: math.unit(1250, "meters")
  51384. },
  51385. ]
  51386. ))
  51387. characterMakers.push(() => makeCharacter(
  51388. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51389. {
  51390. undressed: {
  51391. height: math.unit(5 + 3/12, "feet"),
  51392. name: "Undressed",
  51393. image: {
  51394. source: "./media/characters/ankou/undressed.svg",
  51395. extra: 1301/1213,
  51396. bottom: 87/1388
  51397. }
  51398. },
  51399. dressed: {
  51400. height: math.unit(5 + 3/12, "feet"),
  51401. name: "Dressed",
  51402. image: {
  51403. source: "./media/characters/ankou/dressed.svg",
  51404. extra: 1301/1213,
  51405. bottom: 87/1388
  51406. }
  51407. },
  51408. head: {
  51409. height: math.unit(1.61, "feet"),
  51410. name: "Head",
  51411. image: {
  51412. source: "./media/characters/ankou/head.svg"
  51413. }
  51414. },
  51415. },
  51416. [
  51417. {
  51418. name: "Normal",
  51419. height: math.unit(5 + 3/12, "feet"),
  51420. default: true
  51421. },
  51422. ]
  51423. ))
  51424. characterMakers.push(() => makeCharacter(
  51425. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51426. {
  51427. side: {
  51428. height: math.unit(6 + 3/12, "feet"),
  51429. weight: math.unit(200, "kg"),
  51430. name: "Side",
  51431. image: {
  51432. source: "./media/characters/juniper-skunktaur/side.svg",
  51433. extra: 1574/1229,
  51434. bottom: 38/1612
  51435. }
  51436. },
  51437. front: {
  51438. height: math.unit(6 + 3/12, "feet"),
  51439. weight: math.unit(200, "kg"),
  51440. name: "Front",
  51441. image: {
  51442. source: "./media/characters/juniper-skunktaur/front.svg",
  51443. extra: 1337/1278,
  51444. bottom: 22/1359
  51445. }
  51446. },
  51447. back: {
  51448. height: math.unit(6 + 3/12, "feet"),
  51449. weight: math.unit(200, "kg"),
  51450. name: "Back",
  51451. image: {
  51452. source: "./media/characters/juniper-skunktaur/back.svg",
  51453. extra: 1618/1273,
  51454. bottom: 13/1631
  51455. }
  51456. },
  51457. top: {
  51458. height: math.unit(2.62, "feet"),
  51459. weight: math.unit(200, "kg"),
  51460. name: "Top",
  51461. image: {
  51462. source: "./media/characters/juniper-skunktaur/top.svg"
  51463. }
  51464. },
  51465. },
  51466. [
  51467. {
  51468. name: "Normal",
  51469. height: math.unit(6 + 3/12, "feet"),
  51470. default: true
  51471. },
  51472. ]
  51473. ))
  51474. characterMakers.push(() => makeCharacter(
  51475. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51476. {
  51477. front: {
  51478. height: math.unit(20.5, "feet"),
  51479. name: "Front",
  51480. image: {
  51481. source: "./media/characters/rei/front.svg",
  51482. extra: 1349/1195,
  51483. bottom: 31/1380
  51484. }
  51485. },
  51486. back: {
  51487. height: math.unit(20.5, "feet"),
  51488. name: "Back",
  51489. image: {
  51490. source: "./media/characters/rei/back.svg",
  51491. extra: 1358/1204,
  51492. bottom: 22/1380
  51493. }
  51494. },
  51495. pawsDigi: {
  51496. height: math.unit(3.45, "feet"),
  51497. name: "Paws (Digi)",
  51498. image: {
  51499. source: "./media/characters/rei/paws-digi.svg"
  51500. }
  51501. },
  51502. pawsPlanti: {
  51503. height: math.unit(3.45, "feet"),
  51504. name: "Paws (Planti)",
  51505. image: {
  51506. source: "./media/characters/rei/paws-planti.svg"
  51507. }
  51508. },
  51509. },
  51510. [
  51511. {
  51512. name: "Normal",
  51513. height: math.unit(20.5, "feet"),
  51514. default: true
  51515. },
  51516. ]
  51517. ))
  51518. characterMakers.push(() => makeCharacter(
  51519. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51520. {
  51521. front: {
  51522. height: math.unit(5 + 11/12, "feet"),
  51523. name: "Front",
  51524. image: {
  51525. source: "./media/characters/carina/front.svg",
  51526. extra: 1720/1449,
  51527. bottom: 14/1734
  51528. }
  51529. },
  51530. back: {
  51531. height: math.unit(5 + 11/12, "feet"),
  51532. name: "Back",
  51533. image: {
  51534. source: "./media/characters/carina/back.svg",
  51535. extra: 1493/1445,
  51536. bottom: 17/1510
  51537. }
  51538. },
  51539. paw: {
  51540. height: math.unit(0.92, "feet"),
  51541. name: "Paw",
  51542. image: {
  51543. source: "./media/characters/carina/paw.svg"
  51544. }
  51545. },
  51546. },
  51547. [
  51548. {
  51549. name: "Normal",
  51550. height: math.unit(5 + 11/12, "feet"),
  51551. default: true
  51552. },
  51553. ]
  51554. ))
  51555. characterMakers.push(() => makeCharacter(
  51556. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51557. {
  51558. front: {
  51559. height: math.unit(4.88, "meters"),
  51560. name: "Front",
  51561. image: {
  51562. source: "./media/characters/maya/front.svg",
  51563. extra: 1222/1145,
  51564. bottom: 57/1279
  51565. }
  51566. },
  51567. },
  51568. [
  51569. {
  51570. name: "Normal",
  51571. height: math.unit(4.88, "meters"),
  51572. default: true
  51573. },
  51574. {
  51575. name: "Macro",
  51576. height: math.unit(38.1, "meters")
  51577. },
  51578. {
  51579. name: "Macro+",
  51580. height: math.unit(152.4, "meters")
  51581. },
  51582. {
  51583. name: "Macro++",
  51584. height: math.unit(16.09, "km")
  51585. },
  51586. {
  51587. name: "Mega-macro",
  51588. height: math.unit(700, "megameters")
  51589. },
  51590. ]
  51591. ))
  51592. characterMakers.push(() => makeCharacter(
  51593. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51594. {
  51595. front: {
  51596. height: math.unit(6 + 2/12, "feet"),
  51597. weight: math.unit(500, "lb"),
  51598. preyCapacity: math.unit(4, "people"),
  51599. name: "Front",
  51600. image: {
  51601. source: "./media/characters/yepir/front.svg"
  51602. }
  51603. },
  51604. side: {
  51605. height: math.unit(6 + 2/12, "feet"),
  51606. weight: math.unit(500, "lb"),
  51607. preyCapacity: math.unit(4, "people"),
  51608. name: "Side",
  51609. image: {
  51610. source: "./media/characters/yepir/side.svg"
  51611. }
  51612. },
  51613. paw: {
  51614. height: math.unit(1.05, "feet"),
  51615. name: "Paw",
  51616. image: {
  51617. source: "./media/characters/yepir/paw.svg"
  51618. }
  51619. },
  51620. },
  51621. [
  51622. {
  51623. name: "Normal",
  51624. height: math.unit(6 + 2/12, "feet"),
  51625. default: true
  51626. },
  51627. ]
  51628. ))
  51629. characterMakers.push(() => makeCharacter(
  51630. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51631. {
  51632. front: {
  51633. height: math.unit(5 + 4/12, "feet"),
  51634. name: "Front",
  51635. image: {
  51636. source: "./media/characters/russec/front.svg",
  51637. extra: 1926/1626,
  51638. bottom: 72/1998
  51639. }
  51640. },
  51641. back: {
  51642. height: math.unit(5 + 4/12, "feet"),
  51643. name: "Back",
  51644. image: {
  51645. source: "./media/characters/russec/back.svg",
  51646. extra: 1910/1591,
  51647. bottom: 48/1958
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Small",
  51654. height: math.unit(5 + 4/12, "feet")
  51655. },
  51656. {
  51657. name: "Normal",
  51658. height: math.unit(72, "feet"),
  51659. default: true
  51660. },
  51661. ]
  51662. ))
  51663. //characters
  51664. function makeCharacters() {
  51665. const results = [];
  51666. characterMakers.forEach(character => {
  51667. results.push(character());
  51668. });
  51669. return results;
  51670. }